/* ============================================
   APPLIANCETECHLINE — DESIGN SYSTEM
   Navy blue & red accent palette
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold:        #C8102E;
  --gold-light:  #E8415A;
  --gold-dark:   #9A0B22;
  --black:       #060B14;
  --dark:        #0C1528;
  --dark-2:      #111E38;
  --dark-3:      #182848;
  --mid:         #2A3F6A;
  --border:      rgba(200,16,46,0.22);
  --white:       #F8FAFF;
  --off-white:   #EDF1F8;
  --gray-text:   #8A96B0;
  --light-bg:    #F2F5FB;
  --card-bg:     #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-gold:  0 0 40px rgba(200,16,46,0.15);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 48px rgba(0,0,0,0.15);

  --radius:  8px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Push footer to bottom when injected by components.js */
body > .footer { margin-top: auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

p { font-size: 1rem; color: #555; line-height: 1.75; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark p { color: var(--gray-text); }
.section--cream { background: var(--light-bg); }
.section--mid { background: var(--dark-2); color: var(--white); }

.gold { color: var(--gold); }
.gold-line {
  display: block; width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 24px;
}
.gold-line--center { margin: 16px auto 24px; }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #ffffff;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-3); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  transition: all var(--transition);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 52px; width: auto; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.navbar-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-links a:hover { color: var(--gold); }
.navbar-links a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.82rem;
  color: var(--dark) !important;
}
.nav-dropdown-menu a:hover { color: var(--gold) !important; background: rgba(200,16,46,0.05); }
.nav-dropdown-menu a::after { display: none !important; }

.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Mobile menu toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 12px; margin: -12px; background: none; border: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation; z-index: 1001; position: relative; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); transition: all var(--transition); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,11,20,0.88) 0%, rgba(12,21,40,0.35) 60%, rgba(6,11,20,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.hero-scroll svg { width: 20px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── CARDS ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img { transform: scale(1.04); }
.card-img-wrap { overflow: hidden; position: relative; }
.card-body { padding: 28px; }
.card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.card-text { font-size: 0.9rem; color: #666; line-height: 1.65; margin-bottom: 20px; }
.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* Dark cards */
.card--dark {
  background: var(--dark-2);
  border-color: var(--border);
  color: var(--white);
}
.card--dark .card-title { color: var(--white); }
.card--dark .card-text { color: var(--gray-text); }

/* Brand pill cards */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.brand-pill {
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  color: var(--dark);
}
.brand-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold);
  transform: translateY(-2px);
}
.brand-pill--dark {
  background: var(--dark-3);
  border-color: var(--border);
  color: rgba(255,255,255,0.7);
}
.brand-pill--dark:hover { color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── PROCESS / STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--dark), 0 0 0 5px var(--gold-dark);
}
.step-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-text { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 24px; left: 24px;
}
.testimonial-stars { color: #C8102E; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: #444; line-height: 1.75; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-info { font-size: 0.78rem; color: #888; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(200,16,46,0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--gray-text); max-width: 560px; margin-top: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  user-select: none;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding-top: 12px; font-size: 0.92rem; color: #555; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.footer {
  background: #ffffff;
  color: var(--dark);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: #555; line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: #555; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: #555; }
.footer-contact-item a { color: #555; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #888;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  color: #555;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #ffffff; }

/* ── DIVIDER ── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.2;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .navbar-links, .navbar-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .navbar-phone { display: none; }
}

/* ── MOBILE NAV OPEN ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ── PAGE TRANSITIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  border-left: 3px solid var(--gold);
  background: rgba(200,16,46,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #0f1e3a 50%, var(--dark) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner h2, .cta-banner p, .cta-banner .btn-group, .cta-banner a, .cta-banner .label {
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: var(--gray-text); max-width: 500px; margin: 16px auto 36px; position: relative; }
.cta-banner .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ── MISSING UTILITIES ── */
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SKIP LINK (ADA) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold-dark); }

/* ── FOCUS STYLES (ADA) ── */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── HAMBURGER OPEN STATE ── */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FOOTER LEGAL LINKS ── */
.footer-legal-links { display: flex; align-items: center; gap: 10px; }
.footer-legal-links a { color: #888; font-size: 0.78rem; text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--dark);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  padding: 20px 24px;
  align-items: center;
  justify-content: center;
}
.cookie-banner__inner { max-width: var(--max-w); width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-banner__text p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 24px; font-size: 0.85rem; white-space: nowrap; }

/* ── FLOATING CALL BUTTON (mobile only) ── */
.floating-call { display: none; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 48px 0 16px; color: var(--dark); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: #444; }
.legal-content ul { margin: 0 0 16px 24px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { color: #444; font-size: 0.95rem; line-height: 1.7; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-meta { font-size: 0.82rem; color: #888; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,0.08); }

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .card-grid-3, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 110px 0 56px; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner .btn-group { flex-direction: column; align-items: stretch; }
  .hero-content { padding: 100px 18px 64px; }
  .navbar-links { display: none; }
  .navbar-cta .btn { display: none; }
  .navbar-phone { display: none; }
  .nav-toggle { display: flex !important; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner__actions { flex-direction: row; justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.6fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  .floating-call {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(200,16,46,0.45);
    text-decoration: none;
    white-space: nowrap;
  }
}

/* ── PAGE HERO WITH BACKGROUND PHOTO ── */
.page-hero--photo {
  position: relative;
}
.page-hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.page-hero--photo .container {
  position: relative;
  z-index: 1;
}

/* ── NAV TOGGLE ALWAYS ON TOP ── */
.navbar { z-index: 1000 !important; }
.navbar-inner { position: relative; z-index: 1001; }

@media (max-width: 640px) {
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 1002;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  /* Prevent hero background from overlapping navbar */
  .page-hero {
    margin-top: 0;
  }
}
