/* ============================================================
   Venue Master — SaaS Marketing Stylesheet v2
   Loaded only on [lamar_vm_*] shortcode pages.
   vm-* prefixed classes for navbar/FAQ avoid collision with
   the La Mar venue website CSS.
   ============================================================ */

/* ─── vm-* Class Definitions ────────────────────────────── */
.vm-navbar          { position:sticky; top:0; z-index:1000; background:transparent; border-bottom:1px solid transparent; transition:background .35s cubic-bezier(.4,0,.2,1),backdrop-filter .35s cubic-bezier(.4,0,.2,1),border-color .35s cubic-bezier(.4,0,.2,1); }
.vm-navbar.scrolled { background:rgba(11,31,58,.88); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-bottom-color:rgba(201,168,76,.12); }
.vm-navbar__inner   { display:flex; align-items:center; justify-content:space-between; height:72px; }
.vm-navbar__logo    { display:flex; align-items:baseline; gap:0; flex-shrink:0; text-decoration:none; }
.vm-logo-venue      { font-family:var(--font-body); font-size:1.25rem; font-weight:500; color:var(--cream); letter-spacing:-.01em; }
.vm-logo-master     { font-family:var(--font-heading); font-size:1.5rem; font-weight:600; font-style:italic; color:var(--gold); letter-spacing:-.01em; }
.vm-navbar__nav     { display:none; align-items:center; gap:0; }
.vm-navbar__link    { font-size:.875rem; font-weight:500; color:rgba(250,247,242,.7); padding:8px 20px; transition:color .2s; letter-spacing:.01em; }
.vm-navbar__link:hover { color:var(--cream); }
.vm-navbar__link.active { color:var(--cream); }
.vm-navbar__cta     { margin-left:12px; }
.vm-navbar__hamburger { display:flex; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; padding:8px; background:none; border:none; cursor:pointer; }
.vm-navbar__hamburger span { display:block; height:1.5px; background:var(--cream); transition:all .25s cubic-bezier(.4,0,.2,1); }
.vm-navbar__hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.vm-navbar__hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.vm-navbar__hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
.vm-nav-overlay     { position:fixed; inset:0; background:var(--navy); z-index:999; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:40px; opacity:0; pointer-events:none; transition:opacity .4s cubic-bezier(.4,0,.2,1); }
.vm-nav-overlay.open { opacity:1; pointer-events:auto; }
.vm-nav-overlay__link { font-family:var(--font-heading); font-size:2.75rem; font-weight:400; color:rgba(250,247,242,.7); transition:color .2s; }
.vm-nav-overlay__link:hover { color:var(--gold); }
.vm-nav-overlay__link.active { color:var(--gold); }
.vm-nav-overlay__cta { margin-top:8px; }
@media (min-width:1024px) { .vm-navbar__nav { display:flex; } .vm-navbar__hamburger { display:none; } }

/* Animation classes */
.vm-fade-up  { opacity:0; transform:translateY(30px); transition:opacity .6s cubic-bezier(.4,0,.2,1),transform .6s cubic-bezier(.4,0,.2,1); }
.vm-fade-up.visible  { opacity:1; transform:translateY(0); }
.vm-fade-in  { opacity:0; transition:opacity .6s cubic-bezier(.4,0,.2,1); }
.vm-fade-in.visible  { opacity:1; }

/* FAQ */
.vm-faq-item { border:1px solid var(--gray-lighter); border-radius:2px; overflow:hidden; background:var(--white); transition:border-color .2s; }
.vm-faq-item.open { border-color:var(--gold); }
.vm-faq-question { width:100%; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; padding:20px 24px; text-align:left; font-family:var(--font-body); font-size:1rem; font-weight:600; color:var(--navy); gap:16px; }
.vm-faq-question:hover { background:var(--cream); }
.vm-faq-answer { max-height:0; overflow:hidden; transition:max-height .35s cubic-bezier(.4,0,.2,1); }
.vm-form-error { background:#fef2f2; border:1px solid #fecaca; border-radius:2px; padding:12px 16px; font-size:.9rem; color:#dc2626; margin-top:16px; display:none; }
.vm-form-error.visible { display:block; }
.vm-success-name { font-weight:600; color:var(--gold); }


/* ============================================================
   SHARED STYLESHEET
   ============================================================ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --navy:         #0B1F3A;
  --navy-light:   #162B4D;
  --navy-deep:    #071428;
  --gold:         #C9A84C;
  --gold-dark:    #b8943f;
  --gold-light:   #d9bc74;
  --cream:        #FAF7F2;
  --cream-dark:   #f0ebe0;
  --white:        #FFFFFF;
  --gray:         #6B7280;
  --gray-light:   #9CA3AF;
  --gray-lighter: #E5E7EB;
  --border-warm:  #E5E0D8;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sharp: 2px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-sm:   0 1px 3px rgba(11,31,58,.08), 0 1px 2px rgba(11,31,58,.06);
  --shadow-md:   0 4px 16px rgba(11,31,58,.12), 0 2px 6px rgba(11,31,58,.08);
  --shadow-lg:   0 12px 40px rgba(11,31,58,.18), 0 4px 12px rgba(11,31,58,.1);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  --transition:      0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:       1200px;
  --section-padding: 120px 0;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p { color: var(--gray); line-height: 1.8; }

/* ─── Utility ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-cream  { color: var(--cream); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sharp);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 50px;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: scale(1.02); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,247,242,.4);
}
.btn-outline-cream:hover {
  background: rgba(250,247,242,.08);
  border-color: var(--cream);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
  min-height: 40px;
}

/* ─── Section Spacing ───────────────────────────────────── */
.section { padding: var(--section-padding); }
.section--navy        { background: var(--navy); }
.section--cream       { background: var(--cream); }
.section--cream-dark  { background: var(--cream-dark); }
.section--white       { background: var(--white); }

/* ─── Section Headings ──────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading       { color: var(--navy); margin-bottom: 20px; }
.section-heading--light{ color: var(--cream); }
.section-sub           { font-size: 1.0625rem; color: var(--gray); max-width: 560px; line-height: 1.8; }
.section-sub--light    { color: rgba(250,247,242,.65); }

.section-header            { margin-bottom: 72px; }
.section-header.text-center .section-sub { margin: 0 auto; }
.section-header.text-center .section-eyebrow { justify-content: center; }
.section-header.text-center .section-eyebrow::before { display: none; }

/* ─── Navbar (base styles — positioned at page top) ─────── */
/* vm-navbar uses vm-* classes above. The .navbar class below
   is legacy — kept for any non-vm references. */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition-slow), border-color var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(11,31,58,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201,168,76,.12);
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 16px;
}
.footer__logo-venue  { font-family: var(--font-body); font-size: 1.125rem; font-weight: 500; color: var(--cream); }
.footer__logo-master { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600; font-style: italic; color: var(--gold); }

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250,247,242,.45);
  line-height: 1.65;
  max-width: 240px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,247,242,.35);
  margin-bottom: 24px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a {
  font-size: 0.9375rem;
  color: rgba(250,247,242,.5);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(201,168,76,.25);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copyright { font-size: 0.8125rem; color: rgba(250,247,242,.3); }

@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 640px)  { .footer__grid { grid-template-columns: 1fr; gap: 32px; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero--cream {
  background: var(--cream);
  padding: 100px 0 80px;
}

/* Diagonal grid lines — CSS only */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(250,247,242,.025) 60px,
      rgba(250,247,242,.025) 62px
    );
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.05;
  font-size: clamp(3rem, 6vw, 4.5rem);
}
.hero--cream h1 { color: var(--navy); }

.hero__sub {
  font-size: 1.125rem;
  color: rgba(250,247,242,.6);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.8;
}
.hero--cream .hero__sub { color: var(--gray); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Bottom fade into cream section */
.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

/* ─── Social Proof Bar ──────────────────────────────────── */
.social-proof {
  background: var(--cream);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.social-proof__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.social-proof__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.social-proof__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(11,31,58,.3);
  letter-spacing: 0.04em;
  padding: 0 32px;
  transition: color var(--transition);
}
.social-proof__name:hover { color: rgba(11,31,58,.6); }
.social-proof__sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.5rem;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

/* ─── Feature Cards — Home 3×2 Grid ────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sharp);
  padding: 40px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .features-grid { grid-template-columns: 1fr; } }

/* ─── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 80px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stats-bar__item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid rgba(201,168,76,.2);
}
.stats-bar__item:last-child { border-right: none; }

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stats-bar__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(250,247,242,.55);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-bar__grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(201,168,76,.15); padding: 0 0 48px; }
  .stats-bar__item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-sharp);
  padding: 48px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold);
  border-width: 1.5px;
  box-shadow: var(--shadow-gold);
}
.pricing-card--featured:hover {
  transform: translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0;
  white-space: nowrap;
}

.pricing-card__tier {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}
.pricing-card__desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 36px; }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.pricing-card__currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  align-self: flex-start;
  margin-top: 12px;
}
.pricing-card__period {
  font-size: 0.9rem;
  color: var(--gray);
  font-family: var(--font-body);
}
.pricing-card__setup {
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  padding-top: 4px;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border-warm);
  margin: 32px 0;
}

.pricing-card__features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.5;
}
.pricing-card__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.pricing-card__feature--group {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-top: 1px solid var(--border-warm);
  padding-top: 16px;
  margin-top: 4px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ─── Feature Sections (alternating, Features page) ─────── */
.feature-section { padding: var(--section-padding); }

.feature-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-section:nth-child(even) .feature-section__inner { direction: rtl; }
.feature-section:nth-child(even) .feature-section__inner > * { direction: ltr; }

.feature-section__visual {
  aspect-ratio: 1;
  max-height: 400px;
  border-radius: var(--radius-sharp);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,31,58,.04);
}
.feature-section--dark .feature-section__visual {
  background: rgba(250,247,242,.04);
  border-color: rgba(250,247,242,.08);
}

.feature-section__text .section-eyebrow { margin-bottom: 12px; }
.feature-section__text h2 { margin-bottom: 20px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.feature-section__text p { font-size: 1rem; margin-bottom: 28px; max-width: 480px; }

.feature-bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.feature-bullet__dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .feature-section__inner { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .feature-section__visual { max-height: 240px; }
}

/* ─── How It Works — 2×2 Step Grid ──────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}

/* Dashed connecting lines between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1.5px dashed rgba(201,168,76,.25);
  pointer-events: none;
  z-index: 0;
}
.steps-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1.5px dashed rgba(201,168,76,.25);
  pointer-events: none;
  z-index: 0;
}

.step {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); }

.step__number-ghost {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.02em;
  user-select: none;
}

.step__content { position: relative; }
.step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step__content .step__sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.step__content p { font-size: 0.9375rem; line-height: 1.75; max-width: 420px; }

/* Legacy step layout (used by old PHP) — graceful fallback */
.step__number-col { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step__number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__line { width: 2px; flex: 1; min-height: 32px; background: linear-gradient(to bottom, rgba(11,31,58,.2), transparent); margin: 0 auto; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .steps-grid::before, .steps-grid::after { display: none; }
  .step { padding: 40px 32px; }
  .step__number-ghost { font-size: 4rem; }
}

/* ─── Integrations ───────────────────────────────────────── */
.integrations-strip { padding: var(--section-padding); background: var(--cream-dark); }
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}
.integration-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sharp);
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy);
  transition: all var(--transition);
}
.integration-chip:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,.15);
  transform: translateY(-2px);
}
.integration-chip__dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 60px,
    rgba(201,168,76,.025) 60px, rgba(201,168,76,.025) 62px
  );
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(250,247,242,.65);
  font-size: 1.125rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; padding: 18px 40px; font-size: 1rem; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { padding: var(--section-padding); background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }

.faq-item {
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-question:hover { background: rgba(201,168,76,.04); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq-answer__inner {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ─── Contact Form ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: rgba(250,247,242,.7);
  margin-bottom: 20px;
}
.contact-info__response {
  font-size: 0.875rem;
  color: rgba(250,247,242,.45);
  margin-top: 8px;
  margin-bottom: 44px;
}

.contact-bullets { display: flex; flex-direction: column; gap: 16px; }
.contact-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(250,247,242,.7);
}
.contact-bullet__check { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }

/* Form card */
.demo-form {
  background: var(--white);
  border-radius: var(--radius-sharp);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; margin-bottom: 28px; }

/* Floating-label underline input style */
.form-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.form-label .required { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid var(--border-warm);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: transparent;
  transition: border-color var(--transition);
  outline: none;
  min-height: 44px;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-lighter); }
.form-textarea { min-height: 100px; resize: none; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }

.form-submit { margin-top: 12px; }
.form-submit .btn { width: 100%; font-size: 0.875rem; letter-spacing: 0.08em; padding: 16px 32px; }

.form-disclaimer { font-size: 0.8rem; color: var(--gray-light); text-align: center; margin-top: 16px; line-height: 1.6; }
.form-disclaimer a { color: var(--gold); text-decoration: underline; }

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sharp);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 16px;
  display: none;
}
.form-error.visible { display: block; }

.form-success { text-align: center; padding: 60px 32px; display: none; }
.form-success.visible { display: block; }
.form-success__icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-sharp);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.form-success__icon svg { width: 28px; height: 28px; color: var(--gold); }
.form-success h3 { font-size: 1.75rem; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--gray); }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }
@media (max-width: 640px)  { .form-row { grid-template-columns: 1fr; } .demo-form { padding: 36px 24px; } }

/* ─── About Page ─────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sharp);
  padding: 40px;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card__icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.value-card__icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.value-card h3 { font-size: 1.375rem; color: var(--navy); margin-bottom: 14px; }
.value-card p { font-size: 0.9375rem; line-height: 1.75; }

@media (max-width: 1024px) { .mission-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px)  { .value-cards { grid-template-columns: 1fr; gap: 16px; } }

/* ─── See-all link ───────────────────────────────────────── */
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: gap var(--transition), opacity var(--transition);
}
.see-all:hover { gap: 12px; opacity: 0.85; }
.see-all svg { width: 16px; height: 16px; }

/* ─── Stagger animation helper ───────────────────────────── */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }
  body { font-size: 16px; }
  .hero { padding: 100px 0 80px; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .social-proof__name { font-size: 1rem; padding: 0 16px; }
  .pricing-card { padding: 36px 28px; }
  .pricing-card__amount { font-size: 4rem; }
  .value-cards { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero__eyebrow::before { width: 24px; }
}
