/* =====================================================
   VANTAGE AI GROUP — Stylesheet
   Theme: White · Light Silver · Gold accents
   Fonts: Sora (display) + Inter (body)
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Neutrals */
  --white: #ffffff;
  --paper: #fafbfc;
  --silver-50: #f5f6f8;
  --silver-100: #eceef2;
  --silver-150: #e3e6ec;
  --silver-200: #d7dbe2;
  --silver-300: #c0c6d0;
  --silver-400: #9aa2b1;
  --muted: #6b7280;

  /* Ink */
  --ink: #11161f;
  --ink-soft: #2a313d;
  --navy: #0f1b2d;

  /* Gold (from logo) */
  --gold: #c39a3f;
  --gold-light: #e8c87a;
  --gold-bright: #f0d98a;
  --gold-dark: #9e7a2c;
  --gold-grad: linear-gradient(135deg, #b3862d 0%, #e8c87a 45%, #c39a3f 75%, #9e7a2c 100%);
  --silver-grad: linear-gradient(135deg, #f7f8fa 0%, #d7dbe2 50%, #b6bcc7 100%);

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(17, 22, 31, .05);
  --shadow: 0 14px 40px -18px rgba(17, 22, 31, .18);
  --shadow-lg: 0 30px 70px -30px rgba(17, 22, 31, .28);
  --ring: 0 0 0 1px var(--silver-150);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
svg { width: 100%; height: 100%; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: 64px 0; }

/* ---------- Utilities ---------- */
.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-dark);
}
.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark);
  padding: 6px 14px;
  border: 1px solid var(--silver-200);
  border-radius: 999px;
  background: var(--silver-50);
  margin-bottom: 20px;
}
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section__intro { color: var(--muted); font-size: 18px; }
.lead { font-size: 19px; color: var(--ink-soft); margin-bottom: 18px; }

.ico-check { width: 18px; height: 18px; flex: 0 0 auto; }
.ico-check path { fill: none; stroke: var(--gold-dark); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn--sm { padding: 11px 20px; font-size: 14.5px; }
.btn--lg { padding: 17px 34px; font-size: 17px; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold-grad); color: #2a200a;
  box-shadow: 0 10px 26px -10px rgba(195, 154, 63, .65);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(195, 154, 63, .8); }

.btn--ghost {
  background: var(--white); color: var(--ink);
  border-color: var(--silver-200); box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy), #16243a);
  color: #e9edf4; font-size: 13.5px;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 24px; text-align: center; flex-wrap: wrap; }
.topbar strong { color: var(--gold-bright); font-weight: 600; }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(232, 200, 122, .2); animation: pulse 2s infinite; }
.topbar__link { color: var(--gold-bright); font-weight: 600; }
.topbar__link:hover { text-decoration: underline; }
@keyframes pulse { 50% { opacity: .4; } }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--silver-150); box-shadow: 0 6px 24px -16px rgba(17, 22, 31, .25); background: rgba(255, 255, 255, .92); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: .04em; color: var(--ink); white-space: nowrap; }
.brand__tag { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; font-family: 'Sora', sans-serif; font-weight: 500; font-size: 15px;
  color: var(--ink-soft); padding: 8px 14px; border-radius: 8px; transition: color .2s;
}
.nav__link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gold-grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: 10px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 120px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 12%, rgba(232, 200, 122, .16), transparent 70%),
    radial-gradient(50% 45% at 8% 18%, rgba(215, 219, 226, .5), transparent 70%),
    linear-gradient(180deg, var(--white), var(--paper));
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--silver-100) 1px, transparent 1px), linear-gradient(90deg, var(--silver-100) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: .55;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; margin-bottom: 22px; }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__assurances { display: flex; flex-wrap: wrap; gap: 18px; }
.hero__assurances li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }

/* Hero visual */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero__photo {
  position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--silver-150); box-shadow: var(--shadow-lg);
}
.hero__photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(232, 200, 122, .14), transparent 45%);
}
.hero__photo img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; display: block; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--silver-150); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); animation: floaty 5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: 'Sora'; font-size: 14px; color: var(--ink); }
.float-card small { color: var(--muted); font-size: 12.5px; }
.float-card__icon { font-size: 20px; }
.float-card--1 { top: 8%; left: -4%; animation-delay: .5s; }
.float-card--2 { bottom: 10%; right: -4%; animation-delay: 1.4s; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--silver-150); border-bottom: 1px solid var(--silver-150); background: var(--paper); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 40px 16px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 28%; height: 44%; width: 1px; background: var(--silver-200); }
.stat__num, .stat__suffix { font-family: 'Sora'; font-size: clamp(30px, 4vw, 42px); font-weight: 800; color: var(--ink); }
.stat__suffix { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1.3fr .85fr; gap: 56px; align-items: start; }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.about__point { display: flex; gap: 14px; }
.about__point-ico { font-size: 22px; flex: 0 0 auto; line-height: 1.4; }
.about__point h4 { font-size: 16px; margin-bottom: 4px; }
.about__point p { font-size: 14.5px; color: var(--muted); }

.about__panel { position: sticky; top: 100px; }
.panel-card {
  background: linear-gradient(165deg, var(--navy), #16243a);
  color: #e7ecf3; border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.panel-card::before { content: ''; position: absolute; top: -40%; right: -30%; width: 70%; height: 80%; background: radial-gradient(circle, rgba(232,200,122,.22), transparent 65%); }
.panel-card__title { color: var(--gold-bright); font-size: 16px; letter-spacing: .04em; margin-bottom: 10px; }
.panel-card p { font-size: 15px; color: #c8d2e0; }
.panel-card__rule { border: 0; border-top: 1px solid rgba(255,255,255,.12); margin: 24px 0; }
.panel-card__list { display: grid; gap: 10px; margin-bottom: 28px; }
.panel-card__list li { position: relative; padding-left: 26px; font-size: 15px; color: #dbe3ee; }
.panel-card__list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-light); }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--silver-150); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold-grad); transition: width .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--silver-200); }
.service-card:hover::after { width: 100%; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(160deg, var(--silver-50), var(--silver-100));
  border: 1px solid var(--silver-150);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__icon svg path, .service-card__icon svg circle, .service-card__icon svg rect { fill: none; stroke: var(--gold-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--muted); }

/* ---------- Voice Agents ---------- */
.agents { background: var(--white); }
.agents__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.agent-card {
  --accent: var(--gold-dark);
  text-align: center; padding: 26px 16px 24px; border-radius: 20px;
  background: transparent; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
}
.agent-card:hover {
  transform: translateY(-6px); background: var(--white);
  border-color: var(--silver-150); box-shadow: var(--shadow);
}
.agent-card__bot { width: 104px; height: 104px; margin: 0 auto 14px; }
.bot { width: 100%; height: 100%; display: block; transition: transform .3s var(--ease); }
.agent-card:hover .bot { transform: translateY(-2px) scale(1.03); }
.bot .body { fill: #eef0f4; }
.bot .body-edge { fill: #e4e7ec; }
.bot .visor { fill: #182a42; }
.bot .accent { fill: var(--accent); }
.bot .eye { fill: var(--accent); }
.bot .eye-stroke { fill: none; stroke: var(--accent); stroke-width: 3.2; stroke-linecap: round; }
.bot .mouth { fill: none; stroke: #aab8c9; stroke-width: 2.8; stroke-linecap: round; }
.bot .mouth-fill { fill: var(--accent); }
.bot .stroke { stroke: #cfd5dd; stroke-width: 2.4; stroke-linecap: round; fill: none; }
.bot .mic { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; }
.agent-card__name { font-size: 18px; margin-bottom: 3px; }
.agent-card__role {
  display: inline-block; font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.agent-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; min-height: 66px; }
.agent-card__actions { display: flex; flex-direction: column; align-items: center; gap: 9px; margin-top: 14px; }
.agent-demo {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--white); border: 1px solid var(--silver-200); color: var(--ink);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px; padding: 9px 16px;
  border-radius: 999px; line-height: 1; transition: border-color .2s, box-shadow .2s;
}
.agent-demo:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.agent-demo__play { width: 12px; height: 12px; display: block; }
.agent-demo__play path { fill: var(--accent); }
.agent-demo__eq { display: none; align-items: flex-end; gap: 2.5px; height: 13px; }
.agent-demo__eq i { width: 2.5px; height: 100%; background: var(--accent); border-radius: 2px; transform-origin: bottom; animation: eq .9s ease-in-out infinite; }
.agent-demo__eq i:nth-child(2) { animation-delay: .18s; }
.agent-demo__eq i:nth-child(3) { animation-delay: .36s; }
.agent-demo__eq i:nth-child(4) { animation-delay: .54s; }
@keyframes eq { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
.agent-card.is-speaking .agent-demo__play { display: none; }
.agent-card.is-speaking .agent-demo__eq { display: inline-flex; }
.agent-get { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 12.5px; color: var(--muted); transition: color .2s; }
.agent-get:hover { color: var(--accent); }
.agents__note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 15px; }
.agents__note a { color: var(--gold-dark); font-weight: 600; }
.agents__note a:hover { text-decoration: underline; }
@keyframes botPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes botGlow { from { opacity: .55; } to { opacity: 1; } }
.agent-card.is-speaking .bot { animation: botPulse 1s ease-in-out infinite; }
.agent-card.is-speaking .bot .accent,
.agent-card.is-speaking .bot .eye { animation: botGlow .7s ease-in-out infinite alternate; }

/* ---------- Process ---------- */
.process { background: var(--white); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { padding: 28px 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--silver-150); position: relative; }
.step__num { font-family: 'Sora'; font-weight: 800; font-size: 34px; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 10px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--silver-150); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  border-color: transparent; position: relative;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gold-grad) border-box;
  border: 2px solid transparent; box-shadow: var(--shadow);
}
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #2a200a; font-family: 'Sora'; font-weight: 700;
  font-size: 12px; letter-spacing: .04em; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 22px; margin-bottom: 4px; }
.plan__for { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.plan__price { font-family: 'Sora'; font-weight: 800; font-size: 30px; color: var(--ink); margin-bottom: 22px; }
.plan__price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan__features { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__features li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-soft); }
.plan__features li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--gold-dark); font-weight: 700; }
.pricing__note { text-align: center; margin-top: 36px; color: var(--muted); font-size: 15.5px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--paper); border: 1px solid var(--silver-150); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.quote blockquote { font-size: 16px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.6; }
.quote figcaption strong { display: block; font-family: 'Sora'; color: var(--ink); font-size: 15px; }
.quote figcaption span { font-size: 13.5px; color: var(--muted); }

/* ---------- Booking ---------- */
.booking { background: var(--paper); }
.booking__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.booking__benefits { display: grid; gap: 14px; margin: 26px 0 30px; }
.booking__benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--ink-soft); }
.booking__contact-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); }
.booking__contact-item svg { width: 20px; height: 20px; }
.booking__contact-item svg * { fill: none; stroke: var(--gold-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.booking__contact-item:hover { color: var(--gold-dark); }

.booking__form-wrap { position: relative; }
.booking-form {
  background: var(--white); border: 1px solid var(--silver-150); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-lg); position: relative;
}
.booking-form__title { font-size: 22px; margin-bottom: 22px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: 'Sora'; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.optional { color: var(--silver-400); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: 'Inter'; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--silver-200); border-radius: var(--radius-sm);
  background: var(--silver-50); transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(195, 154, 63, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--silver-400); }
.field__error { font-size: 12.5px; color: #c0392b; margin-top: 6px; display: none; }
.field.is-invalid input, .field.is-invalid select { border-color: #e07a6f; background: #fdf3f2; }
.field.is-invalid .field__error { display: block; }
.booking-form__fineprint { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

.booking-form__success {
  position: absolute; inset: 0; background: var(--white); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px;
  animation: fadeIn .4s var(--ease);
}
.booking-form__success[hidden] { display: none; }
.success__check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold-grad);
  color: #2a200a; font-size: 32px; display: grid; place-items: center; margin-bottom: 18px; font-weight: 700;
}
.booking-form__success h3 { font-size: 22px; margin-bottom: 10px; }
.booking-form__success p { color: var(--muted); max-width: 320px; }
@keyframes fadeIn { from { opacity: 0; transform: scale(.97); } }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__list { display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--silver-150); border-radius: var(--radius-sm); background: var(--paper); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--silver-200); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-family: 'Sora'; font-weight: 600; font-size: 16.5px;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--gold-dark); transition: transform .25s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA Band ---------- */
.cta-band { padding: clamp(56px, 8vw, 96px) 0; }
.cta-band__inner {
  background: linear-gradient(155deg, var(--navy), #16263e);
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; color: var(--white);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band__inner::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 120%; height: 120%; background: radial-gradient(circle at 50% 0%, rgba(232,200,122,.22), transparent 55%); }
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; position: relative; }
.cta-band p { color: #c8d2e0; font-size: 18px; max-width: 540px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #aeb6c4; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding: 64px 24px 48px; }
.brand--footer .brand__name { color: var(--white); }
.footer__blurb { margin-top: 16px; font-size: 14.5px; max-width: 300px; color: #8c95a6; }
.footer__col h4 { color: var(--white); font-size: 14px; letter-spacing: .04em; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14.5px; color: #aeb6c4; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .2s; }
.footer__social a:hover { background: rgba(232,200,122,.18); }
.footer__social svg { width: 18px; height: 18px; }
.footer__social svg path { fill: none; stroke: var(--gold-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: 13px; color: #7e8799; flex-wrap: wrap; gap: 8px; }
.footer__made { color: var(--gold-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 360px; order: -1; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__panel { position: static; }
  .booking__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__grid, .pricing__grid, .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .agents__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82%, 320px); height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: var(--white); padding: 96px 24px 24px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 90;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { padding: 14px; font-size: 17px; border-bottom: 1px solid var(--silver-100); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 14px 0 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .agents__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(odd)::after { display: none; }
  .about__points { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .services__grid, .pricing__grid, .testimonials__grid, .process__grid, .footer__grid { grid-template-columns: 1fr; }
  .agents__grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .float-card--1 { left: 0; }
  .float-card--2 { right: 0; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
