/* ============================================
   FAST APPLIANCE REPAIR - Main Stylesheet
   Design: Clean Light | Blue-Grey + Steel Blue
   ============================================ */

/* === CSS Variables === */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #3B82F6;
  --blue-pale: #EFF6FF;
  --steel: #334155;
  --steel-2: #475569;
  --steel-3: #64748B;
  --white: #FFFFFF;
  --grey-1: #F8FAFC;
  --grey-2: #E2E8F0;
  --grey-3: #CBD5E1;
  --grey-4: #94A3B8;
  --dark: #0F172A;
  --dark-footer: #1E293B;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Raleway', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 48px rgba(15,23,42,.14);
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --container: 1180px;
  --header-h: 76px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--steel);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Utility === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-dark { background: var(--dark-footer); color: var(--white); }
.section-grey { background: var(--grey-1); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* === Typography === */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: var(--dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--steel-3); font-size: 1.1rem; max-width: 600px; }

/* === Buttons — All outline style === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.2); }

/* btn-primary = same outline style */
.btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.2); }

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* On dark/blue backgrounds — white outline */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

.btn-header {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-header:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* === Header — WHITE === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(15,23,42,.08); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link img {
  height: 58px;
  width: auto;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel-2);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: var(--blue-pale); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--steel); border-radius: 2px; transition: var(--transition); }

/* === Hero — Blue-Grey Gradient === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 40%, rgba(59,130,246,.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(37,99,235,.12) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.2);
  border: 1px solid rgba(59,130,246,.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #60A5FA; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: #60A5FA; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.15rem; margin-bottom: 36px; max-width: 480px; }
.hero-sub strong { color: var(--white); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.trust-item svg { color: #60A5FA; flex-shrink: 0; }

.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #60A5FA;
  line-height: 1;
  display: block;
}
.stat-card .stat-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  display: block;
}
.hero-area-pills {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.hero-area-pills p {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,.2);
  border: 1px solid rgba(59,130,246,.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.pill svg { color: #60A5FA; }

/* === Problems / Services === */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.problem-card {
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.problem-card:hover { border-color: var(--grey-3); box-shadow: var(--shadow); transform: translateY(-3px); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}
.problem-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); }
.problem-card p { font-size: .92rem; color: var(--steel-3); margin: 0; }

/* === Why Choose Us === */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.why-text h4 { color: var(--dark); margin-bottom: 4px; }
.why-text p { color: var(--steel-3); font-size: .92rem; margin: 0; }

.why-cta-box {
  background: linear-gradient(135deg, #1E3A5F 0%, #1E40AF 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.why-cta-box h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.why-cta-box p { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.stars { color: #FCD34D; font-size: 1.3rem; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,.6); font-size: .9rem; }
.rating-num { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--white); }

/* === Service Areas === */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.area-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--grey-2);
  transition: var(--transition);
  background: var(--white);
}
.area-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue); }
.area-header {
  background: linear-gradient(135deg, #1E3A5F, #1E40AF);
  padding: 28px 24px 20px;
  position: relative;
}
.area-header h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
.area-header p { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; }
.area-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.3);
}
.area-body { padding: 20px 24px; }
.area-body ul { display: flex; flex-direction: column; gap: 6px; }
.area-body li {
  font-size: .88rem;
  color: var(--steel-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-body li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* === Process === */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-pale);
}
.step h4 { margin-bottom: 8px; color: var(--dark); }
.step p { font-size: .9rem; color: var(--steel-3); margin: 0; }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  color: var(--dark);
  transition: var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); background: var(--blue-pale); }
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--blue); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
  color: var(--steel-3);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* === Contact — Call Only === */
.call-cards { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }

.call-card-main {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #1E3A5F 0%, #1E40AF 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(37,99,235,.25);
}
.call-card-main:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,99,235,.35); }
.call-card-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.call-card-label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.call-card-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.call-card-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}

.call-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.call-info-item {
  background: var(--grey-1);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.call-info-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.call-info-item div { display: flex; flex-direction: column; gap: 2px; }
.call-info-item strong { font-size: .88rem; color: var(--dark); font-weight: 700; }
.call-info-item span { font-size: .82rem; color: var(--steel-3); }

@media (max-width: 768px) {
  .call-card-main { padding: 28px 24px; gap: 20px; }
  .call-card-icon { width: 56px; height: 56px; }
  .call-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .call-info-grid { grid-template-columns: 1fr 1fr; }
  .call-card-main { flex-direction: column; text-align: center; }
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, #1E3A5F 0%, #1E40AF 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,130,246,.2) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-inner p { color: rgba(255,255,255,.7); margin: 8px 0 0; }

/* === Brands === */
.brands-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.brand-chip {
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: 100px;
  padding: 8px 22px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--steel-2);
  letter-spacing: .04em;
  transition: var(--transition);
}
.brand-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

/* === Site Footer === */
.site-footer { background: var(--dark-footer); color: var(--white); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand img {
  margin-bottom: 16px;
  border-radius: 6px;
  opacity: .92;
}
.footer-brand p { color: var(--grey-4); font-size: .9rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-4);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-links h3, .footer-contact h3 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--grey-4); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p, .footer-contact a { color: var(--grey-4); font-size: .9rem; margin-bottom: 8px; display: block; }
.footer-contact a:hover { color: #60A5FA; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  margin-top: 56px;
}
.footer-bottom p { color: var(--grey-4); font-size: .85rem; margin: 0; }

/* === Floating CTA === */
.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 100px;
  padding: 14px 22px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37,99,235,.15);
  transition: var(--transition);
  text-decoration: none;
}
.float-cta:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.3); }

/* === Scroll Top === */
.scroll-top {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* === Responsive === */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }
  .main-nav, .btn-header { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .hero-visual { order: -1; }
  .hero-stat-cards { grid-template-columns: repeat(4,1fr); }
  .stat-card { padding: 16px 12px; }
  .stat-card .stat-num { font-size: 1.8rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Mobile Nav */
  .main-nav {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    border-top: 1px solid var(--grey-2);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 8px; }
  .main-nav a { font-size: 1.3rem; padding: 14px 16px; display: block; color: var(--dark); }
}

@media (max-width: 480px) {
  .hero-stat-cards { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .float-cta span { display: none; }
  .float-cta { padding: 16px; border-radius: 50%; }
  .contact-form { padding: 24px 20px; }
}

/* === Animations === */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}

/* === Dropdown Nav === */
.has-dropdown { position: relative; }
.dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  z-index: 200;
  overflow: hidden;
  flex-direction: column;
}
.dropdown li {
  display: block;
  width: 100%;
}
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: .85rem;
  color: var(--steel-2);
  border-radius: 0;
  background: none;
  border-bottom: 1px solid var(--grey-2);
  letter-spacing: .04em;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--blue-pale); color: var(--blue); }
.has-dropdown:hover .dropdown { display: flex !important; }
.dropdown.open { display: flex !important; }

@media (max-width: 768px) {
  .has-dropdown:hover .dropdown { display: none !important; }
  .dropdown.open {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--blue-pale);
    border-radius: 0;
    margin: 4px 0 4px 16px;
    flex-direction: column;
  }
  .dropdown li a { padding: 8px 16px; font-size: 1rem; color: var(--steel-2); }
}
