/* ═══════════════════════════════════════════════════════
   PIONEER FMCG — Obsidian & Gold Luxury Redesign
   A premium, glassmorphic dark-theme investor portal.
   ═══════════════════════════════════════════════════════ */

/* ═══ FONT INHERITANCE / LOCAL INTER FALLBACKS ═══ */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter_Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter_Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ═══ CSS VARIABLES (DARK LUXURY DESIGN SYSTEM) ═══ */
:root {
  --bg-deep: #030712;          /* Darkest obsidian black */
  --bg-surface: rgba(10, 20, 36, 0.65); /* Translucent frosted glass card */
  --bg-surface-solid: #091220; /* Fallback solid card background */
  --bg-surface-light: rgba(22, 38, 62, 0.5); /* Slightly lighter container background */
  --border-gold-dim: rgba(212, 168, 67, 0.15); /* Subdued gold frame */
  --border-gold-bright: rgba(212, 168, 67, 0.45); /* Bright gold accent outline */
  --border-slate-dim: rgba(255, 255, 255, 0.08); /* Translucent gray separator */
  --border-slate-bright: rgba(255, 255, 255, 0.18); /* Active input border */
  
  --text-primary: #f8fafc;     /* Ice white */
  --text-secondary: #cbd5e1;   /* Soft slate gray */
  --text-muted: #94a3b8;       /* Dark slate gray */
  --text-light: #64748b;       /* Muted helper text */
  
  --accent-gold: #d4a843;      /* Branding gold */
  --accent-gold-dark: #b8860b; /* Deep metallic gold */
  --accent-gold-light: #fbbf24;/* Vibrant yellow-gold */
  --accent-gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d4a843 50%, #8b6508 100%);
  --accent-gold-glow: rgba(212, 168, 67, 0.25);
  
  --accent-green: #10b981;     /* Active verification status */
  --accent-green-bg: rgba(16, 185, 129, 0.08);
  --accent-green-border: rgba(16, 185, 129, 0.25);

  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-glass: 0 10px 40px 0 rgba(0, 0, 0, 0.55);
  --shadow-gold-hover: 0 12px 40px rgba(212, 168, 67, 0.18), 0 0 15px rgba(212, 168, 67, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ═══ GLOBAL RESET & BASE STYLES ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
  letter-spacing: -0.01em;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ═══ CUSTOM SCROLLBARS ═══ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-light);
  border-radius: 5px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ═══ ACCESSIBILITY & UTILITIES ═══ */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent-gold); color: var(--bg-deep);
  padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; }

/* ═══ LAYOUT & SPATIAL STRUCTURE ═══ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2.5rem; }
.section-header { text-align: center; margin-bottom: 5rem; position: relative; z-index: 10; }

/* ═══ TYPOGRAPHY ═══ */
.display-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 6.5vw, 5.2rem);
  font-weight: 500; line-height: 1.1; color: var(--text-primary);
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.15; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.display-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 500; color: var(--text-primary);
}

.body-lg {
  font-size: 1.15rem; font-weight: 400; line-height: 1.8; color: var(--text-secondary);
}
.body-md {
  font-size: 0.95rem; font-weight: 400; line-height: 1.75; color: var(--text-muted);
}
.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-gold); margin-bottom: 0.85rem;
  display: inline-block;
}
.italic-gold {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 2rem; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent-gold-gradient); color: var(--bg-deep);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}
.btn-ghost {
  background: transparent; border: 1.5px solid var(--border-slate-bright); color: var(--text-primary);
}
.btn-ghost:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.05);
  color: var(--accent-gold);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--bg-surface-light); border: 1px solid var(--border-slate-dim); color: var(--text-primary);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-slate-bright);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.95rem; }

/* ═══ CSS ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.45; }
}
.hero-animate {
  opacity: 0; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered load delays */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* NATIVE SCROLL REVEAL (CSS ONLY FOR MODERN BROWSER COMPS) */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(60px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .scroll-reveal {
      animation: fadeInUp auto linear backwards;
      animation-timeline: view();
      animation-range: entry 10% entry 35%;
    }
  }
}

/* ═══ SITE NAVIGATION HEADER ═══ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(3, 7, 18, 0.75);
  border-bottom: 1px solid var(--border-slate-dim);
  padding: 1.3rem 0;
  transition: all 0.35s ease;
}
.site-nav.scrolled {
  padding: 0.9rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--accent-gold-gradient);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.nav-logo svg path { stroke: var(--bg-deep); }
.nav-brand:hover .nav-logo { transform: scale(1.05) rotate(2deg); }
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 2.75rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s ease; position: relative;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--accent-gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1.5px; background: var(--accent-gold); transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 0.85rem; }
.nav-actions .btn { padding: 0.65rem 1.4rem; font-size: 0.82rem; }
.hamburger {
  display: none; width: 28px; height: 28px;
  flex-direction: column; justify-content: center; gap: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-primary); transition: all 0.3s ease; border-radius: 2px;
}

/* ═══ MOBILE SIDEBAR OVERLAY ═══ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9998;
  background: #030712;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; pointer-events: none; transform: scale(1.05);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  visibility: hidden;
}
.mobile-menu.open { opacity: 0.98; pointer-events: all; transform: scale(1); visibility: visible; }
.mobile-menu-close {
  position: absolute; top: 1.75rem; right: 2rem;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--text-primary); border-radius: 50%;
  border: 1.5px solid var(--border-slate-bright); transition: all 0.2s;
}
.mobile-menu-close:hover { border-color: var(--accent-gold); background: var(--bg-surface-light); }
.mobile-menu-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.mobile-menu-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 500; color: var(--text-primary); transition: color 0.2s;
}
.mobile-menu-nav a:hover { color: var(--accent-gold); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 1rem; align-items: center; width: 80%; max-width: 320px; }
.mobile-menu-cta .btn { width: 100%; }

/* ═══ HERO SECTION ═══ */
.hero {
  min-height: 100svh; padding-top: 170px; padding-bottom: 7rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: 
    radial-gradient(circle at 50% -30%, rgba(212, 168, 67, 0.11) 0%, transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(17, 30, 50, 0.25) 0%, transparent 65%);
}
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 960px; margin: 0 auto; padding: 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(18, 34, 58, 0.5); border: 1px solid var(--border-gold-dim);
  border-radius: 100px; padding: 0.55rem 1.4rem; margin-bottom: 2.75rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-green); animation: pulse 2s ease-in-out infinite;
}
.hero-badge-text { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.03em; }
.hero h1 { margin-bottom: 2rem; }
.hero-sub { max-width: 720px; margin: 0 auto 3.25rem; font-weight: 300; }
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap; margin-bottom: 5rem;
}

/* HERO PROOF STATS BAR */
.hero-proof { width: 100%; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: var(--bg-surface); border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-lg); padding: 2.25rem 3rem;
  max-width: 820px; margin: 0 auto;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-stat { text-align: center; flex: 1; padding: 0 2rem; }
.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--accent-gold); line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 50px; background: var(--border-slate-dim); }

/* ═══ BRANDS LISTING SECTION ═══ */
.brands {
  padding: 8rem 0;
  background: #050a15;
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.brand-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-md); overflow: hidden;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.brand-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold-hover);
}
.brand-card-image {
  position: relative; height: 260px; overflow: hidden;
  background: rgba(18, 34, 58, 0.3);
}
.brand-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-card:hover .brand-card-image img { transform: scale(1.08); }
.brand-card-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--bg-deep); background: var(--accent-gold-gradient);
  border-radius: 4px; padding: 0.3rem 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.brand-card-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.brand-card-meta {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem;
}
.brand-class {
  font-size: 0.68rem; font-weight: 600; color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.08); border: 1px solid var(--border-gold-dim);
  border-radius: 4px; padding: 0.25rem 0.7rem; letter-spacing: 0.04em;
}
.brand-year { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.brand-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem;
}
.brand-card-category { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 2rem; font-weight: 300; }
.brand-card-actions { display: flex; gap: 0.75rem; margin-top: auto; }
.brand-card-actions .btn {
  flex: 1; justify-content: center; padding: 0.8rem 1.25rem; font-size: 0.85rem;
}

/* ═══ WHY ACQUIRE (BENEFITS GRID) ═══ */
.why-acquire {
  padding: 8rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.why-card {
  padding: 2.75rem 2.25rem;
  background: var(--bg-surface-light);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent-gold-gradient);
  opacity: 0; transition: opacity 0.4s ease;
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold-dim);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem; color: var(--accent-gold);
}
.why-card h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* ═══ METRICS SUMMARY BAR ═══ */
.metrics {
  border-top: 1px solid var(--border-slate-dim);
  border-bottom: 1px solid var(--border-slate-dim);
  background: rgba(10, 20, 36, 0.8);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-item {
  padding: 4.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border-slate-dim);
}
.metric-item:last-child { border-right: none; }
.metric-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 500; color: var(--text-primary); line-height: 1; margin-bottom: 0.75rem;
}
.metric-number span {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ═══ VIRTUAL DATA ROOM (DUE DILIGENCE VAULT) ═══ */
.vdr-section {
  padding: 8rem 0;
  background: #050a15;
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.vdr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.vdr-folder {
  background: rgba(18, 34, 58, 0.35);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vdr-folder:hover {
  background: rgba(212, 168, 67, 0.03);
  border-color: var(--border-gold-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-hover);
}
.vdr-icon {
  width: 60px; height: 60px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
}
.vdr-folder:hover .vdr-icon { transform: scale(1.1) rotate(-3deg); }
.vdr-folder h3 {
  font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem;
}
.vdr-folder p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.vdr-badge {
  font-size: 0.65rem; font-weight: 700; color: var(--accent-green);
  background: var(--accent-green-bg); border: 1px solid var(--accent-green-border);
  border-radius: 30px; padding: 0.25rem 0.8rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.vdr-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green);
}

/* ═══ INTERACTIVE ESTIMATOR WIDGET ═══ */
.estimator-section {
  padding: 8rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.estimator-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}
.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.estimator-control-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.estimator-control-group label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary);
}
.estimator-slider-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.estimator-slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1);
  outline: none; transition: background 0.3s;
}
.estimator-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-gold-gradient); cursor: pointer;
  box-shadow: 0 0 10px rgba(212,168,67,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.1s, background-color 0.2s;
}
.estimator-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.estimator-slider-value {
  font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--accent-gold);
  min-width: 90px; text-align: right;
}
.estimator-info-card {
  background: rgba(5, 10, 18, 0.45);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.estimator-info-header { margin-bottom: 2rem; }
.estimator-info-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem;
}
.estimator-info-class { font-size: 0.78rem; color: var(--accent-gold); font-weight: 500; }
.estimator-results {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-bottom: 2.5rem;
}
.estimator-result-item {
  border-left: 2.5px solid var(--accent-gold); padding-left: 1.2rem;
}
.estimator-result-val {
  font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--text-primary); line-height: 1.25; margin-bottom: 0.2rem;
}
.estimator-result-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══ TRANSACTION PROCESS FLOW (TIMELINE) ═══ */
.process {
  padding: 8rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.process-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.process-context { position: sticky; top: 140px; }
.process-context .body-md { margin-top: 1.25rem; }
.process-cta { margin-top: 3rem; }
.timeline { position: relative; }
.timeline-line {
  position: absolute; left: 30px; top: 50px; bottom: 50px; width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--border-slate-dim));
}
.process-step {
  display: grid; grid-template-columns: 60px 1fr; gap: 2.25rem;
  padding: 2.25rem 0; border-bottom: 1px solid var(--border-slate-dim);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid var(--border-gold-dim); background: var(--bg-surface-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--accent-gold);
  position: relative; z-index: 1;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step:hover .step-number {
  background: var(--accent-gold-gradient); color: var(--bg-deep); border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold-hover);
}
.step-body { padding-top: 0.75rem; }
.step-body h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.step-body p { font-size: 0.9rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* ═══ OWNER PROFILE / CREDENTIALS ═══ */
.owner {
  padding: 8rem 0;
  background: #050a15;
  border-top: 1px solid var(--border-slate-dim);
}
.owner-grid { display: grid; grid-template-columns: 420px 1fr; gap: 6rem; align-items: center; }
.owner-image { position: relative; }
.owner-image img {
  width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-slate-bright);
}
.owner-image-border {
  position: absolute; inset: -8px; border-radius: calc(var(--radius-lg) + 8px);
  border: 1.5px solid var(--border-gold-dim); pointer-events: none;
}
.owner-info { margin-top: 3rem; padding-top: 2.25rem; border-top: 1px solid var(--border-slate-dim); }
.owner-name-block { margin-bottom: 1.75rem; }
.owner-title {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent-gold); margin-bottom: 0.4rem;
}
.owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--text-primary);
}
.owner-contacts { display: flex; flex-direction: column; gap: 0.95rem; }
.owner-contact-item {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-size: 0.9rem; color: var(--text-secondary); transition: all 0.25s;
}
.owner-contact-item:hover { color: var(--accent-gold); transform: translateX(2px); }
.owner-contact-item svg { color: var(--accent-gold); flex-shrink: 0; }

/* ═══ FAQ SECTION (ACCORDION) ═══ */
.faq {
  padding: 8rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-slate-dim);
}
.faq-container {
  border: 1px solid var(--border-slate-dim); border-radius: var(--radius-md); overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-glass);
}
.faq-item { border-bottom: 1px solid var(--border-slate-dim); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 2.25rem; cursor: pointer;
  font-size: 1rem; font-weight: 500; color: var(--text-primary);
  text-align: left; transition: background-color 0.25s; gap: 1.5rem;
  background: rgba(10, 20, 36, 0.3);
}
.faq-question:hover { background-color: rgba(212, 168, 67, 0.03); color: var(--accent-gold); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border-slate-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); color: var(--bg-deep);
  background: var(--accent-gold-gradient); border-color: var(--accent-gold);
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer-inner {
  padding: 0 2.25rem 2rem;
  font-size: 0.92rem; font-weight: 300; color: var(--text-secondary); line-height: 1.75;
}

/* ═══ TRANSACTION PROPOSAL BUILDER / INQUIRY FORM ═══ */
.inquiry-section {
  padding: 8rem 0;
  background: #050a15;
  border-top: 1px solid var(--border-slate-dim);
}
.inquiry-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  margin-top: 3.5rem;
}
.proposal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.65rem; }
.form-group-full { grid-column: span 2; }
.form-group label {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(5, 10, 18, 0.5);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.3rem;
  color: var(--text-primary);
  font-family: inherit; font-size: 0.92rem;
  outline: none; transition: all 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212,168,67,0.18);
  background: rgba(5, 10, 18, 0.75);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-actions { grid-column: span 2; display: flex; justify-content: center; margin-top: 1.5rem; }

/* ═══ NATIVE HTML5 DIALOG POPUPS (BRAND & VDR VAULTS) ═══ */
dialog {
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  background: #091220;
  color: var(--text-primary);
  padding: 3rem;
  max-width: 660px;
  width: 90%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), var(--shadow-gold-hover);
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  scale: 0.9;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), scale 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
dialog[open] {
  opacity: 1;
  scale: 1;
}
dialog::backdrop {
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
dialog[open]::backdrop {
  opacity: 1;
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-slate-dim);
}
.dialog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
}
.dialog-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-slate-bright);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.dialog-close:hover {
  background: var(--bg-surface-light);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.dialog-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Dialog Grid Helper Classes */
.dialog-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.dialog-legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: rgba(5, 10, 18, 0.4);
  padding: 1.25rem;
  border: 1px solid var(--border-slate-dim);
  border-radius: 6px;
}
.dialog-footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  border-top: 1px solid var(--border-slate-dim);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Tabbed details inside Brand Dialog */
.dialog-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-slate-dim);
  margin-bottom: 1.75rem;
  gap: 1.5rem;
}
.dialog-tab-btn {
  padding: 0.6rem 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.dialog-tab-btn:hover { color: var(--text-primary); }
.dialog-tab-btn.active {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.dialog-tab-pane {
  display: none;
}
.dialog-tab-pane.active {
  display: block;
  animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* VDR Dialog Document Viewer Details */
.vdr-doc-viewer {
  background: rgba(3, 7, 18, 0.4);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
}
.vdr-doc-icon { font-size: 4rem; color: var(--accent-gold); margin-bottom: 1rem; }
.vdr-doc-name { font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.vdr-doc-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.vdr-doc-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.2rem; background: var(--accent-green-bg);
  border: 1px solid var(--accent-green-border); border-radius: 30px;
  color: var(--accent-green); font-size: 0.78rem; font-weight: 600;
}

/* ═══ FINAL ACQUISITION CALL TO ACTION ═══ */
.final-cta {
  padding: 9rem 0; text-align: center; position: relative;
  background: var(--bg-deep); color: var(--text-primary); overflow: hidden;
  border-top: 1px solid var(--border-slate-dim);
}
.final-cta-glow {
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 200%;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta .label { color: var(--accent-gold); }
.final-cta .display-lg { color: var(--text-primary); }
.final-cta .italic-gold { background: var(--accent-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.final-cta .body-lg { max-width: 620px; margin: 1.75rem auto 3.5rem; color: var(--text-secondary); font-weight: 300; }
.final-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.25rem;
}
.final-cta-fine { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

/* ═══ FOOTER ═══ */
.site-footer {
  border-top: 1px solid var(--border-slate-dim); padding: 5rem 0 3.5rem;
  background: #030712;
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem;
}
.footer-copy { font-size: 0.825rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-disclaimer { font-size: 0.72rem; color: var(--text-light); line-height: 1.7; max-width: 440px; }
.footer-right { display: flex; gap: 5rem; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent-gold); margin-bottom: 0.85rem;
}
.footer-nav a, .footer-contact a {
  font-size: 0.85rem; color: var(--text-secondary); transition: color 0.2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent-gold); }
.footer-address {
  font-size: 0.75rem; color: var(--text-light); line-height: 1.6; max-width: 250px; margin-top: 0.85rem;
}

/* ═══ FLOATING COMMUNICATION WIDGETS ═══ */
.floating-actions {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.floating-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.floating-whatsapp { background: #10b981; color: white; }
.floating-whatsapp:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }
.floating-call { background: var(--bg-surface-solid); color: var(--accent-gold); border-color: var(--border-gold-dim); }
.floating-call:hover { transform: scale(1.08) translateY(-2px); border-color: var(--accent-gold); box-shadow: var(--shadow-gold-hover); }

/* ═══ RESPONSIVE BREAKPOINTS ═══ */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .vdr-grid { grid-template-columns: repeat(2, 1fr); }
  .estimator-container { grid-template-columns: 1fr; gap: 3rem; padding: 2.5rem; }
  .owner-grid { grid-template-columns: 1fr; gap: 4rem; }
  .owner-image img { height: 440px; }
  .footer-inner { grid-template-columns: 1fr; gap: 4.5rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .process-context { position: static !important; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item { border-bottom: 1px solid var(--border-slate-dim); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; padding: 1.75rem 2rem; }
  .hero-stat-divider { display: none; }
  .hero-stat { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 1.5rem; }
  .hero { padding-top: 130px; min-height: auto; padding-bottom: 5rem; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .brands-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .vdr-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-item { border-right: none; padding: 2.5rem 1.5rem; }
  .metric-number { font-size: 3rem; }
  .owner-image img { height: 340px; }
  .proposal-form { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-group-full { grid-column: span 1; }
  .form-actions { grid-column: span 1; }
  .footer-right { flex-direction: column; gap: 3rem; }
  .final-cta-actions { flex-direction: column; width: 100%; gap: 1rem; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }
  .floating-actions { bottom: 1.5rem; right: 1.5rem; }
  .floating-btn { width: 50px; height: 50px; }
  .brand-card-image { height: 220px; }
}

@media (max-width: 440px) {
  .hero-stats { flex-direction: column; align-items: stretch; }
  .hero-stat { flex: none; padding: 1rem 0; border-bottom: 1px solid var(--border-slate-dim); }
  .hero-stat:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════
   PHASE 2 — GOOGLE ADS CONVERSION RATE OPTIMIZATION STYLES
   ═══════════════════════════════════════════════════════ */

/* ═══ STICKY CTA BAR (Component 1) ═══ */
.sticky-cta-bar {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  width: 90%;
  max-width: 800px;
  background: rgba(10, 18, 32, 0.85);
  border: 1px solid var(--border-gold-bright);
  border-radius: 100px;
  padding: 0.6rem 1.75rem;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 168, 67, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.sticky-cta-bar.visible {
  bottom: 2rem;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sticky-cta-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.sticky-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-cta-buttons .btn {
  padding: 0.45rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.sticky-cta-buttons .btn-whatsapp {
  background: #10b981;
  color: white;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta-buttons .btn-whatsapp:hover {
  background: #059669;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
  transform: translateY(-1px);
}

/* ═══ HERO LEAD CAPTURE FORM (Component 2) ═══ */
.hero-lead-capture {
  max-width: 680px;
  margin: 0 auto 3rem;
  background: rgba(10, 20, 36, 0.45);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
}
.hero-lead-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.hero-lead-form .form-input {
  flex: 1;
  background: rgba(5, 10, 18, 0.6);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s;
}
.hero-lead-form .form-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.15);
  background: rgba(5, 10, 18, 0.85);
}
.hero-lead-form .btn {
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.hero-lead-sublinks {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.8rem;
  padding: 0 0.5rem;
}
.hero-lead-sublinks a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.hero-lead-sublinks a:hover {
  color: var(--accent-gold);
}
.hero-lead-sublinks .wa-direct-link {
  font-weight: 500;
  color: var(--accent-green);
}
.hero-lead-sublinks .wa-direct-link:hover {
  color: #34d399;
}
.form-message-inline {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}
.form-message-inline.success {
  color: var(--accent-green);
}
.form-message-inline.error {
  color: #ef4444;
}

/* ═══ SOCIAL PROOF & TESTIMONIALS (Component 3) ═══ */
.social-proof {
  padding: 8rem 0;
  background: #030712;
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.trust-badges-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border-slate-dim);
  padding-bottom: 3.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(18, 34, 58, 0.25);
  border: 1px solid var(--border-slate-dim);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
}
.trust-badge-icon {
  font-size: 1.15rem;
}
.trust-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.author-title {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.trusted-by-text {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 3.5rem;
  font-style: italic;
}

/* ═══ URGENCY SIGNALS (Component 4) ═══ */
.brand-card-hot-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  box-shadow: 0 4px 10px rgba(239,68,68,0.25);
  animation: pulse 2s ease-in-out infinite;
}
.interest-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold-dim);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  margin-top: 1.75rem;
  box-shadow: var(--shadow-sm);
}

/* ═══ EXIT-INTENT DIALOG STYLING (Component 5) ═══ */
.exit-dismiss-link {
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.exit-dismiss-link:hover {
  color: var(--text-primary) !important;
}
.exit-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ═══ RISK REVERSAL & GUARANTEES (Component 7) ═══ */
.guarantee-section {
  padding: 8rem 0;
  background: #050a15;
  border-top: 1px solid var(--border-slate-dim);
  position: relative;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.guarantee-card {
  background: var(--bg-surface-light);
  border: 1px solid var(--border-slate-dim);
  border-left: 3px solid var(--accent-green);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: all 0.3s;
}
.guarantee-card:hover {
  border-left-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guarantee-card-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.guarantee-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.guarantee-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}
.guarantee-subtext {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 3.5rem;
}

/* ═══ NAVIGATION PHONE LINK (Component 8) ═══ */
.nav-contact-text {
  display: flex;
  align-items: center;
}
.phone-link-text a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  transition: color 0.2s;
}
.phone-link-text a:hover {
  color: var(--text-primary);
}

/* ═══ MOBILE STICKY CTA (Component 10) ═══ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1.5px solid var(--border-gold-bright);
  padding: 0.85rem 1.5rem;
  z-index: 850;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
}

/* ═══ CONVERSION STRIP (Component 11) ═══ */
.conversion-strip {
  background: linear-gradient(135deg, #0c1525 0%, #030712 100%);
  border-top: 1px solid var(--border-slate-dim);
  border-bottom: 1px solid var(--border-slate-dim);
  padding: 4.5rem 0;
  position: relative;
}
.conversion-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.conversion-strip-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.conversion-strip-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
}
.conversion-strip-actions .btn {
  padding: 0.9rem 2.25rem;
}

/* ═══════════════════════════════════════════════════════
   PHASE 3 — VISUAL POLISH & PREMIUM OVERHAUL OVERRIDES
   ═══════════════════════════════════════════════════════ */

/* Unify section paddings with responsive clamp */
.brands, .why-acquire, .vdr-section, .estimator-section, .process, .owner, .inquiry-section, .guarantee-section, .faq, .social-proof {
  padding: clamp(4.5rem, 8vw, 8.5rem) 0;
}
.final-cta {
  padding: clamp(5.5rem, 10vw, 9.5rem) 0;
}

/* Alternate Section Background Colors */
.social-proof, .estimator-section, .inquiry-section, .faq {
  background-color: var(--bg-deep);
}
.brands, .why-acquire, .vdr-section, .process, .owner, .guarantee-section {
  background-color: #050a15;
}

/* Orbiting Radial-gradient Orbs for Hero */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  mix-blend-mode: screen;
}
.orb-gold {
  top: -10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 80%);
  animation: orbOrbit1 20s ease-in-out infinite alternate;
}
.orb-teal {
  bottom: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 80%);
  animation: orbOrbit2 25s ease-in-out infinite alternate;
}
.orb-violet {
  top: 30%;
  right: 40%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 80%);
  animation: orbOrbit3 22s ease-in-out infinite alternate;
}

@keyframes orbOrbit1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 50px) scale(1.15); }
}
@keyframes orbOrbit2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, -60px) scale(1.2); }
}
@keyframes orbOrbit3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -80px) scale(0.9); }
}

/* Two-column Hero Layout */
.hero {
  padding-top: 150px;
  padding-bottom: clamp(4.5rem, 8vw, 8.5rem);
}
.hero-container-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
  text-align: left;
  margin-bottom: 3.5rem;
}
.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-text-side .hero-sub {
  margin: 0 0 2rem 0;
  text-align: left;
}
.hero-image-side {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Premium Brand Showcase Panel */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(160deg, rgba(18, 34, 58, 0.55), rgba(5, 10, 18, 0.65));
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-glass), 0 0 40px rgba(212, 168, 67, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-showcase-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.hero-showcase-title {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-showcase-count {
  font-size: 0.7rem; font-weight: 600; color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.1); border: 1px solid var(--border-gold-dim);
  padding: 0.25rem 0.7rem; border-radius: 100px;
}
.hero-showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem;
}
.showcase-tile {
  background: rgba(5, 10, 18, 0.5);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
}
.showcase-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-bright);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.showcase-tile-img {
  height: 130px; overflow: hidden; background: rgba(18, 34, 58, 0.4);
}
.showcase-tile-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-tile:hover .showcase-tile-img img { transform: scale(1.06); }
.showcase-tile-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0.85rem;
}
.showcase-tile-name {
  font-size: 0.82rem; font-weight: 600; color: var(--text-primary);
}
.showcase-tile-class {
  font-size: 0.62rem; font-weight: 600; color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.1); padding: 0.15rem 0.45rem; border-radius: 4px;
}
.hero-showcase-footer {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 1px solid var(--border-slate-dim);
  font-size: 0.72rem; color: var(--text-muted);
}
.hero-showcase-footer svg { color: var(--accent-green); flex-shrink: 0; }

/* Premium Form Input styling */
.hero-lead-form-premium {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
}
.input-group-premium {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.input-group-premium .input-icon {
  position: absolute;
  left: 1.25rem;
  color: var(--accent-gold);
  pointer-events: none;
  opacity: 0.75;
}
.form-input-premium {
  width: 100%;
  background: rgba(5, 10, 18, 0.65);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.25rem 0.95rem 3.25rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s;
}
.form-input-premium:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
  background: rgba(5, 10, 18, 0.85);
}
.btn-pulse-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.25);
}
.btn-pulse-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-sm);
  border: 2.5px solid var(--accent-gold);
  opacity: 0;
  animation: pulseGlowRing 2.5s cubic-bezier(0.25, 0, 0, 1) infinite;
}
@keyframes pulseGlowRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* Stats Row Restructure */
.hero-stats-row {
  width: 100%;
  margin-top: 3rem;
}
.hero-stats-new {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-slate-dim);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
}
.hero-stat-new {
  text-align: center;
  flex: 1;
  padding: 0 1.5rem;
}
.hero-stat-divider-new {
  width: 1px;
  height: 45px;
  background: var(--border-slate-dim);
  align-self: center;
  flex-shrink: 0;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* Card image overlay gradient & premium badge */
.brand-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 21, 0.6) 0%, transparent 60%);
  pointer-events: none;
}
.brand-card-badge {
  background: rgba(3, 7, 18, 0.6) !important;
  color: var(--accent-gold) !important;
  border: 1px solid var(--border-gold-dim);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 30px !important;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}
.brand-card-hot-badge {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 30px !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Trust Badges Premium Grid */
.trust-badge-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-slate-dim);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-badge-premium:hover {
  border-color: var(--border-gold-dim);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-hover);
}
.trust-badge-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
}
.trust-badge-premium:hover .trust-badge-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-gold-gradient);
  color: var(--bg-deep);
  border-color: var(--accent-gold);
}
.trust-badge-premium .trust-badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Testimonial Premium Overhaul */
.testimonial-card-premium {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-dim);
  border-radius: var(--radius-md);
  padding: 3rem;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.testimonial-card-premium:hover {
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-6px);
}
.testimonial-quote-decor {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(212, 168, 67, 0.08);
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  font-style: normal;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}
.testimonial-author-premium {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Why Card Numbers */
.why-card {
  position: relative;
}
.why-card-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 168, 67, 0.06);
  transition: color 0.3s;
}
.why-card:hover .why-card-number {
  color: rgba(212, 168, 67, 0.12);
}

/* Conversion Strip Overlay & Particles */
.conversion-strip {
  overflow: hidden;
  position: relative;
}
.conversion-strip-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.conversion-strip-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.conversion-strip-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
}
.conversion-strip-particles .p1 { top: 20%; left: 15%; animation: floatSlow 12s infinite alternate; }
.conversion-strip-particles .p2 { bottom: 30%; right: 25%; animation: floatSlow 15s infinite alternate; }
.conversion-strip-particles .p3 { top: 60%; left: 80%; animation: floatSlow 10s infinite alternate; }

@keyframes floatSlow {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-20px) translateX(15px); }
}
.btn-zoom:hover {
  transform: scale(1.03) translateY(-1px);
}

/* Estimator pattern */
.estimator-section {
  background-image: 
    radial-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

/* Connecting Line highlight */
.timeline-line {
  background: linear-gradient(to bottom, var(--accent-gold) 0%, rgba(212, 168, 67, 0.3) 50%, var(--border-slate-dim) 100%) !important;
}

/* Guarantee section gold accents */
.guarantee-card {
  border-left: 3px solid var(--accent-gold) !important;
}
.guarantee-card-icon {
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}
.guarantee-card-icon svg {
  display: block;
}

/* FAQ Icon rotation overrides */
.faq-icon-svg {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border-slate-bright);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon-svg {
  transform: rotate(180deg); color: var(--bg-deep);
  background: var(--accent-gold-gradient); border-color: var(--accent-gold);
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}
.faq-icon-svg svg {
  display: block;
}

/* Final CTA block updates */
.final-cta-urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid var(--border-gold-dim);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-urgency-bar svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Footer bottom layout updates */
.site-footer {
  background: #02050b !important;
}
.footer-copy a:hover {
  color: var(--accent-gold) !important;
}

/* ═══ CRO RESPONSIVE ADJUSTMENTS OVERRIDES ═══ */
@media (max-width: 900px) {
  .hero-grid-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-text-side {
    align-items: center;
  }
  .hero-text-side .hero-sub {
    text-align: center;
  }
  .hero-lead-form-premium {
    margin: 0 auto;
  }
  .hero-image-side {
    height: auto;
  }
  .hero-showcase {
    margin: 0 auto;
  }
  .hero-stats-new {
    flex-wrap: wrap;
    gap: 0;
    padding: 1.5rem;
  }
  .hero-stat-divider-new { display: none; }
  .hero-stat-new { flex: 0 0 50%; padding: 1rem 0.5rem; }
}

@media (max-width: 900px) {
  .nav-contact-text { display: none; }
  .sticky-cta-bar { display: none !important; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-badges-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .conversion-strip-inner { flex-direction: column; text-align: center; gap: 1.5rem; }

  /* Mobile dialog overrides */
  dialog {
    padding: 1.5rem;
    width: 95%;
  }
  .dialog-tabs {
    gap: 0.75rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dialog-tabs::-webkit-scrollbar {
    display: none;
  }
  .dialog-tab-btn {
    padding: 0.4rem 0.25rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  .dialog-body {
    font-size: 0.88rem;
    line-height: 1.6;
  }
}
@media (max-width: 640px) {
  /* ── Global / Spatial structure ── */
  .container, .container-narrow {
    padding: 0 1.25rem;
  }
  body {
    padding-bottom: 64px;
  }

  /* ── Hero Section ── */
  .hero {
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  .hero-content {
    padding: 0;
  }
  .hero-lead-capture {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem;
  }
  .hero-lead-form-premium {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    gap: 0.85rem;
  }
  .input-group-premium .form-input-premium {
    background: rgba(10, 20, 36, 0.5);
    border: 1px solid var(--border-slate-dim);
  }
  .hero-badge {
    white-space: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0.45rem 0.85rem;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
  }
  .hero-badge-text {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    font-size: 0.72rem;
  }
  .display-xl {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .hero-lead-sublinks {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    margin-top: 0.75rem;
  }
  .hero-lead-sublinks a {
    display: inline-block;
    font-size: 0.78rem;
  }

  /* ── Hero Showcase panel ── */
  .hero-image-side {
    height: auto;
  }
  .hero-showcase {
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem;
  }
  .hero-showcase-header {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }
  .hero-showcase-title {
    font-size: 0.62rem;
  }
  .hero-showcase-count {
    font-size: 0.62rem;
    padding: 0.15rem 0.5rem;
  }
  .hero-showcase-grid {
    gap: 0.5rem;
  }
  .showcase-tile-img {
    height: 80px;
  }
  .showcase-tile-meta {
    padding: 0.4rem 0.5rem;
  }
  .showcase-tile-name {
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .showcase-tile-class {
    font-size: 0.55rem;
    padding: 0.1rem 0.3rem;
    flex-shrink: 0;
  }
  .hero-showcase-footer {
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.65rem;
    line-height: 1.35;
    padding-top: 0.65rem;
    margin-top: 0.75rem;
  }
  .hero-showcase-footer span {
    white-space: normal;
    word-break: break-word;
  }

  /* ── Hero Stats ── */
  .hero-stats-new {
    flex-direction: column;
    gap: 0;
    padding: 1.25rem;
  }
  .hero-stat-divider-new {
    display: none;
  }
  .hero-stat-new {
    border-bottom: 1px solid var(--border-slate-dim);
    padding: 0.65rem 0;
    flex: none;
  }
  .hero-stat-new:last-child {
    border-bottom: none;
  }
  .hero-stat-number {
    font-size: 2rem;
  }
  .stat-suffix {
    font-size: 1.6rem;
  }
  .hero-stat-label {
    font-size: 0.65rem;
  }

  /* ── Trust Badges — Compact horizontal rows on mobile ── */
  .trust-badges-strip {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
  }
  .trust-badge-premium {
    flex-direction: row !important;
    text-align: left !important;
    padding: 0.85rem 1rem !important;
    gap: 0.75rem;
  }
  .trust-badge-premium .trust-badge-icon-wrap {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    margin-bottom: 0 !important;
  }
  .trust-badge-premium .trust-badge-icon-wrap svg {
    width: 18px;
    height: 18px;
  }
  .trust-badge-premium .trust-badge-text {
    font-size: 0.8rem;
  }

  /* ── Mobile Sticky Bottom CTA & Floating Buttons ── */
  .mobile-sticky-cta {
    display: block;
    z-index: 990;
    padding: 0.6rem 1rem;
  }
  .mobile-sticky-cta .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.88rem;
  }
  .floating-actions {
    bottom: 4.5rem !important;
    right: 0.75rem !important;
    z-index: 890;
    pointer-events: none;
  }
  .floating-btn {
    width: 40px !important;
    height: 40px !important;
    pointer-events: auto;
  }
  .floating-btn svg {
    width: 16px;
    height: 16px;
  }

  /* ── Conversion Strip ── */
  .conversion-strip {
    padding: 3rem 0;
  }
  .conversion-strip-content h3 {
    font-size: 1.4rem;
  }

  /* ── Sections tighter spacing ── */
  .brands { padding: 5rem 0; }
  .why-acquire { padding: 5rem 0; }
  .social-proof { padding: 5rem 0; }
  .final-cta { padding: 5rem 0; }

  /* ── Testimonials ── */
  .testimonial-card-premium {
    padding: 1.5rem;
  }

  /* ── Layout containers ── */
  .estimator-container {
    padding: 1.25rem;
    gap: 2rem;
  }
  .estimator-info-card {
    padding: 1.25rem;
  }
  .estimator-results {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
  }
  .inquiry-container {
    padding: 1.25rem;
  }

  /* ── Dialog / Exit Popup ── */
  dialog {
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.5rem;
  }
  .dialog-grid-2col, .dialog-legal-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .dialog-footer-actions {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }
  .dialog-footer-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Brand cards ── */
  .brand-card-actions {
    gap: 0.5rem;
  }
  .brand-card-actions .btn {
    padding: 0.7rem 0.6rem;
    font-size: 0.82rem;
  }
  .brand-card-image { height: 200px; }
  .brand-card-title { font-size: 1.4rem; }
  .brand-card-body { padding: 1.25rem; }

  /* ── Guarantee Grid ── */
  .guarantee-card {
    padding: 1.5rem;
  }

  /* ── Grid Override ── */
  .hero-grid-split {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .timeline-line {
    left: 25px;
    top: 40px;
    bottom: 40px;
  }
}

/* Extra narrow screens (below 400px) */
@media (max-width: 400px) {
  .container, .container-narrow {
    padding: 0 1rem;
  }
  .hero { padding-top: 90px; }
  .display-xl {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }
  .hero-sub { font-size: 0.85rem; }
  .showcase-tile-img { height: 70px; }
  .floating-actions {
    right: 0.5rem !important;
  }
  .floating-btn {
    width: 36px !important;
    height: 36px !important;
  }
  .floating-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* Global scroll-safety */
html, body {
  overflow-x: hidden;
}



