:root {
  --bg: #040806;
  --surface: #0a120d;
  --surface-strong: #0f1913;
  --surface-soft: #122019;
  --text: #eaf7ef;
  --muted: #9bb7a5;
  --line: #1d2b22;
  --primary: #20dd79;
  --primary-deep: #119457;
  --accent: #7df7b8;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(125, 247, 184, 0.16), 0 18px 34px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(19, 112, 62, 0.24) 0%, rgba(19, 112, 62, 0) 34%),
    radial-gradient(circle at 86% 12%, rgba(45, 220, 125, 0.14) 0%, rgba(45, 220, 125, 0) 30%),
    var(--bg);
  background-size: 24px 24px, 24px 24px, auto, auto, auto;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: #0f7a46;
  top: -120px;
  right: -100px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: #17be67;
  bottom: -80px;
  left: -100px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 10, 8, 0.95), rgba(5, 9, 7, 0.84));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(66, 112, 84, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  font-family: "Sora", sans-serif;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

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

.section {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
  padding: clamp(52px, 8vh, 96px) 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(76, 129, 97, 0.17);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding-top: clamp(38px, 6vh, 72px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 4.1rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
  margin: 18px 0 0;
}

.hero-note {
  margin: 12px 0 0;
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #d8ffe8;
  border: 1px solid rgba(116, 209, 154, 0.36);
  background: rgba(10, 35, 20, 0.6);
  border-radius: 999px;
  padding: 7px 12px;
}

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

.btn {
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  padding: 14px 22px;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-icon-stack {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-platform .btn-icon {
  width: 15px;
  height: 15px;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), #0db05f);
  color: #031108;
  box-shadow: 0 12px 24px rgba(32, 221, 121, 0.32);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(83, 138, 104, 0.4);
  background: rgba(15, 25, 19, 0.74);
}

.btn-small {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.topbar .btn-small {
  background: linear-gradient(140deg, #1ad172, #129d58);
  color: #04120a;
  border-color: rgba(55, 190, 110, 0.55);
  box-shadow: 0 10px 20px rgba(20, 147, 79, 0.28);
  min-height: 40px;
}

.topbar .btn-small:hover,
.topbar .btn-small:focus-visible {
  background: linear-gradient(140deg, #22db7b, #14ad61);
  color: #031008;
}

.hero .btn {
  padding: 15px 24px;
}

.hero-actions .hero-btn {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 58px;
  padding: 16px 18px;
  flex: 1 1 248px;
  justify-content: flex-start;
  border-width: 1px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.hero-actions .hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.hero-actions .hero-btn:hover::after {
  transform: translateX(120%);
}

.hero-actions .hero-btn .btn-icon {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.hero-actions .hero-btn span {
  font-size: 0.97rem;
}

.hero-actions .hero-btn-android {
  color: #052715;
  border-color: rgba(102, 211, 149, 0.72);
  background: linear-gradient(140deg, #6bffb5, #25df7f 55%, #14b965);
  box-shadow: 0 16px 30px rgba(24, 188, 105, 0.38);
}

.hero-actions .hero-btn-android .btn-icon {
  color: #0d5030;
  background: rgba(235, 255, 245, 0.7);
}

.hero-actions .hero-btn-windows {
  color: #e9f4ff;
  border-color: rgba(88, 146, 194, 0.58);
  background: linear-gradient(145deg, #1a2c3d, #172738 52%, #122233);
}

.hero-actions .hero-btn-windows .btn-icon {
  color: #8ac7ff;
  background: rgba(8, 18, 30, 0.66);
}

.hero-actions .hero-btn-premium {
  color: #ffe9bf;
  border-color: rgba(206, 160, 80, 0.62);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 221, 141, 0.18), rgba(255, 221, 141, 0) 40%),
    linear-gradient(145deg, #2c2011, #20170e 55%, #161109);
}

.hero-actions .hero-btn-premium .btn-icon {
  color: #ffc76f;
  background: rgba(37, 26, 12, 0.72);
}

.quick-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.quick-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--primary), var(--accent));
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #b7dec7;
  border: 1px solid rgba(102, 178, 132, 0.34);
  background: rgba(13, 26, 18, 0.66);
  border-radius: 999px;
  padding: 6px 10px;
}

.chip-icon {
  width: 14px;
  height: 14px;
  color: #89f5bd;
  flex: 0 0 auto;
}

.hero-panel {
  background: linear-gradient(170deg, rgba(14, 25, 19, 0.96), rgba(10, 16, 12, 0.92));
  border: 1px solid rgba(70, 120, 89, 0.3);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(144, 243, 187, 0.12);
  pointer-events: none;
}

.hero-gif-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  margin-left: 26px;
}

.hero-phone-frame {
  width: min(100%, 300px);
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  padding: 10px;
  background:
    radial-gradient(circle at 80% 14%, rgba(106, 255, 176, 0.2), rgba(106, 255, 176, 0) 45%),
    linear-gradient(155deg, #1a2e22, #0d1711 65%, #0a120d);
  border: 1px solid rgba(100, 172, 131, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
  position: relative;
  overflow: hidden;
}

.hero-phone-frame::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 12px;
  border-radius: 999px;
  background: rgba(6, 10, 8, 0.85);
  z-index: 2;
}

.hero-phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}

.hero-phone-badge {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  color: #d9ffe9;
  border: 1px solid rgba(123, 224, 169, 0.42);
  border-radius: 999px;
  background: rgba(7, 16, 11, 0.72);
  padding: 5px 9px;
}

.hero-app-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  border: 1px solid rgba(117, 201, 152, 0.26);
}

.hero-media-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-media-chip {
  font-size: 0.74rem;
  font-weight: 700;
  color: #bce8d0;
  border: 1px solid rgba(92, 160, 122, 0.36);
  border-radius: 999px;
  background: rgba(12, 24, 17, 0.72);
  padding: 6px 10px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  margin-bottom: 12px;
}

.status-live {
  color: #a6ffd0;
  background: rgba(45, 220, 125, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
}

.queue-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 12px 0 6px;
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #1f2c24;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0db05f, var(--primary));
}

.mini-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-cards article {
  background: var(--surface-strong);
  border-radius: 11px;
  border: 1px solid rgba(76, 116, 92, 0.28);
  padding: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-cards h3 {
  font-size: 0.8rem;
}

.mini-cards p {
  margin: 6px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.use-cases {
  padding-top: 24px;
}

.compare {
  padding-top: 30px;
}

.compare-intro {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(96, 170, 126, 0.38);
  background: rgba(13, 28, 19, 0.72);
  color: #c8e9d8;
  padding: 7px 11px;
  font-size: 0.77rem;
  font-weight: 700;
}

.compare-pill svg {
  width: 14px;
  height: 14px;
  color: #85efb8;
  flex: 0 0 auto;
}

.compare-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-slider {
  margin-top: 16px;
}

.compare-carousel-shell {
  position: relative;
}

.compare-nav-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(132, 223, 177, 0.56);
  background: rgba(7, 16, 11, 0.86);
  backdrop-filter: blur(4px);
  color: #e6fff1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.compare-nav-btn:hover,
.compare-nav-btn:focus-visible {
  border-color: rgba(164, 237, 196, 0.82);
  background: rgba(17, 38, 26, 0.95);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.compare-nav-btn svg {
  width: 20px;
  height: 20px;
}

.compare-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.compare-slide {
  display: block;
}

.compare-slide[hidden] {
  display: none;
}

.compare-card {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(84, 142, 109, 0.35);
  box-shadow: var(--glow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.compare-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 212, 163, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.compare-before {
  background: linear-gradient(160deg, rgba(36, 23, 18, 0.95), rgba(18, 11, 9, 0.95));
  border-color: rgba(176, 119, 92, 0.34);
}

.compare-after {
  background: linear-gradient(160deg, rgba(14, 26, 19, 0.96), rgba(9, 17, 12, 0.96));
}

.compare-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.compare-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.compare-before .compare-icon {
  color: #ffbf9f;
  border: 1px solid rgba(174, 106, 76, 0.4);
  background: rgba(45, 24, 16, 0.72);
}

.compare-after .compare-icon {
  color: #96f9c6;
  border: 1px solid rgba(101, 191, 140, 0.4);
  background: rgba(15, 40, 25, 0.74);
}

.compare-icon svg {
  width: 22px;
  height: 22px;
}

.compare-head h3 {
  margin: 0;
  font-size: 1.06rem;
}

.compare-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.compare-card audio {
  margin-top: 14px;
  width: 100%;
  filter: saturate(1.05);
}

.compare-points {
  margin: 14px 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 7px;
}

.compare-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cae8d8;
  font-weight: 600;
  font-size: 0.9rem;
}

.compare-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--primary), #95ffc8);
}

.compare-dots {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  gap: 10px;
}

.compare-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(143, 222, 176, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.compare-dot:hover,
.compare-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(143, 222, 176, 0.52);
}

.compare-dot.is-active {
  background: linear-gradient(135deg, #7df7b8, #20dd79);
  box-shadow: 0 0 0 2px rgba(90, 197, 138, 0.3);
}

.showcase {
  padding-top: 26px;
}

.showcase-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.showcase-card {
  background: linear-gradient(160deg, rgba(14, 24, 18, 0.95), rgba(8, 15, 11, 0.95));
  border: 1px solid rgba(79, 132, 102, 0.34);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.showcase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 209, 157, 0.48);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.showcase-card h3 {
  font-size: 1.04rem;
}

.showcase-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.showcase-card-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.showcase-media {
  border-radius: 14px;
  overflow: hidden;
}

.app-preview {
  background:
    radial-gradient(circle at 80% 0%, rgba(125, 247, 184, 0.2), rgba(125, 247, 184, 0) 45%),
    linear-gradient(165deg, #102119, #0a130f);
  border: 1px solid rgba(88, 156, 119, 0.3);
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.device-shell {
  width: min(360px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(100, 175, 131, 0.34);
  background: rgba(8, 19, 13, 0.9);
  padding: 14px;
}

.device-top {
  display: flex;
  gap: 6px;
}

.device-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(170, 255, 211, 0.56);
}

.device-wave {
  margin-top: 16px;
  border: 1px solid rgba(88, 156, 119, 0.3);
  background: linear-gradient(180deg, rgba(23, 53, 35, 0.64), rgba(8, 19, 13, 0.74));
  border-radius: 12px;
  padding: 14px 10px;
}

.device-wave svg {
  width: 100%;
  height: 84px;
  display: block;
}

.device-platforms {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.device-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(98, 172, 129, 0.4);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cdf8de;
  background: rgba(10, 31, 20, 0.7);
}

.showcase-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.showcase-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c4e7d4;
  font-weight: 600;
}

.showcase-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--primary), #95ffc8);
}

.image-frame {
  border: 1px solid rgba(96, 165, 125, 0.35);
  min-height: 220px;
  background: linear-gradient(165deg, #0f2118, #08130e);
  display: grid;
  place-items: center;
  padding: 18px;
}

.image-frame img {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

.compact-subtitle {
  margin-top: 12px;
  max-width: 62ch;
}

.modes-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mode-card {
  background: var(--surface-strong);
  border: 1px solid rgba(72, 115, 90, 0.3);
  border-radius: 16px;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mode-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mode-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.mode-card h3 {
  font-size: 1.05rem;
}

.mode-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.mode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 189, 140, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.mode-footnote {
  margin: 14px 0 0;
  color: #b5dbc4;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
}

.benefits-grid,
.features-grid,
.steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit,
.feature,
.step {
  background: linear-gradient(165deg, rgba(17, 29, 22, 0.92), rgba(11, 19, 14, 0.92));
  border: 1px solid rgba(72, 115, 90, 0.3);
  border-radius: 16px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit:hover,
.feature:hover,
.step:hover,
.offer-card:hover,
.mini-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 189, 140, 0.45);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.benefit p,
.feature p,
.step p,
.faq p,
.calc-result span {
  color: var(--muted);
  margin-top: 10px;
}

.benefit-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-head h3 {
  font-size: 1.03rem;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(108, 185, 140, 0.35);
  background: rgba(16, 35, 23, 0.72);
  color: #8df3be;
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
}

.benefit-speed .benefit-icon {
  color: #98ffc7;
  background: linear-gradient(150deg, rgba(28, 88, 56, 0.82), rgba(13, 29, 20, 0.82));
}

.benefit-audio .benefit-icon {
  color: #85d8ff;
  border-color: rgba(91, 157, 199, 0.4);
  background: linear-gradient(150deg, rgba(18, 49, 73, 0.82), rgba(12, 24, 38, 0.82));
}

.benefit-control .benefit-icon {
  color: #ffd48c;
  border-color: rgba(201, 154, 78, 0.4);
  background: linear-gradient(150deg, rgba(63, 44, 18, 0.82), rgba(34, 25, 11, 0.82));
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #1be275, #0d9d53);
  font-family: "Sora", sans-serif;
  color: #03230f;
  margin-bottom: 14px;
}

.calculator .calc-box {
  margin-top: 22px;
  background: linear-gradient(165deg, #101a14, #0a120d);
  border: 1px solid rgba(73, 117, 92, 0.3);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}

.calculator .calc-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(144, 243, 187, 0.09);
  pointer-events: none;
}

.calc-box label {
  display: block;
  font-weight: 700;
  margin-top: 8px;
}

.calc-box input[type="range"] {
  width: 100%;
  margin: 12px 0 16px;
  accent-color: var(--primary);
}

.calc-result {
  margin-top: 12px;
  border-top: 1px solid rgba(78, 121, 96, 0.3);
  padding-top: 14px;
}

.calc-result p {
  margin: 0;
}

.calc-result strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-family: "Sora", sans-serif;
  color: var(--primary-deep);
}

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

details {
  background: var(--surface-strong);
  border: 1px solid rgba(71, 114, 90, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-bottom: 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 14px;
}

.cta .cta-box {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.cta .cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(144, 243, 187, 0.12);
  pointer-events: none;
}

.cta .cta-box-primary {
  color: #fff;
  background:
    radial-gradient(circle at 95% 15%, rgba(111, 255, 178, 0.12), rgba(111, 255, 178, 0) 35%),
    linear-gradient(145deg, #0f1f16, #10281b 55%, #0a140f);
}

.cta .cta-box-secondary {
  color: var(--text);
  background: linear-gradient(160deg, #0e1712, #0a110d);
  border: 1px solid rgba(76, 129, 97, 0.36);
}

.cta h2 {
  margin-top: 10px;
}

.cta-note {
  margin: 12px 0 0;
  color: #b7dec7;
}

.offer-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offer-card {
  border: 1px solid rgba(116, 209, 154, 0.3);
  background: rgba(11, 29, 18, 0.72);
  border-radius: 12px;
  padding: 10px 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-card span {
  display: block;
  font-size: 0.76rem;
  color: #a6d5bb;
}

.offer-card strong {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
  color: #e8fff2;
  font-family: "Sora", sans-serif;
}

.cta-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-actions .btn {
  padding: 15px 24px;
  min-height: 50px;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.cta-points li {
  color: #b7dec7;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}

.cta-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--primary), #95ffc8);
}

.cta-lead-copy {
  color: var(--muted);
  margin: 12px 0 0;
}

.cta-form {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-form input {
  flex: 1 1 240px;
  border: 1px solid rgba(119, 232, 169, 0.35);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 0.95rem;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.cta-form .btn-primary {
  border: none;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--primary), #0cab5c);
  color: #031108;
}

.cta .cta-box-secondary small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.footer {
  text-align: center;
  padding: 24px 16px 34px;
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, var(--primary), #0ea356);
  border-radius: 999px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 30;
  box-shadow: 0 14px 26px rgba(32, 221, 121, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.thanks-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.thanks-shell {
  width: min(760px, 100%);
}

.thanks-card {
  background: linear-gradient(165deg, #101a14, #0a120d);
  border: 1px solid rgba(73, 117, 92, 0.32);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow);
}

.thanks-tag {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.thanks-title {
  margin-top: 10px;
}

.thanks-subtitle {
  margin-top: 14px;
  color: var(--muted);
}

.thanks-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.thanks-points li {
  color: #b7dec7;
  font-weight: 600;
}

.thanks-links {
  margin-top: 20px;
  color: var(--muted);
}

.thanks-links a {
  color: #b8ffd6;
}

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

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

  .hero-gif-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .modes-grid,
  .benefits-grid,
  .features-grid,
  .steps,
  .compare-grid,
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-card-wide {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 680px) {
  .section {
    width: min(1120px, 100% - 1.2rem);
  }

  .modes-grid,
  .benefits-grid,
  .features-grid,
  .steps,
  .mini-cards,
  .compare-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    text-align: center;
    justify-content: center;
  }

  .hero-actions .hero-btn {
    flex: 1 1 100%;
  }

  .hero-phone-frame {
    width: min(100%, 320px);
  }

  .compare-nav-btn {
    width: 42px;
    height: 42px;
  }

  .compare-controls {
    gap: 10px;
  }
}
