/* 
  27 Prolocksmith Car Key Specialist - High Trust Luxury Design System
  Color Palette:
  - Primary Dark Navy: #111827
  - Secondary Pure White: #FFFFFF
  - Light Background: #F8FAFC
  - Luxury Gold Accent: #FDBA12
  - CTA Orange: #F97316
  - Success Green: #22C55E
  - Borders: #E5E7EB
  - Text Primary: #1F2937
  - Text Secondary: #6B7280
*/

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

:root {
  /* Brand Palette */
  --primary-navy: #111827;
  --secondary-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --gold-accent: #FDBA12;
  --gold-hover: #EAB308;
  --orange-cta: #F97316;
  --orange-hover: #EA580C;
  --success-green: #22C55E;
  --border-light: #E5E7EB;
  --border-dark: #1F2937;
  
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-white: #FFFFFF;
  --text-muted-dark: #9CA3AF;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 40px rgba(17, 24, 39, 0.08), 0 0 15px rgba(249, 115, 22, 0.12);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(253, 186, 18, 0.15);
  --shadow-orange: 0 8px 25px rgba(249, 115, 22, 0.35);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Rhythm & Padding */
section {
  padding: 5rem 0;
  position: relative;
}

/* Section Header Standards */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--orange-cta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Buttons System */
.btn-primary-yellow, .btn-primary-orange {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary-yellow:hover, .btn-primary-orange:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
  color: #FFFFFF;
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  color: #FFFFFF;
}

/* Sticky Emergency Top Bar */
.top-emergency-bar {
  background: linear-gradient(90deg, #111827 0%, #1F2937 100%);
  border-bottom: 1px solid rgba(253, 186, 18, 0.3);
  color: #FFFFFF;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}

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

.emergency-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(253, 186, 18, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(253, 186, 18, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(253, 186, 18, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(253, 186, 18, 0); }
}

.emergency-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold-accent);
  color: #111827;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.emergency-phone-link:hover {
  background-color: #FFFFFF;
  transform: scale(1.03);
}

/* Header & Navigation - Clean Dark Luxury Style */
.site-header {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-icon-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 130, 32, 0.22) 0%, rgba(31, 41, 55, 0.8) 70%, #0B0F17 100%);
  border: 1px stroke rgba(245, 130, 32, 0.4);
  border: 1px solid rgba(245, 130, 32, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  padding: 5px;
  flex-shrink: 0;
}

.brand-logo-link:hover .brand-icon-mark {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(245, 130, 32, 0.8);
  box-shadow: 0 8px 25px rgba(245, 130, 32, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.brand-icon-svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: filter var(--transition-fast);
}

.brand-logo-link:hover .brand-icon-svg {
  filter: drop-shadow(0 0 12px rgba(245, 130, 32, 0.85));
}

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

.brand-name-main {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-link {
  color: #E5E7EB;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.nav-cta-btn {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  transition: all var(--transition-fast);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.55);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.75rem;
  cursor: pointer;
}

/* Hero Section - Redesigned Conversion-Driven Layout */
.hero-section {
  background: radial-gradient(circle at 75% 15%, rgba(249, 115, 22, 0.14) 0%, transparent 45%), radial-gradient(circle at 20% 80%, rgba(253, 186, 18, 0.1) 0%, transparent 40%), linear-gradient(180deg, #111827 0%, #0B0F17 100%);
  color: #FFFFFF;
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(253, 186, 18, 0.12);
  border: 1px solid rgba(253, 186, 18, 0.35);
  color: var(--gold-accent);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  width: fit-content;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.highlight-yellow {
  color: var(--gold-accent);
  background: linear-gradient(90deg, #FDBA12 0%, #F97316 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #9CA3AF;
  line-height: 1.6;
  font-weight: 500;
}

/* Primary & Secondary Hero CTAs */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.btn-hero-primary-call {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: 56px;
}

.btn-hero-primary-call i {
  font-size: 1.45rem;
  color: #FFFFFF;
}

.btn-hero-primary-call span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.btn-hero-primary-call strong {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.btn-hero-primary-call small {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FED7AA;
}

.btn-hero-primary-call:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  box-shadow: 0 14px 38px rgba(249, 115, 22, 0.6);
  color: #FFFFFF;
}

.hero-callout-fee {
  font-size: 0.85rem;
  font-weight: 700;
  color: #9CA3AF;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.02em;
}

.hero-callout-fee i {
  color: var(--gold-accent);
  font-size: 0.8rem;
}

.btn-hero-secondary-quote {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(253, 186, 18, 0.35);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.975rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(12px);
  min-height: 56px;
}

.btn-hero-secondary-quote:hover {
  background: rgba(253, 186, 18, 0.18);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-3px);
}

/* Trust Badges Grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-trust-badge {
  background: rgba(31, 41, 55, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.hero-trust-badge:hover {
  border-color: rgba(253, 186, 18, 0.4);
  background: rgba(31, 41, 55, 0.85);
  transform: translateY(-2px);
}

.trust-stars {
  color: var(--gold-accent);
  font-size: 0.8rem;
  display: flex;
  gap: 0.15rem;
}

.trust-badge-icon {
  color: var(--gold-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-badge-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: #E5E7EB;
  line-height: 1.3;
}

/* Hero Media Column (Clean Authentic Locksmith Photo Frame) */
.hero-media-column {
  display: flex;
  flex-direction: column;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(253, 186, 18, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 186, 18, 0.15);
  background: #1F2937;
}

.hero-real-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Relocated Quote Form Section */
.quote-form-section {
  background: linear-gradient(180deg, #111827 0%, #0B0F17 100%);
  padding: 5.5rem 0;
  position: relative;
  border-top: 1px solid rgba(253, 186, 18, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-form-container {
  max-width: 820px;
  margin: 0 auto;
}

/* Quote Estimator SaaS Card (Hero Right Side) */
.quote-estimator-card {
  background: rgba(31, 41, 55, 0.95);
  border: 1px solid rgba(253, 186, 18, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.quote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-card-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.quote-card-title i {
  color: var(--gold-accent);
}

.quote-step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-accent);
  background: rgba(253, 186, 18, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: #E5E7EB;
}

.form-input, .form-select {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-select option {
  background-color: #111827;
  color: #FFFFFF;
}

.form-input::placeholder {
  color: #6B7280;
}

.form-input:focus, .form-select:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(253, 186, 18, 0.2);
  background: rgba(17, 24, 39, 0.95);
}

/* Value Props Section (Pure White Background) */
.value-props-section {
  background-color: #FFFFFF;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.value-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(253, 186, 18, 0.12);
  border: 1px solid rgba(253, 186, 18, 0.3);
  color: var(--orange-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Key Services Section (Light Gray #F8FAFC) */
.services-section {
  background-color: #F8FAFC;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--orange-cta));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-cta);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange-cta);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--orange-cta);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.service-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li i {
  color: var(--success-green);
  font-size: 0.95rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.15rem;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.service-btn:hover {
  background: var(--orange-cta);
  color: #FFFFFF;
  border-color: var(--orange-cta);
}

/* Why Choose 27 Prolocksmith Section (Pure White Background) */
.why-choose-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.why-choose-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
}

.why-choose-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.why-choose-img-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 186, 18, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FFFFFF;
}

.why-choose-title {
  font-size: 2.35rem;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 1.15rem;
}

.why-choose-lead {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.why-choose-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

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

.feature-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange-cta);
  box-shadow: var(--shadow-hover);
  background: #FFFFFF;
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon-box {
  background: var(--orange-cta);
  color: #FFFFFF;
}

.feature-card-title {
  color: var(--text-primary);
  font-size: 0.975rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.feature-card-text {
  color: var(--text-secondary);
  font-size: 0.825rem;
}

/* Car Brand Matrix Section (Light Gray #F8FAFC Background + White Cards) */
.brands-section {
  background-color: #F8FAFC;
}

.brand-search-box {
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.brand-search-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem 0.75rem 2.75rem;
  font-size: 0.95rem;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.brand-search-input:focus {
  border-color: var(--orange-cta);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.brand-search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.brand-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-accent), var(--orange-cta));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-cta);
  box-shadow: var(--shadow-hover);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-logo-box {
  width: 100%;
  height: 52px;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.brand-card:hover .brand-logo-box {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.brand-tag {
  font-size: 0.725rem;
  font-weight: 600;
  background: #F1F5F9;
  color: var(--text-secondary);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

.brand-card-btn {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.825rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.brand-card-btn:hover {
  background: var(--orange-cta);
  color: #FFFFFF;
  border-color: var(--orange-cta);
}

/* Service Area Coverage Checker Section (Dark Navy #111827) */
.service-area-section {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  color: #FFFFFF;
  text-align: center;
}

.zip-checker-container {
  max-width: 680px;
  margin: 0 auto;
}

.zip-input-wrap {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.zip-input-field {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 24, 39, 0.8);
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
}

.zip-input-field::placeholder {
  color: #9CA3AF;
}

.zip-check-btn {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: transform var(--transition-fast);
}

.zip-check-btn:hover {
  transform: translateY(-2px);
}

.zip-result-message {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

/* Customer Reviews Section (Pure White #FFFFFF Background) */
.reviews-section {
  background-color: #FFFFFF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.stars-rating {
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-navy);
  color: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

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

.reviewer-name {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.reviewer-car {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* FAQ Accordion Section (Light Gray #F8FAFC) */
.faq-section {
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--orange-cta);
}

/* Interactive Dispatch / Quote Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #111827;
  border: 1px solid rgba(253, 186, 18, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-dark);
  color: #FFFFFF;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: #9CA3AF;
  font-size: 1.75rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #FFFFFF;
}

.modal-subtitle {
  color: #9CA3AF;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-submit-btn {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-orange);
}

/* Footer (Deep Black #0B0F17) */
.site-footer {
  background-color: #0B0F17;
  color: #9CA3AF;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: #9CA3AF;
  transition: color var(--transition-fast);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold-accent);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.footer-payment-bar {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #9CA3AF;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2400;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  padding: 0.6rem 1.15rem 0.6rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.875rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappPulse 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-icon-wrap {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Navigation Backdrop Overlay */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 23, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-nav-active .mobile-nav-backdrop {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Mobile Call Bar Sticky Base */
.mobile-sticky-callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111827;
  border-top: 1.5px solid var(--gold-accent);
  padding: 0.65rem 1rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  z-index: 2500;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

.mobile-callbar-flex {
  display: flex;
  gap: 0.75rem;
}

.callbar-btn-phone {
  flex: 1;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 0.75rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
}

.callbar-btn-quote {
  flex: 1;
  background: var(--gold-accent);
  color: #111827;
  border: none;
  padding: 0.75rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .why-choose-grid, .smart-key-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .smart-key-photo {
    height: 360px;
  }
}

@media (max-width: 768px) {
  /* Prevent auto-zoom on iOS browsers on input focus */
  button, input, select, textarea {
    font-size: 16px !important;
  }

  /* Containers & Rhythm */
  .container {
    padding: 0 1.15rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
    padding: 0 0.5rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 5vw, 2.15rem);
  }

  /* Emergency Bar on Mobile */
  .top-emergency-bar {
    padding: 0.6rem 0;
  }

  .top-emergency-bar .container {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.35rem;
  }

  .emergency-status {
    font-size: 0.78rem;
    justify-content: center;
  }

  /* Navbar & Mobile Drawer */
  .site-header {
    padding: 0.35rem 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-size: 1.35rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 1001;
  }

  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: rgba(253, 186, 18, 0.15);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
  }

  .mobile-nav-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: linear-gradient(180deg, #111827 0%, #0B0F17 100%);
    padding: 1.25rem 1.5rem 2rem;
    border-bottom: 3px solid var(--gold-accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    gap: 0.5rem;
    z-index: 999;
    animation: slideDownNav 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-nav-active .nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #F3F4F6;
  }

  .mobile-nav-active .nav-link::after {
    display: none;
  }

  .mobile-nav-active .nav-cta-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    margin-top: 0.75rem;
    font-size: 1rem;
    padding: 0.85rem;
  }

  /* Hero Section Mobile Tuning */
  .hero-section {
    padding: 2.25rem 0 3.25rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .btn-hero-primary-call,
  .btn-hero-secondary-quote {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 0.85rem;
  }

  .hero-trust-badge {
    padding: 0.75rem 0.65rem;
    gap: 0.55rem;
  }

  .trust-badge-label {
    font-size: 0.775rem;
  }

  .hero-real-photo {
    height: auto;
    max-height: 280px;
    aspect-ratio: 16/9;
  }

  .floating-whatsapp-btn {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    padding: 0.5rem 0.85rem 0.5rem 0.5rem;
    font-size: 0.8rem;
  }

  /* SaaS Quote Estimator Form - 1 Column Stack on Mobile */
  .quote-estimator-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .quote-card-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .quote-card-title {
    font-size: 1.1rem;
  }

  /* Value Props Bar */
  .value-props-section {
    padding: 2.5rem 0;
  }

  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .value-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .value-icon-box {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .value-title {
    font-size: 0.95rem;
  }

  .value-desc {
    font-size: 0.8rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.35rem 1.15rem;
  }

  .service-btn {
    min-height: 44px;
  }

  /* Why Choose Section */
  .why-choose-main-img {
    height: auto;
    max-height: 360px;
    aspect-ratio: 4/3;
  }

  .why-choose-img-overlay {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
  }

  .overlay-badge-title {
    font-size: 0.85rem;
    font-weight: 800;
  }

  .overlay-badge-sub {
    font-size: 0.725rem;
  }

  .why-choose-secondary-thumb {
    display: none;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .why-choose-title {
    font-size: 1.85rem;
  }

  .why-choose-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .why-choose-actions .btn-primary-yellow,
  .why-choose-actions .btn-secondary-dark {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  /* Brands Grid */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  /* Postcode ZIP Checker */
  .zip-input-wrap {
    flex-direction: column;
    gap: 0.65rem;
  }

  .zip-check-btn {
    width: 100%;
    min-height: 48px;
  }

  /* Smart Key Section */
  .smart-key-features-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .smart-key-photo {
    height: auto;
    max-height: 320px;
    aspect-ratio: 4/3;
  }

  /* Payments Section */
  .payments-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .payment-card {
    padding: 0.85rem 0.4rem;
  }

  /* Reviews & Footer */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .review-card {
    padding: 1.35rem 1.15rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mobile-sticky-callbar {
    display: block;
  }

  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  }
}

/* Extra Small Screens (Smartphones <= 480px) */
@media (max-width: 480px) {
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .hero-trust-badge {
    padding: 0.65rem 0.5rem;
    gap: 0.45rem;
  }

  .trust-badge-label {
    font-size: 0.725rem;
  }

  .value-props-grid {
    grid-template-columns: 1fr;
  }

  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-card {
    padding: 1.25rem 1rem;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-title {
    font-size: 1.15rem;
  }

  .modal-submit-btn {
    min-height: 48px;
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}
