/* =============================================================
   Emiracle Advisory — v2 styles
   Light, modern, geometric. Inspired by the actual brand identity:
   black geometric monoline + single gold dot on cream/white.
   No serifs. No dark luxury cliché. Just a clean modern brand.
   ============================================================= */

:root {
  /* PALETTE — light, warm, premium */
  --bg:          #FAF7F2;     /* warm cream — primary bg */
  --surface:     #FFFFFF;     /* card surfaces */
  --surface-2:  #F2EDE3;     /* sand — subtle differentiation */
  --ink:         #0F0F12;     /* near-black ink */
  --ink-2:      #2C2D32;     /* secondary text */
  --muted:       #6B6A66;     /* tertiary / labels */
  --muted-2:     #98968F;     /* hairline labels */
  --line:       #E8E2D5;     /* warm hairline */
  --line-soft:  #EFE9DC;
  --gold:       #D49A52;     /* brand gold (matches the dot) */
  --gold-soft:  #F2D9B0;     /* soft accent */
  --gold-bg:    #FAF1DF;     /* background tint */
  --ink-on-gold:#0F0F12;
  --green:      #16956A;     /* success */
  --green-soft: #DFF3EA;

  /* TYPE — single modern geometric family for brand cohesion */
  --font-sans:    'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Geist', 'Inter Tight', 'Inter', -apple-system, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, 'SF Mono', monospace;

  /* RHYTHM */
  --radius:    12px;
  --radius-l:  20px;
  --radius-s:  8px;
  --radius-pill: 999px;

  --max-w: 1200px;
  --gutter: 24px;

  --shadow-xs: 0 1px 2px rgba(15, 15, 18, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 15, 18, 0.05), 0 1px 2px rgba(15, 15, 18, 0.04);
  --shadow-md: 0 12px 28px rgba(15, 15, 18, 0.07), 0 2px 6px rgba(15, 15, 18, 0.04);
  --shadow-lg: 0 24px 48px rgba(15, 15, 18, 0.09), 0 4px 12px rgba(15, 15, 18, 0.05);
  --shadow-gold: 0 8px 20px rgba(212, 154, 82, 0.22);

  --sticky-cta-h: 0px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 16px;
  font-feature-settings: 'cv11', 'ss03';
  letter-spacing: -0.005em;
  padding-bottom: var(--sticky-cta-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg, object { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink-on-gold); }

.skip-link {
  position: fixed; top: -100px; left: 8px;
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; border-radius: 8px; z-index: 200;
  font-weight: 600; font-size: 13px;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* =====  REVEAL ANIMATIONS — Framer-style smooth easing  ===== */
.js-reveal-ready .reveal {
  opacity: 0; transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.js-reveal-ready .reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }

/* Stagger variants for grid children */
.js-reveal-ready .reveal[data-reveal-delay] { transition-delay: var(--reveal-delay, 0ms); }

/* Per-section custom directions */
.js-reveal-ready .reveal[data-reveal="left"] { transform: translateX(-32px); }
.js-reveal-ready .reveal[data-reveal="right"] { transform: translateX(32px); }
.js-reveal-ready .reveal[data-reveal="left"].in-view,
.js-reveal-ready .reveal[data-reveal="right"].in-view { transform: translateX(0); }

/* Number counter highlight pulse */
.num-changed { animation: numPulse 0.6s ease-out; }
@keyframes numPulse {
  0%   { transform: scale(1); color: var(--ink); }
  40%  { transform: scale(1.06); color: var(--gold); }
  100% { transform: scale(1); color: var(--ink); }
}

/* Image hover float */
.img-float {
  overflow: hidden;
  border-radius: var(--radius);
}
.img-float img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-float:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal,
  .js-reveal-ready .reveal.in-view { opacity: 1; transform: none; transition: none; }
  .img-float img { transition: none; }
  html { scroll-behavior: auto; }
}

/* =====  NAV  ===== */
header { position: sticky; top: 0; z-index: 100; }
nav {
  padding: 14px 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 52px; width: 188px; pointer-events: none;
  color: var(--ink);
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14.5px; font-weight: 500;
}
.nav-links > a {
  color: var(--ink-2);
  transition: color 0.15s;
}
.nav-links > a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff !important;
  font-weight: 600; font-size: 14px;
  transition: all 0.18s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: #1f1f24; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.6px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====  HERO  ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%; z-index: -1;
  border-radius: 0 0 0 var(--radius-l);
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.95);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%, transparent 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px;
  align-items: center; position: relative;
  min-height: 520px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.5px;
  color: var(--ink-2); padding: 8px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  margin-bottom: 28px;
  background: var(--surface);
  font-weight: 500;
  text-transform: none;
  box-shadow: var(--shadow-xs);
}
.eb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,154,82,0.5); }
  50%      { opacity: 0.85; box-shadow: 0 0 0 6px rgba(212,154,82,0); }
}

h1.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--ink);
}
h1.hero-title .gold {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}
.hero-sub {
  font-size: 17px; color: var(--ink-2); max-width: 520px;
  margin-bottom: 36px; line-height: 1.55;
  font-weight: 400;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary, .btn-secondary {
  padding: 14px 24px; border-radius: var(--radius-pill); font-weight: 600;
  font-size: 14.5px; cursor: pointer; border: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--ink); color: #fff;
}
.btn-primary:hover { background: #1f1f24; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary .arr { transition: transform 0.2s; }
.btn-primary:hover .arr { transform: translateX(3px); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--ink-2); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.trust-row { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-size: 13.5px; color: var(--muted); }
.trust-row .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  margin-right: 6px; font-weight: 700; font-size: 9px;
}

/* =====  PRICE CARD  ===== */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.price-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--gold); color: var(--ink-on-gold);
  font-size: 11px; letter-spacing: 0.4px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
}
.price-label {
  font-size: 12px; color: var(--muted); letter-spacing: 0.4px;
  margin-bottom: 6px; font-weight: 600; text-transform: uppercase;
}
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 12px;
}
.price-amount .currency { font-size: 18px; color: var(--muted); font-weight: 600; }
.price-amount .number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 7.5vw, 84px); color: var(--ink);
  line-height: 1; letter-spacing: -0.045em;
}
.price-includes {
  color: var(--ink-2); font-size: 14.5px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.defer-box {
  background: var(--gold-bg);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.defer-icon {
  flex: 0 0 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.defer-title { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; color: var(--ink); }
.defer-text { color: var(--muted); font-size: 13px; line-height: 1.5; }

.price-card-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 13px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  transition: all 0.18s;
}
.price-card-cta:hover { background: #1f1f24; transform: translateY(-1px); }

/* =====  TRUST STRIP  ===== */
.trust-strip {
  padding: 28px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: flex; justify-content: space-around; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-align: center;
}
.trust-item strong {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.025em; line-height: 1;
}
.trust-item span { font-size: 12.5px; color: var(--muted); }
.trust-divider { width: 1px; height: 28px; background: var(--line); }

/* =====  SECTION SHARED  ===== */
section { padding: 96px 0; position: relative; }
.section-eyebrow {
  text-align: center; font-size: 12px; letter-spacing: 0.5px;
  color: var(--gold); margin-bottom: 14px;
  font-weight: 600;
}
.section-title {
  text-align: center; font-family: var(--font-display);
  font-weight: 600; font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.05; margin-bottom: 14px;
  letter-spacing: -0.035em; color: var(--ink);
}
.section-title em { font-style: normal; color: var(--gold); font-weight: 600; }
.section-sub {
  text-align: center; color: var(--muted);
  max-width: 580px; margin: 0 auto 56px;
  font-size: 17px; line-height: 1.55;
}

/* =====  WHY UAE  ===== */
.why-uae { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink-2);
}
.why-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover .why-image img { transform: scale(1.06); }
.why-body { padding: 26px 26px 28px; }
.why-card h3 {
  font-family: var(--font-display); font-size: 19px;
  font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.02em; line-height: 1.25;
  color: var(--ink);
}
.why-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* =====  LIFESTYLE STRIP — full-bleed dark image with overlay copy  ===== */
.lifestyle-strip {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.lifestyle-bg {
  position: absolute; inset: 0; z-index: -1;
}
.lifestyle-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.55) saturate(0.95);
}
.lifestyle-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15,15,18,0.82) 0%, rgba(15,15,18,0.55) 50%, rgba(15,15,18,0.4) 100%);
}
.lifestyle-content { max-width: 720px; }
.lifestyle-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.5px;
  color: var(--gold); padding: 6px 14px;
  border: 1px solid rgba(212,154,82,0.4);
  background: rgba(212,154,82,0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.lifestyle-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.lifestyle-sub {
  font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; max-width: 560px;
}
.lifestyle-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
}
.lifestyle-stats > div {
  display: flex; flex-direction: column; gap: 4px;
}
.lifestyle-stats strong {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: #fff; letter-spacing: -0.025em;
}
.lifestyle-stats span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* =====  TIMELINE GRID — image alongside the 4 steps  ===== */
.timeline-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px;
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.timeline-image {
  position: sticky; top: 100px;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  height: fit-content;
}
.timeline-image img {
  width: 100%; height: 360px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-image:hover img { transform: scale(1.04); }
.timeline-image-tag {
  padding: 22px 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.ti-eyebrow {
  display: block; font-size: 11px; letter-spacing: 0.5px;
  color: var(--gold); margin-bottom: 6px; font-weight: 600;
}
.ti-text { display: block; font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.4; }

/* =====  PACKAGE  ===== */
.package {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 56px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 32px 28px;
  transition: all 0.25s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-2); }
.feature-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--gold); margin-bottom: 14px;
  letter-spacing: 0.5px; font-weight: 600;
  padding: 4px 8px; background: var(--gold-bg); border-radius: 6px;
}
.feature-title {
  font-family: var(--font-display); font-size: 19px;
  font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.02em; color: var(--ink);
}
.feature-text { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.inclusions {
  max-width: 760px; margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 36px;
}
.inclusions h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; margin-bottom: 24px; text-align: center;
  letter-spacing: -0.025em; color: var(--ink);
}
.inc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.inc-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.inc-item .tick {
  flex: 0 0 18px; height: 18px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; margin-top: 2px;
}
.inc-note {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); text-align: center;
  line-height: 1.6;
}

/* =====  HOW IT WORKS  ===== */
.timeline-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.timeline-wrap::before {
  content: ''; position: absolute; left: 24px; top: 24px; bottom: 24px;
  width: 1px; background: var(--line);
}
.step { display: flex; gap: 24px; margin-bottom: 28px; align-items: flex-start; }
.step-num {
  flex: 0 0 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; color: var(--ink); position: relative; z-index: 1;
  box-shadow: var(--shadow-xs);
}
.step:hover .step-num { background: var(--gold); color: #fff; border-color: var(--gold); }
.step-content { flex: 1; padding-top: 11px; }
.step-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 5px; letter-spacing: -0.02em; color: var(--ink); }
.step-text { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.step-tag {
  display: inline-block; margin-top: 10px;
  background: var(--gold-bg); color: var(--gold);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3px;
}

/* =====  SOCIAL PROOF  ===== */
.social-proof { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1080px; margin: 0 auto;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all 0.25s;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testimonial p {
  font-size: 15.5px;
  line-height: 1.55; font-weight: 400;
  color: var(--ink-2); flex: 1;
  letter-spacing: -0.005em;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.t-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.t-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.t-author span { display: block; font-size: 12.5px; color: var(--muted); }

/* =====  ESTIMATE  ===== */
.estimate { background: var(--bg); }
.estimate-card {
  max-width: 920px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-md);
}
.estimate-form { padding: 36px; border-right: 1px solid var(--line); }
.estimate-summary {
  padding: 36px; background: var(--gold-bg);
  display: flex; flex-direction: column;
}
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.025em; color: var(--ink); }
.form-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }

.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 12.5px;
  color: var(--ink-2); margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field select {
  width: 100%; padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-s);
  color: var(--ink); font-size: 14.5px; font-family: inherit;
  transition: all 0.15s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%230f0f12' d='M5 6 0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 36px;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(15, 15, 18, 0.08);
}
.field select option, .field select optgroup { background: var(--surface); color: var(--ink); }

.toggle-row { display: flex; gap: 8px; flex-wrap: wrap; }
.toggle {
  flex: 1; min-width: 120px;
  padding: 12px 14px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: all 0.15s; text-align: center;
  font-size: 13.5px; color: var(--ink); font-family: inherit; font-weight: 500;
}
.toggle:hover { border-color: var(--ink-2); }
.toggle.active {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.toggle .t-price { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; font-weight: 500; }
.toggle.active .t-price { color: var(--gold-soft); }

.opt-details {
  margin-top: 4px; padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.opt-details summary {
  font-size: 13px; color: var(--ink-2);
  list-style: none; user-select: none;
  padding: 6px 0; font-weight: 500;
}
.opt-details summary::-webkit-details-marker { display: none; }
.opt-details summary::before {
  content: '+'; color: var(--gold);
  margin-right: 8px; font-weight: 700;
  display: inline-block; transition: transform 0.2s;
}
.opt-details[open] summary::before { transform: rotate(45deg); }
.opt-details summary span { color: var(--muted-2); font-size: 12px; font-weight: 400; }

.info-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-s);
  background: var(--gold-bg);
  border: 1px solid var(--gold-soft);
  color: var(--ink-2); font-size: 13.5px; font-weight: 500;
}
.info-pill svg { color: var(--gold); flex-shrink: 0; }

.summary-title {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; margin-bottom: 18px;
  letter-spacing: -0.02em; color: var(--ink);
}
.line-items { flex: 1; }
.line-item {
  display: flex; justify-content: space-between;
  padding: 11px 0; font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.line-item .l-label { color: var(--muted); }
.line-item .l-amt { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.line-item.deferred .l-amt { color: var(--gold); }

.total-row { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.total-line {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.total-line .label { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.total-line .amt { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.total-line.deferred .amt { font-size: 17px; color: var(--gold); font-weight: 600; }

.summary-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.summary-cta {
  width: 100%; padding: 14px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; border: none;
  transition: all 0.18s; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.summary-cta.primary { background: var(--ink); color: #fff; }
.summary-cta.primary:hover { background: #1f1f24; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.summary-cta.secondary {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line);
}
.summary-cta.secondary:hover { border-color: var(--ink-2); }
.summary-cta.secondary svg { color: var(--gold); }
.summary-cta:disabled { opacity: 0.55; cursor: progress; }

/* =====  PAYMENT  ===== */
.payment-section { background: var(--surface); border-top: 1px solid var(--line); }
.payment-block { max-width: 920px; margin: 0 auto; }
.payment-header { text-align: center; margin-bottom: 28px; }
.payment-eyebrow {
  font-size: 12px; letter-spacing: 0.5px;
  color: var(--gold); margin-bottom: 14px; font-weight: 600;
}
.payment-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 36px); font-weight: 600;
  margin-bottom: 10px; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink);
}
.payment-sub { color: var(--muted); font-size: 16px; max-width: 540px; margin: 0 auto; }

.pay-tabs {
  display: flex; gap: 6px; max-width: 480px; margin: 0 auto 26px;
  padding: 5px; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
}
.pay-tab {
  flex: 1; padding: 10px 16px; border-radius: var(--radius-pill);
  background: transparent; border: none;
  color: var(--muted); font-weight: 600; font-size: 13.5px;
  transition: all 0.2s; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.pay-tab:hover { color: var(--ink); }
.pay-tab.active {
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-sm);
}
.tab-label { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.tab-main { font-size: 13.5px; font-weight: 600; }
.tab-sub { font-size: 10.5px; font-weight: 500; opacity: 0.65; margin-top: 1px; }

.pay-panel { display: none; }
.pay-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pay-panel-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l); overflow: hidden;
}
.pay-panel-left { padding: 32px; border-right: 1px solid var(--line); }
.pay-panel-right {
  padding: 32px; background: var(--surface);
  display: flex; flex-direction: column;
}

/* Card-brand tiles — uniform 60×34 grid that always fits one row on desktop */
.card-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  align-items: center;
}
.brand-logo-tile {
  flex: 0 0 auto;
  width: 60px;
  height: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-logo-tile:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.brand-logo-tile svg {
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 6px);
}
.brand-logo-tile.tabby-tile { border-color: rgba(63, 224, 196, 0.35); }
.brand-logo-tile.apple-tile { background: #000; border-color: #000; }

.tabby-callout {
  display: flex; gap: 14px; padding: 16px;
  background: rgba(63, 224, 196, 0.05);
  border: 1px solid rgba(63, 224, 196, 0.25);
  border-radius: var(--radius); margin-bottom: 16px;
  align-items: flex-start;
}
.tabby-callout svg { color: #14a487; flex-shrink: 0; margin-top: 2px; }
.tabby-title { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; color: var(--ink); }
.tabby-text { color: var(--muted); font-size: 13px; line-height: 1.5; }

.fee-note {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 14px; background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s); font-size: 13px; color: var(--ink-2);
}
.fee-note svg { color: var(--gold); flex-shrink: 0; }
.fee-note strong { color: var(--ink); }

.breakdown-title {
  font-size: 11.5px; color: var(--muted);
  margin-bottom: 18px; font-weight: 600; letter-spacing: 0.3px;
}
.breakdown-row {
  display: flex; justify-content: space-between;
  padding: 11px 0; font-size: 14px; color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.breakdown-row span:last-child { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.free-tag {
  background: var(--green-soft); color: var(--green) !important;
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: 11px !important; font-weight: 600; letter-spacing: 0.3px;
}
.breakdown-divider { height: 1px; background: var(--line); margin: 14px 0; }
.breakdown-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px;
}
.breakdown-total > span:first-child { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.total-amt {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; color: var(--ink); letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.total-amt .cur { font-size: 14px; color: var(--muted); margin-right: 4px; font-weight: 600; }

.pay-action {
  width: 100%; padding: 14px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 14px; border: none;
  transition: all 0.18s; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: auto;
}
.pay-action:hover { background: #1f1f24; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pay-action.whatsapp { background: #25D366; color: #fff; }
.pay-action.whatsapp:hover { background: #1ebe5a; box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3); }
.pay-action[aria-busy="true"] .btn-label,
.pay-action[aria-busy="true"] .btn-arr { display: none; }
.pay-action[aria-busy="true"] .btn-loading { display: inline-flex; }
.pay-action .btn-loading { display: none; gap: 8px; align-items: center; }
.pay-action .btn-loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.security-note {
  margin-top: 12px; font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 6px; justify-content: center;
}
.security-note svg { color: var(--gold); }

/* Bank card */
.bank-card {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 26px;
}
.bank-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.bank-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #00D4FF, #0086FF);
  color: #fff; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.3px;
}
.bank-label { font-size: 13.5px; color: var(--ink-2); font-weight: 500; }

.bank-field { margin-bottom: 14px; }
.bank-field:last-child { margin-bottom: 0; }
.bank-key {
  font-size: 11.5px; color: var(--muted);
  margin-bottom: 5px; font-weight: 600; letter-spacing: 0.3px;
}
.bank-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.bank-val { font-size: 15px; color: var(--ink); font-weight: 500; }
.bank-val.mono { font-family: var(--font-mono); letter-spacing: 0; }
.copy-btn {
  padding: 6px 12px; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  color: var(--ink); font-size: 11.5px; font-weight: 600;
  transition: all 0.18s; font-family: inherit;
}
.copy-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.copy-btn.copied { background: var(--green); color: #fff; border-color: var(--green); }

.pay-help { margin-top: 26px; text-align: center; font-size: 14px; color: var(--muted); }
.pay-help a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.pay-help a:hover { border-color: var(--ink); }

/* =====  FAQ  ===== */
.faq-section { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 8px;
  padding: 0 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq:hover { border-color: var(--ink-2); }
.faq[open] { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; padding: 18px 0;
  font-size: 16px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--gold); font-size: 22px;
  font-weight: 300; transition: transform 0.2s;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); font-size: 14.5px; padding-bottom: 18px; line-height: 1.65; }

/* =====  FOOTER  ===== */
footer {
  padding: 56px 0 28px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--ink-2);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  margin-bottom: 36px;
}
.footer-logo { height: 40px; width: 144px; margin-bottom: 16px; color: var(--ink); }
.footer-text { color: var(--muted); font-size: 13.5px; line-height: 1.65; max-width: 380px; }
.footer-links-col h4 {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--muted); margin-bottom: 14px; font-weight: 600;
  letter-spacing: 0.3px;
}
.footer-links-col a {
  display: block; color: var(--ink-2);
  font-size: 14px; margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: var(--ink); }
.footer-fine {
  padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
}
.footer-fine a { color: var(--ink-2); }
.footer-fine a:hover { color: var(--ink); }

/* =====  STICKY CTA — always visible on every viewport, slides in on load  ===== */
:root { --sticky-cta-h: 72px; }

.sticky-cta {
  position: fixed; bottom: 16px; left: 50%; z-index: 90;
  transform: translate(-50%, 120%);
  background: var(--ink); color: #fff;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px 10px 22px;
  box-shadow: 0 12px 36px rgba(15, 15, 18, 0.28), 0 4px 12px rgba(15, 15, 18, 0.18);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 320px;
  max-width: calc(100vw - 24px);
}
.sticky-cta.visible { transform: translate(-50%, 0); }
.sticky-info { display: flex; flex-direction: column; gap: 1px; }
.sticky-label {
  font-size: 10.5px; color: rgba(255,255,255,0.65);
  font-weight: 500; letter-spacing: 0.3px;
}
.sticky-price {
  font-family: var(--font-display); font-size: 15.5px; font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.1;
}
.sticky-price .gold-num { color: var(--gold); }
.sticky-btn {
  background: var(--gold); color: var(--ink);
  padding: 11px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13.5px;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s;
  display: inline-flex; align-items: center; gap: 6px;
}
.sticky-btn:hover { background: #efb96a; transform: translateY(-1px); }
.sticky-btn .arr { font-size: 16px; line-height: 1; }

/* Hide when user is actually IN the estimate or payment sections (would be redundant) */
.sticky-cta.in-target-zone { transform: translate(-50%, 120%); }

@media (max-width: 720px) {
  .sticky-cta {
    bottom: 0;
    left: 0; right: 0;
    transform: translateY(110%);
    border-radius: 0;
    min-width: 0;
    max-width: 100%;
    padding: 12px 14px 12px 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .sticky-cta.visible { transform: translateY(0); }
  .sticky-cta.in-target-zone { transform: translateY(110%); }
}

/* =====  SUCCESS MODAL  ===== */
.modal-bg {
  position: fixed; inset: 0; background: rgba(15, 15, 18, 0.55);
  backdrop-filter: blur(8px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeInBg 0.2s ease;
}
.modal-bg[hidden] { display: none; }
@keyframes fadeInBg { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 36px; max-width: 440px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(.2, .8, .2, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: none; color: var(--muted);
  font-size: 26px; width: 34px; height: 34px;
  border-radius: 50%; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--bg); color: var(--ink); }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.modal h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.025em; color: var(--ink); }
.modal p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }

/* =====  RESPONSIVE  ===== */
@media (max-width: 980px) {
  .hero-grid, .feature-grid, .estimate-card, .pay-panel-grid, .why-grid, .testimonial-grid, .footer-grid, .timeline-grid {
    grid-template-columns: 1fr;
  }
  .hero-bg { width: 100%; opacity: 0.18; border-radius: 0; }
  .hero-bg::after { background: linear-gradient(180deg, var(--bg) 0%, transparent 50%, var(--bg) 100%); }
  .testimonial-grid, .why-grid, .feature-grid { gap: 14px; }
  .estimate-form { border-right: none; border-bottom: 1px solid var(--line); }
  .pay-panel-left { border-right: none; border-bottom: 1px solid var(--line); }
  .timeline-image { position: static; }
  .timeline-image img { height: 240px; }
  .lifestyle-strip { padding: 70px 0; }
  .lifestyle-stats { gap: 28px; }
  .lifestyle-stats strong { font-size: 24px; }
}

@media (max-width: 880px) {
  :root { --gutter: 18px; --sticky-cta-h: 76px; }
  /* Mobile nav: brand left, hamburger right, links collapse into overlay */
  .nav-inner { position: relative; min-height: 56px; }
  .brand-logo { height: 48px; width: 174px; }
  h1.hero-title { font-size: clamp(34px, 8vw, 52px); line-height: 1.05; letter-spacing: -0.025em; }
  .nav-links {
    position: fixed; inset: 80px 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    padding: 24px 24px; gap: 0;
    flex-direction: column; align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a {
    padding: 16px 0; font-size: 17px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink);
  }
  .nav-links > a.nav-cta {
    margin-top: 16px; padding: 14px 24px;
    text-align: center; font-size: 14px;
    align-self: center; min-width: 60%;
    border-bottom: none;
  }
  .nav-toggle { display: flex; flex-shrink: 0; }
  .sticky-cta { display: flex; }
  section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .hero-grid { gap: 36px; min-height: 0; }
  /* Stack hero CTAs vertically on mobile — full-width, easy tap target, no awkward text wrap */
  .hero-cta-row { flex-direction: column; gap: 10px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
  .price-card { padding: 28px 24px; }
  .estimate-form, .estimate-summary { padding: 28px 22px; }
  .pay-panel-left, .pay-panel-right { padding: 26px 22px; }
  .modal { padding: 28px 22px; }
  .pay-tabs { max-width: 100%; }
  .pay-tab { padding: 11px 12px; font-size: 13px; }
  .bank-val.mono { font-size: 13px; word-break: break-all; }
  .step { gap: 16px; }
  .step-num { flex-basis: 40px; height: 40px; font-size: 14px; }
  .timeline-wrap::before { left: 20px; }
  .inclusions { padding: 24px 22px; }
  .inc-list { grid-template-columns: 1fr; }
  .trust-grid { justify-content: space-around; gap: 16px; }
  .trust-divider { display: none; }
  .trust-item { flex-basis: calc(50% - 8px); }
  .footer-fine { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  h1.hero-title { font-size: 32px; line-height: 1.08; letter-spacing: -0.02em; }
  .brand-logo { height: 42px; width: 152px; }
  .total-line .amt { font-size: 26px; }
  .total-amt { font-size: 26px; }
}
