/* ============================================================
   InstalatorAer.ro — Stylesheet
   ============================================================ */

:root {
  --blue-900: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --orange:      #f97316;
  --orange-dark: #ea580c;
  --green:  #16a34a;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--gray-700);
  background: var(--gray-100);
  line-height: 1.65;
}
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5,h6 { color: var(--gray-900); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-pale { background: var(--blue-50); }
.section-dark { background: var(--blue-900); color: var(--white); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { color: var(--blue-900); margin-bottom: 0.5rem; }
.section-title p  { color: var(--gray-500); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   Skip link (accessibility)
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--blue-900);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.5rem; max-width: 1200px; margin: 0 auto; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--white); font-weight: 800; font-size: 1.25rem;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.logo:hover { text-decoration: none; opacity: 0.9; }
.logo-icon { font-size: 1.4rem; }

.site-nav {
  display: flex; align-items: center; gap: 1.75rem;
}
.site-nav a {
  color: rgba(255,255,255,0.82); font-weight: 500;
  transition: var(--transition); text-decoration: none;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white); border-bottom-color: var(--orange); text-decoration: none;
}

.header-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--orange); color: var(--white);
  padding: 0.5rem 1.1rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1.05rem;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.header-phone:hover { background: var(--orange-dark); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; color: var(--white); font-size: 1.3rem;
  padding: 0.3rem 0.6rem; border-radius: var(--radius); line-height: 1;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-500) 100%);
  color: var(--white); padding: 6rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 0.35rem 1.1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero h1 { color: var(--white); max-width: 820px; margin: 0 auto 1rem; }
.hero-subtitle {
  font-size: 1.2rem; opacity: 0.88; max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--orange); color: var(--white);
  padding: 1rem 2.75rem; border-radius: var(--radius-lg);
  font-size: 2rem; font-weight: 800; letter-spacing: 0.04em;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(249,115,22,0.45);
  margin-bottom: 0.75rem;
}
.hero-phone:hover {
  background: var(--orange-dark); text-decoration: none;
  transform: translateY(-3px); box-shadow: 0 10px 32px rgba(249,115,22,0.5);
}
.hero-note { font-size: 0.92rem; opacity: 0.7; }
.hero-features {
  display: flex; justify-content: center; gap: 2rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.hero-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.94rem; opacity: 0.88; background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem; border-radius: 999px;
}

/* ============================================================
   Services Grid
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  transition: var(--transition); border: 2px solid transparent;
}
.service-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-5px);
  border-color: var(--blue-500);
}
.service-icon { font-size: 2.6rem; margin-bottom: 1rem; display: block; }
.service-card h3 { color: var(--blue-900); margin-bottom: 0.75rem; }
.service-card p  { color: var(--gray-500); font-size: 0.95rem; }

/* ============================================================
   Why us numbers
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.why-item { padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why-number { font-size: 2.8rem; font-weight: 800; color: var(--blue-700); line-height: 1; margin-bottom: 0.4rem; }
.why-label  { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.3rem; }
.why-desc   { font-size: 0.85rem; color: var(--gray-500); }

/* ============================================================
   Localities grid
   ============================================================ */
.localities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.7rem;
}
.locality-card {
  background: var(--white); border: 1.5px solid var(--blue-100);
  border-radius: var(--radius); padding: 0.65rem 0.9rem;
  text-align: center; transition: var(--transition);
  color: var(--blue-700); font-weight: 600; font-size: 0.88rem; display: block;
}
.locality-card:hover {
  background: var(--blue-700); color: var(--white);
  border-color: var(--blue-700); text-decoration: none;
  transform: translateY(-3px); box-shadow: var(--shadow);
}

/* ============================================================
   How it works
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
  text-align: center; position: relative;
}
.step-item { }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-700); color: var(--white);
  font-size: 1.3rem; font-weight: 800; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.step-item h3 { color: var(--blue-900); margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-item p  { color: var(--gray-500); font-size: 0.9rem; }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white); text-align: center; padding: 5rem 1.5rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner > .container > p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-phone-large {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--orange); color: var(--white);
  padding: 1rem 3rem; border-radius: var(--radius-lg);
  font-size: 1.9rem; font-weight: 800; letter-spacing: 0.04em;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.cta-phone-large:hover {
  background: var(--orange-dark); text-decoration: none; transform: translateY(-3px);
}
.cta-note { color: rgba(255,255,255,0.55); margin-top: 1rem; font-size: 0.88rem; }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white); padding: 3.5rem 1.5rem; text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { opacity: 0.85; font-size: 1.1rem; max-width: 600px; margin: 0.75rem auto 0; }

/* Breadcrumb */
.breadcrumb {
  background: var(--blue-50); padding: 0.6rem 1.5rem;
  font-size: 0.88rem; color: var(--gray-500);
  border-bottom: 1px solid var(--blue-100);
}
.breadcrumb a { color: var(--blue-700); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   Page Content
   ============================================================ */
.page-content { background: var(--white); padding: 3rem 1.5rem; }
.page-content-inner { max-width: 860px; margin: 0 auto; }
.page-content h2 { color: var(--blue-900); margin: 2rem 0 0.8rem; }
.page-content h3 { color: var(--blue-700); margin: 1.5rem 0 0.6rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.35rem; }
.page-content strong { color: var(--gray-900); }

/* ============================================================
   City Page Layout
   ============================================================ */
.city-layout {
  display: grid; grid-template-columns: 1fr 310px; gap: 3rem; align-items: start;
}
.city-sidebar {}
.city-contact-box {
  background: var(--white); border: 2px solid var(--orange);
  border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; margin-bottom: 1.25rem;
}
.city-contact-box h3 { margin-bottom: 0.5rem; }
.city-contact-box p  { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 0; }
.city-phone-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: var(--white);
  padding: 0.8rem 1.75rem; border-radius: var(--radius-lg);
  font-size: 1.55rem; font-weight: 800; text-decoration: none;
  margin: 1rem 0 0.5rem; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.city-phone-btn:hover { background: var(--orange-dark); text-decoration: none; }
.city-hours { color: var(--gray-500); font-size: 0.82rem; margin-top: 0.5rem; }

.city-services-box {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem;
}
.city-services-box h4 { color: var(--blue-900); margin-bottom: 0.75rem; }
.city-services-list { list-style: none; padding: 0; }
.city-services-list li {
  padding: 0.45rem 0; border-bottom: 1px solid var(--blue-100);
  font-size: 0.93rem; color: var(--gray-700);
}
.city-services-list li:last-child { border-bottom: none; }

.city-links-box {
  background: var(--gray-100); border-radius: var(--radius-lg); padding: 1.25rem;
}
.city-links-box h4 { color: var(--blue-900); margin-bottom: 0.75rem; font-size: 0.95rem; }
.city-links-box a {
  display: block; color: var(--blue-700); margin-bottom: 0.35rem;
  font-size: 0.88rem; transition: var(--transition);
}
.city-links-box a:hover { color: var(--blue-900); }

/* ============================================================
   Services Page
   ============================================================ */
.service-full-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 2rem;
  margin-bottom: 1.5rem; box-shadow: var(--shadow);
}
.service-full-card h3 { color: var(--blue-900); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.service-full-card ul { list-style: none; padding: 0; margin-top: 1rem; }
.service-full-card ul li {
  padding: 0.4rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem; color: var(--gray-600, var(--gray-700));
}
.service-full-card ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.service-full-card ul li:last-child { border-bottom: none; }

/* ============================================================
   Contact Page
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-phone-hero {
  text-align: center; background: var(--blue-900);
  color: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem;
}
.contact-phone-hero h2 { color: var(--white); margin-bottom: 0.5rem; }
.contact-phone-hero p  { opacity: 0.8; margin-bottom: 1.5rem; }
.contact-phone-display {
  display: block; font-size: 2.4rem; font-weight: 800; color: var(--orange);
  text-decoration: none; margin-bottom: 0.75rem; letter-spacing: 0.04em;
  transition: var(--transition);
}
.contact-phone-display:hover { color: var(--white); text-decoration: none; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding: 1rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-text h4 { margin-bottom: 0.25rem; color: var(--gray-900); }
.contact-info-text p, .contact-info-text a { color: var(--gray-500); font-size: 0.95rem; }

/* ============================================================
   List Page
   ============================================================ */
.list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.list-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  border: 2px solid var(--gray-200); transition: var(--transition);
  text-decoration: none; display: block; color: var(--gray-700);
}
.list-card:hover {
  border-color: var(--blue-500); box-shadow: var(--shadow-md);
  transform: translateY(-4px); text-decoration: none;
}
.list-card h3 { color: var(--blue-900); margin-bottom: 0.5rem; }
.list-card p  { font-size: 0.92rem; color: var(--gray-500); }
.list-card .card-arrow { color: var(--blue-500); font-weight: 700; margin-top: 0.75rem; display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,0.65); padding: 3.5rem 1.5rem 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto 2.5rem;
}
.footer-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col p, .footer-col a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6); display: block;
  margin-bottom: 0.45rem; text-decoration: none; transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-phone-link {
  color: var(--orange) !important; font-size: 1.25rem !important;
  font-weight: 700; display: flex !important; align-items: center; gap: 0.4rem;
}
.footer-phone-link:hover { color: var(--white) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  text-align: center; font-size: 0.82rem; max-width: 1200px; margin: 0 auto;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   Reviews / Testimoniale
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
}
.review-stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text  { color: var(--gray-700); font-style: italic; margin-bottom: 1rem; font-size: 0.97rem; flex: 1; line-height: 1.6; }
.review-author strong { color: var(--gray-900); }
.review-author span   { color: var(--gray-500); font-size: 0.88rem; }
.reviews-aggregate {
  text-align: center; margin-top: 2rem; font-size: 1.05rem; color: var(--gray-700);
  padding: 1rem; background: var(--white); border-radius: var(--radius-lg); display: inline-block;
  width: 100%;
}
.reviews-stars-big { color: #f59e0b; font-size: 1.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 2px solid var(--blue-100); }
.faq-section > h2 { color: var(--blue-900); margin-bottom: 1.5rem; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-item h3 {
  color: var(--blue-900); padding: 1rem 1.25rem; font-size: 1rem;
  background: var(--blue-50); margin: 0; border-bottom: 1px solid var(--blue-100);
  line-height: 1.4;
}
.faq-item p {
  padding: 1rem 1.25rem; margin: 0; font-size: 0.95rem;
  color: var(--gray-700); background: var(--white); line-height: 1.6;
}
.faq-item p:last-child { margin-bottom: 0; }

/* ============================================================
   Internal links box (city pages)
   ============================================================ */
.internal-links-box {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  margin: 1.75rem 0; font-size: 0.92rem; line-height: 1.8;
}
.internal-links-box strong { color: var(--blue-900); display: block; margin-bottom: 0.25rem; }
.internal-links-box a { color: var(--blue-700); font-weight: 600; }
.internal-links-box a:hover { color: var(--blue-900); }

/* ============================================================
   Price Table
   ============================================================ */
.price-table {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 1rem;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem; gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--gray-100); }
.price-header {
  background: var(--blue-900) !important; color: white;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.price-val {
  font-weight: 700; color: var(--blue-700); white-space: nowrap; flex-shrink: 0;
}
.price-header .price-val { color: white; }

/* ============================================================
   Brand badges
   ============================================================ */
.brand-badge {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  font-weight: 600; color: var(--gray-700); box-shadow: var(--shadow);
  font-size: 0.92rem; transition: var(--transition);
}
.brand-badge:hover { border-color: var(--blue-500); color: var(--blue-700); }

/* ============================================================
   Utilities & Buttons
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; transition: var(--transition);
  cursor: pointer; border: none; font-size: 1rem; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue-700); color: var(--white); }
.btn-primary:hover { background: var(--blue-900); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(249,115,22,0.3); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--blue-700); border: 2px solid var(--blue-700); }
.btn-outline:hover { background: var(--blue-700); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-900); }
.btn-white:hover { background: var(--blue-50); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .city-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 4rem 1rem 3rem; }
  .hero-phone { font-size: 1.45rem; padding: 0.85rem 1.75rem; }
  .hero-features { gap: 0.6rem; }
  .hero-feature { font-size: 0.85rem; padding: 0.4rem 0.75rem; }

  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--blue-900); padding: 0.5rem 0; flex-direction: column;
    gap: 0; box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
    border-bottom-width: 0 !important;
    border-bottom: none !important;
    border-bottom-color: transparent !important;
  }
  .site-nav a:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1) !important; }

  .header-phone .phone-text { display: none; }
  .cta-phone-large { font-size: 1.35rem; padding: 0.85rem 1.5rem; }
  .section { padding: 3rem 0; }
  .page-hero { padding: 2.5rem 1rem; }
  .contact-phone-display { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0.6rem 1rem; }
  .logo { font-size: 1.05rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-number { font-size: 2.2rem; }
  .localities-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
}
