/* ==========================================================================
   DOCTOR GPU - Design System & Stylesheet
   Theme: Precision Silicon Engineering & Component Diagnostics
   Visual Ratio: 65% Deep Black / 20% Crisp White / 10-15% Doctor GPU Yellow
   ========================================================================== */

:root {
  /* Brand Color System */
  --color-black: #080808;
  --color-charcoal: #111111;
  --color-graphite: #181818;
  --color-surface-card: rgba(24, 24, 24, 0.85);
  --color-border: #292929;
  --color-border-hover: rgba(255, 210, 28, 0.4);

  --color-yellow: #FFD21C;
  --color-yellow-bright: #FFE45C;
  --color-yellow-glow: rgba(255, 210, 28, 0.2);
  --color-yellow-subtle: rgba(255, 210, 28, 0.08);

  --color-white: #FFFFFF;
  --color-gray-light: #A6A6A6;
  --color-gray-muted: #737373;
  --color-dark-inverse: #080808;

  --accent-green: #10b981;

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii & Elevation */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
  color: var(--color-gray-light);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.text-white {
  color: var(--color-white);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-dim {
  color: var(--color-gray-light);
}

.highlight-yellow {
  color: var(--color-yellow);
  font-weight: 700;
}

.highlight-yellow-glow {
  color: var(--color-yellow);
  font-weight: 700;
  text-shadow: 0 0 12px var(--color-yellow-glow);
}

.accent {
  color: var(--color-yellow);
}

/* Ambient Background Visual Elements */
.ambient-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  top: -150px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 210, 28, 0.06) 0%, transparent 70%);
}

.glow-right {
  top: 30%;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 210, 28, 0.08) 0%, transparent 60%);
}

/* Primary Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: background var(--transition-fast);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 65px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 210, 28, 0.3));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-link:hover .brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(255, 210, 28, 0.5));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-gray-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  color: var(--color-gray-light);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-item:hover {
  color: var(--color-white);
}

.nav-item:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Button Component System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  touch-action: manipulation;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  line-height: 1;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-dark-inverse);
  box-shadow: 0 4px 18px var(--color-yellow-glow);
  border-color: var(--color-yellow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-yellow-bright);
  border-color: var(--color-yellow-bright);
  box-shadow: 0 8px 26px rgba(255, 210, 28, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: var(--color-yellow-subtle);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO VIDEO SHOWCASE SECTION (Unmodified & Preserved)
   ========================================================================== */

.video-showcase-section {
  position: relative;
  width: 100%;
  margin-top: 76px; /* Offset for fixed navbar */
  padding: 0;
  background: var(--color-black);
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.video-container {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-width-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: var(--color-black);
  object-fit: cover;
}

/* Contrast Scrim for GPU Visibility on the Right */
.video-scrim {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.78) 35%, rgba(8, 8, 8, 0.25) 60%, transparent 85%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, transparent 30%, rgba(8, 8, 8, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero Statement & Action Buttons Overlay - Left Aligned */
.video-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 48px 24px 48px 80px;
  pointer-events: none;
}

.video-hero-inner {
  max-width: 680px;
  width: 100%;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.video-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
  text-shadow: 0 0 16px var(--color-yellow-glow);
  line-height: 1.4;
  text-align: left;
}

.video-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 22px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.85);
  text-align: left;
}

.video-supporting {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-white);
  max-width: 600px;
  margin-bottom: 36px;
  margin-left: 0;
  margin-right: auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
  text-align: left;
}

.video-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-video-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  background: var(--color-yellow);
  color: var(--color-dark-inverse);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-yellow);
  box-shadow: 0 6px 24px var(--color-yellow-glow);
  transition: all var(--transition-fast);
  cursor: pointer;
  line-height: 1;
}

.btn-video-primary:hover {
  transform: translateY(-2px);
  background: var(--color-yellow-bright);
  border-color: var(--color-yellow-bright);
  box-shadow: 0 8px 32px rgba(255, 210, 28, 0.55);
}

.btn-video-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  background: rgba(17, 17, 17, 0.7);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-fast);
  cursor: pointer;
  line-height: 1;
}

.btn-video-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: var(--color-yellow-subtle);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.video-sound-pill {
  position: absolute;
  bottom: 28px;
  right: 28px;
  left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(255, 210, 28, 0.4);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-yellow-glow);
  transition: all var(--transition-fast);
  z-index: 20;
  line-height: 1;
}

.video-sound-pill:hover {
  background: rgba(255, 210, 28, 0.18);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 210, 28, 0.4);
}

.video-sound-pill.unmuted {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   HERO VIDEO SHOWCASE RESPONSIVE ENHANCEMENTS
   Fixes: Mobile video section being too small, squished, or congested
   ========================================================================== */

/* Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .video-hero-content {
    padding: 48px 40px;
  }
  
  .video-hero-inner {
    max-width: 600px;
  }

  .video-headline {
    font-size: clamp(2.3rem, 4.2vw, 3.2rem);
  }
}

/* Tablets & Mobile Landscape (<= 768px) */
@media (max-width: 768px) {
  .video-showcase-section {
    margin-top: 68px;
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .video-container {
    width: 100%;
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .full-width-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  /* Deep multi-layer scrim for maximum text clarity over mobile video */
  .video-scrim {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(180deg, 
        rgba(8, 8, 8, 0.4) 0%, 
        rgba(8, 8, 8, 0.62) 32%, 
        rgba(8, 8, 8, 0.88) 65%, 
        rgba(8, 8, 8, 0.98) 100%
      ),
      radial-gradient(ellipse at 50% 28%, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.75) 100%);
    pointer-events: none;
    z-index: 2;
  }

  .video-hero-content {
    position: relative;
    z-index: 3;
    padding: 36px 20px 52px;
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    line-height: normal;
    box-sizing: border-box;
    width: 100%;
    pointer-events: none;
  }

  .video-hero-inner {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: auto;
  }

  .video-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 5px 12px;
    background: rgba(255, 210, 28, 0.12);
    border: 1px solid rgba(255, 210, 28, 0.35);
    border-radius: var(--radius-sm);
    color: var(--color-yellow);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 12px rgba(255, 210, 28, 0.15);
  }

  .video-headline {
    font-size: clamp(1.95rem, 7.2vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    color: var(--color-white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
  }

  .video-supporting {
    font-size: clamp(0.92rem, 3.4vw, 1.05rem);
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
  }

  .video-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-video-primary,
  .btn-video-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  /* Reposition audio toggle cleanly in top right corner to prevent collision with CTA buttons */
  .video-sound-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    padding: 8px 14px;
    font-size: 0.7rem;
    gap: 7px;
    letter-spacing: 0.06em;
    z-index: 30;
    pointer-events: auto;
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  }
}

/* Tablet Horizontal Row Actions */
@media (min-width: 541px) and (max-width: 768px) {
  .video-actions {
    flex-direction: row;
    gap: 14px;
  }

  .btn-video-primary,
  .btn-video-secondary {
    flex: 1 1 0;
  }
}

/* Standard & Small Smartphones (<= 480px) */
@media (max-width: 480px) {
  .video-showcase-section,
  .video-container,
  .video-hero-content {
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
  }

  .video-hero-content {
    padding: 28px 18px 46px;
  }

  .video-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    padding: 4px 10px;
  }

  .video-headline {
    font-size: clamp(1.8rem, 7.8vw, 2.25rem);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .video-supporting {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .video-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-video-primary,
  .btn-video-secondary {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.88rem;
  }

  .video-sound-pill {
    top: 12px;
    right: 12px;
    padding: 7px 12px;
    font-size: 0.65rem;
  }
  
  .sound-pill-text {
    font-size: 0.65rem;
  }
}

/* Ultra-Compact Screens (<= 360px) */
@media (max-width: 360px) {
  .video-hero-content {
    padding: 20px 14px 38px;
  }

  .video-headline {
    font-size: 1.65rem;
    line-height: 1.14;
  }

  .video-supporting {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .btn-video-primary,
  .btn-video-secondary {
    padding: 13px 16px;
    font-size: 0.82rem;
  }
}

/* Mobile Landscape Orientation Safeguard */
@media (max-height: 520px) and (orientation: landscape) {
  .video-showcase-section,
  .video-container,
  .video-hero-content {
    min-height: auto;
  }

  .video-hero-content {
    padding: 24px 20px;
    justify-content: center;
  }

  .video-headline {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .video-supporting {
    display: none; /* Hide bulky description in cramped landscape mode */
  }

  .video-actions {
    flex-direction: row;
    width: auto;
    gap: 12px;
  }

  .btn-video-primary,
  .btn-video-secondary {
    width: auto;
    flex: none;
    padding: 10px 20px;
    font-size: 0.82rem;
  }
}


/* ==========================================================================
   GLOBAL SECTION FRAMEWORK & ANIMATIONS
   ========================================================================== */

.site-section {
  position: relative;
  padding: 120px 0;
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
  z-index: 5;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--color-yellow-subtle);
  border: 1px solid rgba(255, 210, 28, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subheadline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--color-gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.yellow-rule {
  width: 54px;
  height: 3px;
  background: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow-glow);
  margin-bottom: 24px;
  border-radius: var(--radius-full);
}

.section-header-centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-top: 12px;
  line-height: 1.6;
}

.section-subtitle-sub {
  font-size: 1rem;
  color: var(--color-gray-light);
  margin-top: 10px;
  line-height: 1.6;
}

.section-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.action-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.05em;
}

/* Scroll-Triggered Animation System */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Visual Frame Component */
.visual-card-frame {
  position: relative;
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.visual-card-frame:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9), 0 0 20px var(--color-yellow-glow);
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-card-frame:hover .visual-img {
  transform: scale(1.03);
}

/* ==========================================================================
   SECTION 01 — THE PROBLEM
   ========================================================================== */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.glow-sweep-frame {
  position: relative;
}

.edge-sweep-light {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, var(--color-yellow) 50%, transparent 100%);
  box-shadow: 0 0 16px var(--color-yellow);
  animation: edge-sweep 4s infinite ease-in-out;
}

@keyframes edge-sweep {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

.visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.status-dot-yellow {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

/* ==========================================================================
   SECTION 02 — WHAT WE DO
   ========================================================================== */

.editorial-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.dark-mask-frame {
  position: relative;
  max-height: 580px;
}

.editorial-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--color-black) 100%);
  pointer-events: none;
}

.spec-tag-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid var(--color-border);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-tag-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-yellow);
  letter-spacing: 0.1em;
}

.spec-tag-value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
}

.animated-connector-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-yellow) 0%, rgba(255, 210, 28, 0.2) 40%, transparent 100%);
  margin: 16px 0 28px;
  position: relative;
}

.animated-connector-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

.action-callout-box {
  background: var(--color-charcoal);
  border-left: 3px solid var(--color-yellow);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

.callout-lead {
  font-size: 1.05rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 8px;
}

.callout-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-yellow);
}

/* ==========================================================================
   SECTION 03 — WHY DOCTOR GPU (Metrics)
   ========================================================================== */

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

.stat-card {
  position: relative;
  background: var(--color-graphite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 24px var(--color-yellow-glow);
}

.stat-card.stat-card-highlight {
  background: linear-gradient(180deg, rgba(255, 210, 28, 0.04) 0%, var(--color-graphite) 100%);
  border-color: rgba(255, 210, 28, 0.3);
}

.stat-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--color-yellow);
  border-right: 2px solid var(--color-yellow);
  opacity: 0.5;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.4rem);
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-text-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-left: 4px;
}

.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--color-border);
  margin-bottom: 20px;
  transition: width var(--transition-fast), background var(--transition-fast);
}

.stat-card:hover .stat-divider {
  width: 70px;
  background: var(--color-yellow);
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 04 — OUR PARTS ADVANTAGE
   ========================================================================== */

.parts-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.parts-highlight-banner {
  margin-top: 36px;
  display: flex;
  align-items: stretch;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 210, 28, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-accent-bar {
  width: 6px;
  background: var(--color-yellow);
  box-shadow: 0 0 12px var(--color-yellow);
}

.banner-text {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.banner-sub {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.05em;
}

.inspection-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.inspection-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 210, 28, 0.12) 50%, transparent 60%);
  pointer-events: none;
  animation: beam-sweep 5s infinite linear;
}

@keyframes beam-sweep {
  0% { transform: translateY(-100%) rotate(25deg); }
  100% { transform: translateY(200%) rotate(25deg); }
}

.parts-floating-metric {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid var(--color-yellow);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 18px var(--color-yellow-glow);
}

.metric-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-white);
  margin-top: 4px;
}

/* ==========================================================================
   SECTION 05 — THE REPAIR PROCESS (Timeline)
   ========================================================================== */

.process-dual-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 20px;
}

.timeline-progress-track {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 47px;
  width: 2px;
  background: var(--color-border);
}

.timeline-progress-bar {
  width: 100%;
  height: 40%;
  background: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
  transition: height 0.6s ease;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.step-indicator {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-charcoal);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: all var(--transition-normal);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gray-muted);
  transition: color var(--transition-fast);
}

.step-dot {
  display: none;
}

.step-content {
  background: var(--color-graphite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  flex: 1;
  transition: all var(--transition-normal);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--color-gray-light);
  line-height: 1.55;
}

.timeline-step:hover .step-indicator,
.timeline-step.active .step-indicator {
  border-color: var(--color-yellow);
  background: var(--color-charcoal);
  box-shadow: 0 0 20px var(--color-yellow-glow);
}

.timeline-step:hover .step-number,
.timeline-step.active .step-number {
  color: var(--color-yellow);
}

.timeline-step:hover .step-content,
.timeline-step.active .step-content {
  border-color: rgba(255, 210, 28, 0.3);
  background: rgba(24, 24, 24, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.visual-footer-tag {
  padding: 14px 20px;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
}

.accent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

/* ==========================================================================
   SECTION 06 — GPU TRACKER
   ========================================================================== */

.tracker-card-wrapper {
  background: var(--color-graphite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8);
}

.tracker-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.max-w-600 {
  max-width: 620px;
}

.status-nodes-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0 64px;
  padding: 0 32px;
}

.nodes-track {
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: var(--color-border);
  z-index: 1;
}

.nodes-active-line {
  height: 100%;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-bright));
  box-shadow: 0 0 12px var(--color-yellow);
  transition: width 0.8s ease;
}

.status-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.node-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-charcoal);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.node-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gray-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.status-node.completed .node-circle {
  background: rgba(255, 210, 28, 0.15);
  border-color: var(--color-yellow);
}

.status-node.completed .node-icon {
  color: var(--color-yellow);
  font-weight: 800;
  font-size: 0.85rem;
}

.status-node.completed .node-label {
  color: var(--color-white);
}

.status-node.active-pulse .node-circle {
  border-color: var(--color-yellow);
  box-shadow: 0 0 20px var(--color-yellow-glow);
  background: var(--color-yellow);
}

.status-node.active-pulse .node-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
}

.status-node.active-pulse .node-label {
  color: var(--color-yellow);
}

.tracker-interactive-widget {
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tracker-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
}

.form-group input {
  background: var(--color-graphite);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 12px var(--color-yellow-glow);
}

.tracker-live-result {
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(255, 210, 28, 0.25);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.result-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.08em;
}

.result-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-gray-muted);
}

.result-detail {
  font-size: 0.92rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}

.result-detail strong {
  color: var(--color-white);
}

/* ==========================================================================
   SECTION 07 — WHEN REPAIR ISN'T POSSIBLE (Honesty Policy)
   ========================================================================== */

.align-center {
  align-items: center;
}

.statement-callout-card {
  position: relative;
  margin-top: 36px;
  background: var(--color-charcoal);
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--color-yellow-glow);
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-yellow);
  text-transform: uppercase;
}

.visual-caption {
  padding: 14px 20px;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ==========================================================================
   SECTION 08 — SELL YOUR GPU
   ========================================================================== */

.sell-hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.glow-halo-frame {
  position: relative;
}

.glow-halo-frame::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--color-yellow-glow) 0%, transparent 70%);
  filter: blur(25px);
  z-index: -1;
  opacity: 0.6;
}

.lifecycle-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}

.flow-pill {
  padding: 10px 20px;
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gray-light);
  letter-spacing: 0.04em;
}

.flow-pill.active {
  background: var(--color-yellow-subtle);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  box-shadow: 0 0 14px var(--color-yellow-glow);
}

.flow-arrow {
  color: var(--color-yellow);
  font-size: 1.1rem;
  font-weight: bold;
}

/* ==========================================================================
   SECTION 09 — ESTIMATED RATES
   ========================================================================== */

.rates-interface {
  background: var(--color-graphite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.rates-tabs-header {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
  margin-bottom: 32px;
  overflow-x: auto;
}

.rates-tab {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-gray-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.rates-tab:hover, .rates-tab.active {
  background: var(--color-yellow);
  color: var(--color-dark-inverse);
  border-color: var(--color-yellow);
  box-shadow: 0 4px 16px var(--color-yellow-glow);
}

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

.rate-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.rate-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.rate-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.rate-model-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.rate-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--color-yellow);
}

.rate-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--color-gray-light);
}

.rate-service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rate-service-list li::before {
  content: '✦';
  color: var(--color-yellow);
  font-size: 0.7rem;
}

.rate-price-block {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gray-muted);
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-yellow);
}

.rate-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-yellow);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 210, 28, 0.05);
  border: 1px solid rgba(255, 210, 28, 0.2);
  transition: all var(--transition-fast);
}

.rate-card-action:hover {
  background: var(--color-yellow);
  color: var(--color-dark-inverse);
  border-color: var(--color-yellow);
  box-shadow: 0 4px 14px var(--color-yellow-glow);
  transform: translateY(-1px);
}

.rates-footer-note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.rates-footer-note p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gray-muted);
  max-width: 680px;
}

/* ==========================================================================
   SECTION 10 — 7-DAY CHECK WARRANTY
   ========================================================================== */

.warranty-card-wrapper {
  background: var(--color-graphite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.warranty-shield-badge {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--color-charcoal);
  border: 2px solid var(--color-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px var(--color-yellow-glow);
}

.shield-big-number {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
}

.shield-unit {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
  margin-top: -4px;
}

.shield-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-yellow);
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.warranty-notice-box {
  background: rgba(255, 210, 28, 0.05);
  border-left: 3px solid var(--color-yellow);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 10px;
  font-size: 0.85rem;
  color: var(--color-gray-light);
}

.notice-icon {
  color: var(--color-yellow);
  font-weight: bold;
}

/* ==========================================================================
   SECTION 11 — VISIT DOCTOR GPU (Lahore Hafeez Center)
   ========================================================================== */

.location-details-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.location-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loc-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.1em;
}

.loc-val {
  font-size: 1.05rem;
  color: var(--color-white);
  font-weight: 500;
}

.phone-link {
  color: var(--color-yellow);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
}

.phone-link:hover {
  text-decoration: underline;
}

.workshop-tag {
  padding: 16px 20px;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* ==========================================================================
   SECTION 12 — FINAL CTA
   ========================================================================== */

.final-cta-card {
  background: radial-gradient(circle at center, #181818 0%, #080808 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.final-cta-visual {
  position: relative;
  width: 260px;
  height: 320px;
  margin-bottom: 40px;
}

.final-gpu-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8));
}

.final-glow-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--color-yellow-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.brand-line {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.final-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 820px;
}

.final-body {
  font-size: 1.15rem;
  color: var(--color-gray-light);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #040404;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 40px;
  color: var(--color-gray-light);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 210, 28, 0.25));
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-white);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-yellow);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-light);
}

.footer-phone {
  color: var(--color-yellow);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
}

.footer-col-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-white);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-links span {
  font-size: 0.88rem;
  color: var(--color-gray-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-gray-muted);
}

.security-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-yellow);
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */

@media (max-width: 1320px) {
  .nav-links {
    gap: 16px;
  }
  .nav-item {
    font-size: 0.82rem;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 10px;
  }
  .nav-item {
    font-size: 0.78rem;
  }
  .nav-cta-desktop {
    padding: 7px 13px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .split-layout, .editorial-layout, .parts-split-layout, .process-dual-layout, .sell-hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-grid, .rates-cards-grid {
    grid-template-columns: 1fr;
  }

  .warranty-card-wrapper {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 68px;
  }

  .nav-links {
    display: none; /* Clean mobile navigation */
  }

  .site-section {
    padding: 80px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .tracker-card-wrapper {
    padding: 36px 20px;
  }

  .status-nodes-container {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .nodes-track {
    display: none;
  }

  .tracker-form {
    grid-template-columns: 1fr;
  }

  .timeline-container {
    padding-left: 0;
  }

  .timeline-progress-track {
    left: 27px;
  }

  .step-indicator {
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   NAVIGATION ENHANCEMENTS & MOBILE DRAWER
   ========================================================================== */

.nav-item.active {
  color: var(--color-yellow);
  font-weight: 600;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(24, 24, 24, 0.85);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav-toggle:hover {
  border-color: var(--color-yellow);
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-yellow);
}

.mobile-nav-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-yellow);
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 32px 32px;
  z-index: 99;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  color: var(--color-gray-light);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--color-yellow);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   ABOUT US - FOUNDER'S STORY SECTION & STYLES
   ========================================================================== */

.page-about-us {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
}

.story-page-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.story-section {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.story-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* 2021 Subtle Visual Anchor Watermark */
.story-anchor-watermark {
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 900;
  line-height: 0.8;
  color: rgba(255, 210, 28, 0.028);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}

/* Header & Eyebrow */
.story-header {
  margin: 0 auto 56px auto;
  max-width: 880px;
}

.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: rgba(255, 210, 28, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 210, 28, 0.2);
}

.eyebrow-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

.story-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-transform: uppercase;
}

.heading-line-1 {
  display: block;
  color: var(--color-white);
}

.heading-line-2 {
  display: block;
  background: linear-gradient(135deg, #ffffff 30%, var(--color-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-accent-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-yellow), transparent);
  margin-top: 24px;
  box-shadow: 0 0 12px var(--color-yellow-glow);
}

/* Main Cinematic Narrative Layout (Editorial Text Flow) */
.story-grid,
.story-narrative-only {
  display: block;
  max-width: 880px;
  margin: 0 auto 84px auto;
}

.story-copy-column {
  width: 100%;
}

/* Founder Visual Column */
.story-visual-column {
  position: sticky;
  top: 100px;
}

.founder-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 210, 28, 0.05);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.founder-card-frame:hover {
  border-color: rgba(255, 210, 28, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 210, 28, 0.12);
}

.founder-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card-frame:hover .founder-portrait-img {
  transform: scale(1.02);
}

.founder-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8, 8, 8, 0.5) 75%,
    rgba(8, 8, 8, 0.96) 100%
  );
  pointer-events: none;
}

.founder-lab-tag {
  position: absolute;
  bottom: 54px;
  left: 18px;
  right: 18px;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 210, 28, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.lab-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
  animation: pulse-dot-anim 2s infinite ease-in-out;
}

.lab-tag-content {
  display: flex;
  flex-direction: column;
}

.lab-tag-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.lab-tag-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-yellow);
  letter-spacing: 0.08em;
}

.lab-tag-loc {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.05em;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-credentials-bar {
  padding: 12px 16px;
  background: #0d0d0d;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.cred-item {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--color-gray-light);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-yellow);
}

/* Narrative Copy Prose */
.story-prose {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.prose-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--color-white);
  font-weight: 400;
}

.founder-name-highlight {
  color: var(--color-yellow);
  font-weight: 700;
}

.prose-body {
  font-size: 1.06rem;
  line-height: 1.75;
  color: #c4c4c4;
}

.prose-transition-block {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 6px 0;
}

.transition-indicator-line {
  width: 3px;
  background: var(--color-yellow);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--color-yellow-glow);
}

.text-emphasis {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.6;
}

.prose-milestone-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 210, 28, 0.05);
  border-left: 3px solid var(--color-yellow);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 8px 0;
}

.milestone-spark {
  font-size: 1.3rem;
  color: var(--color-yellow);
}

.milestone-text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--color-white);
}

.milestone-highlight {
  display: block;
  font-weight: 800;
  color: var(--color-yellow);
  font-size: 1.25rem;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.prose-mission-box {
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 6px 0;
  position: relative;
  overflow: hidden;
}

.prose-mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-yellow), transparent);
}

.mission-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.mission-statement {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-white);
}

.story-philosophy-quote {
  margin-top: 14px;
  padding: 26px 30px;
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid rgba(255, 210, 28, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  position: relative;
}

.story-philosophy-quote::after {
  content: '”';
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 1;
  color: rgba(255, 210, 28, 0.08);
  pointer-events: none;
}

.quote-intro {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* =====================================================================
   HIGHLIGHT STATISTICS GRID
   ===================================================================== */
.story-stats-section {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 28, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 210, 28, 0.1);
}

.stat-card-featured {
  background: linear-gradient(180deg, #161616 0%, #111111 100%);
  border-color: rgba(255, 210, 28, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 210, 28, 0.06);
}

.stat-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 210, 28, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-card-inner {
  position: relative;
  z-index: 2;
}

.stat-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stat-num-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat-card-featured .stat-number {
  color: var(--color-yellow);
  text-shadow: 0 0 20px var(--color-yellow-glow);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-yellow);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-subtext {
  font-size: 0.82rem;
  color: var(--color-gray-muted);
  line-height: 1.4;
}

/* =========================================================================
   OPTIONAL CLOSING CTA
   ========================================================================= */
.story-closing-cta {
  padding: 40px 0 120px;
  position: relative;
  z-index: 2;
}

.closing-cta-card {
  position: relative;
  background: radial-gradient(circle at top center, #1b1b1b 0%, #0d0d0d 100%);
  border: 1px solid rgba(255, 210, 28, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 210, 28, 0.08);
}

.closing-cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(255, 210, 28, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.closing-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.closing-cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-yellow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.closing-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.closing-cta-copy {
  font-size: 1.1rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

@keyframes pulse-dot-anim {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR STORY SECTION & MOBILE DRAWER
   ========================================================================== */

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-visual-column {
    position: static;
  }

  .founder-card-frame {
    max-width: 520px;
    margin: 0 auto;
  }

  .story-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .nav-cta-desktop {
    display: none;
  }

  .story-section {
    padding: 100px 0 60px;
  }

  .story-header {
    margin-bottom: 36px;
  }

  .story-anchor-watermark {
    top: 20px;
    right: -10px;
    font-size: 6.5rem;
    opacity: 0.6;
  }

  .story-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-lab-tag {
    position: static;
    margin: 16px 16px 0;
    grid-template-columns: auto 1fr;
  }

  .lab-tag-loc {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 6px;
  }

  .founder-card-frame {
    padding-bottom: 16px;
  }

  .founder-credentials-bar {
    margin: 12px 16px 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
  }

  .closing-cta-card {
    padding: 40px 20px;
  }

  .closing-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .closing-cta-actions .btn-video-primary,
  .closing-cta-actions .btn-video-secondary {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   TERMS & CONDITIONS PAGE STYLES
   ========================================================================== */

.page-terms {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
}

.terms-page-main {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 130px 0 100px;
}

.terms-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Page Header */
.terms-page-header {
  margin-bottom: 52px;
}

.terms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(255, 210, 28, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 210, 28, 0.2);
}

.terms-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.terms-header-supporting {
  font-size: 1.12rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  max-width: 680px;
}

.terms-accent-rule {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-yellow), transparent);
  margin-top: 24px;
  box-shadow: 0 0 12px var(--color-yellow-glow);
}

/* Terms Cards Stack */
.terms-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.term-card {
  position: relative;
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 36px 32px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
  overflow: hidden;
}

.term-card:hover {
  border-color: rgba(255, 210, 28, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 210, 28, 0.06);
  transform: translateY(-2px);
}

.term-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.term-num-badge {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-yellow);
  background: rgba(255, 210, 28, 0.08);
  border: 1px solid rgba(255, 210, 28, 0.25);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(255, 210, 28, 0.1);
}

.term-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.term-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.term-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.term-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 64px;
}

.term-copy {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #c4c4c4;
}

.term-copy strong {
  color: var(--color-white);
}

/* Highlight Boxes */
.term-highlight-box {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
  transition: transform var(--transition-fast);
}

.term-highlight-box .highlight-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.term-highlight-box .highlight-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.85;
}

/* Specific Highlight Variations */
.term-highlight-warning {
  background: rgba(255, 210, 28, 0.08);
  border: 1px solid rgba(255, 210, 28, 0.35);
  color: var(--color-yellow);
}

.term-highlight-warning .highlight-main {
  color: var(--color-yellow-bright);
}

.term-highlight-gold {
  background: rgba(255, 210, 28, 0.06);
  border: 1px solid rgba(255, 210, 28, 0.25);
  color: var(--color-yellow);
}

.term-highlight-trust {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
}

.term-highlight-trust .highlight-trust-text {
  color: #34d399;
}

/* Card 03: Exclusion List & Subtle Warning Treatment */
.term-card-subtle-warning {
  border-color: rgba(255, 210, 28, 0.22);
}

.term-exclusion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 6px;
}

.term-exclusion-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--color-white);
}

.bullet-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #fb7185;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.term-subtle-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--color-border);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 6px;
}

.warning-icon {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gray-muted);
  flex-shrink: 0;
  margin-top: 1px;
}

.warning-note {
  font-size: 0.86rem;
  color: var(--color-gray-muted);
  line-height: 1.5;
}

/* Customer Acknowledgement Card */
.terms-acknowledgement-section {
  margin-bottom: 40px;
}

.terms-acknowledgement-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(14, 14, 14, 0.95) 100%);
  border: 1px solid rgba(255, 210, 28, 0.28);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ack-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ack-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.ack-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-white);
  line-height: 1.5;
  font-weight: 500;
}

/* Contact / Help Section */
.terms-contact-section {
  margin-bottom: 40px;
}

.terms-contact-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.terms-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
}

.contact-card-content {
  max-width: 580px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-copy {
  font-size: 1.02rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-shop-details {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-shop-details .shop-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-yellow);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-shop-details .shop-line {
  font-size: 0.9rem;
  color: var(--color-gray-light);
}

.contact-shop-details .shop-phone {
  margin-top: 6px;
}

.contact-shop-details .shop-phone a {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color var(--transition-fast);
}

.contact-shop-details .shop-phone a:hover {
  color: var(--color-yellow);
}

.active-link {
  color: var(--color-yellow) !important;
}

/* Terms Responsive Rules */
@media (max-width: 768px) {
  .terms-page-main {
    padding: 100px 0 60px;
  }

  .terms-container {
    padding: 0 20px;
  }

  .term-card {
    padding: 24px 20px;
  }

  .term-card-header {
    gap: 14px;
  }

  .term-num-badge {
    font-size: 0.95rem;
    padding: 4px 9px;
  }

  .term-body {
    padding-left: 0;
  }

  .term-highlight-box {
    width: 100%;
  }

  .terms-acknowledgement-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 12px;
  }

  .terms-contact-card {
    padding: 32px 20px;
  }
}

/* ==========================================================================
   CONTACT US PAGE (Single Section System)
   ========================================================================== */
.page-contact-us {
  background-color: #080808;
  color: var(--color-text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-page-main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-section {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

/* Left Column Details */
.contact-details-col {
  display: flex;
  flex-direction: column;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFD21C;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-eyebrow .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFD21C;
  box-shadow: 0 0 10px rgba(255, 210, 28, 0.7);
  display: inline-block;
}

.contact-main-heading {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 18px 0;
  text-transform: uppercase;
}

.contact-accent-bar {
  width: 56px;
  height: 3px;
  background: #FFD21C;
  border-radius: 2px;
  margin-bottom: 24px;
  box-shadow: 0 0 12px rgba(255, 210, 28, 0.5);
}

.contact-lead-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 14px;
}

.contact-sub-text {
  font-size: 1.05rem;
  color: #A6A6A6;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

/* Prominent Location & Contact Card */
.contact-info-card {
  background: #111111;
  border: 1px solid #292929;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 36px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  border-color: rgba(255, 210, 28, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 210, 28, 0.06);
}

.info-group {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 210, 28, 0.1);
  border: 1px solid rgba(255, 210, 28, 0.3);
  color: #FFD21C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.info-group:hover .info-icon {
  background: rgba(255, 210, 28, 0.2);
  transform: scale(1.05);
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #A6A6A6;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-highlight {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.info-address {
  font-style: normal;
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.55;
}

.info-divider {
  height: 1px;
  background: #292929;
  margin: 20px 0;
}

.info-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.info-link.phone-link {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #FFD21C;
}

.info-link.phone-link:hover {
  color: #FFE45C;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-link.website-link {
  color: #E0E0E0;
}

.info-link.website-link:hover {
  color: #FFD21C;
}

/* Primary Action Buttons */
.contact-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-call-us {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFD21C;
  color: #080808;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid #FFD21C;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(255, 210, 28, 0.3);
}

.btn-call-us:hover {
  background: #FFE45C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 210, 28, 0.45);
}

.btn-get-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #181818;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 28px;
  border-radius: 8px;
  border: 1px solid #292929;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-get-directions:hover {
  background: #222222;
  border-color: #A6A6A6;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Right Column Contact Form */
.contact-form-col {
  position: relative;
}

.contact-form-card {
  background: #111111;
  border: 1px solid #292929;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD21C, transparent 70%);
}

.form-header {
  margin-bottom: 24px;
}

.form-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFD21C;
  background: rgba(255, 210, 28, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
  text-transform: uppercase;
}

.form-subtitle {
  font-size: 0.9rem;
  color: #A6A6A6;
  line-height: 1.5;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #E0E0E0;
  letter-spacing: 0.05em;
}

.form-input {
  background: #181818;
  border: 1px solid #292929;
  border-radius: 8px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #FFD21C;
  box-shadow: 0 0 0 3px rgba(255, 210, 28, 0.15);
}

.form-input::placeholder {
  color: #666666;
  font-size: 0.88rem;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-send-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #FFD21C;
  color: #080808;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 15px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 210, 28, 0.3);
  margin-top: 4px;
}

.btn-send-message:hover {
  background: #FFE45C;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 210, 28, 0.45);
}

.form-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 10px 14px;
  border-radius: 6px;
  display: none;
  line-height: 1.4;
}

.form-status.status-error {
  display: block;
  background: rgba(255, 68, 68, 0.12);
  color: #FF6666;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.form-status.status-connecting {
  display: block;
  background: rgba(255, 210, 28, 0.12);
  color: #FFD21C;
  border: 1px solid rgba(255, 210, 28, 0.3);
}

.form-status.status-success {
  display: block;
  background: rgba(40, 199, 111, 0.12);
  color: #28C76F;
  border: 1px solid rgba(40, 199, 111, 0.3);
}

.btn-whatsapp-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 4px;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-continue:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

@keyframes dg-btn-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-footer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #777777;
  margin-top: 6px;
}

.form-footer-note svg {
  flex-shrink: 0;
  color: #FFD21C;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
  .contact-hero-section {
    padding: 110px 0 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-main-heading {
    font-size: 2.5rem;
  }

  .contact-lead-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .contact-container {
    padding: 0 20px;
  }

  .contact-main-heading {
    font-size: 2.1rem;
    line-height: 1.12;
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  .contact-form-card {
    padding: 26px 20px;
  }

  .contact-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-call-us,
  .btn-get-directions {
    width: 100%;
  }

  .info-link.phone-link {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   SITE PRELOADER / LOADING SCREEN
   ========================================================================== */

.site-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #080808;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  overflow: hidden;
  user-select: none;
}

.site-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 24px;
}

.preloader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.preloader-logo {
  position: relative;
  z-index: 2;
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 210, 28, 0.35));
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}

.preloader-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 210, 28, 0.22) 0%, rgba(255, 210, 28, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 22px;
}

.preloader-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.preloader-name .accent {
  color: var(--color-yellow);
}

.preloader-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-gray-light);
  text-transform: uppercase;
}

.preloader-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FFD21C 0%, #FFE45C 70%, #FFFFFF 100%);
  box-shadow: 0 0 14px rgba(255, 210, 28, 0.85);
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-gray-muted);
  text-transform: uppercase;
  margin-top: 12px;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.97);
    filter: drop-shadow(0 0 16px rgba(255, 210, 28, 0.25));
  }
  100% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 28px rgba(255, 210, 28, 0.5));
  }
}

/* ==========================================================================
   WhatsApp Floating Action Button (FAB)
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full, 9999px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(37, 211, 102, 0.35);
  z-index: 95;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  background-color: #20BD5A;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55), 0 3px 14px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.whatsapp-fab:active {
  transform: scale(0.96);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

.whatsapp-fab-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
  pointer-events: none;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: max(16px, env(safe-area-inset-right, 16px));
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab-icon {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */
.error-page-main {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.error-page-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-visual-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.error-gpu-graphic {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}

.error-signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid rgba(255, 210, 28, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full, 9999px);
  backdrop-filter: blur(10px);
}

.error-status-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-yellow);
  animation: errorLedBlink 2s ease-in-out infinite alternate;
}

@keyframes errorLedBlink {
  0% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 210, 28, 0.9);
  }
  100% {
    opacity: 0.25;
    box-shadow: none;
  }
}

.error-signal-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-yellow);
  text-transform: uppercase;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 15vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--color-yellow);
  letter-spacing: -0.04em;
  text-shadow: 0 0 45px rgba(255, 210, 28, 0.25);
  margin-top: 16px;
  margin-bottom: 14px;
  user-select: none;
}

.error-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2.3rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.error-description {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: var(--color-gray-light);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 34px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 24px;
}

.error-humor-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .error-page-main {
    padding: 80px 20px 60px;
  }

  .error-actions {
    flex-direction: column;
    gap: 12px;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}




