/* =========================================
   LEGACY FIRST AUTO BROKERAGE
   Black & Gold Luxury Theme
   ========================================= */

:root {
  --bg-black: #000000;
  --bg-dark: #0a0a0a;
  --bg-card: #131313;
  --bg-elevated: #1a1a1a;
  --gold: #D4AF37;
  --gold-bright: #F4D03F;
  --gold-dim: #8B7355;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --text-white: #FFFFFF;
  --text-light: #E8E8E8;
  --text-muted: #9A9A9A;
  --border: #262626;
  --border-gold: rgba(212, 175, 55, 0.3);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
  --max-width: 1280px;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 50px;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.text-gold { color: var(--gold); }
.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-black);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--bg-black);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border);
  padding: 16px 32px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn .arrow {
  transition: transform 0.3s ease;
  font-size: 1.1em;
}

.btn:hover .arrow { transform: translateX(6px); }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  border-bottom-color: var(--border-gold);
  background: rgba(0, 0, 0, 0.97);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 78px;
  width: auto;
  transition: height 0.3s ease;
  display: block;
}

.scrolled .brand img { height: 60px; }

.footer-brand .brand img {
  height: 110px;
  margin-bottom: 8px;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.28em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.phone-link svg { color: var(--gold); }

.phone-link:hover { color: var(--gold); }

.btn-nav {
  padding: 13px 26px;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg { width: 28px; height: 28px; }

/* =========================================
   DROPDOWN NAV
   ========================================= */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 0.7rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.25s ease;
  display: inline-block;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-black);
  border: 1px solid var(--border-gold);
  list-style: none;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-align: left;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero h1 {
  margin-bottom: 28px;
}

.hero h1.hero-h1-single {
  font-size: clamp(1.05rem, 3.2vw, 2.4rem);
  white-space: nowrap;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.hero-sub-tagline {
  display: block;
  margin-top: 8px;
  white-space: nowrap;
  font-size: clamp(0.78rem, 1.5vw, 1.1rem);
}

@media (max-width: 1024px) {
  .hero-sub-tagline { white-space: normal; }
}

/* TAGLINE STRIP — full-width band under the hero */
.tagline-strip {
  padding: 56px 0 64px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.03) 0%, rgba(0,0,0,0) 100%);
}

.tagline-strip .tagline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.tagline-strip .tagline-row span {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  color: var(--text-white);
  font-size: clamp(1.4rem, 4.8vw, 4.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

.tagline-strip .tagline-row span:first-child { text-align: left; }
.tagline-strip .tagline-row span:last-child  { text-align: right; }

@media (max-width: 768px) {
  .tagline-strip { padding: 40px 0 44px; }
  .tagline-strip .tagline-row { gap: 12px; }
  .tagline-strip .tagline-row span {
    font-size: clamp(0.95rem, 4.4vw, 1.6rem);
  }
}

.hero h1 .accent {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: clamp(0.55rem, 0.9vw, 0.72rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.25;
}

.stat-num {
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  transform: rotate(-3deg);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--border-gold);
  transform: rotate(3deg);
  opacity: 0.5;
}

.hero-shield {
  position: relative;
  z-index: 2;
  width: 75%;
  filter: drop-shadow(0 25px 60px rgba(212, 175, 55, 0.25));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 12px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =========================================
   PAGE HEADER (interior pages)
   ========================================= */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 100px) 0 100px;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    var(--bg-black);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 65%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

/* =========================================
   SECTION COMMONS
   ========================================= */
section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-header h2 { margin-bottom: 20px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.5s ease;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  background: var(--bg-elevated);
}

.service-card:hover::before { width: 100%; }

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.service-icon svg { width: 32px; height: 32px; color: var(--gold); }

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-card:hover .service-icon svg { color: var(--bg-black); }

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.96rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card .learn-more:hover { gap: 14px; }

/* =========================================
   SERVICES — DETAILED
   ========================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse .service-detail-visual { order: -1; }

.service-detail h2 { margin-bottom: 24px; }

.service-detail .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 36px;
}

.service-detail li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-light);
}

.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.service-detail-visual {
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border-gold);
}

.service-detail-visual svg {
  width: 45%;
  height: auto;
  color: var(--gold);
  opacity: 0.85;
}

/* =========================================
   PROCESS / HOW IT WORKS
   ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 40px 32px;
  position: relative;
  border-right: 1px solid var(--border);
}

.process-step:last-child { border-right: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Process — vertical timeline (how-it-works page) */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}

.timeline-item {
  position: relative;
  padding-left: 130px;
  padding-bottom: 70px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-black);
  border: 1px solid var(--border-gold);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--bg-black);
  color: var(--gold);
  z-index: 2;
}

.timeline-num span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-item h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.timeline-item .meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* =========================================
   WHY US
   ========================================= */
.why-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 { margin-bottom: 28px; }

.why-content > p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 40px;
  line-height: 1.75;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  background: rgba(212, 175, 55, 0.05);
}

.why-feature-icon svg { width: 22px; height: 22px; color: var(--gold); }

.why-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-white);
}

.why-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.why-visual {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-visual::before, .why-visual::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--border-gold);
}

.why-visual::after {
  inset: 36px;
  opacity: 0.5;
}

.why-visual .seal {
  font-family: 'Playfair Display', serif;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-visual .seal-num {
  font-size: 5.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.why-visual .seal-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
    var(--bg-black);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before, .cta-strip::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip::before { top: -200px; left: -100px; }
.cta-strip::after { bottom: -200px; right: -100px; }

.cta-strip .container { position: relative; z-index: 2; }

.cta-strip h2 { margin-bottom: 20px; }
.cta-strip p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FORM
   ========================================= */
.lead-form-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 24px;
}

.form-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.75;
}

.contact-list {
  list-style: none;
  margin-bottom: 40px;
}

.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-list .icon svg { width: 20px; height: 20px; color: var(--gold); }

.contact-list .label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-list .value {
  color: var(--text-white);
  font-weight: 500;
  font-size: 1rem;
}

.lead-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group label .req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-black);
  border: 1px solid var(--border);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elevated);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}

.form-group select {
  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='%23D4AF37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-fineprint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .brand { margin-bottom: 22px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-bottom .social {
  display: flex;
  gap: 14px;
}

.footer-bottom .social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-bottom .social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom .social svg { width: 16px; height: 16px; }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .why-grid, .form-wrap, .service-detail { grid-template-columns: 1fr; gap: 50px; }
  .service-detail.reverse .service-detail-visual { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }
  .nav-links, .phone-link { display: none; }
  .menu-toggle { display: block; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-black);
    border-bottom: 1px solid var(--border-gold);
    padding: 30px;
    gap: 20px;
  }

  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.65rem; }

  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 32px 24px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; }

  .timeline::before { left: 28px; }
  .timeline-item { padding-left: 80px; }
  .timeline-num { width: 60px; height: 60px; font-size: 1.4rem; }

  .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 50px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* Mobile dropdown: collapse to inline list */
  .nav-links.mobile-open .has-dropdown { width: 100%; }
  .nav-links.mobile-open .dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-links.mobile-open .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 0 0 16px;
    min-width: 0;
    margin-top: 8px;
    border-left: 1px solid var(--border-gold);
  }
  .nav-links.mobile-open .dropdown-menu a {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* =========================================
   FAQ / GLOSSARY / COMPARE PAGES
   ========================================= */
.faq-container {
  max-width: 880px;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.faq-item p:last-child { margin-bottom: 0; }

.faq-item strong {
  color: var(--text-white);
  font-weight: 600;
}

.faq-item em {
  color: var(--gold);
  font-style: italic;
}

/* Glossary */
.glossary-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.glossary-item:last-child { border-bottom: none; }

.glossary-item h2,
.glossary-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.3;
}

.glossary-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 720px) {
  .glossary-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Compare table — Leasing vs Buying */
.compare-table {
  border: 1px solid var(--border-gold);
  background: rgba(255,255,255,0.015);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--border);
}

.compare-row:last-child { border-bottom: none; }

.compare-cell {
  padding: 18px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-right: 1px solid var(--border);
}

.compare-cell:last-child { border-right: none; }

.compare-head .compare-cell {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(212, 175, 55, 0.05);
}

.compare-label {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 18px;
  }
  .compare-row:last-child .compare-cell:last-child { border-bottom: none; }
  .compare-head { display: none; }
  .compare-label {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
  }
}
