/* Dhanzo GST landing — styles (extracted from index.html) */
/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --ink: #0a0f1e;
  --ink-2: #1f2a44;
  --muted: #5a6478;
  --muted-2: #8892a6;
  --muted-3: #b7bfce;
  --line: #e8ecf2;
  --line-soft: #f1f4f9;

  --brand: #0976fc;
  --brand-dark: #003acc;
  --brand-light: #3b7bff;
  --brand-tint: #f5f8ff;
  --brand-tint-2: #eaf3ff;

  --amber: #f59e0b;
  --amber-bg: #fef3c7;
  --amber-ink: #78350f;

  --success: #059669;
  --success-bg: #d1fae5;

  --danger: #dc2626;
  --danger-bg: #fee2e2;

  --shadow-sm:
    0 1px 3px rgba(10, 15, 30, 0.06), 0 1px 2px rgba(10, 15, 30, 0.04);
  --shadow-md:
    0 4px 12px rgba(10, 15, 30, 0.06), 0 12px 24px rgba(10, 15, 30, 0.08);
  --shadow-lg:
    0 12px 32px rgba(10, 15, 30, 0.1), 0 24px 60px rgba(10, 15, 30, 0.12);
  --shadow-brand:
    0 8px 20px rgba(0, 85, 255, 0.2), 0 20px 44px rgba(0, 85, 255, 0.24);

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;

  --ring: 0 0 0 3px rgba(0, 85, 255, 0.16);
  --sec-pad: 80px;
}

/* =========================================================
   BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
}
::selection {
  background: rgba(0, 85, 255, 0.18);
}
picture {
  display: contents;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.bm-fld input:focus-visible,
.bm-otp input:focus-visible {
  outline: none;
}
.btn-primary:active,
.sum-cta:active,
.cta-big:active,
.btn-dark:active,
.nav-cta:active {
  transform: translateY(0) scale(0.985);
}
[id] {
  scroll-margin-top: 80px;
}
.tabular {
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec {
  padding: var(--sec-pad) 0;
}
.sec-tint {
  background: var(--brand-tint);
}
@media (max-width: 720px) {
  :root {
    --sec-pad: 56px;
  }
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.sec-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 12px auto 0;
  max-width: 520px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--brand-light) 0%,
    var(--brand) 50%,
    var(--brand-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  border: 0;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition:
    transform 0.12s,
    background 0.15s,
    box-shadow 0.18s,
    filter 0.18s,
    color 0.15s,
    border-color 0.15s;
}
.btn .arr {
  transition: transform 0.18s;
}
.btn:hover .arr {
  transform: translateX(3px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--brand);
  padding: 14px 4px;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  width: 100%;
}
.btn-dark:hover {
  background: #1a2340;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s,
    box-shadow 0.25s;
  padding: 6px;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 1px 0 rgba(10, 15, 30, 0.02),
    0 4px 14px rgba(10, 15, 30, 0.05);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color 0.15s,
    background 0.15s;
}
.nav-links a:hover {
  color: var(--brand);
  background: var(--brand-tint);
}
.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-login {
  display: none;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-login:hover {
  color: var(--brand);
}
.nav-cta {
  white-space: nowrap;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
  transition:
    background 0.15s,
    transform 0.12s,
    box-shadow 0.15s;
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 85, 255, 0.28);
}
.nav-cta .arr {
  transition: transform 0.18s;
  display: inline-block;
}
.nav-cta:hover .arr {
  transform: translateX(2px);
}
.hamb {
  display: inline-flex;
  background: none;
  border: 0;
  padding: 8px 6px;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.15s;
}
.hamb:hover {
  background: var(--line-soft);
}
.hamb svg {
  width: 24px;
  height: 24px;
  display: block;
}
@media (min-width: 720px) {
  .nav-login {
    display: inline-flex;
  }
}
@media (min-width: 900px) {
  .hamb {
    display: none;
  }
  .nav-links {
    display: flex;
  }
  .nav-in {
    min-height: 62px;
  }
  .nav-logo img {
    height: 44px;
  }
}

@media (max-width: 480px) {
  .nav-in {
    gap: 10px;
  }
  .nav-logo img {
    height: 32px;
  }
  .nav-cta {
    padding: 10px 14px;
    font-size: 13.5px;
  }
}

/* Mobile drawer */
.mdb {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mdb.open {
  opacity: 1;
  pointer-events: auto;
}
.mdrawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 84%;
  max-width: 340px;
  background: #fff;
  z-index: 99;
  transform: translateX(-100%);
  visibility: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.3s;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mdrawer.open {
  transform: translateX(0);
  visibility: visible;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s;
}
.md-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.md-head img {
  height: 44px;
  width: auto;
}
.md-x {
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--muted);
  padding: 4px 10px;
  line-height: 1;
  border-radius: 8px;
}
.md-x:hover {
  background: var(--line-soft);
  color: var(--ink);
}
.md-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-brand);
}
.md-h {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.md-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}
.md-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--line-soft);
  border: 1px solid var(--line);
  transition: all 0.15s;
}
.md-list a:hover {
  border-color: var(--brand);
  background: var(--brand-tint);
  color: var(--brand);
}
.md-list a svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
}
.md-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.md-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13.5px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.md-info a:last-child {
  border-bottom: 0;
}
.md-info a:hover {
  background: var(--brand-tint);
}
.md-info a svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}
.md-foot {
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.md-foot .stars {
  color: var(--amber);
  letter-spacing: 1px;
}

/* =========================================================
   LAUNCH PILL (shared)
   ========================================================= */
.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-bg);
  color: var(--amber-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid #fbbf24;
}
.launch-pill .dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 8px 0 0;
  background: #fff;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      55% 70% at 78% 45%,
      rgba(9, 118, 252, 0.1),
      transparent 70%
    ),
    radial-gradient(
      40% 50% at 12% 18%,
      rgba(9, 118, 252, 0.06),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}
.hero-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.hero-copy {
  max-width: 600px;
}
.hero-copy .launch-pill {
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.hero h1 .strike {
  color: var(--muted-2);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  font-weight: 700;
  margin-right: 10px;
  font-size: 0.7em;
  letter-spacing: -0.02em;
}
.hero .lead {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin-bottom: 32px;
}
.hero-cta .btn-primary {
  padding: 16px 26px;
  font-size: 15.5px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.hero-trust .ht {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.hero-trust .ht b {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hero-trust .ht .stars {
  color: var(--amber);
}

/* Hero visual — stable aspect-ratio wrapper hosts all absolute children */
.hero-vis {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1374 / 1145;
  justify-self: center;
  margin: 0 auto;
}
.hv-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hv-frame picture,
.hv-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 44px rgba(10, 15, 30, 0.12));
}
.hv-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-md);
  max-width: 230px;
  animation: hvFloat 4.2s ease-in-out infinite;
  z-index: 3;
}
.hv-c1 {
  top: 4%;
  left: -6%;
  animation-delay: 0s;
}
.hv-c2 {
  top: 42%;
  right: -6%;
  animation-delay: 1.4s;
}
.hv-c3 {
  bottom: 12%;
  left: -4%;
  animation-delay: 0.7s;
}
.hv-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hv-ic svg {
  width: 18px;
  height: 18px;
}
.hv-ic.g {
  background: #ecfdf5;
  color: var(--success);
}
.hv-ic.b {
  background: var(--brand-tint);
  color: var(--brand);
}
.hv-ic.y {
  background: var(--amber-bg);
  color: #b45309;
}
.hv-t {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.hv-s {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  font-weight: 500;
}
.hv-badge {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 4;
}
.hv-badge .g {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
.hv-badge b {
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
@keyframes hvFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.55;
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 0;
    min-height: 720px;
  }
  .hero-in {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 12px;
    align-items: center;
    min-height: 720px;
  }
  .hero-copy {
    align-self: center;
    padding: 24px 0;
  }
  .hero-vis {
    justify-self: end;
    align-self: end;
    max-width: none;
    width: 100%;
    aspect-ratio: auto;
    height: 720px;
  }
  .hv-frame {
    inset: 0;
  }
  .hv-frame img {
    transform: scale(1.15);
    transform-origin: center bottom;
  }
}
@media (max-width: 720px) {
  .hero-vis {
    max-width: 460px;
  }
  .hv-c1 {
    left: 0;
    top: 6%;
  }
  .hv-c3 {
    left: 0;
  }
  .hv-c2 {
    right: 0;
    top: 50%;
  }
  .hv-card {
    padding: 9px 12px;
    max-width: 190px;
  }
  .hv-ic {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .hv-ic svg {
    width: 16px;
    height: 16px;
  }
  .hv-t {
    font-size: 11.5px;
  }
  .hv-s {
    font-size: 10px;
  }
  .hv-c3 {
    display: none;
  }
  .hv-badge {
    font-size: 11.5px;
    padding: 8px 14px;
  }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.hiw {
  background: var(--brand-tint);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.hiw-step {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hiw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.22s;
}
.hiw-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hiw-step.active .hiw-card {
  border-color: var(--brand);
  box-shadow:
    0 8px 20px rgba(0, 85, 255, 0.14),
    0 20px 44px rgba(0, 85, 255, 0.14);
}
.hiw-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  background: var(--brand-tint);
  color: var(--brand);
  border: 1px solid var(--brand-tint-2);
  font-variant-numeric: tabular-nums;
}
.hiw-step.active .hiw-badge {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.14);
}
.hiw-badge svg {
  width: 16px;
  height: 16px;
}
.hiw-icon {
  width: 36px;
  height: 36px;
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-top: 4px;
}
.hiw-icon svg {
  width: 24px;
  height: 24px;
}
.hiw-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.hiw-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.hiw-step.active .hiw-label {
  color: var(--brand-dark);
}
.hiw-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 14px;
  height: 2px;
  background-image: linear-gradient(
    to right,
    var(--muted-3) 50%,
    transparent 50%
  );
  background-size: 6px 2px;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  z-index: 2;
}

@media (max-width: 720px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
  }
  .hiw-steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(
      to bottom,
      var(--brand) 0%,
      var(--brand) 78%,
      var(--line) 78%
    );
    border-radius: 2px;
    z-index: 0;
  }
  .hiw-step {
    padding-left: 14px;
    position: relative;
    z-index: 1;
  }
  .hiw-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
  }
  .hiw-icon {
    display: none;
  }
  .hiw-badge {
    flex-shrink: 0;
  }
  .hiw-step:not(:last-child)::after {
    display: none;
  }
}

/* =========================================================
   BENEFITS
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint-2);
  transform: translateY(-2px);
}
.why-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--brand-tint-2);
}
.why-ic svg {
  width: 24px;
  height: 24px;
}
.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* =========================================================
   WHAT WE'LL NEED
   ========================================================= */
.need {
  background: var(--brand-tint);
}
.need-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.need-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
  overflow: hidden;
}
.need-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint-2);
  transform: translateY(-2px);
}
.need-num {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 72px;
  font-weight: 900;
  color: var(--brand);
  opacity: 0.1;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}
.need-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--brand-tint-2);
}
.need-ic svg {
  width: 24px;
  height: 24px;
}
.need-item h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.need-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (min-width: 720px) {
  .need-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

/* =========================================================
   OFFER (checkout-style)
   ========================================================= */
.offer-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.offer-head .launch-pill {
  margin-bottom: 18px;
}
.offer-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.offer-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 14px auto 0;
  max-width: 520px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.offer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.o-box {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s;
}
.o-box:hover {
  box-shadow: var(--shadow-md);
}
.o-box.selected {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 60%);
}
.o-box-hd {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: space-between;
}
.o-step-num {
  width: 28px;
  height: 28px;
  background: var(--line-soft);
  color: var(--muted);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12.5px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.o-box.selected .o-step-num {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.o-step-num svg {
  width: 14px;
  height: 14px;
}
.o-box-title {
  flex: 1;
  min-width: 0;
}
.o-box-tag {
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.o-box.plain .o-box-tag {
  color: var(--muted);
}
.o-box-tag .sel {
  background: var(--brand);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.o-box h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.o-box.plain h3 {
  font-size: 16px;
}
.o-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.o-box-price {
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.o-box-price .st {
  display: block;
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 2px;
}
.o-box-price .nw {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.o-box-price .save {
  display: inline-flex;
  background: var(--success-bg);
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.o-box-count {
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .o-box-hd {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .o-box-title {
    flex: 1 1 calc(100% - 44px);
  }
  .o-box-price {
    flex-basis: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 44px;
  }
  .o-box-price .st,
  .o-box-price .save {
    margin: 0;
  }
  .o-box-count {
    margin-left: 44px;
  }
}

.incl-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
}
.incl-inline li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.4;
}
.incl-inline li .tick {
  width: 20px;
  height: 20px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.incl-inline li .tick svg {
  width: 12px;
  height: 12px;
}
@media (min-width: 520px) {
  .incl-inline {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
}

.o-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
}
.o-step-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  border-radius: var(--radius-sm);
}
.o-step-row .n {
  width: 30px;
  height: 30px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 10px rgba(0, 85, 255, 0.2);
}
.o-step-row b {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.o-step-row span {
  color: var(--muted);
  font-size: 13px;
}

/* Order summary (right column) */
.offer-right {
  position: relative;
}
.summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-lg);
}
.sum-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-bg);
  color: var(--amber-ink);
  border: 1px solid #fbbf24;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.sum-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.sum-hd h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sum-hd h4 svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.sum-hd .ct {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  background: var(--line-soft);
  padding: 4px 10px;
  border-radius: 6px;
}
.sr-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.sr-item .n {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.sr-item .s {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}
.sr-item .p {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.sr-item .p .st {
  display: block;
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 500;
}
.sr-item .p .nw {
  font-weight: 900;
  font-size: 20px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.sr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.sr .l,
.sr .v {
  color: var(--muted);
  font-weight: 500;
}
.sr.muted .l,
.sr.muted .v {
  color: var(--muted-2);
  text-decoration: line-through;
}
.sr.saved .l,
.sr.saved .v {
  color: var(--success);
  font-weight: 700;
}
.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0 20px;
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.sum-total .l {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.sum-total .l span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.sum-total .v {
  font-size: clamp(48px, 7vw, 60px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(
    135deg,
    var(--brand-light),
    var(--brand) 45%,
    var(--brand-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sum-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-brand);
  letter-spacing: -0.005em;
  transition:
    transform 0.12s,
    filter 0.18s;
}
.sum-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.sum-cta .arr {
  transition: transform 0.18s;
}
.sum-cta:hover .arr {
  transform: translateX(3px);
}
.sum-trust {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.sum-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
}
.sum-trust .ck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sum-trust .ck svg {
  width: 11px;
  height: 11px;
  color: #fff;
}
.sum-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--amber-bg);
  border: 1px solid #f59e0b;
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--amber-ink);
  font-size: 13.5px;
  font-weight: 700;
}
.sum-timer .dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
  flex-shrink: 0;
}
.sum-timer b {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  letter-spacing: -0.005em;
}

@media (min-width: 900px) {
  .offer-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .offer-right {
    position: sticky;
    top: 100px;
  }
}

/* =========================================================
   INCLUDED / NOT INCLUDED
   ========================================================= */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}
.incl-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.incl-box:hover {
  box-shadow: var(--shadow-md);
}
.incl-box.yes {
  border-color: #b8e9ce;
}
.incl-box.no {
  border-color: #f5b5b5;
}
.incl-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.incl-hd .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.incl-hd .ic svg {
  width: 20px;
  height: 20px;
}
.incl-box.yes .incl-hd .ic {
  background: var(--success);
}
.incl-box.no .incl-hd .ic {
  background: var(--danger);
}
.incl-hd h4 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
}
.incl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.incl-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.incl-list li .tk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}
.incl-list li .tk svg {
  width: 10px;
  height: 10px;
}
.incl-box.yes .incl-list li .tk {
  background: var(--success);
}
.incl-box.no .incl-list li .tk {
  background: var(--danger);
}
.incl-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
.incl-box.yes .incl-foot {
  color: var(--success);
}
.incl-box.no .incl-foot {
  color: var(--muted);
}
.incl-box.no .incl-foot a {
  color: var(--brand);
  font-weight: 700;
}
@media (min-width: 720px) {
  .incl-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   EXPERTS
   ========================================================= */
.cas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ca-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.ca-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint-2);
  transform: translateY(-3px);
}
.ca-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--line-soft);
}
.ca-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.ca-card:hover .ca-photo img {
  transform: scale(1.04);
}
.ca-vbadge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.ca-vbadge svg {
  width: 11px;
  height: 11px;
}
.ca-body {
  padding: 18px;
}
.ca-body h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.ca-spec {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 14px;
  line-height: 1.4;
}
.ca-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.ca-stats .stat {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ca-stats .stat b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ca-stats .stat b.gold {
  color: var(--amber);
}
.ca-stats .stat span {
  font-size: 11px;
  margin-top: 2px;
  font-weight: 500;
  color: var(--muted-2);
}
.ca-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.ca-tags span {
  background: var(--brand-tint);
  color: var(--brand-dark);
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--brand-tint-2);
}
.cas-more {
  text-align: center;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.cas-more a {
  color: var(--brand);
  font-weight: 600;
}
@media (max-width: 639px) {
  .cas-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -24px;
    padding: 6px 24px 14px;
    scroll-padding: 0 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cas-grid::-webkit-scrollbar {
    display: none;
  }
  .ca-card {
    flex: 0 0 min(78%, 300px);
    scroll-snap-align: start;
  }
  .ca-card:hover {
    transform: none;
  }
  .cas-more {
    margin-top: 20px;
  }
}
@media (min-width: 640px) {
  .cas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .cas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.faq-item[open] {
  border-color: var(--brand-tint-2);
  background: var(--brand-tint);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .qarr {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--line-soft);
  color: var(--muted);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.faq-item .qarr svg {
  width: 16px;
  height: 16px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .qarr {
  background: var(--brand);
  color: #fff;
}
.faq-item[open] .qarr svg {
  transform: rotate(45deg);
}
.faq-item .qbody {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* =========================================================
   PRE-FOOTER CTA
   ========================================================= */
.cta-banner {
  padding: 96px 0 112px;
  background: linear-gradient(
    135deg,
    var(--brand-tint) 0%,
    var(--brand-tint-2) 100%
  );
  text-align: center;
}
.cta-banner .cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-bg);
  color: var(--amber-ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  border: 1px solid #fbbf24;
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.cta-banner p {
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 22px 44px;
  border-radius: var(--radius);
  font-size: 17.5px;
  font-weight: 800;
  box-shadow: var(--shadow-brand);
  letter-spacing: -0.01em;
  transition:
    transform 0.12s,
    filter 0.18s;
}
.cta-big:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.cta-big .arr {
  transition: transform 0.18s;
}
.cta-big:hover .arr {
  transform: translateX(4px);
}
.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.cta-trust .ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cta-trust .ck svg {
  width: 10px;
  height: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0a0f1e;
  color: var(--muted-3);
}
.foot-inner {
  padding-top: 72px;
}
.foot-brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 44px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-mark {
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  margin: 0 0 16px;
}
.foot-tag {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 440px;
  margin: 0;
}
.foot-cta-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.foot-btn {
  background: var(--brand);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  box-shadow: var(--shadow-brand);
  transition:
    background 0.15s,
    transform 0.12s;
}
.foot-btn:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted-3);
  transition: all 0.18s;
}
.foot-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.foot-social a svg {
  width: 16px;
  height: 16px;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-col h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-col a,
.foot-col li {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.7;
  display: block;
  margin-bottom: 6px;
}
.foot-col a:hover {
  color: #fff;
}
.foot-col.contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.foot-col.contact a svg {
  width: 15px;
  height: 15px;
  color: var(--brand-light);
  flex-shrink: 0;
}
.foot-col .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.foot-col .badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
}
.foot-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-2);
}
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
}
.foot-legal a {
  color: var(--muted-2);
}
.foot-legal a:hover {
  color: #fff;
}
.foot-legal .sep {
  color: #2a3550;
}
.foot-legal .heart {
  color: #ef4444;
}
@media (min-width: 640px) {
  .foot-cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .foot-brand {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
  }
  .foot-cta-side {
    align-items: flex-end;
  }
  .foot-cols {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
  }
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.msticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(10, 15, 30, 0.08);
}
.msticky .l {
  flex: 1;
  line-height: 1.15;
}
.msticky .l .p {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.msticky .l .p span {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 12.5px;
  font-weight: 500;
  margin-right: 6px;
}
.msticky .l .s {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}
.msticky .btn-book {
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.msticky .btn-book:hover {
  background: #1a2340;
}
@media (max-width: 720px) {
  .msticky {
    display: flex;
  }
  body {
    padding-bottom: 76px;
  }
}

/* =========================================================
   BOOKING MODAL
   ========================================================= */
.bmb {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.bmb.open {
  opacity: 1;
  pointer-events: auto;
}
.bm {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.2);
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(100%);
  visibility: hidden;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s,
    visibility 0s linear 0.32s;
  padding: 8px 24px 28px;
  -webkit-overflow-scrolling: touch;
}
.bm.open {
  transform: translateY(0);
  visibility: visible;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s,
    visibility 0s;
}
.bm-grip {
  width: 44px;
  height: 5px;
  background: #d1d5db;
  border-radius: 3px;
  margin: 6px auto 16px;
}
.bm-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--muted);
  padding: 6px;
  line-height: 1;
  z-index: 2;
  border-radius: 8px;
  transition: background 0.15s;
}
.bm-x:hover {
  background: var(--line-soft);
  color: var(--ink);
}
.bm-head h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.bm-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding-right: 32px;
}
.bm-summary {
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 18px 0 20px;
}
.bm-summary .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.bm-summary .plan-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.bm-summary .plan-price {
  font-weight: 900;
  font-size: 20px;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.bm-summary .plan-desc {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
  line-height: 1.4;
}
.bm-label {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bm-fld {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  transition:
    border 0.15s,
    box-shadow 0.15s;
}
.bm-fld:focus-within {
  border-color: var(--brand);
  box-shadow: var(--ring);
}
.bm-fld .cc {
  background: var(--line-soft);
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 14px;
  border-right: 1px solid var(--line);
}
.bm-fld input {
  flex: 1;
  border: 0;
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  background: transparent;
}
.bm-err {
  color: var(--danger);
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}
.bm-err.show {
  display: block;
}
.bm-otp {
  display: flex;
  gap: 8px;
  margin: 4px 0 14px;
  justify-content: space-between;
}
.bm-otp input {
  flex: 1;
  max-width: 56px;
  height: 56px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 22px;
  font-weight: 800;
  font-family: inherit;
  outline: none;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition:
    border 0.15s,
    box-shadow 0.15s;
}
.bm-otp input:focus {
  border-color: var(--brand);
  box-shadow: var(--ring);
}
.bm-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.bm-info a {
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
}
.bm-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  padding: 11px 14px;
  border-radius: 10px;
  margin-top: 14px;
  font-weight: 500;
}
.bm-secure svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  flex-shrink: 0;
}
.bm-tick {
  width: 64px;
  height: 64px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.bm-tick svg {
  width: 32px;
  height: 32px;
}
body.no-scroll {
  overflow: hidden;
}
@media (min-width: 720px) {
  .bm {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -40%);
    border-radius: 18px;
    width: calc(100% - 40px);
    max-width: 460px;
    padding: 28px 30px;
    opacity: 0;
    max-height: 88vh;
  }
  .bm.open {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  .bm-grip {
    display: none;
  }
}

/* =========================================================
   BOOKING MODAL — API FLOW ADDITIONS
   ========================================================= */
.bm-label.mt {
  margin-top: 16px;
}
.bm-hint {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 6px;
  line-height: 1.4;
}
.btn-dark:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-dark:disabled:hover {
  background: var(--ink);
}
.bm-spin {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -3px;
  animation: bmSpin 0.7s linear infinite;
}
@keyframes bmSpin {
  to {
    transform: rotate(360deg);
  }
}
.bm-tick.wait {
  background: var(--brand-tint);
  color: var(--brand);
}
.bm-tick.wait svg {
  animation: bmSpin 1s linear infinite;
}
.bm-tick.fail {
  background: var(--danger-bg);
  color: var(--danger);
}
#bmStep3 .bm-tick {
  margin-top: 10px;
}

/* =========================================================
   MADE FOR (strip under hero)
   ========================================================= */
.made-for {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 14px 0;
}
.made-for .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.made-for .lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-right: 6px;
  white-space: nowrap;
}
.made-for .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.made-for .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
@media (max-width: 720px) {
  .made-for .container {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .made-for .container::-webkit-scrollbar {
    display: none;
  }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.rev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.rev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    box-shadow 0.22s,
    transform 0.22s,
    border-color 0.22s;
}
.rev-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint-2);
  transform: translateY(-2px);
}
.rev-stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1;
}
.rev-quote {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.rev-who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-tint-2);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.rev-who b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.2;
}
.rev-who .sub {
  font-size: 12.5px;
  color: var(--muted);
}
@media (min-width: 720px) {
  .rev-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

/* =========================================================
   WHATSAPP CHAT BUTTON
   ========================================================= */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 54;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(10, 15, 30, 0.12);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.wa-fab:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(10, 15, 30, 0.12);
}
.wa-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .wa-fab {
    right: 14px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
  .wa-fab span {
    display: none;
  }
  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
