/* ==========================================================================
   WASHERREPAIRSG — 3D DESIGN SYSTEM & LANDING PAGE STYLES
   Futuristic 3D Home Appliance Service Experience
   Obsidian Dark UI • Precision Depth • Apple-Grade Presentation
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
  /* Dark Architecture Backgrounds */
  --bg-void: #020403;
  --bg-base: #050806;
  --bg-surface: #0A0F0B;
  --bg-card: #0F1611;
  --bg-card-elevated: #151F18;
  --bg-card-hover: #1A261E;
  
  /* Text & Typography */
  --text-primary: #FFFFFF;
  --text-secondary: #C8D1CA;
  --text-muted: #8E9A90;
  --text-dim: #5C675E;

  /* Futuristic Electric Lime Accents */
  --accent-lime: #E9FF00;
  --accent-lime-bright: #F2FF43;
  --accent-lime-deep: #B5C700;
  --accent-lime-glow: rgba(233, 255, 0, 0.18);
  --accent-lime-glow-subtle: rgba(233, 255, 0, 0.08);
  --accent-lime-border: rgba(233, 255, 0, 0.28);

  /* WhatsApp Action Accent */
  --color-wa: #25D366;
  --color-wa-hover: #22BF5B;
  --color-wa-glow: rgba(37, 211, 102, 0.22);

  /* Border & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-highlight: rgba(255, 255, 255, 0.22);
  --border-glass: rgba(255, 255, 255, 0.1);

  /* 3D Shadows & Lighting */
  --shadow-3d-base: 0 20px 45px rgba(0, 0, 0, 0.65), inset 0 1px rgba(255, 255, 255, 0.08);
  --shadow-3d-elevated: 0 30px 70px rgba(0, 0, 0, 0.75), 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-3d-float: 0 35px 80px rgba(0, 0, 0, 0.85), 0 0 40px var(--accent-lime-glow-subtle);
  --shadow-lime-glow: 0 0 25px rgba(233, 255, 0, 0.35);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Perspective & Layout */
  --perspective: 1200px;
  --max-width: 1280px;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-snap: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. RESET & GLOBAL SETUP --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  position: relative;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-snap);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- 3. MULTI-LAYER BACKGROUND ENVIRONMENT --- */
.bg-ambient-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: clip;
}

.bg-ambient-layer::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(233, 255, 0, 0.09) 0%, rgba(26, 77, 46, 0.08) 45%, transparent 70%);
  filter: blur(80px);
  transform: translateZ(0);
}

.bg-ambient-layer::after {
  content: '';
  position: absolute;
  top: 45%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(233, 255, 0, 0.06) 0%, rgba(37, 211, 102, 0.06) 50%, transparent 70%);
  filter: blur(90px);
  transform: translateZ(0);
}

.bg-tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 85%);
  opacity: 0.8;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- 4. TYPOGRAPHY & SECTION HEADERS --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  color: var(--text-secondary);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-lime {
  color: var(--accent-lime);
}

/* Section Header Structure */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-lime);
  background: rgba(233, 255, 0, 0.06);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid var(--accent-lime-border);
  box-shadow: 0 0 15px rgba(233, 255, 0, 0.08);
}

.section-tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-lime);
  animation: pulseDot 2.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.section-description {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

/* Giant background watermark word */
.watermark-bg-text {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.15em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

/* --- 5. 3D REUSABLE COMPONENT SYSTEM --- */
.card-3d {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d-base);
  position: relative;
  transition: var(--transition-smooth);
  overflow: clip;
}

.card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

/* Tilt Card Wrapper */
.tilt-card {
  transform-style: preserve-3d;
  perspective: var(--perspective);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.tilt-card:hover {
  border-color: rgba(233, 255, 0, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 32px var(--accent-lime-glow), 0 0 18px var(--accent-lime-glow-subtle);
}

.tilt-inner-z20 {
  transform: translateZ(20px);
  transform-style: preserve-3d;
}

.tilt-inner-z35 {
  transform: translateZ(35px);
  transform-style: preserve-3d;
}

.tilt-inner-z45 {
  transform: translateZ(45px);
  transform-style: preserve-3d;
}

/* Depth Panels */
.depth-panel {
  background: linear-gradient(145deg, var(--bg-card) 0%, #0c140e 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3d-elevated), 0 0 30px var(--accent-lime-glow-subtle);
}

.glass-panel {
  background: rgba(15, 22, 17, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

/* --- 6. 3D BUTTONS SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-snap);
  position: relative;
  cursor: pointer;
  user-select: none;
  transform-style: preserve-3d;
}

/* Primary Electric Lime 3D Button */
.btn-primary {
  background: var(--accent-lime);
  color: #030504;
  border: 1px solid #F6FF7A;
  box-shadow: 0 4px 0 #9EAF00, 0 8px 20px rgba(233, 255, 0, 0.28);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--accent-lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #9EAF00, 0 12px 28px rgba(233, 255, 0, 0.4);
  color: #000;
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #9EAF00, 0 4px 10px rgba(233, 255, 0, 0.2);
}

.btn-primary .btn-arrow {
  transition: transform 0.25s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* WhatsApp 3D Button */
.btn-whatsapp {
  background: var(--color-wa);
  color: #FFFFFF;
  border: 1px solid #43E580;
  box-shadow: 0 4px 0 #15803D, 0 8px 20px var(--color-wa-glow);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: var(--color-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #15803D, 0 12px 26px rgba(37, 211, 102, 0.35);
  color: #FFFFFF;
}

.btn-whatsapp:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #15803D, 0 4px 10px var(--color-wa-glow);
}

/* Secondary Obsidian 3D Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.7), 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.7), 0 12px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn-secondary:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.7), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-full {
  width: 100%;
}

/* --- 7. TOP INFO BAR --- */
.top-notification-bar {
  background: rgba(5, 8, 6, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 101;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
}

.top-bar-item svg {
  fill: var(--accent-lime);
}

.top-bar-hotline {
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-mono);
}

.top-bar-hotline a {
  color: var(--accent-lime);
}

/* --- 8. FLOATING 3D NAVIGATION --- */
.floating-nav-wrapper {
  position: sticky;
  top: 1rem;
  z-index: 100;
  padding: 0 1rem;
  transition: var(--transition-smooth);
}

.floating-nav {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(10, 15, 11, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.4rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.floating-nav.scrolled {
  background: rgba(8, 12, 9, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 20px var(--accent-lime-glow-subtle), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link-item {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-snap);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link-item:hover {
  color: var(--accent-lime);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-lime);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn-call {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  display: none;
}

@media (min-width: 768px) {
  .nav-btn-call {
    display: inline-flex;
  }
}

.nav-btn-book {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* Mobile: icon-only WhatsApp button in floating nav */
@media (max-width: 767px) {
  .nav-btn-book {
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .nav-btn-book .nav-btn-book-label {
    display: none;
  }

  .nav-btn-book svg {
    width: 20px;
    height: 20px;
  }
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .mobile-nav-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-medium);
  z-index: 200;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-close {
  align-self: flex-end;
  color: var(--text-muted);
  font-size: 1.75rem;
  line-height: 1;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-drawer-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-link:hover {
  color: var(--accent-lime);
}

/* --- 9. 3D HERO SECTION --- */
.hero-3d-section {
  position: relative;
  padding: 4rem 0 3rem 0;
  overflow: clip;
}

.hero-3d-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-3d-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-lime);
  background: rgba(233, 255, 0, 0.05);
  border: 1px solid var(--accent-lime-border);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(233, 255, 0, 0.08);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-lime);
  animation: pulseDot 2s infinite ease-in-out;
}

.hero-h1 {
  margin-bottom: 1.35rem;
}

.hero-desc {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.hero-cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-trust-icon {
  color: var(--accent-lime);
  font-weight: 800;
}

/* --- HERO 3D SCENE STAGE --- */
.hero-3d-stage {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}

@media (min-width: 992px) {
  .hero-3d-stage {
    min-height: 520px;
  }
}

.hero-stage-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Background Glowing Aura Ring */
.hero-stage-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%) translateZ(-90px);
  background: radial-gradient(circle, rgba(233, 255, 0, 0.16) 0%, rgba(37, 211, 102, 0.08) 40%, transparent 72%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* Cylindrical 3D Floating Platform Under Washer */
.hero-stage-platform {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 380px;
  height: 80px;
  transform: translateX(-50%) rotateX(65deg) translateZ(-40px);
  background: radial-gradient(ellipse at center, rgba(233, 255, 0, 0.25) 0%, rgba(20, 30, 22, 0.8) 60%, transparent 80%);
  border: 1px solid var(--accent-lime-border);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(233, 255, 0, 0.2), inset 0 0 20px rgba(233, 255, 0, 0.15);
  pointer-events: none;
}

/* Central Appliance Visual */
.hero-washer-img-box {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  transform: translateZ(40px);
  transform-style: preserve-3d;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.85));
}

.hero-washer-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

/* Floating 3D Diagnostic Badges around Washer */
.floating-diag-badge {
  position: absolute;
  background: rgba(12, 18, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px var(--accent-lime-glow-subtle);
  pointer-events: none;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.diag-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: rgba(233, 255, 0, 0.1);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.diag-badge-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-pos-1 { top: 10%; left: -8%; transform: translateZ(95px); border-color: rgba(233, 255, 0, 0.3); }
.badge-pos-2 { top: 38%; right: -10%; transform: translateZ(75px); border-color: rgba(37, 211, 102, 0.3); }
.badge-pos-3 { bottom: 12%; left: -6%; transform: translateZ(85px); border-color: rgba(255, 255, 255, 0.18); }
.badge-pos-4 { bottom: 2%; right: -4%; transform: translateZ(65px); border-color: rgba(233, 255, 0, 0.25); }

@media (max-width: 767px) {
  .floating-diag-badge {
    padding: 0.5rem 0.8rem;
    font-size: 0.72rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.75), 0 0 22px var(--accent-lime-glow);
  }
  .badge-pos-1 { top: 2%; left: 2%; transform: translateZ(70px); }
  .badge-pos-2 { top: 30%; right: 2%; transform: translateZ(55px); }
  .badge-pos-3 { bottom: 8%; left: 2%; transform: translateZ(60px); }
  .badge-pos-4 { bottom: 2%; right: 2%; transform: translateZ(50px); }
}

/* --- 10. 3D FLOATING BOOKING FORM CONSOLE --- */
.booking-section-overlap {
  position: relative;
  z-index: 10;
  margin-top: -2rem;
  margin-bottom: 5rem;
}

.booking-console-card {
  background: linear-gradient(160deg, #101712 0%, #080D09 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3d-elevated), 0 0 40px var(--accent-lime-glow-subtle);
  padding: 2.5rem;
  position: relative;
  transform-style: preserve-3d;
}

@media (max-width: 767px) {
  .booking-console-card {
    padding: 1.5rem 1.25rem;
    margin-top: 1rem;
  }
}

.booking-console-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  transform: translateZ(20px);
}

.booking-console-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.booking-console-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* 3D Recessed Inputs */
.form-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .form-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group-3d {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.form-label-3d {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.required-dot {
  color: var(--accent-lime);
  font-size: 0.95rem;
}

.input-3d {
  width: 100%;
  background: #070B08;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  transition: var(--transition-snap);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05);
  outline: none;
}

.input-3d:focus {
  border-color: var(--accent-lime);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(233, 255, 0, 0.25);
  background: #090E0A;
}

.input-3d::placeholder {
  color: var(--text-dim);
}

select.input-3d {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E9FF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.input-3d option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}

.input-error-tip {
  display: none;
  font-size: 0.76rem;
  color: #FF5A5A;
  font-weight: 600;
  margin-top: 0.2rem;
}

.input-3d.error {
  border-color: #FF5A5A;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 90, 90, 0.3);
}

.input-3d.error + .input-error-tip {
  display: block;
}

.submit-wrap-3d {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  transform: translateZ(30px);
}

.booking-success-msg {
  display: none;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid var(--color-wa);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  color: #68FFA4;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.15);
}

.booking-success-msg.visible {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 11. ABOUT / INTRO --- */
.intro-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.intro-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .intro-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.photo-composition-3d {
  position: relative;
  perspective: 1000px;
  min-height: 420px;
  transform-style: preserve-3d;
}

.photo-panel {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-3d-elevated);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-main {
  width: 78%;
  height: 340px;
  top: 0;
  left: 0;
  transform: rotateY(-6deg) rotateX(2deg) translateZ(10px);
  z-index: 2;
}

.photo-secondary {
  width: 60%;
  height: 240px;
  bottom: 0;
  right: 0;
  transform: rotateY(5deg) rotateX(-2deg) translateZ(45px);
  z-index: 3;
  border-color: rgba(233, 255, 0, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px var(--accent-lime-glow-subtle);
}

.photo-composition-3d:hover .photo-main {
  transform: rotateY(-3deg) translateZ(20px);
}

.photo-composition-3d:hover .photo-secondary {
  transform: rotateY(2deg) translateZ(65px);
}

.intro-floating-modules {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.intro-module-card {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: var(--transition-smooth);
}

.intro-module-card:hover {
  border-color: var(--accent-lime-border);
  transform: translateX(6px);
  background: var(--bg-card-elevated);
}

.module-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(233, 255, 0, 0.08);
  border: 1px solid var(--accent-lime-border);
  border-radius: var(--radius-md);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.module-text h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.module-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- 12. PROBLEMS GRID --- */
.problems-3d-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 11, 0.5) 50%, transparent 100%);
  overflow: clip;
}

.problems-3d-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 580px) {
  .problems-3d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-3d-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.problem-card-3d {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.problem-card-3d:hover {
  border-color: var(--accent-lime-border);
  background: var(--bg-card-elevated);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 28px var(--accent-lime-glow-subtle);
}

.problem-card-3d.selected {
  border-color: var(--accent-lime);
  background: #142017;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(233, 255, 0, 0.2);
}

.problem-card-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-snap);
}

.problem-card-3d:hover .problem-card-icon-box {
  background: rgba(233, 255, 0, 0.12);
  border-color: var(--accent-lime);
  color: var(--accent-lime-bright);
}

.problem-card-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.problem-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.problem-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-lime);
  transition: gap 0.25s ease;
}

.problem-card-3d:hover .problem-card-link {
  gap: 0.65rem;
}

/* --- 13. SERVICES GRID --- */
.services-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .service-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-3d {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: clip;
}

.service-card-tag {
  align-self: flex-start;
  font-size: 0.74rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-lime);
  background: rgba(233, 255, 0, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid var(--accent-lime-border);
}

.service-showcase-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.service-appliance-float {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.service-card-3d:hover .service-appliance-float {
  transform: translateY(-8px) scale(1.03);
}

.service-card-h3 {
  font-size: 1.45rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card-p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-card-cta {
  align-self: flex-start;
}

/* --- 14. PROCESS JOURNEY --- */
.process-3d-section {
  position: relative;
  padding: 6rem 0;
  overflow: clip;
}

.process-track-wrapper {
  position: relative;
  margin-top: 3rem;
}

.process-glowing-line {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg,
    var(--accent-lime) 0%,
    rgba(233, 255, 0, 0.35) 50%,
    var(--accent-lime) 100%
  );
  box-shadow: 0 0 18px var(--accent-lime-glow);
  z-index: 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .process-glowing-line {
    display: none;
  }
}

@media (min-width: 1024px) {
  .process-glowing-line {
    display: block;
    top: 45px;
    bottom: auto;
    left: 6%;
    right: 6%;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg,
      var(--accent-lime) 0%,
      rgba(233, 255, 0, 0.3) 50%,
      var(--accent-lime) 100%
    );
  }
}

.process-nodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .process-nodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-nodes-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.process-node-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.process-node-card:hover {
  border-color: var(--accent-lime-border);
  transform: translateY(-6px);
  background: var(--bg-card-elevated);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px var(--accent-lime-glow-subtle);
}

.node-step-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: #080D0A;
  border: 2px solid var(--accent-lime);
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(233, 255, 0, 0.25);
  position: relative;
  z-index: 3;
}

.process-node-card h3 {
  font-size: 1.12rem;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.process-node-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- 15. DIAGNOSTIC SECTION --- */
.diagnostic-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.diagnostic-display-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .diagnostic-display-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.diagnostic-hud-stage {
  position: relative;
  background: linear-gradient(145deg, #0D140F 0%, #060907 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-3d-elevated);
  overflow: hidden;
}

.hud-washer-view {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hud-washer-view img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.85) contrast(1.1);
}

.diag-marker-point {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(233, 255, 0, 0.2);
  border: 2px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px var(--accent-lime);
  animation: pulseMarker 2.4s infinite ease-in-out;
  transition: transform 0.2s ease;
}

.diag-marker-point:hover {
  transform: scale(1.35);
  background: var(--accent-lime);
}

.diag-marker-point::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-lime);
  border-radius: 50%;
}

@keyframes pulseMarker {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 255, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(233, 255, 0, 0); }
}

.diag-marker-label {
  position: absolute;
  background: rgba(8, 12, 9, 0.92);
  border: 1px solid var(--accent-lime-border);
  backdrop-filter: blur(10px);
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.marker-pump { bottom: 15%; right: 25%; }
.marker-pump + .label-pump { bottom: 14%; right: 40%; }
.marker-drum { top: 48%; left: 45%; }
.marker-drum + .label-drum { top: 46%; left: 58%; }
.marker-lock { top: 48%; right: 18%; }
.marker-lock + .label-lock { top: 42%; right: 28%; }
.marker-inlet { top: 12%; right: 20%; }
.marker-inlet + .label-inlet { top: 12%; right: 35%; }
.marker-panel { top: 15%; left: 25%; }
.marker-panel + .label-panel { top: 22%; left: 20%; }

.diagnostic-info-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diagnostic-perks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

@media (min-width: 580px) {
  .diagnostic-perks-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diag-perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.diag-perk-icon {
  color: var(--accent-lime);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.diag-perk-card h4 {
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.diag-perk-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- 16. BRANDS LOGO WALL --- */
.brands-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.brands-plaques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  perspective: 1000px;
}

@media (min-width: 580px) {
  .brands-plaques-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .brands-plaques-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-plaque-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  transform-style: preserve-3d;
}

.brand-plaque-card:hover {
  transform: translateZ(18px) translateY(-4px);
  border-color: var(--accent-lime-border);
  background: var(--bg-card-elevated);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 18px var(--accent-lime-glow-subtle);
}

.brand-plaque-card.selected {
  border-color: var(--accent-lime);
  background: #142017;
}

.brand-plaque-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand-disclaimer-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.86rem;
  margin-top: 2rem;
}

/* --- 17. WHY US --- */
.why-us-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.stacked-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .stacked-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stacked-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: clip;
}

.stacked-card-item:hover {
  border-color: var(--accent-lime-border);
  transform: translateY(-5px);
  background: var(--bg-card-elevated);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px var(--accent-lime-glow-subtle);
}

.stacked-card-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(233, 255, 0, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stacked-card-item h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.stacked-card-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- 18. COVERAGE --- */
.coverage-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.coverage-display-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .coverage-display-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.coverage-map-stage {
  position: relative;
  background: linear-gradient(160deg, #090E0A 0%, #040705 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-3d-elevated);
  overflow: hidden;
  perspective: 1000px;
}

.map-render-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
}

.map-render-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.region-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.region-tag-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-snap);
}

.region-tag-pill:hover {
  border-color: var(--accent-lime);
  color: var(--accent-lime);
  transform: translateY(-2px);
}

.region-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-lime);
  border-radius: 50%;
}

/* --- 19. TRUST PANELS --- */
.trust-panels-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.trust-panels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 580px) {
  .trust-panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-panels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.trust-panel-card:hover {
  border-color: var(--accent-lime-border);
  transform: translateY(-5px);
  background: var(--bg-card-elevated);
}

.trust-panel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(233, 255, 0, 0.08);
  border: 1px solid var(--accent-lime-border);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.trust-panel-card h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.trust-panel-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- 20. CINEMATIC CTA --- */
.cinematic-cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.cinematic-cta-card {
  position: relative;
  background: linear-gradient(135deg, #121A14 0%, #080D09 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-3d-elevated), 0 0 50px var(--accent-lime-glow-subtle);
  overflow: hidden;
}

.cinematic-bg-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 120%, rgba(233, 255, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cinematic-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cinematic-cta-card p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
}

.cta-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

/* --- 21. FAQ ACCORDION --- */
.faq-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-3d {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item-3d.active {
  border-color: var(--accent-lime-border);
  background: var(--bg-card-elevated);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-lime-glow-subtle);
}

.faq-trigger-btn {
  width: 100%;
  padding: 1.35rem 1.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition-snap);
}

.faq-trigger-btn:hover {
  color: var(--accent-lime);
}

.faq-icon-pill {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item-3d.active .faq-icon-pill {
  transform: rotate(45deg);
  background: var(--accent-lime);
  color: #000;
}

.faq-content-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-inner-body {
  padding: 0 1.65rem 1.5rem 1.65rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

/* --- 22. CONTACT --- */
.contact-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.contact-command-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .contact-command-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: var(--accent-lime-border);
  transform: translateX(6px);
  background: var(--bg-card-elevated);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(233, 255, 0, 0.08);
  border: 1px solid var(--accent-lime-border);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-text h4 {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-text p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-info-text a {
  color: var(--accent-lime);
}

/* --- 23. FOOTER --- */
.site-footer-3d {
  position: relative;
  background: #040705;
  border-top: 1px solid var(--border-medium);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 4.5rem 0 2rem 0;
  margin-top: 4rem;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.footer-heading {
  font-size: 0.95rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

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

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: var(--transition-snap);
}

.footer-links-list a:hover {
  color: var(--accent-lime);
  transform: translateX(4px);
  display: inline-block;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-disclaimer-box p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

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

/* --- 24. MOBILE DOCK --- */
.mobile-conversion-dock {
  display: none;
  position: fixed;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  background: rgba(10, 15, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.65rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85), 0 0 20px var(--accent-lime-glow-subtle);
  z-index: 150;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.45rem;
}

@media (max-width: 767px) {
  .mobile-conversion-dock {
    display: grid;
  }
}

.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.dock-btn-call {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.dock-btn-wa {
  background: var(--color-wa);
  color: #fff;
}

.dock-btn-book {
  background: var(--accent-lime);
  color: #000;
}

/* --- 25. PRIVACY MODAL --- */
.modal-overlay-3d {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay-3d.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog-3d {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-3d-elevated);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay-3d.open .modal-dialog-3d {
  transform: scale(1);
}

.modal-header-3d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header-3d h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
}

.modal-close-btn {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-body-3d h4 {
  color: var(--accent-lime);
  font-size: 1rem;
  margin: 1rem 0 0.4rem 0;
}

.modal-body-3d p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- 26. PREFERS-REDUCED-MOTION & ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .tilt-card {
    transform: none !important;
  }
  .hero-stage-container {
    transform: none !important;
  }
}

/* ==========================================================================
   27. SPECIALIZED LANDINGS — SAME-DAY, PROBLEMS & BRANDS (v2.2)
   ========================================================================== */
.drawer-actions {
  margin-top: auto;
  display: grid;
  gap: .8rem;
}

.availability-copy,
.form-availability-note,
.crosslink-note {
  color: var(--text-muted);
  font-size: .88rem;
}

.form-availability-note,
.crosslink-note {
  margin-top: 1.25rem;
  text-align: center;
}

.crosslink-note a {
  color: var(--accent-lime);
}

/* Same-day scheduling stage and timeline */
.clock-stage::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(233, 255, 0, .28);
  border-radius: 50%;
  animation: scheduleOrbit 24s linear infinite;
  pointer-events: none;
}

@keyframes scheduleOrbit {
  to { transform: rotate(360deg); }
}

.schedule-module {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: .7rem .85rem;
  background: rgba(8, 13, 9, .9);
  border: 1px solid var(--accent-lime-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3d-base);
  backdrop-filter: blur(14px);
}

.schedule-module strong,
.schedule-module small {
  display: block;
}

.schedule-module strong {
  color: var(--text-primary);
  font-size: .82rem;
}

.schedule-module small {
  color: var(--text-muted);
  font-size: .7rem;
}

.module-slot { top: 4%; left: -5%; }
.module-home { top: 30%; right: -8%; }
.module-contact { bottom: 25%; left: -8%; }
.module-diagnosis { bottom: 2%; right: -3%; }

.quick-problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.same-day-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.same-day-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-lime), transparent);
  box-shadow: 0 0 14px var(--accent-lime-glow);
}

.timeline-node {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.timeline-node > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  color: #050806;
  background: var(--accent-lime);
  border-radius: 50%;
  box-shadow: var(--shadow-lime-glow);
  font-family: var(--font-mono);
  font-weight: 800;
}

.timeline-node h3 { font-size: 1rem; margin-bottom: .45rem; }
.timeline-node p { color: var(--text-muted); font-size: .82rem; }

/* Diagnostic marker visual and fault detail cards */
.diagnostic-visual {
  position: relative;
  min-height: 430px;
  padding: 1rem;
  overflow: hidden;
}

.diagnostic-visual img {
  width: 100%;
  height: 410px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  filter: brightness(.72) contrast(1.12);
}

.diagnostic-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .6rem;
  color: var(--accent-lime);
  background: rgba(4, 8, 5, .9);
  border: 1px solid var(--accent-lime-border);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .65);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
}

.diagnostic-marker span {
  width: 8px;
  height: 8px;
  background: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-lime);
  animation: pulseMarkerScale 2s ease-in-out infinite;
}

@keyframes pulseMarkerScale {
  50% { transform: scale(1.45); opacity: .55; }
}

.diagnostic-marker::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--accent-lime-border);
}

.marker-drain { bottom: 10%; left: 8%; }
.marker-drain::after { left: 100%; }
.marker-drum { top: 52%; left: 38%; }
.marker-drum::after { right: 100%; }
.marker-lock { top: 52%; right: 4%; }
.marker-lock::after { right: 100%; }
.marker-inlet { top: 14%; right: 5%; }
.marker-inlet::after { right: 100%; }
.marker-panel { top: 10%; left: 5%; }
.marker-panel::after { left: 100%; }
.marker-motor { bottom: 12%; right: 7%; }
.marker-motor::after { right: 100%; }

.diagnostic-problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.problem-symptom {
  color: var(--text-secondary);
  font-size: .86rem;
  margin: .65rem 0;
}

.fault-details-section,
.independent-notice-section {
  position: relative;
  padding: 5rem 0;
}

.fault-detail-stack {
  display: grid;
  gap: 1.2rem;
}

.fault-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 2rem;
}

.fault-detail h3 { margin-bottom: .7rem; }
.fault-detail p { color: var(--text-muted); margin-top: .35rem; }
.fault-detail .btn { flex: 0 0 auto; }

/* Dynamic brand directory and floating featured tiles */
.brand-stage {
  min-height: 470px;
}

.featured-brand-tiles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  transform: translateZ(55px);
}

.floating-brand-tile {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 54px;
  padding: .45rem .55rem;
  color: var(--text-primary);
  background: rgba(10, 15, 11, .92);
  border: 1px solid var(--accent-lime-border);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .7), 0 0 18px var(--accent-lime-glow-subtle);
  font-size: .72rem;
  font-weight: 800;
  animation: brandFloat 5s ease-in-out infinite;
}

.floating-brand-tile img {
  width: 72px;
  max-height: 34px;
  object-fit: contain;
  padding: .2rem .35rem;
  background: #fff;
  border-radius: 6px;
}

.floating-brand-tile.tile-1 { top: 4%; left: -4%; }
.floating-brand-tile.tile-2 { top: 18%; right: -7%; animation-delay: -.8s; }
.floating-brand-tile.tile-3 { top: 48%; left: -8%; animation-delay: -1.6s; }
.floating-brand-tile.tile-4 { bottom: 18%; right: -4%; animation-delay: -2.4s; }
.floating-brand-tile.tile-5 { bottom: 2%; left: 9%; animation-delay: -3.2s; }
.floating-brand-tile.tile-6 { bottom: 0; right: 14%; animation-delay: -4s; }

@keyframes brandFloat {
  50% { transform: translateY(-8px) rotate(1deg); }
}

.brand-search-panel {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: end;
  gap: .75rem 1rem;
  max-width: 780px;
  margin: 0 auto 2rem;
  padding: 1.25rem;
}

.brand-search-panel label {
  grid-column: 1 / -1;
  color: var(--text-secondary);
  font-size: .82rem;
  font-weight: 700;
}

.brand-filter-row {
  display: flex;
  gap: .55rem;
}

.brand-filter-btn {
  min-height: 46px;
  padding: .65rem 1rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.brand-filter-btn:hover,
.brand-filter-btn.is-active {
  color: #050806;
  background: var(--accent-lime);
  border-color: var(--accent-lime);
}

.dynamic-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  perspective: 1000px;
  align-items: stretch;
}

.dynamic-brand-grid.brands-plaques-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dynamic-brand-grid .brand-plaque-card {
  display: flex;
  min-height: 0;
  height: 100%;
  padding: 1.35rem 1.15rem 1.25rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  transform-style: preserve-3d;
}

.brand-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 1;
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 18px var(--accent-lime-glow-subtle);
  transform: translateZ(28px);
}

.brand-card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.brand-card-logo-fallback {
  color: #050806;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: #ffffff;
}

.brand-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.25;
  transform: translateZ(20px);
}

.brand-card-desc {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  flex: 1 1 auto;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform: translateZ(16px);
}

.brand-card-cta {
  margin-top: auto;
  font-size: 0.82rem;
  padding: 0.65rem 0.9rem;
  width: 100%;
  transform: translateZ(24px);
}

.brand-grid-empty { grid-column: 1 / -1; text-align: center; }

.independent-notice {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem;
  border-color: var(--accent-lime-border);
}

.notice-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #050806;
  background: var(--accent-lime);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 900;
}

.independent-notice h2 { font-size: 1.45rem; }

/* --- TRANSPARENT PRICING --- */
.pricing-3d-section {
  position: relative;
  padding: 5rem 0;
  overflow: clip;
}

.pricing-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.pricing-section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-lime);
  margin-bottom: 0.75rem;
}

.pricing-section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.55;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #121A14 0%, #0A100C 100%);
  border: 1.5px solid var(--accent-lime-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-3d-elevated), 0 0 40px var(--accent-lime-glow-subtle);
}

.pricing-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.pricing-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.pricing-divider {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: 0 0 1.35rem;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-wa);
  margin-bottom: 0.55rem;
}

.pricing-note {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.pricing-cta {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .same-day-timeline { grid-template-columns: 1fr 1fr; }
  .same-day-timeline::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--accent-lime), transparent);
    box-shadow: 0 0 14px var(--accent-lime-glow);
  }
}

@media (max-width: 620px) {
  .schedule-module {
    min-width: 118px;
    padding: .55rem .65rem;
    box-shadow: var(--shadow-3d-base), 0 0 16px var(--accent-lime-glow-subtle);
  }
  .module-slot { top: 2%; left: 2%; }
  .module-contact { bottom: 22%; left: 2%; }
  .module-home { top: 28%; right: 2%; }
  .module-diagnosis { bottom: 2%; right: 2%; }
  .same-day-timeline { grid-template-columns: 1fr; }
  .same-day-timeline::before {
    left: 22px;
  }
  .diagnostic-visual { min-height: 350px; padding: .6rem; }
  .diagnostic-visual img { height: 330px; }
  .diagnostic-marker {
    font-size: .65rem;
    padding: .3rem .5rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .65), 0 0 14px var(--accent-lime-glow);
  }
  .diagnostic-marker::after { width: 28px; }
  .fault-detail { align-items: flex-start; flex-direction: column; }
  .brand-search-panel { grid-template-columns: 1fr; }
  .brand-search-panel label { grid-column: auto; }
  .floating-brand-tile { min-width: 80px; min-height: 46px; }
  .independent-notice { flex-direction: column; }
}

/* --- MOBILE VISUAL EFFECTS BOOST --- */
@media (max-width: 767px) {
  .bg-ambient-layer::before {
    background: radial-gradient(circle, rgba(233, 255, 0, 0.16) 0%, rgba(26, 77, 46, 0.12) 45%, transparent 70%);
    filter: blur(55px);
  }
  .bg-ambient-layer::after {
    background: radial-gradient(circle, rgba(233, 255, 0, 0.12) 0%, rgba(37, 211, 102, 0.1) 50%, transparent 70%);
    filter: blur(60px);
  }
  .hero-stage-aura {
    width: min(92vw, 380px);
    height: min(92vw, 380px);
    background: radial-gradient(circle, rgba(233, 255, 0, 0.28) 0%, rgba(37, 211, 102, 0.12) 40%, transparent 72%);
  }
  .depth-panel {
    box-shadow: var(--shadow-3d-elevated), 0 0 36px var(--accent-lime-glow);
  }
  .mobile-conversion-dock {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85), 0 0 28px var(--accent-lime-glow);
    border-color: var(--accent-lime-border);
  }
}

@media (hover: none) and (prefers-reduced-motion: no-preference) {
  .tilt-card--mobile-alive {
    animation: mobileCardFloat 4.8s ease-in-out infinite;
  }
  .hero-stage--mobile-alive {
    animation: mobileStageSway 6.5s ease-in-out infinite;
  }
  .problem-card-3d:active,
  .process-node-card:active,
  .brand-plaque-card:active,
  .service-card-3d:active,
  .intro-module-card:active,
  .timeline-node:active,
  .trust-panel-card:active {
    border-color: var(--accent-lime-border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 26px var(--accent-lime-glow);
    transform: translateY(-4px);
  }
  .diag-marker-point:active {
    transform: scale(1.3);
    background: var(--accent-lime);
  }
}

@keyframes mobileCardFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-5px) rotateX(1.8deg) rotateY(-1.6deg); }
}

@keyframes mobileStageSway {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
  50% { transform: rotateX(2.2deg) rotateY(-2.8deg); }
}
