/* =============================================
   LANCASTER AC REPAIR PRO — MASTER STYLESHEET
   LancasterACRepairPro.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --red:       #C41230;
  --red-dark:  #8B0C21;
  --red-light: #E8173A;
  --blue:      #0D2B5E;
  --blue-mid:  #1A3F8A;
  --blue-light:#2655B5;
  --gold:      #F0A500;
  --white:     #FFFFFF;
  --off-white: #F7F4F0;
  --gray-lt:   #E8E4DF;
  --gray:      #9A9590;
  --gray-dk:   #3A3632;
  --black:     #0E0C0A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.24);
  --shadow-red: 0 4px 20px rgba(196,18,48,0.35);
  --shadow-blue: 0 4px 20px rgba(13,43,94,0.35);

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-dk);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-red   { color: var(--red); }
.text-blue  { color: var(--blue); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.bg-blue    { background: var(--blue); }
.bg-red     { background: var(--red); }
.bg-dark    { background: var(--black); }
.bg-white   { background: var(--white); }
.bg-off     { background: var(--off-white); }
.bold       { font-weight: 700; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-cond);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.eyebrow {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 1.5px;
  color: var(--blue);
  line-height: 1.05;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 12px;
  font-weight: 400;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--blue);
}
.btn--gold {
  background: var(--gold);
  color: var(--blue);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #d4920a;
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 42px; font-size: 1.2rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid var(--red);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a { color: var(--white); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar-phone { font-size: 1rem; font-weight: 700; letter-spacing: 1px; color: var(--gold) !important; }
.topbar-badge {
  background: var(--red);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- HEADER / NAV ---- */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
/* LOGO */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text-block { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 1px;
  color: var(--blue);
}
.logo-sub {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a, .nav-links button {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover {
  color: var(--red);
  background: rgba(196,18,48,0.06);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--blue);
  transition: all var(--transition);
  border-radius: 0;
}
.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--red);
  padding-left: 28px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  background: var(--blue);
  padding: 24px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0a1f44 50%, #1a0610 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(196,18,48,0.18) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red-light); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trust-icon {
  width: 28px;
  height: 28px;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- EMERGENCY BANNER ---- */
.emergency-bar {
  background: var(--red);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
}
.emergency-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.04) 10px,
    rgba(255,255,255,0.04) 20px
  );
}
.emergency-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.emergency-text {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.emergency-text span { color: var(--gold); }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-lt);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-red);
}
.service-card-icon svg { width: 32px; height: 32px; fill: var(--white); }
.service-card-body { padding: 28px; }
.service-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.93rem; color: var(--gray); line-height: 1.6; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }
.service-card-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0;
  transition: width var(--transition);
}
.service-card:hover .service-card-bar { width: 100%; }

/* ---- WHY CHOOSE US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.why-item { text-align: center; }
.why-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 2px;
}
.why-item h4 {
  font-size: 1.1rem;
  margin: 8px 0;
  color: var(--blue);
}
.why-item p { font-size: 0.9rem; color: var(--gray); }

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-lt);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.97rem; line-height: 1.65; color: var(--gray-dk); position: relative; z-index: 1; }
.testimonial-author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.93rem; color: var(--blue); }
.author-location { font-size: 0.8rem; color: var(--gray); }

/* ---- FAQ ---- */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--gray-lt);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 300;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.97rem;
  color: var(--gray-dk);
  line-height: 1.7;
}
.faq-answer-inner { padding: 0 0 20px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,18,48,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 1.5px;
  line-height: 1.1;
}
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 8px; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}
.step h4 { color: var(--blue); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--gray); }

/* ---- SERVICE AREA MAP PLACEHOLDER ---- */
.map-placeholder {
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc8 100%);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 2px dashed var(--gray);
  position: relative;
  overflow: hidden;
}
.map-placeholder svg { opacity: 0.3; }
.map-placeholder-text {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---- CITIES GRID ---- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.3px;
}
.city-card:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.city-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition);
}
.city-card:hover .city-dot { background: var(--gold); }

/* ---- BRAND STRIP ---- */
.brand-strip {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
}
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-logo {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 8px 16px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
}
.brand-logo:hover { color: var(--blue); border-color: var(--blue); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  padding: 12px 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '›'; color: var(--gray-lt); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb li:last-child { color: var(--red); font-weight: 700; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0a1f44 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 70% 50%, rgba(196,18,48,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.08rem; max-width: 600px; }

/* ---- CONTENT LAYOUT ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-main h2 {
  font-size: 1.9rem;
  color: var(--blue);
  margin: 36px 0 16px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.35rem; color: var(--blue); margin: 24px 0 10px; }
.content-main p { color: var(--gray-dk); line-height: 1.75; margin-bottom: 16px; }
.content-main ul { margin: 0 0 20px; }
.content-main ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.97rem;
  color: var(--gray-dk);
  line-height: 1.5;
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ---- SIDEBAR ---- */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-lt);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.sidebar-card-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  padding: 24px;
  color: var(--white);
}
.sidebar-card-header h3 {
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.sidebar-card-header p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.sidebar-phone {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
  margin: 12px 0;
}
.sidebar-card-body { padding: 24px; }
.sidebar-check-list { margin-bottom: 20px; }
.sidebar-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-dk);
  line-height: 1.4;
}
.sidebar-check-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-spacer { height: 12px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--blue);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; color: var(--red); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.footer-contact-item strong { color: var(--white); display: block; }
.footer-phone {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-logo { margin-bottom: 20px; }

/* ---- VIDEO PLACEHOLDER ---- */
.video-placeholder {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.play-button {
  width: 80px;
  height: 80px;
  background: rgba(196,18,48,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}
.play-button:hover { transform: scale(1.1); background: var(--red); }
.play-button svg { fill: white; width: 32px; height: 32px; margin-left: 4px; }
.video-label {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- SCHEMA NOTICE ---- */
.schema-notice { display: none; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,18,48,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(196,18,48,0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.pulse { animation: pulse 2s infinite; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .topbar-left { font-size: 0.78rem; gap: 14px; }
  .hero { padding: 64px 0 56px; min-height: auto; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip-content { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
