/* ================================================================
   HOME PAGE — Obsidian GT Theme
   New full-screen hero, split sections, editorial layout
   ================================================================ */

/* ── Site Hero ───────────────────────────────────────────────── */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: #030303;
}

/* Atmospheric background layers */
.site-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 0% 50%, rgba(215,38,56,0.12) 0%, transparent 42%),
    radial-gradient(circle at 100% 30%, rgba(212,175,55,0.09) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 35%);
}

/* Subtle grid overlay */
.site-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

/* Left content pane */
.hero-content {
  position: relative; z-index: 3;
  padding: 120px 48px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Red left accent stripe */
.hero-content::before {
  content: '';
  position: absolute; left: 56px; top: 25%; bottom: 25%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--red) 30%, var(--gold) 70%, transparent);
  border-radius: 2px;
}

.hero-tagline {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.hero-tagline .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 12px var(--red);
  animation: pulseDot 2s ease-in-out infinite;
}
.hero-tagline span {
  color: var(--muted); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-headline {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; margin: 0 0 28px;
  text-transform: uppercase;
}
.hero-headline .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-headline .line-dim {
  display: block; color: rgba(255,255,255,0.40);
}

.hero-sub {
  font-size: 1.08rem; color: #b8bfc7; line-height: 1.68;
  max-width: 440px; margin-bottom: 36px;
}

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px;
}

/* Floating stat badges bottom-left */
.hero-stats {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  min-width: 90px;
  transition: border-color var(--t2) var(--ease);
}
.hero-stat:hover { border-color: var(--border-gold); }
.hero-stat strong {
  font-size: 1.5rem; font-weight: 900; color: var(--gold-light); line-height: 1;
}
.hero-stat span {
  font-size: 0.72rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px; white-space: nowrap;
}

/* Right visual pane */
.hero-visual {
  position: relative; z-index: 2;
  height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-car-wrap {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-car-img {
  width: 105%; max-width: none; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.88;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.85));
  animation: heroCarIn 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroCarIn {
  from { opacity:0; transform: scale(1.06) translateX(40px); }
  to   { opacity:0.88; transform: scale(1) translateX(0); }
}

/* 3D canvas inside hero fills the visual pane */
.hero-car-wrap [data-model] {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.hero-car-wrap [data-model] canvas {
  width: 100% !important; height: 100% !important;
  display: block;
}
/* Fallback image inside the 3D holder */
.hero-car-wrap [data-model] img.hero-car-img {
  width: 105%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.88;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.85));
  animation: heroCarIn 1.2s cubic-bezier(0.16,1,0.3,1) both;
}

/* Gold glow under car */
.hero-car-glow {
  position: absolute; left: 10%; right: 10%; bottom: 15%; height: 18%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.30) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none; z-index: 5;
}

/* Gradient fade on left edge of visual */
.hero-visual::before {
  content: ''; position: absolute; inset: 0 auto 0 0; z-index: 4;
  width: 220px;
  background: linear-gradient(90deg, #030303, transparent);
}
/* Gradient fade at bottom */
.hero-visual::after {
  content: ''; position: absolute; inset: auto 0 0; z-index: 4;
  height: 180px;
  background: linear-gradient(0deg, #030303, transparent);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  animation: fadeInUp 1.5s 1s var(--ease) both;
}
.hero-scroll-hint span {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateX(-50%) translateY(12px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

/* ── Services Band ───────────────────────────────────────────── */
.services-band {
  background: var(--bg-2); padding: 100px 0;
  position: relative;
}
.services-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), rgba(215,38,56,0.4), transparent);
}

.section-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 48px;
}
.section-label-num {
  font-size: 0.72rem; color: var(--red); font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.section-label-line {
  flex: 0 0 40px; height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.section-label-text {
  font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
}

.service-num-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.038);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px 24px 28px;
  transition: all var(--t2) var(--ease);
  height: 100%;
}
.service-num-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t2) var(--ease);
}
.service-num-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.service-num-card:hover::before { opacity: 1; }
.svc-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 4rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.04); letter-spacing: -0.04em;
  pointer-events: none; -webkit-user-select: none; user-select: none;
  transition: color var(--t2) var(--ease);
}
.service-num-card:hover .svc-num { color: rgba(212,175,55,0.08); }
.svc-icon {
  font-size: 2.2rem; color: var(--gold-light); margin-bottom: 18px;
  display: block;
}
.svc-title { font-size: 1.18rem; font-weight: 800; margin: 0 0 10px; }
.svc-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.svc-price { color: var(--gold-light); font-weight: 800; font-size: 0.94rem; margin-bottom: 16px; display: block; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 700; color: var(--gold-light);
  transition: gap var(--t1) var(--ease);
}
.svc-link:hover { gap: 12px; color: #fff; }

/* ── Stats Band ──────────────────────────────────────────────── */
.stats-band {
  background: #050505; padding: 72px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; text-align: center;
}
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--t2) var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(212,175,55,0.04); }
.stat-num {
  display: block;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600;
}

/* ── Split About ─────────────────────────────────────────────── */
.about-split {
  padding: 110px 0; background: var(--bg);
  position: relative; overflow: hidden;
}
.about-split-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.10) 0%, transparent 60%),
              linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 50%);
}
/* Gold corner accent */
.about-img-wrap::before {
  content: ''; position: absolute;
  top: 16px; left: 16px; width: 60px; height: 60px; z-index: 2;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  border-radius: 2px 0 0 0;
}
.about-copy { position: relative; }
.about-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900; line-height: 1.02; margin-bottom: 24px;
}
.about-heading em {
  font-style: normal; display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-body { color: #c0c6cc; line-height: 1.72; margin-bottom: 36px; font-size: 1.02rem; }
.about-creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px;
}
.about-cred {
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color var(--t2) var(--ease);
}
.about-cred:hover { border-color: var(--border-gold); }
.about-cred strong {
  display: block; font-size: 1.6rem; font-weight: 900; color: var(--gold-light);
}
.about-cred span { font-size: 0.82rem; color: var(--muted); }

/* ── Offers ──────────────────────────────────────────────────── */
.offers-section {
  padding: 100px 0; background: var(--bg-2);
}

/* ── Interactive 3D ──────────────────────────────────────────── */
.car3d-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(215,38,56,0.10), transparent 35%),
    radial-gradient(circle at 75% 25%, rgba(212,175,55,0.07), transparent 32%),
    #050505;
}
.car3d-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(145deg, #050505, #0e0e0e);
  min-height: 520px; display: grid; place-items: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.60);
}
.car3d-wrap::before {
  content: ''; position: absolute; left: 5%; right: 5%; bottom: 8%;
  height: 20%; border-radius: 50%;
  background: rgba(212,175,55,0.12); filter: blur(36px); pointer-events: none;
}
.car3d-wrap canvas,
.car3d-wrap img { position: relative; z-index: 1; }
.car3d-wrap img { max-height: 380px; }
.hotspot-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.hs-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,212,71,0.30);
  border-radius: 999px; padding: 8px 16px;
  font-size: 0.83rem; font-weight: 600; color: #f5e8a2;
  background: rgba(212,175,55,0.07);
  transition: all var(--t1) var(--ease); cursor: default;
}
.hs-tag:hover {
  background: rgba(212,175,55,0.18); border-color: rgba(255,212,71,0.65);
  transform: translateY(-2px);
}
.hs-tag i { color: var(--gold-light); }

/* ── Packages ────────────────────────────────────────────────── */
.packages-section { padding: 100px 0; background: var(--bg); }
.pkg-rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 370px); gap: 22px;
  overflow-x: auto; padding-bottom: 14px;
  scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.22) transparent;
}
.pkg-rail::-webkit-scrollbar { height: 4px; }
.pkg-rail::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.22); border-radius: 2px; }
.pkg-card {
  background: rgba(255,255,255,0.038);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px;
  transition: all var(--t2) var(--ease); position: relative; overflow: hidden;
}
.pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.pkg-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-name { font-size: 1.3rem; font-weight: 850; margin: 0 0 10px; }
.pkg-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.pkg-price { font-size: 2rem; font-weight: 900; color: var(--gold-light); display: block; margin-bottom: 20px; }
.pkg-list { list-style: none; padding: 0; margin: 0 0 24px; }
.pkg-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: #ddd;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list i { color: var(--gold-light); margin-top: 1px; flex-shrink: 0; }
.pkg-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 0.9rem; color: var(--gold-light);
  transition: gap var(--t1), color var(--t1);
}
.pkg-link:hover { gap: 14px; color: #fff; }

/* ── Video Band ──────────────────────────────────────────────── */
.video-section {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; overflow: hidden; background: #040404;
}
.video-section video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35;
}
.video-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.40) 60%, rgba(0,0,0,0.75) 100%);
}
.video-copy {
  position: relative; z-index: 1;
  padding: 80px 0; max-width: 640px;
}
.video-copy h2 {
  font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 900; line-height: 1; margin-bottom: 20px;
}

/* ── Process ─────────────────────────────────────────────────── */
.process-section { padding: 100px 0; background: var(--bg-2); }
.process-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-track::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg,
    transparent, var(--gold-light) 15%, var(--gold-light) 85%, transparent);
  opacity: 0.30;
}
.proc-step {
  padding: 0 20px; text-align: center; position: relative;
}
.proc-dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #060606;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(212,175,55,0.08);
  transition: box-shadow var(--t2) var(--ease);
}
.proc-step:hover .proc-dot { box-shadow: 0 0 0 14px rgba(212,175,55,0.14); }
.proc-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.proc-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* ── Why Us ──────────────────────────────────────────────────── */
.whyus-section { padding: 100px 0; background: var(--bg); }
.whyus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.whyus-card {
  padding: 30px 26px; border: 1px solid var(--border);
  border-radius: var(--r); background: rgba(255,255,255,0.036);
  transition: all var(--t2) var(--ease); position: relative; overflow: hidden;
}
.whyus-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.whyus-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.whyus-card:hover::after { transform: scaleX(1); }
.whyus-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold-light); margin-bottom: 18px;
}
.whyus-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.whyus-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.62; margin: 0; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; background: var(--bg-2); }
.testi-card {
  background: rgba(255,255,255,0.040);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; height: 100%;
  transition: all var(--t2) var(--ease);
}
.testi-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 4px; color: var(--gold-light); margin-bottom: 18px; }
.testi-quote {
  font-size: 0.95rem; color: #c8cdd3; line-height: 1.70;
  margin-bottom: 22px; position: relative; padding-left: 18px;
}
.testi-quote::before {
  content: '"'; position: absolute; left: 0; top: -4px;
  font-size: 2rem; color: var(--gold); line-height: 1; font-family: serif;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #060606; flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: 0.94rem; }
.testi-car { font-size: 0.80rem; color: var(--muted); margin-top: 2px; }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-section { padding: 100px 0; background: var(--bg); }
.blog-card {
  background: rgba(255,255,255,0.038);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; height: 100%;
  transition: all var(--t2) var(--ease);
}
.blog-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-thumb {
  height: 210px; overflow: hidden; background: #060606;
}
.blog-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.blog-card:hover .blog-thumb img { transform: scale(1.07); }
.blog-body { padding: 26px 24px; }
.blog-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
  font-size: 0.78rem; color: var(--muted);
}
.blog-cat {
  color: var(--gold-light); font-weight: 700; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.blog-title { font-size: 1.08rem; font-weight: 800; margin: 0 0 10px; line-height: 1.35; }
.blog-excerpt { font-size: 0.87rem; color: var(--muted); line-height: 1.62; margin-bottom: 18px; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 700; color: var(--gold-light);
  transition: gap var(--t1), color var(--t1);
}
.blog-link:hover { gap: 12px; color: #fff; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: var(--bg-2); }

/* ── Keyword Chips ───────────────────────────────────────────── */
.chips-section {
  padding: 52px 0; background: #050505;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.chips-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── CTA Hero ────────────────────────────────────────────────── */
.cta-hero {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d0203, #050505 50%, #0d0b00);
}
.cta-hero::before {
  content: ''; position: absolute;
  top: -40%; left: -20%; width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(215,38,56,0.14), transparent 60%);
  pointer-events: none;
}
.cta-hero::after {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 60%);
  pointer-events: none;
}
.cta-hero-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 680px; margin: 0 auto;
}
.cta-hero-inner h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem); font-weight: 900;
  line-height: 1; margin-bottom: 20px; text-transform: uppercase;
}
.cta-hero-inner h2 span {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-hero-inner p {
  font-size: 1.08rem; color: #b8bfc7; line-height: 1.65;
  margin-bottom: 40px;
}
.cta-btn-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { padding: 100px 36px 72px 48px; }
  .hero-content::before { left: 30px; }
  .about-split-inner { gap: 48px; }
}
@media (max-width: 991px) {
  .site-hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-visual {
    position: absolute; inset: 0; z-index: 0; opacity: 0.25; height: 100%;
  }
  .hero-content {
    grid-column: 1; padding: 130px 24px 90px;
    position: relative; z-index: 2;
  }
  .hero-content::before { display: none; }
  .hero-headline { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-stats { gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .about-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 350px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-track::before { display: none; }
  .whyus-grid { grid-template-columns: 1fr 1fr; }
  .pkg-rail { grid-auto-flow: row; grid-auto-columns: auto; }
}
@media (max-width: 767px) {
  .hero-headline { font-size: clamp(2.4rem, 12vw, 4rem); }
  .about-creds { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
  .hero-content { padding: 110px 18px 80px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cta-hero-inner h2 { font-size: 2.2rem; }
}
