/* =========================================================
   Busy Bean Coffee — Light/Modern Design System v2
   Gojiberry-inspired aesthetic translated to Busy Bean brand
   Used by: dealerships.html (and hotels.html on next iteration)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700&family=Sacramento&display=swap');

:root {
  /* Color palette */
  --bg: #FFFEFA;             /* near-white, slight warmth */
  --surface: #FFFFFF;         /* pure white for cards */
  --surface-soft: #F8F5EE;    /* warm cream for soft sections */
  --surface-tint: #F4EFE3;    /* deeper cream for emphasis */

  --text: #1F1B16;            /* warm dark, near-black with warmth */
  --text-muted: #5C544A;      /* warm slate (matches body text role) */
  --text-subtle: #A8A199;     /* lighter warm gray */

  --accent: #8B9D88;          /* sage green primary (slightly darker than logo for contrast on white) */
  --accent-hover: #6F8270;    /* deeper sage */
  --accent-soft: #E5EBE3;     /* sage tint */
  --accent-bg: #F0F4EF;       /* very soft sage background */

  --accent-warm: #C8843C;     /* warm copper/amber — secondary pop */
  --accent-warm-soft: #F5E6D3;/* peach tint */

  --border: #EAE3D5;          /* warm cream border */
  --border-light: #F2EDE0;    /* even lighter */

  --logo-gray: #B8B5AE;       /* matches the logo wordmark gray */
  --logo-sage: #A4B5A1;       /* matches the logo script green */

  /* Spacing */
  --s1: 4px;  --s2: 8px;   --s3: 16px;  --s4: 24px;
  --s5: 32px; --s6: 48px;  --s7: 64px;  --s8: 96px;
  --s9: 128px; --s10: 192px;

  /* Typography */
  --display-font: 'Inter Tight', 'Inter', -apple-system, sans-serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script-font: 'Sacramento', cursive;

  /* Layout */
  --max-width: 1200px;
  --content-width: 800px;

  /* Radius */
  --r-pill: 999px;
  --r-card: 24px;
  --r-card-lg: 32px;
  --r-card-sm: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(31, 27, 22, 0.04), 0 1px 2px rgba(31, 27, 22, 0.04);
  --shadow-md: 0 4px 16px rgba(31, 27, 22, 0.06), 0 2px 6px rgba(31, 27, 22, 0.04);
  --shadow-lg: 0 24px 48px rgba(31, 27, 22, 0.08), 0 12px 24px rgba(31, 27, 22, 0.05);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent-hover); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 600;
}
h4 { font-size: 1.0625rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.65; }

/* ========== LOGO (CSS placeholder; swap in real file when available) ========== */
.brand-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  user-select: none;
}
.brand-logo .b-busy {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--logo-gray);
  text-transform: uppercase;
}
.brand-logo .b-coffee {
  font-family: var(--script-font);
  font-size: 1.875rem;
  color: var(--logo-sage);
  line-height: 1;
  margin-left: 2px;
  position: relative;
  top: 4px;
}
.brand-logo:hover .b-coffee {
  color: var(--accent);
}
.brand-logo-img {
  height: 36px;
  width: auto;
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s4);
}
@media (min-width: 768px) { .container { padding: 0 var(--s6); } }

section { padding: var(--s9) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--s7) 0; } }

.section-soft { background: var(--surface-soft); }

/* ========== EYEBROW + SECTION HEADS ========== */
.eyebrow {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s4);
  padding: 6px 14px;
  background: var(--accent-bg);
  border-radius: var(--r-pill);
}
.eyebrow.warm {
  color: var(--accent-warm);
  background: var(--accent-warm-soft);
}
.section-head {
  margin-bottom: var(--s7);
  max-width: 800px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { margin-bottom: var(--s4); }
.section-head .lead { font-size: 1.1875rem; color: var(--text-muted); }

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s4) var(--s4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 300ms ease;
}
@media (min-width: 768px) { nav { padding: var(--s4) var(--s6); } }
nav.scrolled {
  background: rgba(255, 254, 250, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border-light);
}
.nav-actions { display: flex; align-items: center; gap: var(--s3); }
.nav-link {
  font-family: var(--body-font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color 200ms ease, background 200ms ease;
}
.nav-link:hover { color: var(--text); background: var(--accent-soft); }
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 14px 26px;
  font-family: var(--body-font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: var(--text);
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(139, 157, 136, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--surface);
}
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn .arrow { display: inline-block; transition: transform 250ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== HERO ========== */
.hero {
  padding: 128px 0 var(--s9);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero { padding: 100px 0 var(--s7); }
}
.hero-bg-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 65%);
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-warm-soft) 0%, transparent 65%);
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
}
.hero h1 { margin-bottom: var(--s5); }
.hero .lead {
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  max-width: 720px;
  margin: 0 auto var(--s7);
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--s7);
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-subtle);
}
.hero-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-subtle); }

/* ========== TRUST STRIP ========== */
.trust-strip {
  padding: var(--s6) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-strip-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--s5);
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s7);
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-subtle);
  opacity: 0.8;
  transition: opacity 200ms ease, color 200ms ease;
  letter-spacing: -0.01em;
}
.trust-logo:hover { opacity: 1; color: var(--text-muted); }

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s4);
}
.card {
  padding: var(--s6) var(--s5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: all 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-card-sm);
  background: var(--accent-bg);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--display-font);
}
.card-icon.warm { background: var(--accent-warm-soft); color: var(--accent-warm); }
.card h3 { margin-bottom: var(--s3); font-size: 1.25rem; }
.card p { font-size: 0.9375rem; }

/* ========== 3-STEP PROCESS (Gojiberry-style) ========== */
.steps-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  position: relative;
}
@media (min-width: 900px) {
  .steps-3 { grid-template-columns: repeat(3, 1fr); }
}
.step-3 {
  position: relative;
  padding: var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  transition: all 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.step-3:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.step-3-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text);
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--s4);
}
.step-3 h3 { margin-bottom: var(--s3); font-size: 1.375rem; }
.step-3 p { font-size: 0.9375rem; line-height: 1.6; }

/* ========== TWO COLUMN ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s7);
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}
.feature-list {
  margin-top: var(--s5);
  list-style: none;
  display: grid;
  gap: var(--s4);
}
.feature-list li {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: var(--r-pill);
  background: var(--accent-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8L7 12L13 4' stroke='%238B9D88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.feature-list li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-list li small {
  color: var(--text-muted);
  font-size: 0.9375rem;
  display: block;
  font-weight: 400;
}

/* ========== MACHINE SHOWCASE ========== */
.showcase {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--surface-soft) 0%, var(--surface-tint) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  position: relative;
  overflow: hidden;
}
.showcase-glow {
  position: absolute;
  width: 70%; height: 70%;
  top: 15%; left: 15%;
  background: radial-gradient(circle, rgba(139, 157, 136, 0.25) 0%, transparent 65%);
  filter: blur(40px);
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
.machine {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.machine-body {
  width: 55%;
  height: 60%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2EDE0 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.machine-body::before {
  content: '';
  position: absolute;
  top: 12%; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 22%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(139, 157, 136, 0.5);
  animation: screenGlow 4s ease-in-out infinite;
}
@keyframes screenGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(139, 157, 136, 0.4); }
  50% { box-shadow: 0 0 50px rgba(139, 157, 136, 0.7); }
}
.machine-body::after {
  content: '';
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 8%;
  background: var(--text);
  border-radius: 0 0 4px 4px;
}
.machine-cup {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 11%;
  height: 13%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0EAD8 100%);
  border: 1px solid var(--border);
  border-radius: 3px 3px 6px 6px;
  z-index: 3;
}
.machine-cup::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  right: 10%;
  height: 70%;
  background: linear-gradient(180deg, #6B4226 0%, #3A2014 100%);
  border-radius: 2px;
}
.machine-vapor {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 4px;
  height: 30%;
  background: linear-gradient(to top, transparent 0%, rgba(31, 27, 22, 0.18) 30%, transparent 100%);
  filter: blur(3px);
  animation: rise 4s ease-in-out infinite;
  z-index: 4;
}
.machine-vapor:nth-child(2) { left: 47%; animation-delay: 1.3s; animation-duration: 5s; }
.machine-vapor:nth-child(3) { left: 53%; animation-delay: 2.6s; animation-duration: 4.5s; }
@keyframes rise {
  0% { transform: translateX(-50%) translateY(0) scaleY(0.6); opacity: 0; }
  20% { opacity: 0.9; }
  100% { transform: translateX(-50%) translateY(-100%) scaleY(1.2); opacity: 0; }
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s4);
}
.stat-card {
  padding: var(--s5) var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  text-align: left;
}
.stat-card-value {
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.03em;
}
.stat-card-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== VSL VIDEO EMBED ========== */
.vsl-section {
  background: var(--surface-soft);
}
.vsl-wrapper {
  max-width: 920px;
  margin: 0 auto;
  background: var(--text);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: var(--s5);
  background: linear-gradient(135deg, #2A2520 0%, #1F1B16 100%);
}
.vsl-play {
  width: 80px;
  height: 80px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 250ms ease;
  border: 4px solid rgba(255,255,255,0.1);
}
.vsl-play:hover { transform: scale(1.08); }
.vsl-placeholder h3 { color: white; margin-bottom: var(--s2); }
.vsl-placeholder p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  padding: var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: all 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing-amount {
  font-family: var(--display-font);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-amount-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: grid;
  gap: var(--s2);
  margin-top: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid var(--border-light);
}
.pricing-features li {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8L7 12L13 4' stroke='%238B9D88' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}
.pricing-features li.disabled::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 4L12 12M12 4L4 12' stroke='%23A8A199' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}
.testimonial {
  padding: var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--accent-bg);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--text-muted); }

/* ========== FORM ========== */
.form-section {
  background: var(--text);
  color: white;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139, 157, 136, 0.15), transparent 70%);
  pointer-events: none;
}
.form-section .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
}
.form-section h2 { color: white; }
.form-section .lead { color: rgba(255, 255, 255, 0.7); }
.form-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--r-card-lg);
  padding: var(--s7) var(--s6);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 600px) {
  .form-card { padding: var(--s5) var(--s4); }
}
.form-grid { display: grid; gap: var(--s4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 200ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-bg);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B9D88' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-card .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  text-align: center;
  margin-top: var(--s3);
}
.form-success {
  text-align: center;
  padding: var(--s6) var(--s3);
}
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--s4);
  font-weight: 700;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: var(--s3); }
.form-success p { font-size: 1rem; }

/* ========== FAQ ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--s5) 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  transition: color 200ms ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: var(--r-pill);
  background: var(--accent-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8H12M8 4V12' stroke='%238B9D88' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(135deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8H12' stroke='%238B9D88' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq-item p {
  margin-top: var(--s3);
  padding-right: var(--s5);
  color: var(--text-muted);
}

/* ========== FINAL CTA BANNER ========== */
.final-cta {
  padding: var(--s8) 0;
}
.final-cta-wrap {
  background: var(--text);
  border-radius: var(--r-card-lg);
  padding: var(--s8) var(--s5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(139, 157, 136, 0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-wrap h2 { color: white; margin-bottom: var(--s4); position: relative; z-index: 2; }
.final-cta-wrap p { color: rgba(255, 255, 255, 0.7); max-width: 600px; margin: 0 auto var(--s5); position: relative; z-index: 2; }
.final-cta-wrap .btn { position: relative; z-index: 2; }

/* ========== FOOTER ========== */
footer {
  padding: var(--s7) 0 var(--s5);
  border-top: 1px solid var(--border);
  background: var(--surface-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-items: start;
  margin-bottom: var(--s5);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); max-width: 320px; margin-top: var(--s3); }
.footer-heading {
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s3);
}
.footer-links { display: grid; gap: var(--s2); list-style: none; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; }
.footer-links a:hover { color: var(--text); }
.footer-meta {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  padding-top: var(--s4);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 60ms; }
.delay-2 { transition-delay: 120ms; }
.delay-3 { transition-delay: 180ms; }
.delay-4 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
