* {
  box-sizing: border-box;
}

:root {
  --bg: #09070f;
  --bg-soft: #100c19;
  --panel: rgba(19, 14, 29, 0.82);
  --panel-2: #171120;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f7f4ff;
  --muted: #aaa3b7;
  --purple: #9b5cff;
  --purple-2: #6f2cff;
  --purple-soft: rgba(155, 92, 255, 0.16);
  --success: #7cf1b5;
  --warning: #ffcb6b;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(117, 52, 225, 0.16), transparent 36%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
  pointer-events: none;
  z-index: -1;
}

.bg-glow-1 {
  background: #9b5cff;
  top: 12%;
  left: -180px;
}

.bg-glow-2 {
  background: #5d24d6;
  right: -180px;
  bottom: 10%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 7, 15, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--purple), var(--purple-2));
  box-shadow: 0 8px 25px rgba(111, 44, 255, 0.26);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #a463ff, #6f2cff);
  box-shadow: 0 12px 36px rgba(111, 44, 255, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 16px 46px rgba(111, 44, 255, 0.36);
}

.btn-outline {
  border-color: rgba(155, 92, 255, 0.4);
  background: rgba(155, 92, 255, 0.08);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: #ded9e8;
}

.hero {
  padding: 105px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 75px;
}

.eyebrow {
  display: inline-flex;
  color: #b98cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  background: linear-gradient(90deg, #c89bff, #8744ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.mini-features div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-features strong {
  font-size: 15px;
}

.mini-features span {
  color: var(--muted);
  font-size: 12px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(155, 92, 255, 0.26);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(30, 21, 44, 0.95), rgba(14, 10, 22, 0.95));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

.terminal-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.terminal-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4d4657;
}

.terminal-top small {
  margin-left: auto;
  color: #8c8497;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.terminal-body {
  min-height: 350px;
  padding: 38px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.terminal-body p {
  margin: 8px 0;
}

.muted {
  color: #756d80;
}

.success {
  color: var(--success);
}

.terminal-highlight {
  color: #caa3ff;
  font-size: 24px;
  font-weight: 800;
}

.terminal-price {
  color: white;
  font-size: 40px;
  font-weight: 800;
}

.notice-section {
  padding: 10px 0 25px;
}

.important-notice {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  border: 1px solid rgba(255, 203, 107, 0.28);
  border-radius: 16px;
  background: rgba(255, 203, 107, 0.07);
}

.notice-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 203, 107, 0.15);
  color: var(--warning);
  font-size: 20px;
  font-weight: 900;
}

.important-notice strong {
  color: var(--warning);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.important-notice p {
  margin: 7px 0 0;
  color: #d9d2c6;
  line-height: 1.65;
}

.section {
  padding: 95px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
}

.product-visual {
  min-height: 530px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(155, 92, 255, 0.23), transparent 42%),
    linear-gradient(145deg, #130d1d, #0d0914);
}

.product-logo {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(201, 161, 255, 0.24);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(155, 92, 255, 0.3), rgba(85, 29, 178, 0.16));
  color: #d7b9ff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: inset 0 0 40px rgba(155, 92, 255, 0.12), 0 30px 60px rgba(0,0,0,.35);
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.status-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 241, 181, 0.08);
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info {
  padding: 50px;
}

.category {
  color: #9f72e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-info h3 {
  margin: 10px 0 12px;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.product-description {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: #ddd7e7;
}

.feature-list li {
  display: flex;
  gap: 10px;
}

.feature-list span {
  color: var(--success);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.price-row small {
  display: block;
  margin-bottom: 4px;
  color: #8f8799;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.price {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.payment-pill {
  padding: 9px 14px;
  border: 1px solid rgba(95, 142, 255, 0.2);
  border-radius: 999px;
  background: rgba(34, 102, 255, 0.08);
  color: #b9ccff;
  font-size: 12px;
  font-weight: 800;
}

.purchase-warning {
  margin: 0 0 20px;
  padding: 15px 16px;
  border-left: 3px solid var(--warning);
  border-radius: 8px;
  background: rgba(255, 203, 107, 0.06);
  color: #dbd3c5;
  font-size: 13px;
  line-height: 1.6;
}

.purchase-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.btn-buy,
.btn-contact,
.btn-contact-telegram {
  width: 100%;
}

.btn-buy {
  grid-column: 1 / -1;
}

.secure-note {
  margin: 12px 0 0;
  color: #7f788a;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.plans-section {
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(255,255,255,.012);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(17, 12, 28, .78);
}

.plan-card--featured {
  border-color: rgba(168, 85, 247, .78);
  background: linear-gradient(160deg, rgba(89, 31, 139, .34), rgba(17, 12, 28, .92));
  box-shadow: 0 18px 42px rgba(100, 39, 165, .2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.plan-duration {
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.plan-card h3 { margin: 12px 0 6px; font-size: 20px; }
.plan-price { margin: 8px 0; color: #fff; font-size: 38px; font-weight: 900; letter-spacing: -.04em; }
.plan-card p { min-height: 48px; margin: 0 0 22px; color: var(--muted); line-height: 1.55; }
.plan-card .btn { width: 100%; margin-top: auto; }
.plans-note { margin: 25px 0 0; text-align: center; color: var(--muted); font-size: 13px; }
.plans-note a { color: var(--accent-light); font-weight: 800; }

.steps-section {
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(255,255,255,.012);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(17, 13, 25, 0.78);
}

.featured-step {
  border-color: rgba(255, 203, 107, 0.25);
  background: linear-gradient(180deg, rgba(255, 203, 107, 0.055), rgba(17, 13, 25, 0.78));
}

.step-number {
  display: inline-block;
  margin-bottom: 38px;
  color: #8e5bda;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.center-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(155, 92, 255, 0.18);
  border-radius: 18px;
  background: rgba(155, 92, 255, 0.05);
}

.center-cta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.center-cta span {
  color: var(--muted);
  font-size: 13px;
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(18, 14, 26, 0.72);
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding: 20px 0 100px;
}

.final-cta-box {
  padding: 65px 35px;
  border: 1px solid rgba(155, 92, 255, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 92, 255, 0.18), transparent 45%),
    #100c18;
  text-align: center;
}

.final-cta-box h2 {
  margin: 12px 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.04em;
}

.final-cta-box p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  color: #777080;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.footer .brand {
  color: #cfc9da;
  font-size: 12px;
}

.footer .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 75px;
  }

  .hero-grid,
  .product-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

  .product-visual {
    min-height: 330px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav .btn-outline {
    display: none;
  }

  .hero {
    padding: 58px 0 50px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .mini-features {
    gap: 18px;
  }

  .important-notice {
    padding: 19px;
  }

  .section {
    padding: 70px 0;
  }

  .product-info {
    padding: 30px 22px;
  }

  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }

  .center-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .center-cta .btn {
    width: 100%;
  }

  .final-cta-box {
    padding: 48px 20px;
  }
}


.downloads-section {
  background: rgba(255,255,255,.008);
}

.download-grid {
  display: grid;
  gap: 18px;
}

.brand-logo { width: 34px; height: 34px; border-radius: 10px; display: block; }
.contact-box { text-align: center; padding: 42px 28px; border: 1px solid var(--border); border-radius: 22px; background: rgba(17,12,28,.72); }
.contact-box .section-heading { margin-inline: auto; }
.contact-box .secure-note { margin-top: 16px; }

.updates-section { padding-top: 12px; }
.updates-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border: 1px solid rgba(42, 171, 223, 0.36);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 12, 28, 0.92), rgba(18, 48, 73, 0.55));
}
.updates-box h2 { margin: 9px 0; font-size: clamp(25px, 3vw, 36px); }
.updates-box p { margin: 0; max-width: 670px; color: var(--muted); line-height: 1.65; }
.updates-box .btn { flex: 0 0 auto; white-space: nowrap; }

.download-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel);
}

.download-icon {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(155, 92, 255, 0.24);
  background: linear-gradient(145deg, rgba(155, 92, 255, 0.24), rgba(72, 29, 140, 0.12));
  color: #d4b7ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 30px rgba(155, 92, 255, 0.08);
}

.download-icon img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
}

.download-icon--cutter img {
  transform: scale(1.08);
}

.download-icon--generator img {
  transform: scale(1.02);
}

.download-info h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.download-info > p {
  color: var(--muted);
  line-height: 1.65;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 18px 0;
  color: #bdb5ca;
  font-size: 13px;
}

.download-license-note {
  margin: 18px 0;
  padding: 15px 16px;
  border-left: 3px solid var(--purple);
  border-radius: 8px;
  background: rgba(155, 92, 255, 0.06);
  color: #d6cfdf;
  font-size: 13px;
  line-height: 1.6;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tutorial-section {
  background: rgba(155, 92, 255, 0.035);
}

.cutter-tutorial-section {
  background:
    radial-gradient(circle at 12% 35%, rgba(157, 61, 255, 0.13), transparent 27%),
    rgba(8, 8, 16, 0.56);
}

.cutter-tutorial-heading {
  max-width: 770px;
  margin: 0 auto 28px;
  text-align: center;
}

.cutter-tutorial-heading h2 {
  margin: 9px 0 12px;
  font-size: clamp(28px, 3.5vw, 43px);
  letter-spacing: -0.045em;
}

.cutter-tutorial-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cutter-tutorial-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.cutter-tutorial-visual {
  overflow: hidden;
  border: 1px solid rgba(174, 110, 255, 0.34);
  border-radius: 18px;
  background: #080810;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  margin: 0;
}

.cutter-tutorial-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.cutter-tutorial-visual figcaption {
  padding: 12px 15px;
  border-top: 1px solid rgba(174, 110, 255, 0.22);
  color: #e4d6f7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.cutter-tutorial-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: cutter-step;
}

.cutter-tutorial-steps li {
  position: relative;
  min-height: 112px;
  padding: 20px 20px 20px 70px;
  border: 1px solid rgba(155, 92, 255, 0.23);
  border-radius: 15px;
  background: rgba(19, 12, 32, 0.78);
  color: var(--muted);
  line-height: 1.6;
  counter-increment: cutter-step;
}

.cutter-tutorial-steps li::before {
  content: counter(cutter-step);
  position: absolute;
  top: 19px;
  left: 19px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #b970ff;
  border-radius: 50%;
  background: rgba(139, 48, 242, 0.25);
  color: #fff;
  font-weight: 800;
}

.cutter-tutorial-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #f3edff;
}

.cutter-tutorial-steps em {
  color: #d7b4ff;
  font-style: normal;
}

.tutorial-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(155, 92, 255, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 13, 33, 0.94), rgba(10, 13, 24, 0.92));
}

.tutorial-copy h2 {
  margin: 9px 0 12px;
  font-size: clamp(27px, 3vw, 39px);
  letter-spacing: -0.04em;
}

.tutorial-copy > p {
  color: var(--muted);
  line-height: 1.7;
}

.tutorial-steps {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding-left: 22px;
  color: #ded6ea;
  line-height: 1.5;
}

.tutorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tutorial-security {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #f6c453;
  border-radius: 8px;
  background: rgba(246, 196, 83, 0.07);
  color: #f5dfaa !important;
  font-size: 13px;
}

.tutorial-credits {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #b970ff;
  border-radius: 8px;
  background: rgba(155, 92, 255, 0.11);
  color: #e6d7fb !important;
  font-size: 13px;
  line-height: 1.55;
}

.tutorial-credits a {
  color: #d5a5ff;
  font-weight: 800;
}

.tutorial-player {
  overflow: hidden;
  border: 1px solid rgba(155, 92, 255, 0.3);
  border-radius: 16px;
  background: #080810;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
}

.tutorial-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080810;
}

@media (max-width: 700px) {
  .download-card {
    grid-template-columns: 1fr;
  }

  .download-icon {
    width: 90px;
    height: 90px;
  }

  .download-icon img {
    width: 82px;
    height: 82px;
  }

  .download-actions {
    flex-direction: column;
  }

  .download-actions .btn {
    width: 100%;
  }

  .tutorial-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .cutter-tutorial-steps {
    grid-template-columns: 1fr;
  }

  .cutter-tutorial-gallery {
    grid-template-columns: 1fr;
  }

  .cutter-tutorial-steps li {
    min-height: auto;
  }

  .tutorial-actions .btn {
    width: 100%;
  }
}

.btn-telegram {
  background: linear-gradient(135deg, #2aabdf, #1688c1);
  box-shadow: 0 12px 32px rgba(42, 171, 223, 0.2);
}

.btn-telegram:hover {
  box-shadow: 0 16px 40px rgba(42, 171, 223, 0.3);
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 640px) {
  .updates-box { flex-direction: column; align-items: stretch; padding: 30px 24px; }
  .updates-box .btn { width: 100%; }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }
}
