﻿:root {
  --bg: #040706;
  --bg-soft: #07120f;
  --text: #e9fff2;
  --muted: rgba(190, 226, 204, 0.82);
  --card: rgba(7, 26, 20, 0.7);
  --border: rgba(31, 255, 160, 0.24);
  --line: rgba(27, 173, 109, 0.24);
  --line-soft: rgba(27, 173, 109, 0.12);
  --green: #15f594;
  --green-2: #0fbf74;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --panel-shadow: 0 0 0 1px rgba(85, 255, 176, 0.12), 0 24px 40px rgba(0, 0, 0, 0.44), 0 0 50px rgba(18, 201, 118, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Chakra Petch", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(900px 460px at 15% 5%, rgba(23, 245, 148, 0.19), transparent 65%),
    radial-gradient(900px 460px at 85% 85%, rgba(16, 210, 126, 0.16), transparent 65%),
    repeating-linear-gradient(0deg, transparent 0, transparent 61px, var(--line-soft) 61px, var(--line-soft) 62px),
    repeating-linear-gradient(90deg, transparent 0, transparent 61px, var(--line-soft) 61px, var(--line-soft) 62px),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, auto, 140px 140px, 140px 140px, auto;
}

a {
  color: #86ffc6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #86ffc6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 26px;
}

.topbar a {
  color: #d5ffe7;
  padding: 7px 11px;
  border: 1px solid rgba(134, 255, 198, 0.26);
  border-radius: 999px;
  background: rgba(8, 32, 25, 0.54);
}

.topbar a.topbar-cta {
  color: #032314;
  font-weight: 700;
  border-color: rgba(21, 245, 148, 0.75);
  background: linear-gradient(180deg, #62ffb8, #19d98b);
  box-shadow: 0 8px 20px rgba(21, 245, 148, 0.22);
}

.topbar a.topbar-bot-cta {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 10px 0 32px;
  min-height: 520px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "+";
  position: absolute;
  color: rgba(130, 255, 193, 0.42);
  font-size: 1.3rem;
  line-height: 1;
}

.hero::before {
  top: 4%;
  left: 1%;
}

.hero::after {
  right: 2%;
  bottom: 8%;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border: 1px solid rgba(21, 245, 148, 0.45);
  border-radius: 999px;
  background: rgba(11, 58, 41, 0.5);
  color: #7dffc8;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(19, 152, 98, 0.18);
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Orbitron", "Chakra Petch", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(35, 224, 135, 0.24);
}

h1 {
  margin: 6px 0 14px;
  font-size: 2rem;
  line-height: 1.15;
}

.hero p {
  margin: 0 0 18px;
  max-width: 46ch;
  color: var(--muted);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  max-width: 420px;
}

.mini-card {
  border: 1px solid rgba(79, 255, 180, 0.24);
  background: linear-gradient(160deg, rgba(12, 57, 39, 0.74), rgba(7, 30, 22, 0.65));
  border-radius: 12px;
  padding: 10px 12px;
}

.mini-card strong {
  display: block;
  color: #8affcc;
  font-weight: 700;
  font-family: "Orbitron", "Chakra Petch", sans-serif;
  letter-spacing: 0.03em;
}

.mini-card span {
  color: rgba(194, 231, 211, 0.8);
  font-size: 0.9rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 11px 17px;
  border-radius: 12px;
  border: 1px solid rgba(21, 245, 148, 0.4);
  background: linear-gradient(180deg, rgba(21, 245, 148, 0.2), rgba(12, 112, 72, 0.26));
  color: #eafff3;
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(21, 245, 148, 0.18);
  border-color: rgba(102, 255, 193, 0.7);
}

.btn:active {
  transform: translateY(0);
  box-shadow: inset 0 0 0 1px rgba(10, 38, 29, 0.8);
}

.btn:focus-visible {
  outline: 2px solid #66ffc1;
  outline-offset: 2px;
}

.btn[aria-disabled="true"],
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
  filter: saturate(0.4);
}

.btn-secondary {
  background: rgba(232, 255, 242, 0.95);
  color: #0b2a1c;
  border-color: rgba(232, 255, 242, 0.9);
}

.btn.btn-xl {
  padding: 13px 20px;
  font-size: 1.02rem;
}

.btn-telegram {
  border-color: rgba(140, 255, 206, 0.95);
  background: linear-gradient(180deg, #9bffd9, #3be39f);
  color: #032016;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(221, 255, 241, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(10, 92, 59, 0.28),
    0 0 0 1px rgba(157, 255, 215, 0.45),
    0 14px 34px rgba(17, 228, 134, 0.32);
  animation: cta-pulse 2.1s ease-in-out infinite;
}

.btn-telegram:visited {
  color: #032016;
}

.btn-telegram:hover {
  border-color: #d8ffef;
  box-shadow: 0 0 0 1px rgba(214, 255, 240, 0.72), 0 16px 40px rgba(22, 250, 149, 0.4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stat {
  min-width: 112px;
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #42ffac;
}

.hero-stat span {
  color: rgba(173, 222, 196, 0.75);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(21, 245, 148, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(9, 46, 31, 0.82), rgba(4, 17, 13, 0.9));
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40% -15% auto;
  height: 62%;
  background: radial-gradient(circle at center, rgba(83, 255, 185, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(21, 245, 148, 0.28);
}

.seo-keywords p {
  margin-top: 0;
  margin-bottom: 14px;
}

.keyword-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 12px;
}

.keyword-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(79, 255, 180, 0.22);
  background: linear-gradient(160deg, rgba(12, 57, 39, 0.56), rgba(7, 30, 22, 0.5));
  color: rgba(212, 241, 226, 0.9);
}

.keyword-list strong {
  font-size: 0.92rem;
  color: #dfffee;
  font-weight: 600;
}

.keyword-list span {
  white-space: nowrap;
  border-radius: 999px;
  padding: 2px 8px;
  border: 1px solid rgba(147, 255, 210, 0.35);
  background: rgba(24, 118, 80, 0.28);
  font-size: 0.77rem;
  color: #9bffd7;
}

.hero-badge {
  position: absolute;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(21, 245, 148, 0.5);
  background: rgba(6, 49, 34, 0.86);
  color: #c8ffe2;
  font-size: 0.8rem;
  line-height: 1.2;
  backdrop-filter: blur(2px);
}

.hero-badge-top {
  top: 14px;
  right: 14px;
}

.hero-badge-bottom {
  bottom: 14px;
  left: 14px;
}

h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-family: "Orbitron", "Chakra Petch", sans-serif;
  letter-spacing: 0.02em;
}

h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

p,
li,
td,
th {
  color: var(--muted);
}

.container > h1 {
  max-width: 20ch;
}

@media (min-width: 981px) {
  .container > h1 {
    max-width: none;
  }
}

.container > p {
  max-width: 78ch;
  font-size: 1.05rem;
}

.card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8, 33, 24, 0.8), rgba(7, 26, 20, 0.66));
  backdrop-filter: blur(1px);
  margin: 14px 0;
  box-shadow: var(--panel-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 255, 179, 0.45);
  box-shadow: 0 0 0 1px rgba(85, 255, 176, 0.24), 0 24px 40px rgba(0, 0, 0, 0.44), 0 0 60px rgba(18, 201, 118, 0.22);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature-grid {
  margin-bottom: 6px;
}

.timeline {
  position: relative;
  margin-top: 14px;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(72, 255, 176, 0.75), rgba(72, 255, 176, 0.1));
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7affc6;
  box-shadow: 0 0 14px rgba(122, 255, 198, 0.7);
}

.timeline-item h2 {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 0;
  padding: 2px 12px;
  border-radius: 999px;
  border: 1px solid rgba(105, 255, 191, 0.35);
  background: rgba(8, 42, 30, 0.72);
}

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

.faq-ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.faq-li {
  margin: 0;
}

.faq-item {
  border: 1px solid rgba(84, 255, 183, 0.26);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 34, 25, 0.82), rgba(6, 23, 17, 0.72));
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 16px;
  font-size: 1.24rem;
  font-weight: 700;
  color: #e4fff0;
  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #88ffcb;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  max-width: 72ch;
  font-size: 1.03rem;
}

.page-subtitle {
  max-width: 90ch;
  font-size: 1.12rem;
  color: rgba(200, 236, 216, 0.88);
}

.story-card {
  padding: 22px 20px;
}

.story-card p,
.story-card li {
  max-width: 86ch;
  font-size: 1.05rem;
  line-height: 1.72;
}

.story-media {
  margin: 14px 0 10px;
}

.story-media img {
  width: min(760px, 100%);
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: block;
}

.story-media figcaption {
  margin: 7px 2px 0;
  font-size: 0.94rem;
  color: rgba(194, 231, 211, 0.82);
}

.story-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 12px 0 8px;
}

.story-media-grid .story-media {
  margin: 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.evidence-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.evidence-item img.pricing-shot {
  width: min(420px, 100%);
}

.evidence-item p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.brand-logo {
  width: min(280px, 100%);
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.hero-cta {
  margin: 18px 0 26px;
  padding: 18px;
  border: 1px solid rgba(21, 245, 148, 0.45);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19, 177, 112, 0.23), rgba(8, 71, 45, 0.26));
}

.panel {
  position: relative;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(96, 255, 194, 0.1), transparent 55%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  margin: 30px 0 12px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  text-shadow: 0 0 18px rgba(35, 224, 135, 0.18);
}

.section-head p {
  margin: 8px auto 0;
  max-width: 660px;
  color: rgba(188, 225, 205, 0.82);
}

.section-head-tight {
  margin-top: 26px;
  margin-bottom: 4px;
}

.mobile-subscribe-cta {
  display: none;
}

@media (min-width: 641px) {
  body {
    padding-bottom: 104px;
  }

  body.long-read {
    padding-bottom: 0;
  }

  .mobile-subscribe-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(197, 255, 229, 0.86);
    background: linear-gradient(180deg, #9bffd8, #2de198);
    color: #032418;
    font-family: "Orbitron", "Chakra Petch", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    padding: 11px 16px;
    box-shadow: 0 0 0 1px rgba(173, 255, 221, 0.58), 0 12px 28px rgba(26, 225, 136, 0.33);
    transition: transform 120ms ease, box-shadow 120ms ease;
  }

  .mobile-subscribe-cta:hover {
    text-decoration: none;
    color: #032418;
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(216, 255, 238, 0.8), 0 16px 34px rgba(26, 225, 136, 0.42);
  }

  .mobile-subscribe-cta:visited {
    color: #032418;
  }

  body.long-read .mobile-subscribe-cta {
    display: none;
  }
}

.proof-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(66, 255, 170, 0.28);
  background: linear-gradient(180deg, rgba(7, 31, 23, 0.86), rgba(5, 20, 15, 0.82));
  margin: 12px 0 24px;
  box-shadow: var(--panel-shadow);
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 330px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(88, 255, 183, 0.5) rgba(5, 20, 15, 0.6);
  padding: 6px 2px 4px;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(5, 20, 15, 0.7);
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(88, 255, 183, 0.5);
  border-radius: 999px;
}

.proof-card {
  scroll-snap-align: start;
  border: 1px solid rgba(72, 255, 178, 0.24);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(10, 41, 29, 0.8), rgba(5, 23, 17, 0.76));
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(15, 167, 104, 0.08);
}

.proof-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(72, 255, 178, 0.2);
}

.proof-card p {
  margin: 0;
  padding: 12px 12px 14px;
  color: rgba(197, 232, 214, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

.carousel-btn {
  border: 1px solid rgba(94, 255, 187, 0.4);
  color: #d8ffe9;
  background: linear-gradient(180deg, rgba(23, 126, 84, 0.4), rgba(10, 57, 38, 0.5));
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Orbitron", "Chakra Petch", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(135, 255, 205, 0.8);
  box-shadow: 0 6px 18px rgba(21, 245, 148, 0.18);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.hero-cta h2 {
  margin: 0 0 8px;
}

.hero-cta p {
  margin: 10px 0 0;
  color: #dfffee;
}

.hero-cta .btn-telegram {
  margin-top: 2px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th,
td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  color: #daffe9;
  background: rgba(21, 245, 148, 0.12);
}

code,
pre {
  font-family: Consolas, "Courier New", monospace;
}

pre {
  margin: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px;
  overflow-x: auto;
  color: #c4e7ff;
}

.footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer-note {
  margin: 12px 0 0;
  max-width: 78ch;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(175, 213, 192, 0.72);
}

.footer-keywords {
  margin: 6px 0 0;
  max-width: 78ch;
  font-size: 0.74rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(153, 197, 174, 0.58);
}

.hero,
.hero-cta,
.section-head,
.card {
  animation: reveal-up 560ms ease both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(157, 255, 215, 0.45), 0 14px 34px rgba(17, 228, 134, 0.32);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(213, 255, 238, 0.8), 0 18px 42px rgba(44, 255, 165, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.9rem);
  }

  .hero-visual {
    max-width: 700px;
  }

  .section-head {
    text-align: left;
  }

  .section-head p {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    background-size: auto, auto, auto, auto, 88px 88px, 88px 88px, auto;
    padding-bottom: 92px;
  }

  .container {
    padding: 18px 14px 52px;
  }

  .topbar {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid rgba(86, 255, 183, 0.24);
    background: rgba(5, 18, 14, 0.88);
    backdrop-filter: blur(6px);
  }

  .topbar::-webkit-scrollbar {
    display: none;
  }

  .topbar a {
    flex: 0 0 auto;
    padding: 6px 11px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .topbar a.topbar-cta {
    display: none;
  }

  .topbar a.topbar-bot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    right: 0;
    z-index: 2;
    margin-left: auto;
    border: 1px solid rgba(197, 255, 229, 0.86);
    background: linear-gradient(180deg, #9bffd8, #2de198);
    color: #032418;
    font-family: "Orbitron", "Chakra Petch", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: -10px 0 14px rgba(5, 18, 14, 0.9), 0 0 0 1px rgba(173, 255, 221, 0.48);
  }

  .topbar a.topbar-bot-cta:hover,
  .topbar a.topbar-bot-cta:visited {
    color: #032418;
    text-decoration: none;
  }

  .card {
    padding: 14px;
    border-radius: 14px;
  }

  .card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.3;
  }

  .card p,
  .card li {
    font-size: 1rem;
    line-height: 1.62;
  }

  .card ul,
  .card ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.05rem;
  }

  .card li + li {
    margin-top: 4px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .keyword-list {
    grid-template-columns: 1fr;
  }

  .hero-stat strong {
    font-size: 1.15rem;
  }

  .proof-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .carousel-btn {
    width: 100%;
  }

  .carousel-track {
    grid-auto-columns: minmax(258px, 85vw);
  }

  .timeline {
    padding-left: 14px;
  }

  .timeline::before {
    left: 3px;
  }

  .timeline-item::before {
    left: -8px;
  }

  .faq-item summary {
    font-size: 1.05rem;
  }

  .mobile-subscribe-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 70;
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(197, 255, 229, 0.86);
    background: linear-gradient(180deg, #9bffd8, #2de198);
    color: #032418;
    font-family: "Orbitron", "Chakra Petch", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 13px 14px;
    box-shadow: 0 0 0 1px rgba(173, 255, 221, 0.6), 0 14px 32px rgba(26, 225, 136, 0.35);
  }

  .mobile-subscribe-cta:hover,
  .mobile-subscribe-cta:visited {
    color: #032418;
    text-decoration: none;
  }
}


