  :root {
    --brand: #18d4ff;
    --brand-hover: #10c3ea;
    --white: #ffffff;
    --charcoal: #333b3c;
    --charcoal-2: #1f2627;
    --light: #f3f8fa;
    --border: #dbecef;
    --text: #263133;
    --muted: #5f6b6d;
    --accent: #ffb703;
    --success: #0ea5b7;
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --max: 1180px;
    --section: 84px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

 body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #243234;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #162629;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.72;
  color: #586568;
}

section h2,
.section h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

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

  .container {
    width: min(92%, var(--max));
    margin: 0 auto;
  }

  .section {
    padding: var(--section) 0;
  }

  .section-light {
    background: var(--light);
  }

  .section-dark {
    background: var(--charcoal);
    color: var(--white);
  }

  h1,
  h2,
  h3 {
    margin: 0 0 16px;
    line-height: 1.15;
  }

  h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    max-width: 820px;
  }

  h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
  }

  h3 {
    font-size: 1.18rem;
  }

  .title-wrap {
    max-width: 780px;
    margin-bottom: 38px;
  }

  .subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
  }

  .section-dark .subtitle {
    color: rgba(255, 255, 255, 0.8);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    display: grid;
    gap: 24px;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  }

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

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .btn-primary {
    background: var(--brand);
    color: var(--charcoal-2);
    box-shadow: 0 8px 24px rgba(24, 212, 255, 0.35);
  }

  .btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(24, 212, 255, 0.45);
  }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(2px);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .btn-brand {
    background: var(--brand);
    color: var(--charcoal-2);
  }

  .btn-brand:hover {
    background: #0fc5ed;
    transform: translateY(-1px);
  }

/* FIX: keep white headings in dark sections */
.hero h1,
.hero h2,
.process-section h2,
.process-section h3,
.process-section h4 {
  color: #ffffff;
}

  /* ===== TOPBAR ===== */

  .topbar {
  background: #2b3233;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 6px 0;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.25;
}

  /* ===== HEADER ===== */

  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e6ecee;
    backdrop-filter: saturate(180%) blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5758;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.nav a {
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3d4647;
  transition: color 0.2s ease;
}

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

  .nav .btn-brand {
    min-height: auto;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(24, 212, 255, 0.35);
  }

  .nav .btn-brand:hover {
    box-shadow: 0 10px 22px rgba(24, 212, 255, 0.45);
  }

  .menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(22, 38, 41, 0.12);
    border-radius: 14px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease,
      background 0.22s ease;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 212, 255, 0.4);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #162629;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease,
      background 0.22s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
  }

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ===== CENTERED SECTION HEADERS ===== */

#benefits .title-wrap,
.section-light .title-wrap,
.process-section .title-wrap,
.reviews .title-wrap,
.faq-section .title-wrap {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#benefits h2,
#benefits .subtitle,
.section-light h2,
.section-light .subtitle,
.process-section h2,
.process-section .subtitle,
.reviews h2,
.reviews .subtitle,
.faq-section h2,
.faq-section .subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

  /* ===== HERO ===== */

.hero {
  position: relative;
  margin-top: 0;
  padding: 72px 0 88px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 18%,
      rgba(0, 0, 0, 0) 40%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    url("../images/hero/hero-ceramic-coating.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 22%
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(24, 212, 255, 0.16),
      transparent 45%
    );
  mix-blend-mode: screen;
  opacity: 0.32;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 430px);
  gap: 64px;
  align-items: center;
}

.hero > .container > .hero-grid > div:first-child {
  max-width: 760px;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(24, 212, 255, 0.14);
  border: 1px solid rgba(24, 212, 255, 0.28);
  color: #7fe8ff;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero p.lead {
  max-width: 690px;
  margin: 0 0 28px;
  font-size: 1.16rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(3px);
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.hero-points li:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-actions .btn {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 1.04rem;
  font-weight: 800;
}

.hero-actions .btn-primary {
  min-width: 248px;
}

.hero-actions .btn-secondary {
  min-width: 136px;
}

.hero-note {
  max-width: 640px;
  font-size: 0.97rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  background-size: cover;
  background-position: center;
}

.offer-card {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  padding: 34px 28px 28px;
  text-align: center;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #f8fcfd 100%);
  border: 1px solid rgba(24, 212, 255, 0.16);
  border-radius: 22px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(24, 212, 255, 0.12);
  border: 1px solid rgba(24, 212, 255, 0.2);
  color: #0899b8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card h2 {
  max-width: 320px;
  margin: 0 auto 14px;
  color: var(--charcoal);
  font-size: 2.05rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.offer-intro {
  max-width: 320px;
  margin: 0 auto 22px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #586568;
}

.price-row {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

.price-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 22px;
  text-align: center;
  background: var(--brand);
  border: 1px solid rgba(24, 212, 255, 0.6);
  border-radius: 16px;
  box-shadow:
    0 16px 34px rgba(0,0,0,0.12),
    inset 0 2px 0 rgba(255,255,255,0.15);
}

.price-box strong {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: auto;
}

.price-box .old {
  display: block;
  margin: 0;
  color: rgba(0,0,0,0.72);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(0,0,0,0.78);
  opacity: 0.85;
}

.price-box .new {
  color: #ffffff;
  font-size: 3.4rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-save {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #0f2530;
  text-transform: uppercase;
}

.price-box {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.price-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.18),
    0 12px 28px rgba(0,0,0,0.10),
    0 0 0 1px rgba(24, 212, 255, 0.35),
    0 0 22px rgba(24, 212, 255, 0.25),
    inset 0 2px 0 rgba(255,255,255,0.18);
  border-color: rgba(24, 212, 255, 0.9);
}


.offer-includes {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid #e3eef1;
  text-align: left;
}

.offer-includes-title {
  margin-bottom: 12px;
  color: #243234;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: left;
  color: #334042;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #11b7d8;
  font-weight: 900;
}

.offer-footnote {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef4f6;
  font-size: 0.87rem;
  line-height: 1.55;
  color: #667476;
}

@media (min-width: 900px) {
  .price-box .new {
    font-size: 3.8rem;
  }
}

@media (max-width: 640px) {
  .offer-card {
    padding: 30px 22px 24px;
    border-radius: 20px;
  }

  .offer-card h2 {
    font-size: 1.8rem;
  }

  .price-line {
    gap: 4px;
  }

  .price-box .old {
    font-size: 1rem;
  }

  .price-box .new {
    font-size: 1.9rem;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero > .container > .hero-grid > div:first-child {
    max-width: 100%;
  }

  .offer-card {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 56px 0 68px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .hero p.lead {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-points li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

 /* ===== BENEFITS ===== */

#benefits {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}

#benefits::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), transparent);
  pointer-events: none;
}

#benefits .title-wrap {
  max-width: 900px;
  margin-bottom: 38px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#benefits h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.7vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
}

#benefits .subtitle {
  max-width: 820px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #000000;
  text-align: center;
}

#benefits .grid-3 {
  gap: 24px;
}

#benefits .card {
  min-height: 248px;
  padding: 30px 24px 28px;
  border: 1px solid rgba(24,212,255,0.55);
  border-radius: 20px;
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-align: center;
}

#benefits .card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255,255,255,0.6);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.12) inset;
}

#benefits .icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: #ffffff;
  color: #000000;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 14px 28px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#benefits .card:hover .icon {
  transform: translateY(-3px);
  box-shadow:
    0 20px 36px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

#benefits .card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  text-align: center;
  color: #ffffff;
}

#benefits .card p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #000000;
  text-align: center;
}

/* ===== INCLUDED PACKAGE ===== */

.included-section {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.included-item {
  padding: 26px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e3eef1;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.included-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.included-item h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #1e2b2e;
}

.included-item p {
  margin: 0;
  color: #5f6b6d;
  line-height: 1.7;
}

.included-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

  /* ===== WHAT'S INCLUDED ===== */

  .section-light .title-wrap {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .section-light h2 {
    max-width: 720px;
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 3.3vw, 2.95rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .section-light .subtitle {
    max-width: 700px;
    font-size: 1.06rem;
    line-height: 1.7;
    color: #5f6b6d;
  }

  .benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .benefits li {
    position: relative;
    padding: 18px 20px 18px 52px;
    border: 1px solid #d6e6ea;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 800;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }

  .benefits li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(24, 212, 255, 0.14);
    color: #159fbe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .benefits li:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 212, 255, 0.34);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  }

 /* ===== PROCESS ===== */

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(24, 212, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #333b3c 0%, #1f2627 100%);
}

.process-section .title-wrap {
  max-width: 860px;
  margin-bottom: 46px;
}

.process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.process-section .step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #2e3536;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  text-align: left;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.process-section .step:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 212, 255, 0.24);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(24, 212, 255, 0.08) inset;
}

.process-section .step-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #202728;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.process-section .step-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.process-section .step-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.1) 34%,
    transparent 72%
  );
  z-index: 1;
  pointer-events: none;
}

.process-section .step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.process-section .step:hover .step-image {
  transform: scale(1.045);
}

.process-section .step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #18d4ff 0%, #10c3ea 100%);
  color: #0f1b1e;
  font-size: 1rem;
  font-weight: 900;
  box-shadow:
    0 12px 24px rgba(24, 212, 255, 0.32),
    0 0 0 4px rgba(255, 255, 255, 0.12);
}

.process-section .step-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 26px;
}

.process-section .step h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.32rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.process-section .step h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, #18d4ff, transparent);
  border-radius: 2px;
}

.process-section .step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.78;
}

.process-section .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.process-section .trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.97rem;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
  /* ===== BEFORE / AFTER ===== */

  .before-after-section {
    padding: 110px 20px 105px;
    background:
      radial-gradient(circle at top right, rgba(24, 212, 255, 0.05), transparent 22%),
      linear-gradient(180deg, #f7f8f8 0%, #eef2f2 100%);
  }

  .before-after-section .container {
    max-width: 1280px;
  }

  .before-after-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 46px;
  }

  .before-after-section h2 {
    margin-bottom: 18px;
    color: #263032;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .before-after-section .subtitle {
    max-width: 780px;
    margin: 0 auto;
    color: #617073;
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .before-after-slider-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }

  .before-after-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(31, 38, 39, 0.08);
    box-shadow:
      0 22px 52px rgba(31, 38, 39, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.85) inset;
    background: #d9dfe0;
    aspect-ratio: 4 / 3;
    user-select: none;
    cursor: ew-resize;
  }

  .slider-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .before-image,
  .after-image {
    position: absolute;
    inset: 0;
  }

  .after-image-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    right: 0;
    left: auto;
  }

  .slider-label {
    position: absolute;
    top: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }

  .before-label {
    left: 18px;
    background: rgba(31, 38, 39, 0.92);
    color: #ffffff;
  }

  .after-label {
    right: 18px;
    background: linear-gradient(180deg, #18d4ff 0%, #10c3ea 100%);
    color: #0e1a1d;
  }

  .slider-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 4;
    width: 2px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.15),
      0 0 18px rgba(24, 212, 255, 0.35),
      0 0 35px rgba(24, 212, 255, 0.18);
  }

  .slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg, #18d4ff, #0fb6d3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0b1a1d;
    cursor: ew-resize;
    box-shadow:
      0 15px 40px rgba(24, 212, 255, 0.45),
      0 0 0 6px rgba(255,255,255,0.35),
      inset 0 1px 0 rgba(255,255,255,0.7);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
      0 20px 55px rgba(24, 212, 255, 0.6),
      0 0 0 6px rgba(255,255,255,0.45);
  }

  .before-after-note {
    margin-top: 18px;
    text-align: center;
    color: #5e6a6c;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  /* ===== PRICING ===== */

  ```css
.pricing-section {
  position: relative;
  padding-top: 72px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top left, rgba(24, 212, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f9fa 0%, #edf2f4 100%);
}

.pricing-section .title-wrap {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.pricing-section .title-wrap h2 {
  margin-bottom: 14px;
}

.pricing-section .subtitle {
  color: #526063;
}

.pricing-section {
  padding-top: 72px;
  padding-bottom: 56px; /* 👈 controls the gap below */
}

.pricing-highlight {
  max-width: 780px;
  margin: 0 auto 34px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 212, 255, 0.14), rgba(255,255,255,0.95));
  border: 1px solid rgba(24, 212, 255, 0.18);
  text-align: center;
  box-shadow: 0 16px 34px rgba(27, 45, 50, 0.08);
}

.pricing-highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #18d4ff;
  color: #102023;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(24, 212, 255, 0.25);
}

.pricing-highlight p {
  margin: 0;
  color: #2a3739;
  font-weight: 600;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(31, 49, 53, 0.08);
  box-shadow:
    0 28px 70px rgba(10, 25, 28, 0.16),
    0 3px 0 rgba(255,255,255,0.9) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 40px 90px rgba(10, 25, 28, 0.22),
    0 1px 0 rgba(255,255,255,0.95) inset;
}

.price-card.featured {
  border-color: rgba(24, 212, 255, 0.32);
  box-shadow:
    0 26px 65px rgba(13, 31, 36, 0.14),
    0 0 0 1px rgba(24, 212, 255, 0.08) inset;
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: #18d4ff;
  color: #102023;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(24, 212, 255, 0.25);
}

.price-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce6ea;
}

.price-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.price-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.price-card:hover .price-card-image {
  transform: scale(1.04);
}

.price-card-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #162629;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.price-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 26px 28px;
}

.price-card-body h3 {
  margin: 0 0 12px;
  color: #1d2b2e;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.price-card-text {
  margin: 0 0 20px;
  color: #556568;
  line-height: 1.78;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbfc 0%, #eef6f8 100%);
  border: 1px solid rgba(24, 212, 255, 0.16);
  text-align: center;
}

.price-old {
  margin-bottom: 6px;
  color: #667679;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
}

.price-old span {
  margin-left: 6px;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-now {
  margin-bottom: 4px;
  text-align: center;
}

.price-label {
  display: block;
  margin-bottom: 4px;
  color: #0ea5b7;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  text-align: center;
}

.price-now strong {
  color: #0f1f23;
  font-size: clamp(3rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-save {
  margin-top: 4px;
  color: #0b3d5c;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.price-features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #39484b;
  line-height: 1.7;
}

.price-features li:last-child {
  margin-bottom: 0;
}

.price-features li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #18d4ff;
  box-shadow: 0 0 0 5px rgba(24, 212, 255, 0.14);
}

.price-btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.pricing-note p {
  margin: 0;
  color: #6a7a7d;
  font-size: 0.95rem;
  line-height: 1.7;
}
```


/* ===== REVIEWS ===== */

.reviews {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(24, 212, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.reviews .title-wrap {
  max-width: 780px;
  margin-bottom: 40px;
}

.reviews h2 {
  margin-bottom: 16px;
  color: #263032;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.reviews .subtitle {
  max-width: 760px;
  color: #617073;
  font-size: 1.08rem;
  line-height: 1.75;
}

.reviews .grid-3 {
  gap: 22px;
  align-items: stretch;
}

.reviews .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px 26px;
  border: 1px solid rgba(31, 38, 39, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
  box-shadow:
    0 16px 34px rgba(31, 38, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.reviews .card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 212, 255, 0.24);
  box-shadow:
    0 22px 42px rgba(31, 38, 39, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #18d4ff 0%, #10c3ea 100%);
  color: #102023;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 22px rgba(24, 212, 255, 0.25),
    0 0 0 4px rgba(24, 212, 255, 0.08);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.review-name {
  color: #263133;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.review-source {
  color: #738184;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews .stars {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffb703;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 8px rgba(255, 183, 3, 0.18);
}

.reviews .card p {
  margin: 0;
  color: #526063;
  font-size: 1.02rem;
  line-height: 1.82;
}

.reviews {
  padding-top: 44px;
}

@media (max-width: 900px) {
  .reviews .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reviews .card {
    padding: 24px 20px 22px;
  }

  .reviews h2 {
    font-size: 1.95rem;
  }

  .reviews .subtitle,
  .reviews .card p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .reviews .stars {
    font-size: 1.05rem;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  .review-name {
    font-size: 0.93rem;
  }

  .review-source {
    font-size: 0.78rem;
  }
}

  /* ===== FAQ ===== */

  .faq-section {
  padding: 110px 20px 105px;
  background: linear-gradient(180deg, #e8eff2 0%, #dce7eb 100%);
}

  .faq-section .container {
    max-width: 1280px;
  }

  .faq-section .title-wrap {
    margin-bottom: 42px;
  }

  .faq-section h2 {
    margin: 0 0 18px;
    color: #263032;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .faq-section .subtitle {
    max-width: 780px;
    margin: 0;
    color: #617073;
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .faq-section .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: stretch;
  }

  .faq-section .grid-2 > * {
    position: relative;
    padding: 30px 26px 24px;
    background: #ffffff;
    border: 1px solid rgba(31, 38, 39, 0.08);
    border-radius: 20px;
    box-shadow:
      0 14px 32px rgba(31, 38, 39, 0.06),
      0 1px 0 rgba(255, 255, 255, 0.82) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .faq-section .grid-2 > *:hover {
    transform: translateY(-3px);
    box-shadow:
      0 18px 38px rgba(31, 38, 39, 0.09),
      0 1px 0 rgba(255, 255, 255, 0.86) inset;
  }

  .faq-section .grid-2 > *::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    width: 58px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #18d4ff 0%, #10c3ea 100%);
  }

  .faq-section .grid-2 > * h3,
  .faq-section .grid-2 > * strong {
    display: block;
    margin: 0 0 14px;
    color: #2b3436;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.015em;
    font-weight: 800;
  }

  .faq-section .grid-2 > * p {
    margin: 0;
    color: #5d696b;
    font-size: 1.03rem;
    line-height: 1.85;
  }

  /* ===== FINAL CTA ===== */

  .section.final-cta {
    padding: 120px 20px 110px;
    background: linear-gradient(180deg, #2f3738 0%, #1f2627 100%);
  }

  .section.final-cta .container {
    max-width: 1100px;
  }

  .section.final-cta .cta-box {
    padding: 70px 60px;
    text-align: center;
    background: linear-gradient(145deg, #2e3637 0%, #1c2324 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.35),
      0 1px 0 rgba(255, 255, 255, 0.06) inset;
  }

  .section.final-cta h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .section.final-cta p {
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.85;
  }

  .section.final-cta .btn-primary {
    padding: 17px 36px;
    background: linear-gradient(180deg, #18d4ff 0%, #10c3ea 100%);
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow:
      0 16px 36px rgba(24, 212, 255, 0.35),
      0 0 0 rgba(24, 212, 255, 0);
  }

  .section.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 22px 46px rgba(24, 212, 255, 0.45),
      0 0 24px rgba(24, 212, 255, 0.25);
  }

  .section.final-cta .cta-small {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
  }

  /* ===== FOOTER ===== */

  .footer {
    position: relative;
    padding: 28px 0 30px;
    background: linear-gradient(180deg, #0d1516 0%, #081012 100%);
    border-top: 1px solid rgba(24, 212, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      rgba(24, 212, 255, 0) 0%,
      rgba(24, 212, 255, 0.22) 50%,
      rgba(24, 212, 255, 0) 100%
    );
    pointer-events: none;
  }

  .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .footer p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .footer strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
  }

  .footer-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
    transition:
      color 0.25s ease,
      transform 0.25s ease,
      opacity 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease;
  }

  .footer-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
  }

  .footer-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: rgba(24, 212, 255, 0.85);
    transition: width 0.25s ease;
  }

  .footer-links a:not(:last-child):hover::after {
    width: 100%;
  }

  .footer-links a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    background: rgba(24, 212, 255, 0.1);
    border: 1px solid rgba(24, 212, 255, 0.28);
    border-radius: 999px;
    color: #18d4ff;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  }

  .footer-links a:last-child:hover {
    background: rgba(24, 212, 255, 0.16);
    border-color: rgba(24, 212, 255, 0.45);
    color: #ffffff;
  }

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

  .back-to-top {
    position: fixed;
    right: 14px;
    bottom: 88px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #162629;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease,
      background 0.22s ease;
  }

  .back-to-top:hover {
    background: #0f1f23;
    transform: translateY(0);
  }

  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */

  @media (min-width: 1400px) {
    .hero-grid {
      grid-template-columns: minmax(0, 1.12fr) 430px;
      gap: 72px;
    }

    .hero h1 {
      max-width: 740px;
    }


  }

  @media (max-width: 1100px) {
    .hero .container,
    #benefits .title-wrap,
    #benefits .subtitle,
    .section-light .title-wrap,
    .section-light h2,
    .section-light .subtitle {
      max-width: 100%;
    }

    .hero-grid,
    #benefits .grid-3,
    .process-section .process-steps,
    .process-section .trust-strip {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .hero > .container > .hero-grid > div:first-child,
    .hero h1,
    .hero p.lead,
    .hero-note,
    .hero-points,
    .offer-card {
      max-width: 100%;
    }

    .offer-card {
      margin-left: 0;
    }

.process-section .process-steps,
.process-section .trust-strip {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
  }

  @media (max-width: 980px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 900px) {
    .header-inner {
      flex-direction: column;
      align-items: stretch;
      padding: 12px 0;
    }

    .logo img {
      height: 42px;
    }

    .nav {
      justify-content: center;
      gap: 16px;
    }

    .hero,
    .section,
    #benefits {
      padding-top: 72px;
      padding-bottom: 72px;
    }

    .grid-2,
    .grid-3,
    .benefits,
    .faq-section .grid-2 {
      grid-template-columns: 1fr;
    }

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

    .footer-grid {
      display: grid;
      align-items: start;
    }
  }

  @media (max-width: 640px) {
    .topbar {
      font-size: 0.88rem;
    }

    .topbar {
     padding: 4px 0;
}

    .topbar-inner {
     flex-direction: column;
     gap: 2px;
     line-height: 1.15;
}

    .topbar-inner span {
     display: block;
     margin: 0;
}

    .header {
      position: sticky;
      top: 0;
    }

    .header-inner {
      min-height: auto;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
    }

    .logo {
      justify-content: flex-start;
    }

    .logo img {
      height: 52px;
    }

    .logo-text {
      display: none;
    }

    .nav {
      display: none;
    }

    .menu-toggle {
      display: inline-flex;
    }

    .mobile-menu {
      display: none;
      width: 100%;
      margin-top: 12px;
      padding: 14px;
      border: 1px solid #e4edef;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu.is-open {
      display: grid;
      gap: 10px;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 16px;
      border-radius: 14px;
      font-size: 0.96rem;
      font-weight: 700;
      color: #243234;
      background: #f5fafb;
      border: 1px solid #e1edf0;
    }

    .mobile-menu .btn-brand {
      min-height: 50px;
      background: var(--brand);
      color: var(--charcoal-2);
      border: 0;
    }

    .hero {
      padding: 52px 0 72px;
      background-position: center center;
    }

/* ===== HERO CENTER (MOBILE ONLY) ===== */

.hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .eyebrow,
.hero h1,
.hero p.lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Center pills */
.hero-points {
  justify-content: center;
}

.hero-points li {
  text-align: center;
}

/* Prevent weird width when centered */
.hero h1,
.hero p.lead {
  max-width: 100%;
}

    .hero .eyebrow {
      font-size: 0.84rem;
      padding: 9px 14px;
      margin-bottom: 18px;
    }

    .hero h1 {
      max-width: 100%;
      font-size: 2.45rem;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }

    .hero p.lead {
      font-size: 1.04rem;
      line-height: 1.68;
    }

    .hero-points {
      gap: 10px;
      margin-bottom: 24px;
    }

    .hero-points li {
      width: auto;
      min-width: 0;
      font-size: 0.92rem;
    }

    .hero-actions {
      flex-direction: column;
      gap: 12px;
    }

    .hero-actions .btn,
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .btn {
      width: 100%;
      min-width: 0;
    }

    .hero-note {
      font-size: 0.93rem;
      line-height: 1.6;
    }

    .offer-card {
      padding: 28px 20px 30px;
    }

    .offer-card h2 {
      max-width: 100%;
      font-size: 1.9rem;
    }

    .offer-card p {
      max-width: 100%;
    }

    .price-box {
      padding: 20px 16px;
    }

    .new {
      font-size: 2.1rem;
    }

    .price-box .new {
     font-size: 2.8rem;
}

    .price-line {
     gap: 10px;
}

    .price-box .old {
    font-size: 1.1rem;
}

    .offer-list li {
      font-size: 0.95rem;
    }

    #benefits h2,
    .section-light h2 {
      font-size: 1.85rem;
    }

    #benefits .subtitle {
      font-size: 1.02rem;
      line-height: 1.65;
    }

    #benefits .card {
      min-height: auto;
      padding: 24px 20px;
    }

    #benefits .card h3 {
      font-size: 1.3rem;
    }

    #benefits .card p,
    .section-light .subtitle {
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .benefits li {
      padding: 18px 18px 18px 52px;
      font-size: 1rem;
    }

    .benefits li::before {
      left: 18px;
    }

    .card,
    .faq-item,
    .step {
      padding: 22px 18px;
    }

    .process-section .process-steps,
.process-section .trust-strip {
  grid-template-columns: 1fr;
}

.process-section .step-content {
  padding: 20px 18px 22px;
}

.process-section .step h3 {
  font-size: 1.2rem;
}

.process-section .step p {
  font-size: 0.96rem;
  line-height: 1.72;
}

    .before-after-section {
      padding: 82px 20px 78px;
    }

    .slider-label {
      top: 14px;
      min-width: 76px;
      height: 32px;
      padding: 0 14px;
      font-size: 0.76rem;
    }

    .slider-handle {
      width: 52px;
      height: 52px;
      font-size: 1.05rem;
    }

    .before-after-note {
      font-size: 0.93rem;
    }

    .price-card-body {
      padding: 24px 20px 24px;
    }

    .price-card-body h3 {
      font-size: 1.45rem;
    }

    .price-now {
      align-items: flex-start;
      flex-direction: column;
    }

    .price-now strong {
      font-size: 2.4rem;
    }

.price-box .save {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
    .section.final-cta .cta-box {
      padding: 42px 22px;
    }

    .section.final-cta h2 {
      font-size: 2rem;
    }

    .section.final-cta p {
      font-size: 1rem;
      line-height: 1.7;
    }

    .footer-links {
      gap: 18px;
    }

    .mobile-sticky-cta {
      display: block;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 999;
    }

    .mobile-sticky-cta a {
      width: 100%;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    }

    .back-to-top {
      right: 12px;
      bottom: 92px;
      width: 46px;
      height: 46px;
    }

    body {
      padding-bottom: 84px;
    }
  }

/* ===== HERO PRICE CARDS MOBILE FIX ===== */
@media (max-width: 640px) {
  .hero-grid > div:first-child {
    width: 100%;
  }

  .hero-price-row {
    width: 100%;
    max-width: 460px;
    align-self: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
  }

  .hero-price-row .price-box {
    width: 100%;
    min-width: 0;
    padding: 18px 12px;
    border-radius: 18px;
  }

  .hero-price-row .price-box strong {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .hero-price-row .price-box .old {
    font-size: 1rem;
  }

  .hero-price-row .price-box .new {
    font-size: 2.5rem;
    line-height: 0.95;
  }
}

@media (max-width: 380px) {
  .hero-price-row {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ===== HERO POLISH BLOCK (FINAL) ===== */

/* --- Base hero layout cleanup --- */
.hero {
  padding: 72px 0 88px;
}

.hero .container {
  max-width: 1280px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
}

.hero > .container > .hero-grid > div:first-child {
  max-width: 640px;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 4.8vw, 4.55rem);
  line-height: 1.01;
}

.hero p.lead {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.68;
}

.hero-note {
  max-width: 560px;
  font-size: 0.94rem;
  line-height: 1.55;
}

/* --- Hero pricing row: desktop polished --- */
.hero-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 18px;
  justify-content: start;
  align-items: stretch;
  max-width: 520px;
  margin: 0 0 20px;
}

.hero-price-row .price-box {
  min-height: 0;
  padding: 18px 16px 16px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 28px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.hero-price-row .price-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.hero-price-row .price-line {
  gap: 4px;
}

.hero-price-row .price-box .old {
  font-size: 0.98rem;
  line-height: 1;
  text-decoration-thickness: 2px;
}

.hero-price-row .price-box .new {
  font-size: 3.25rem;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-price-row .price-save {
  display: none;
}

/* --- Hero pills under pricing --- */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin: 0 0 26px;
}

.hero-points li {
  padding: 10px 14px;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* --- CTA row cleanup --- */
.hero-actions {
  gap: 14px;
  margin-bottom: 14px;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 15px 24px;
  font-size: 1rem;
}

.hero-actions .btn-primary {
  min-width: 230px;
}

.hero-actions .btn-secondary {
  min-width: 150px;
}

/* --- Right-side offer card polish --- */
.offer-card {
  max-width: 390px;
  margin-left: auto;
  padding: 28px 24px 24px;
  border-radius: 22px;
}

.offer-card h2 {
  max-width: 280px;
  margin: 0 auto 12px;
  font-size: 1.9rem;
  line-height: 1.04;
}

.offer-intro {
  max-width: 290px;
  margin: 0 auto 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.offer-includes {
  padding-top: 16px;
}

.offer-includes-title {
  margin-bottom: 10px;
  font-size: 0.84rem;
}

.offer-list li {
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 0.93rem;
  line-height: 1.4;
}

.offer-card .btn,
.offer-card .btn-primary {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 0.96rem;
}

/* --- Large tablet / small desktop --- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero > .container > .hero-grid > div:first-child,
  .hero h1,
  .hero p.lead,
  .hero-note,
  .hero-points,
  .hero-price-row,
  .offer-card {
    max-width: 100%;
  }

  .hero-price-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 540px;
  }

  .offer-card {
    margin: 0 auto;
  }
}

/* --- Mobile polish --- */
@media (max-width: 640px) {
  .hero {
    padding: 52px 0 72px;
    background-position: center center;
  }

  .hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero .eyebrow,
  .hero h1,
  .hero p.lead,
  .hero-note {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.04;
    max-width: 100%;
  }

  .hero p.lead {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .hero-price-row {
    width: 100%;
    max-width: 460px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
    align-self: stretch;
  }

  .hero-price-row .price-box {
    width: 100%;
    padding: 18px 12px 16px;
    border-radius: 18px;
  }

  .hero-price-row .price-box strong {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }

  .hero-price-row .price-box .old {
    font-size: 0.98rem;
  }

  .hero-price-row .price-box .new {
    font-size: 2.65rem;
    line-height: 0.94;
  }

  .hero-points {
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-points li {
    text-align: center;
    width: auto;
    font-size: 0.9rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .offer-card {
    padding: 26px 20px 22px;
    max-width: 100%;
  }

  .offer-card h2 {
    max-width: 100%;
    font-size: 1.8rem;
  }

  .offer-intro {
    max-width: 100%;
    font-size: 0.94rem;
  }
}

/* --- Extra small phones --- */
@media (max-width: 380px) {
  .hero-price-row {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .hero-price-row .price-box .new {
    font-size: 2.45rem;
  }
}

/* ===== FINAL HERO RESET + MOCKUP LAYOUT ===== */

/* neutralize old hero layout constraints */
.hero > .container > .hero-grid > div:first-child,
.hero-grid > div:first-child {
  max-width: none;
}

.hero-top,
.hero-bottom-row,
.hero-left-stack,
.hero-offer-action {
  position: relative;
  z-index: 2;
}

.hero-top {
  max-width: 1100px;
  margin: 0 auto 26px;
  text-align: center;
}

.hero-top .eyebrow,
.hero-top h1,
.hero-top .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-top h1 {
  max-width: 1080px;
}

.hero-top .lead {
  max-width: 900px;
}

.hero-bottom-row {
  display: grid;
  grid-template-columns: 520px 420px;
  justify-content: center;
  align-items: start;
  gap: 34px;
  margin-top: 8px;
}

.hero-left-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-left-stack .hero-price-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 460px;
  margin: 0 0 14px;
}

.hero-left-stack .hero-price-row .price-box {
  padding: 16px 14px 14px;
  border-radius: 16px;
  min-height: 0;
}

.hero-left-stack .hero-price-row .price-box strong {
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.hero-left-stack .hero-price-row .price-box .old {
  font-size: 0.95rem;
  line-height: 1;
  text-decoration-thickness: 2px;
}

.hero-left-stack .hero-price-row .price-box .new {
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-left-stack .price-save {
  display: none;
}

.hero-left-stack .hero-points {
  justify-content: center;
  gap: 10px;
  max-width: 460px;
  margin: 0 0 16px;
}

.hero-left-stack .hero-points li {
  padding: 9px 13px;
  font-size: 0.83rem;
  line-height: 1.15;
  width: auto;
}

.hero-left-stack .hero-actions {
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-left-stack .hero-actions .btn-primary {
  min-width: 250px;
}

.hero-left-stack .hero-actions .btn-secondary {
  min-width: 145px;
}

.hero-left-stack .hero-note {
  max-width: 460px;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
}

.offer-card {
  max-width: 420px;
  margin: 0;
  padding: 26px 22px 22px;
}

.offer-card h2 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.offer-intro {
  font-size: 0.93rem;
  line-height: 1.55;
}

.hero-offer-action {
  margin-top: 18px;
  text-align: center;
}

.hero-offer-action .btn {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 0.96rem;
}

/* desktop */
@media (min-width: 1101px) {
  .hero-grid {
    display: block;
  }

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

  .hero-top h1 {
    font-size: clamp(4rem, 5.5vw, 5.6rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
  }

  .hero-top .lead {
    font-size: 1.08rem;
    line-height: 1.45;
    margin-bottom: 0;
  }
}

/* tablet + mobile */
@media (max-width: 1100px) {
  .hero-bottom-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .offer-card {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-bottom-row {
    gap: 22px;
  }

  .hero-left-stack .hero-price-row {
    max-width: 460px;
    gap: 12px;
  }

  .hero-left-stack .hero-price-row .price-box .new {
    font-size: 2.65rem;
  }
}

@media (max-width: 380px) {
  .hero-left-stack .hero-price-row {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ===== FINAL HERO TEXT WIDTH + CENTER FIX ===== */

@media (min-width: 1101px) {
  .hero-top {
    max-width: 1280px;
    margin: 0 auto 26px;
    text-align: center;
  }

  .hero-top h1 {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto 14px;
    font-size: clamp(4.1rem, 5.4vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-align: center;
  }

  .hero-top .lead {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.45;
  }
}
@media (min-width: 1101px) {
  .hero p.lead,
  .hero-top p.lead {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}