/* ============================================================
   AutoAccel Media Portal — Elevated Brand Styles
   Palette: Deep Navy #1E2D52 | Blue #cba92b | White #FFFFFF
   Typography: Barlow Condensed (headlines) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy:        #1E2D52;
  --navy-mid:    #2C3E6E;
  --navy-light:  #3B5080;
  --cream:       #F0F4FF;
  --cream-dark:  #E2ECFF;
  --warm-white:  #FAFCFF;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --muted:       #6B6B7A;
  --gold:        #cba92b;
  --gold-bright: #cba92b;
  --border:      #D0D8E8;
  --radius:      8px;
  --shadow:      0 4px 32px rgba(30,45,82,0.12);
  --shadow-lg:   0 12px 48px rgba(30,45,82,0.2);
  --trans:       0.2s ease;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-dark  { background: var(--text); color: var(--white); }

a { color: inherit; text-decoration: none; }

/* ---- Display Headlines ---- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.display-xl  { font-size: clamp(4rem, 10vw, 9rem); }
.display-lg  { font-size: clamp(3rem, 7vw, 6.5rem); }
.display-md  { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.display-sm  { font-size: clamp(1.8rem, 3.5vw, 3rem); }

.display .thin {
  font-weight: 700;
  color: inherit;
  opacity: 0.5;
}
.display .accent { color: var(--gold-bright); }
.display .outline {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
}

h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; }

/* ---- Label / Badge ---- */
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-navy { color: var(--navy-light); }
.label-gold { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-gold {
  background: var(--gold-bright);
  color: var(--white);
  border-color: var(--gold-bright);
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203,169,43,0.4);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 17px 40px; font-size: 1.25rem; }
.btn-block { width: 100%; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 48px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,12,22,0.95) 0%, rgba(10,12,22,0.55) 50%, rgba(10,12,22,0.7) 100%),
    linear-gradient(135deg, #0a0c16 0%, #1E2D52 40%, #0d1829 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 32px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.hero h1 .line2 {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
  color: transparent;
}
.hero h1 .line3 {
  display: block;
  color: var(--gold-bright);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-path-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-left: 28px;
  padding-right: 28px;
}
/* Corner text (like the deck) */
.hero-corner {
  position: absolute;
  bottom: 36px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.hero-corner-left  { left: 40px; text-align: left; }
.hero-corner-right { right: 40px; text-align: right; }

/* ---- Statement Section ---- */
.statement {
  padding: 40px 0;
  background: var(--cream);
  overflow: hidden;
}
.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 0;
}
.statement-left {
  padding: 40px 48px 40px 0;
  border-right: 1px solid var(--border);
}
.statement-left .display { color: var(--navy); line-height: 0.9; margin-bottom: 16px; }
.statement-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
}
.statement-body ul { list-style: none; margin-top: 10px; }
.statement-body ul li {
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--navy);
}
.statement-body ul li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
}
.statement-right {
  background: var(--navy);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statement-right .display { color: var(--white); line-height: 0.9; margin-bottom: 16px; }
.guarantee-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.guarantee-text strong { color: var(--gold-bright); }

/* ---- Section Header ---- */
.section-header { margin-bottom: 56px; }
.section-header .display { color: var(--navy); margin: 10px 0 16px; }
.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ---- Video Gallery ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
}
.video-card {
  background: var(--text);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover video { transform: scale(1.03); }
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,12,22,0.92) 0%, rgba(10,12,22,0) 50%);
  pointer-events: none;
  transition: opacity var(--trans);
}
.video-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.video-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
  display: block;
}
.video-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}
.video-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
/* Play button overlay */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all var(--trans);
  pointer-events: none;
  z-index: 2;
}
.video-card:hover .video-play {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================================
   OEM Showcase
   ============================================================ */
.oem-section {
  background: var(--text);
}

/* Header */
.oem-section-header {
  padding: 80px 0 0;
}

/* Tabs */
.oem-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.oem-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  margin-bottom: -1px;
}
.oem-tab:hover { color: rgba(255,255,255,0.75); }
.oem-tab.active {
  color: var(--white);
  border-bottom-color: var(--gold-bright);
}
.oem-tab-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.oem-tab-more {
  cursor: default;
  opacity: 0.5;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

/* Panel visibility */
.oem-panel { display: none; }
.oem-panel.active { display: block; }

/* Hero split */
.oem-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  background: #0a0c16;
  min-height: 480px;
}
.oem-hero-img {
  position: relative;
  overflow: hidden;
}
.oem-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.oem-hero-img:hover img { transform: scale(1.03); }
.oem-hero-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 16px;
  background: rgba(0,0,0,0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.oem-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}
.cadillac-placeholder-hero {
  text-align: center;
}
.oem-hero-info {
  background: #0d1020;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.oem-brand-name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.oem-brand-name span { color: rgba(255,255,255,0.35); }
.oem-hero-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.oem-stat-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.oem-stat {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.oem-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 4px;
}
.oem-deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.oem-deliverable-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.03);
}
.cadillac-tags span {
  border-color: rgba(203,169,43,0.2);
  color: rgba(203,169,43,0.45);
  background: rgba(203,169,43,0.04);
}

/* Gallery */
.oem-gallery-wrap {
  background: #080a12;
  padding-top: 32px;
}
.oem-gallery-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}
.oem-gallery-label span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.oem-gallery-scroll-hint {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}
.oem-gallery {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  overflow-x: auto;
  padding: 20px 32px 48px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
  -webkit-overflow-scrolling: touch;
}
.oem-gallery::-webkit-scrollbar { height: 4px; }
.oem-gallery::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.oem-gallery-item {
  flex-shrink: 0;
  width: 320px;
  position: relative;
  overflow: hidden;
  background: #111;
}
.oem-gallery-item.oem-wide  { width: 500px; }
.oem-gallery-item.oem-tall  { width: 200px; }
.oem-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.oem-gallery-item:hover img { transform: scale(1.04); }
.oem-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 7px 12px;
  background: rgba(0,0,0,0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity var(--trans);
}
.oem-gallery-item:hover .oem-gallery-caption { opacity: 1; }

/* ---- How It Works ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.step-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.pricing-grid-single {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  gap: 2px;
  margin-bottom: 2px;
}
.pricing-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--trans);
}
.pricing-card:hover { border-color: var(--navy); z-index: 1; }
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.featured-badge {
  display: inline-block;
  background: var(--gold-bright);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.5); }
.plan-price {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.85;
  color: var(--navy);
  margin-bottom: 6px;
}
.plan-price sup { font-size: 2rem; vertical-align: top; margin-top: 12px; }
.pricing-card.featured .plan-price { color: var(--white); }
.plan-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-card.featured .plan-sub { color: rgba(255,255,255,0.45); }
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}
.pricing-card.featured .plan-divider { background: rgba(255,255,255,0.15); }
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
}
.plan-features li:last-child { border-bottom: none; }
.pricing-card.featured .plan-features li {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.08);
}
.plan-features li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- OEM Video Deliverables ---- */
.oem-video-section {
  background: #060810;
  padding: 40px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.oem-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 0;
}
.oem-video-card {
  background: #0a0c14;
  position: relative;
  overflow: hidden;
}
.oem-video-card video {
  width: 100%;
  display: block;
  background: #000;
}
.oem-video-card:not(.oem-video-vertical) video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.oem-video-vertical {
  grid-row: span 1;
}
.oem-video-vertical video {
  aspect-ratio: 9/16;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
/* YouTube iframe embeds */
.oem-video-embed { position: relative; width: 100%; overflow: hidden; }
.oem-video-embed-16x9 { aspect-ratio: 16/9; }
.oem-video-embed-9x16 { aspect-ratio: 9/16; }
.oem-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.oem-video-format-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  pointer-events: none;
}
.oem-video-meta {
  padding: 12px 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.oem-video-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2px;
}
.oem-video-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}

/* ---- Guarantee Banner ---- */
.guarantee-banner {
  background: var(--navy);
  border-top: 3px solid var(--gold-bright);
  border-bottom: 3px solid var(--gold-bright);
  padding: 40px 0;
}
.guarantee-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.guarantee-banner-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.guarantee-clock {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.guarantee-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-bright);
}
.guarantee-slash {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
}
.guarantee-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.guarantee-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
}
.guarantee-sub strong { color: var(--gold-bright); font-weight: 700; }

/* ---- Pricing Category Label ---- */
.pricing-category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-cat-icon {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ---- 2-col pricing grid ---- */
.pricing-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

/* ---- Total Creative Card ---- */
.total-creative-card {
  background: var(--navy);
  display: grid;
  grid-template-columns: 340px 1px 1fr;
  gap: 0;
  margin-bottom: 2px;
}
.tc-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-badge {
  display: inline-block;
  background: var(--gold-bright);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.tc-price {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.85;
  color: var(--white);
  margin-bottom: 28px;
}
.tc-price sup { font-size: 2rem; vertical-align: top; margin-top: 14px; }
.tc-mo {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.tc-guarantee {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
}
.tc-guarantee-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tc-guarantee-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-bright);
}
.tc-guarantee-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.tc-guarantee-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tc-divider {
  background: rgba(255,255,255,0.1);
  margin: 40px 0;
}
.tc-right {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.tc-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tc-include-block {
  background: rgba(255,255,255,0.05);
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.07);
}
.tc-include-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.tc-include-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.tc-include-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ---- Quote Block ---- */
.quote-block {
  background: var(--text);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.quote-block .display { color: var(--white); margin-bottom: 12px; }
.quote-block p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.8;
}
.quote-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.quote-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.quote-feature::before {
  content: '✦';
  color: var(--gold-bright);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ---- CTA Strip ---- */
.cta-strip {
  background: var(--gold-bright);
  padding: 0;
  overflow: hidden;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px 0;
}
.cta-strip .display { color: var(--white); }
.cta-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-top: 8px;
}

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-logo img { height: 36px; opacity: 0.85; margin-bottom: 14px; display: block; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,12,22,0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: 2px;
  padding: 48px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.modal-close:hover { color: var(--text); }
.modal-plan-header {
  border-left: 4px solid var(--navy);
  padding-left: 16px;
  margin-bottom: 28px;
}
.modal-plan-header .display { color: var(--navy); line-height: 1; }
.modal-plan-header .plan-sub-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.stripe-notice {
  background: var(--cream);
  border-left: 3px solid var(--navy-light);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---- Form Inputs (shared) ---- */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
label .req { color: #e53e3e; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,45,82,0.08);
}
textarea { resize: vertical; min-height: 100px; }

/* ---- OEM Multi-Select Picker ---- */
.oem-picker { position: relative; }
.oem-picker-display {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color var(--trans);
  user-select: none;
}
.oem-picker-display:hover { border-color: var(--navy); }
.oem-picker-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  z-index: 50;
  box-shadow: var(--shadow);
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.oem-picker-dropdown.open { display: block; }
.oem-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background var(--trans);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--border);
}
.oem-option:last-child { border-bottom: none; }
.oem-option:hover { background: var(--accent, #E8EDF8); }
.oem-option-note {
  display: block;
  font-size: 0.68rem;
  color: #999;
  font-weight: 400;
  margin-top: 1px;
  line-height: 1.3;
}
.oem-option input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

/* ---- Intake Form Page ---- */
.form-page {
  min-height: 100vh;
  background: var(--cream);
  padding: 64px 20px;
}
.form-card {
  background: var(--warm-white);
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 60px;
}
.form-page-header { margin-bottom: 40px; }
.form-page-header img { height: 36px; margin-bottom: 28px; display: block; }
.form-page-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 0.95;
  margin-bottom: 12px;
}
.form-page-header p { font-size: 0.95rem; color: var(--muted); }
.form-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin: 36px 0 20px;
}
.plan-pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.plan-pill {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  background: var(--white);
  color: var(--text);
}
.plan-pill:hover, .plan-pill.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.form-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.form-footer p { font-size: 0.8rem; color: var(--muted); }

/* ---- Success Page ---- */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 40px 20px;
}
.success-card {
  background: var(--warm-white);
  padding: 64px 60px;
  max-width: 580px;
  width: 100%;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.8rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
}
.success-card h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 0.9;
  margin-bottom: 16px;
}
.success-card > p { color: var(--muted); margin-bottom: 36px; line-height: 1.8; }
.next-steps {
  text-align: left;
  background: var(--cream);
  padding: 28px 32px;
  margin-bottom: 36px;
}
.next-steps-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.next-step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  background: var(--navy);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.next-step-item span { font-size: 0.88rem; color: var(--text); line-height: 1.5; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .statement-inner { grid-template-columns: 1fr; }
  .statement-left { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 0; }
  .statement-right { padding: 48px 0; background: var(--navy); }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-card { border-bottom: 1px solid var(--border); }
  .oem-hero { grid-template-columns: 1fr; }
  .oem-video-grid { grid-template-columns: 1fr 1fr; }
  .oem-video-vertical { grid-row: span 1; }
  .oem-video-vertical video { aspect-ratio: 9/16; height: auto; }
  .oem-hero-info { padding: 36px 28px; }
  .oem-gallery { padding: 16px 20px 36px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-2col { grid-template-columns: 1fr; }
  .total-creative-card { grid-template-columns: 1fr; }
  .tc-divider { display: none; }
  .tc-left { padding: 40px 28px; }
  .tc-right { padding: 28px 28px 40px; }
  .tc-includes-grid { grid-template-columns: 1fr; gap: 2px; }
  .quote-block { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-strip-inner { grid-template-columns: 1fr; padding: 48px 0; }
  .form-card { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .success-card { padding: 48px 28px; }
  .hero-corner { display: none; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
}
