/* ============================================================
   ANSWERED·AI — Gilded Glass
   Obsidian + champagne gold · Bodoni Moda / Jost
   ============================================================ */

:root {
  --bg: #0B0908;
  --bg-2: #110E0B;
  --bg-3: #171310;
  --ink: #F4EFE6;
  --muted: #A39B8B;
  --faint: #6E675B;
  --gold: #C9A961;
  --gold-2: #E8D5A8;
  --gold-deep: #8C6F33;
  --gold-ink: #191309;
  --line: rgba(201, 169, 97, 0.16);
  --line-soft: rgba(244, 239, 230, 0.07);
  --glass-bg: rgba(255, 252, 245, 0.025);
  --glass-bg-hover: rgba(255, 252, 245, 0.05);
  --serif: "Bodoni Moda", "Didot", serif;
  --sans: "Jost", "Futura", sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--gold-ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2A241C; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

main { position: relative; z-index: 1; }

section { padding: clamp(90px, 12vw, 150px) clamp(20px, 6vw, 84px); }

/* ===== Grain ===== */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 90;
  animation: grain-shift 1.2s steps(3) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-1.5%, 1%); }
  66% { transform: translate(1%, -1.5%); }
}

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 26px;
}
.loader-inner { position: relative; width: 84px; height: 84px; }
.loader-ring { transform: rotate(-90deg); }
.loader-ring-progress {
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  animation: ring-draw 1.4s var(--ease-lux) forwards;
}
@keyframes ring-draw { to { stroke-dashoffset: 0; } }
.loader-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
}
.loader-word {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--muted);
}
.loader-word span { color: var(--gold); }

/* ===== Cursor ===== */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 300;
  opacity: 0;
}
.cursor {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-lux), height 0.3s var(--ease-lux), border-color 0.3s;
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  border-color: rgba(201, 169, 97, 0.9);
}
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.6px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease-lux), border-color 0.35s, transform 0.35s var(--ease-lux), box-shadow 0.35s;
  will-change: transform;
}
.btn-sm { padding: 10px 20px; font-size: 12.5px; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: var(--gold-ink);
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 250, 235, 0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-lux);
}
.btn-gold:hover { box-shadow: 0 8px 38px -8px rgba(201, 169, 97, 0.55); }
.btn-gold:hover::after { transform: translateX(120%); }

.btn-ghost {
  border-color: var(--line);
  color: var(--gold-2);
  background: rgba(201, 169, 97, 0.03);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.09);
}
.btn:active { transform: scale(0.97); }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
}
.nav.is-scrolled {
  background: rgba(11, 9, 8, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line-soft);
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--ink);
}
.nav-logo .gold, .gold { color: var(--gold); }
.nav-links { display: flex; gap: clamp(18px, 2.6vw, 38px); }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s;
}
.nav-burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(11, 9, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(32px, 9vw, 44px);
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.6s var(--ease-lux), opacity 0.6s, color 0.3s;
}
.mobile-menu.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-menu nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu nav a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu nav a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-tel {
  margin-top: 34px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: calc(var(--nav-h) + 30px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%; right: -8%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.13) 0%, rgba(201, 169, 97, 0.04) 38%, transparent 68%);
  pointer-events: none;
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-canvas canvas { display: block; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  margin-bottom: 34px;
  background: rgba(201, 169, 97, 0.04);
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse-ring 2s var(--ease-lux) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.hero-title em { color: var(--gold); }
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-title .char { display: inline-block; will-change: transform; }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-footnote {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 1.6px;
  color: var(--faint);
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: clamp(20px, 6vw, 84px);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--faint);
}
.hero-scroll-line {
  width: 72px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scroll-sweep 2.4s var(--ease-lux) infinite;
}
@keyframes scroll-sweep {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--faint);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee i { color: var(--gold-deep); font-style: normal; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee:hover span { color: var(--muted); }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-eyebrow {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 4.5px;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.12;
}
.section-title em { color: var(--gold); }

/* ===== Glass ===== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  transition: background 0.5s, border-color 0.5s, transform 0.5s var(--ease-lux), box-shadow 0.5s;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, transparent, rgba(232, 213, 168, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--line);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8), 0 0 40px -22px rgba(201, 169, 97, 0.35);
}
.glass:hover::before { opacity: 1; }

/* ===== Stats ===== */
.stats { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 36px 16px;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 62px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 1.6px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== Demo call ===== */
.demo { background: var(--bg-2); }
.demo-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
}
.demo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.demo-id { display: flex; align-items: center; gap: 16px; }
.demo-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  flex: none;
}
.demo-name { font-weight: 500; font-size: 16px; letter-spacing: 0.5px; }
.demo-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
}
.demo-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-2);
  background: rgba(201, 169, 97, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.demo-play:hover { background: rgba(201, 169, 97, 0.14); border-color: var(--gold); }
.demo-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 52px;
  margin-bottom: 28px;
}
.demo-wave span {
  width: 3px;
  height: 14%;
  border-radius: 2px;
  background: var(--gold-deep);
  transition: height 0.18s ease, background 0.3s;
}
.demo-wave.is-live span { background: var(--gold); }
.demo-transcript {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 150px;
  margin-bottom: 26px;
}
.demo-line {
  max-width: 78%;
  padding: 13px 20px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.demo-line.is-in { opacity: 1; transform: translateY(0); }
.demo-line.caller {
  align-self: flex-start;
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid var(--line-soft);
  border-bottom-left-radius: 5px;
  color: var(--muted);
}
.demo-line.ai {
  align-self: flex-end;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--line);
  border-bottom-right-radius: 5px;
  color: var(--gold-2);
}
.demo-line.ai strong { color: var(--gold-2); font-weight: 500; }
.demo-caption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--faint);
  transition: color 0.6s;
}
.demo-caption.is-done { color: var(--gold); }

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  padding: 38px 32px;
  will-change: transform;
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  background: rgba(201, 169, 97, 0.05);
  margin-bottom: 26px;
  transition: background 0.4s, transform 0.4s var(--ease-lux);
}
.feature:hover .feature-icon {
  background: rgba(201, 169, 97, 0.13);
  transform: translateY(-4px);
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 12px;
}
.feature p { font-size: 14.5px; color: var(--muted); }

/* ===== How ===== */
.how { background: var(--bg-2); }
.how-line {
  height: 1px;
  background: var(--line-soft);
  margin-bottom: 56px;
  overflow: hidden;
}
.how-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.how-num {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
}
.how-step p { font-size: 14.5px; color: var(--muted); max-width: 320px; }

/* ===== Industries ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 30px 28px;
}
.industry span {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  transition: color 0.3s;
}
.industry em {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: var(--faint);
  transition: color 0.3s;
}
.industry:hover span { color: var(--gold-2); }
.industry:hover em { color: var(--muted); }

/* ===== Quotes ===== */
.quotes { background: var(--bg-2); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.quote {
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}
.quote-featured blockquote { color: var(--gold-2); }
.quote-featured { border-color: var(--line); }
.quote figcaption {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--faint);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quote figcaption span {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
}
.plan h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 18px;
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-featured {
  border-color: rgba(201, 169, 97, 0.4);
  background: rgba(201, 169, 97, 0.045);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 0 60px -30px rgba(201, 169, 97, 0.4);
}
.plan-price {
  font-family: var(--serif);
  font-size: 46px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.plan-price span { font-size: 17px; color: var(--faint); font-family: var(--sans); }
.plan-tag { font-size: 13.5px; color: var(--faint); margin-bottom: 28px; }
.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  flex: 1;
}
.plan li {
  font-size: 14.5px;
  color: var(--muted);
  padding-left: 26px;
  position: relative;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.plan .btn { justify-content: center; }

/* ===== FAQ ===== */
.faq { background: var(--bg-2); }
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--ink);
  padding: 28px 4px;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-2); }
.faq-plus {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.45s var(--ease-lux);
}
.faq-plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; margin-top: -0.75px; }
.faq-plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; margin-left: -0.75px; }
.faq-q[aria-expanded="true"] .faq-plus::after { transform: rotate(90deg) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-lux);
}
.faq-a p {
  padding: 0 4px 30px;
  font-size: 15px;
  color: var(--muted);
  max-width: 640px;
}

/* ===== CTA band ===== */
.cta-band {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}
.cta-band-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: min(90vw, 900px);
  aspect-ratio: 1.6;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 169, 97, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 1.1;
  position: relative;
}
.cta-band-title em { color: var(--gold); }
.cta-band .hero-ctas { justify-content: center; position: relative; }

/* ===== Booking ===== */
.book { background: var(--bg-2); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.book-sub {
  margin-top: 22px;
  color: var(--muted);
  max-width: 420px;
}
.book-tel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  color: var(--gold-2);
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 15px 26px;
  transition: background 0.3s, border-color 0.3s;
}
.book-tel:hover { background: rgba(201, 169, 97, 0.07); border-color: var(--gold); }
.book-tel strong { font-weight: 500; letter-spacing: 1px; }

.book-form {
  padding: clamp(28px, 3.6vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.form-row { display: flex; flex-direction: column; gap: 9px; }
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.book-form label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.book-form label span { color: var(--gold); }
.book-form input,
.book-form textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  background: rgba(244, 239, 230, 0.035);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.book-form input::placeholder,
.book-form textarea::placeholder { color: var(--faint); }
.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244, 239, 230, 0.05);
}
.book-form input.is-error { border-color: #B4533F; }
.form-fine {
  text-align: center;
  font-size: 12.5px;
  color: var(--faint);
  letter-spacing: 0.4px;
}
.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-3);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-lux), visibility 0.6s;
}
.form-success.is-shown { opacity: 1; visibility: visible; }
.form-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
}
.form-success p { color: var(--muted); font-size: 15px; }
.form-success em { color: var(--gold); font-style: italic; }
.success-circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.success-check {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}
.form-success.is-shown .success-circle { animation: ring-draw-sm 0.8s var(--ease-lux) 0.2s forwards; }
.form-success.is-shown .success-check { animation: check-draw 0.5s var(--ease-lux) 0.9s forwards; }
@keyframes ring-draw-sm { to { stroke-dashoffset: 0; } }
@keyframes check-draw { to { stroke-dashoffset: 0; } }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(56px, 7vw, 90px) clamp(20px, 6vw, 84px) 36px;
  background: var(--bg);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.footer-brand p:last-child {
  margin-top: 18px;
  font-size: 14px;
  color: var(--faint);
  line-height: 1.7;
}
.footer-cols { display: flex; gap: clamp(40px, 6vw, 96px); flex-wrap: wrap; }
.footer-cols > div { display: flex; flex-direction: column; gap: 13px; }
.footer-cols p {
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-cols a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-cols a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.footer-bottom p { font-size: 12.5px; color: var(--faint); letter-spacing: 0.5px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid, .pricing-grid, .quotes-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { grid-column: span 2; max-width: 520px; margin: 0 auto; width: 100%; }
  .nav-links { display: none; }
}
@media (max-width: 860px) {
  .book-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line-soft); }
}
@media (max-width: 680px) {
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .features-grid, .pricing-grid, .quotes-grid, .industries-grid { grid-template-columns: 1fr; }
  .plan-featured { grid-column: auto; }
  .form-split { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .demo-line { max-width: 92%; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .grain { animation: none; }
  .cursor, .cursor-ring { display: none; }
}
