/* ===================================
   FIXIT APPLIANCE REPAIR — STYLE.CSS
   Premium, Modern, High-Converting
   =================================== */

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

:root {
  --blue-900: #0A1628;
  --blue-800: #0E2040;
  --blue-700: #122856;
  --blue-600: #1A3A73;
  --blue-500: #1E4D9A;
  --blue-400: #2563C4;
  --blue-300: #4B8AE8;
  --blue-100: #D6E4FF;
  --blue-50:  #EEF4FF;
  --orange-600: #E05A00;
  --orange-500: #F06522;
  --orange-400: #FF7A35;
  --orange-100: #FFF0E8;
  --gray-900: #0F1117;
  --gray-800: #1C1F2A;
  --gray-700: #2D3143;
  --gray-600: #3D4160;
  --gray-500: #5A5F7A;
  --gray-400: #7B80A0;
  --gray-300: #A8ACCB;
  --gray-200: #D0D4E8;
  --gray-100: #EFF0F7;
  --gray-50:  #F7F8FC;
  --white: #FFFFFF;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.05);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.06);
  --shadow-lg: 0 8px 32px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.08);
  --shadow-xl: 0 20px 60px rgba(10,22,40,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; }
p  { line-height: 1.72; }
a  { text-decoration: none; color: inherit; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 4px 18px rgba(240,101,34,0.35);
}
.btn-primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  box-shadow: 0 6px 24px rgba(240,101,34,0.45);
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-card {
  position: relative;
  z-index: 2;
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  padding: 10px 20px;
  font-size: 0.88rem;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-card:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30,77,154,0.3);
}
.btn-card-mobile { display: none; }
@media (max-width: 767px) {
  .btn-card-desktop { display: none; }
  .btn-card-mobile { display: inline-flex; }
}
.btn-primary-light {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary-light:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}
.same-day .btn-primary-light {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 4px 18px rgba(240,101,34,0.35);
}
.same-day .btn-primary-light:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  box-shadow: 0 6px 24px rgba(240,101,34,0.45);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}
.same-day .btn-ghost-light {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.78);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.same-day .btn-ghost-light:hover {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}
.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.btn-nav-call {
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(240,101,34,0.3);
}
.btn-nav-call:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: var(--blue-50);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label.light {
  color: var(--blue-100);
  background: rgba(255,255,255,0.1);
}
.section-title { color: var(--gray-900); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--gray-500); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===========================
   NAVBAR
   =========================== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  background: rgba(10,22,40,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.logo-icon { font-size: 1.3rem; }
.logo-accent { color: var(--orange-400); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  font-family: var(--font-display);
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blue-900);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--white); }
.mobile-link.call-link { color: var(--orange-400); font-weight: 600; }
.mobile-link.sms-link  { color: var(--blue-300); font-weight: 600; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav-call { display: none; }
  .hamburger { display: flex; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--blue-900);
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.hero-orb-1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, var(--blue-400), transparent 70%);
  top: -15%;
  right: -10%;
}
.hero-orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--orange-500), transparent 70%);
  bottom: -10%;
  left: -5%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding-top: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 0 3px rgba(255,122,53,0.3);
  animation: pulse 2s infinite;
  will-change: box-shadow;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,122,53,0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(255,122,53,0.1); }
}
.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.headline-accent {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.trust-badge small {
  display: block;
  margin-top: 1px;
  font-size: 0.72em;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
}
.trust-icon { font-size: 1rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 0 auto;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ANIMATIONS */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200, #c4d8ff);
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--blue-500);
  color: var(--white);
}
.service-icon {
  width: 30px;
  height: 30px;
}
.service-title {
  font-size: 1.1rem;
  color: var(--gray-900);
  font-weight: 700;
}
.service-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.service-title a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-title a:hover { color: var(--blue-500); }
.service-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.65;
}
.service-issues {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.service-issues li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}
.service-issues li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-size: 0.75rem;
}

/* ===========================
   SAME-DAY
   =========================== */
.same-day {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 50%, var(--blue-900) 100%);
  position: relative;
  overflow: hidden;
}
.same-day::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75,138,232,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.same-day-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .same-day-inner { grid-template-columns: 1fr; gap: 40px; }
}
.same-day-body {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 4px;
}
.same-day-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.time-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.time-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.time-slot:last-of-type { border-bottom: none; }
.slot-label {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-weight: 500;
}
.slot-status {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.slot-status.available {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.25);
}
.slot-status.open {
  background: rgba(75,138,232,0.15);
  color: var(--blue-300);
  border: 1px solid rgba(75,138,232,0.25);
}
.time-cta { margin-top: 20px; }
.time-cta-btn {
  color: var(--orange-400);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.time-cta-btn:hover { color: var(--orange-500); }
.stat-chips {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.stat-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  flex: 1;
  min-width: 90px;
}
.stat-chip strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}
.stat-chip span {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-top: 2px;
  display: block;
}

/* ===========================
   BRANDS
   =========================== */
.brands { background: var(--white); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-pill {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.brand-pill:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.brand-pill.premium-brand {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
  border-color: var(--gray-600);
  color: var(--white);
}
.brand-pill.premium-brand:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  border-color: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,77,154,0.25);
}

/* ===========================
   LUXURY
   =========================== */
.luxury {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}
/* Subtle texture overlay */
.luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(37,99,196,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(240,101,34,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.luxury-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .luxury-inner { grid-template-columns: 1fr; gap: 40px; } }
.luxury-label { color: var(--blue-100); background: rgba(255,255,255,0.1); }
.luxury-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
}
.luxury-body {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.luxury-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.luxury-brand-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.15);
}
.luxury-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.luxury-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: var(--white);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.luxury-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  transform: translateX(4px);
}
.luxury-card-icon {
  font-size: 1.4rem;
  color: var(--orange-400);
  margin-bottom: 10px;
  display: block;
}
.luxury-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.luxury-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .luxury-card { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
  .luxury-card, .luxury-card h4 { color: var(--white); }
  .luxury-card p { color: rgba(255,255,255,0.72); }
  .luxury-card:hover { background: rgba(255,255,255,0.16); }
}

/* ===========================
   WHY US
   =========================== */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-card--highlight {
  background: var(--gray-50);
  border: 1.5px solid var(--orange-400);
}
.why-card--highlight:hover {
  background: var(--orange-100);
  border-color: var(--orange-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-card--highlight .why-icon-wrap {
  background: var(--orange-100);
  border-color: var(--orange-400);
  color: var(--orange-600);
}
.why-card--highlight:hover .why-icon-wrap {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
}
.why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.why-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.why-card:not(.why-card--highlight):hover .why-icon-wrap {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.why-card h3 small {
  display: block;
  margin-top: 2px;
  font-size: 0.76em;
  color: var(--gray-500);
  font-weight: 600;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
.contact-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.72;
  margin: 16px 0 32px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition);
}
.contact-method:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}
.contact-method span {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  margin-top: 2px;
  display: block;
}
.contact-method--static {
  cursor: default;
  pointer-events: none;
}
.contact-method-icon--blue {
  background: var(--blue-500) !important;
}
.payment-methods {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.payment-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.footer-hours {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  margin: 6px 0 4px;
  font-family: var(--font-display);
}
.footer-payment {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  margin-bottom: 20px;
}
.waiver-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
}
.waiver-note svg { color: var(--orange-400); flex-shrink: 0; }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237B80A0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,99,196,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  font-weight: 500;
  min-height: 16px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-sm);
  color: #166534;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 18px;
  margin-top: 16px;
}
.form-success.visible { display: flex; }
.form-success svg { color: #16a34a; flex-shrink: 0; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--gray-900);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo .logo-text { color: var(--white); }
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-top: 8px;
}
.footer-phone {
  display: block;
  color: var(--orange-400);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 8px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--orange-500); }
.footer-waiver {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  margin-top: 4px;
}
.footer-col h4 {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-area {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 8px 0 20px;
}
.footer-cta {
  font-size: 0.88rem;
  padding: 11px 20px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
}

/* ===========================
   MOBILE STICKY BUTTONS
   =========================== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: row;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: filter var(--transition);
}
.sticky-btn:hover { filter: brightness(1.08); }
.sticky-call { background: var(--orange-500); }
.sticky-sms  { background: var(--blue-500); }
@media (max-width: 768px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 60px; }
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero { padding: 60px 0 48px; min-height: auto; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .trust-badges { flex-direction: column; gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 28px 20px; }
  .same-day-ctas { flex-direction: column; }
  .footer-inner { gap: 28px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .brands-grid { gap: 8px; }
  .brand-pill { font-size: 0.82rem; padding: 7px 16px; }
}

/* ===========================
   REVIEWS
   =========================== */
.reviews { background: var(--gray-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-300);
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
  flex-shrink: 0;
}
.review-text {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}
.review-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
}
.review-appliance {
  margin-left: auto;
  background: var(--blue-50);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Rating Summary */
.reviews-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.score-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.score-stars {
  display: flex;
  gap: 3px;
}
.score-stars svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}
.score-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.summary-divider {
  width: 1px;
  height: 56px;
  background: var(--gray-200);
}
.summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.summary-stat strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gray-900);
}
.summary-stat span {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-align: center;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { gap: 20px; padding: 24px 20px; }
  .summary-divider { width: 60px; height: 1px; }
  .review-appliance { margin-left: 0; }
}


/* ===========================
   HERO STATS
   =========================== */
.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 110px;
  padding: 4px 12px;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  display: block;
}
.hero-stat strong span:not(.counter),
.summary-stat strong {
  white-space: nowrap;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 6px;
  font-family: var(--font-display);
  display: block;
  line-height: 1.3;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-stats { padding: 16px; }
  .hero-stat { flex: 0 0 50%; padding: 10px 8px; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat-divider { display: none; }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 14px; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { padding-top: 14px; }
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { background: var(--white); }
.steps-wrapper {
  position: relative;
  margin-bottom: 52px;
}
.steps-line {
  position: absolute;
  top: 52px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--orange-400), var(--blue-300));
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 768px) { .steps-line { display: none; } }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; max-width: 420px; margin: 0 auto; }
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.step-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 2px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
}
.step-card:hover .step-circle {
  background: var(--blue-500);
  border-color: var(--blue-500);
  box-shadow: 0 8px 28px rgba(30,77,154,0.28);
  transform: translateY(-4px);
}
.step-circle--2 {
  background: var(--orange-100);
  border-color: rgba(240,101,34,0.25);
}
.step-card:hover .step-circle--2 {
  background: var(--orange-500);
  border-color: var(--orange-500);
  box-shadow: 0 8px 28px rgba(240,101,34,0.28);
}
.step-circle--3 {
  background: linear-gradient(135deg, var(--blue-50), var(--orange-100));
  border-color: var(--blue-100);
}
.step-num {
  position: absolute;
  top: -10px;
  right: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step-circle--2 .step-num { background: var(--orange-500); }
.step-circle--3 .step-num { background: var(--blue-600); }
.step-icon {
  width: 36px;
  height: 36px;
  color: var(--blue-500);
  transition: color var(--transition);
}
.step-circle--2 .step-icon { color: var(--orange-500); }
.step-card:hover .step-circle .step-icon,
.step-card:hover .step-circle--2 .step-icon,
.step-card:hover .step-circle--3 .step-icon { color: var(--white); }
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.steps-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: transparent;
  transition: all var(--transition);
}
.btn-outline-dark:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-1px);
}
.steps-cta .btn-outline-dark {
  border-color: var(--blue-400);
  color: var(--blue-600);
  background: var(--blue-50);
}
.steps-cta .btn-outline-dark:hover {
  border-color: var(--blue-500);
  color: var(--white);
  background: var(--blue-500);
  box-shadow: 0 4px 14px rgba(30,77,154,0.28);
}

/* ===========================
   SERVICE AREAS
   =========================== */
.service-areas { background: var(--gray-50); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.area-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.area-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
}
.area-pill:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.areas-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}
.areas-note a {
  color: var(--blue-500);
  font-weight: 600;
}
.areas-note a:hover {
  color: var(--blue-600);
  text-decoration: underline;
}

/* ===========================
   FAQ
   =========================== */
.faq { background: var(--white); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--gray-50);
  transition: background var(--transition);
  gap: 16px;
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--blue-50); }
.faq-item.open .faq-question { background: var(--blue-50); }
.faq-question-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--blue-500);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 18px 24px 22px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
}
.faq-answer-inner a {
  color: var(--blue-500);
  font-weight: 600;
}
.faq-answer-inner a:hover {
  color: var(--blue-600);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq-question { padding: 16px 18px; }
  .faq-answer-inner { padding: 16px 18px 20px; }
  .faq-question-text { font-size: 0.95rem; }
}



/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .badge-dot { animation: none; }
  .hero-scroll-hint span { animation: none; }
  .page-transition { transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ===========================
   PAGE TRANSITION
   =========================== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--blue-900);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}
.page-transition.fade-out {
  opacity: 1;
  pointer-events: all;
}
