
  :root {
    --red: #d0021b;
    --navy: #1a2a5e;
    --navy-dark: #111c42;
    --gold: #f5a623;
    --white: #ffffff;
    --light-bg: #eef1f8;
    --gray: #6b7280;
    --light-gray: #f4f6fa;
    --border: #dde3ef;
    --text: #1e2535;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: #fff;
  }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--navy-dark);
    color: #cdd4e8;
    font-size: 13px;
    padding: 7px 0;
  }
  .topbar .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a { color: #cdd4e8; text-decoration: none; margin-left: 20px; }
  .topbar a:hover { color: #fff; }

  /* ── HEADER ── */
  header {
    background: #fff;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(26,42,94,.10);
  }
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    gap: 16px;
  }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-icon svg { width: 30px; height: 30px; fill: #fff; }
  .logo-text { line-height: 1.1; }
  .logo-text .brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 900;
    color: var(--red);
    letter-spacing: .5px;
    display: block;
  }
  .logo-text .sub {
    font-size: 10px; font-weight: 600;
    color: var(--navy);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
  }

  /* Location pill */
  .location-pill {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--navy);
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 12px;
    flex-shrink: 0;
  }
  .location-pill svg { fill: var(--red); width: 14px; height: 14px; }

  /* Nav */
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    font-size: 13px; font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: background .2s, color .2s;
  }
  nav a:hover { background: var(--light-bg); color: var(--red); }

  /* CTA buttons */
  .header-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
  .btn-schedule {
    background: var(--red);
    color: #fff;
    font-size: 13px; font-weight: 700;
    border: none; border-radius: 5px;
    padding: 10px 18px;
    cursor: pointer;
    display: flex; align-items: center; gap: 7px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    letter-spacing: .3px;
  }
  .btn-schedule:hover { background: #b00016; }
  .btn-call {
    background: var(--navy);
    color: #fff;
    font-size: 13px; font-weight: 700;
    border: none; border-radius: 5px;
    padding: 10px 18px;
    cursor: pointer;
    display: flex; align-items: center; gap: 7px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
  }
  .btn-call:hover { background: var(--navy-dark); }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    cursor: pointer;
    background: none;
    border: 2px solid var(--navy);
    border-radius: 6px;
    padding: 8px;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 2px solid var(--border);
    padding: 16px 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-size: 15px; font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:last-of-type { border-bottom: none; }
  .mobile-nav-ctas { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
  .mobile-nav-ctas a { flex: 1; min-width: 130px; justify-content: center; }

  /* ── HERO ── */
  #home {
    background: linear-gradient(135deg, #e8ecf5 0%, #dde3f0 60%, #c9d0e8 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  #home::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a2a5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .6;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    width: 100%;
  }
  .hero-visual {
    flex: 0 0 48%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 360px;
  }
  .hero-van-wrap {
    position: relative;
    width: 100%;
  }
  .hero-van {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(26,42,94,.18));
    display: block;
  }

  /* SVG Van illustration */
  .van-svg {
    width: 100%;
    max-width: 480px;
  }

  .hero-content { flex: 1; }
  .hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
  }
  .hero-content .call-label {
    font-size: 18px; font-weight: 700;
    color: var(--red);
    margin: 14px 0 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .hero-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 22px;
  }
  .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .btn-hero-schedule {
    background: var(--navy);
    color: #fff;
    font-size: 14px; font-weight: 800;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: background .2s, transform .15s;
  }
  .btn-hero-schedule:hover { background: var(--navy-dark); transform: translateY(-2px); }
  .hero-rating { display: flex; align-items: center; gap: 10px; }
  .stars { color: var(--gold); font-size: 22px; letter-spacing: 1px; }
  .rating-text { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }
  .rating-text strong { font-size: 22px; display: block; }

  /* Red ribbon */
  .ribbon {
    background: var(--red);
    color: #fff;
    font-size: 13px; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 13px 24px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .ribbon svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

  /* ── SECTIONS COMMON ── */
  section { padding: 80px 0; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section-label {
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--red);
    margin-bottom: 8px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-desc {
    font-size: 16px; color: var(--gray);
    line-height: 1.7; max-width: 600px;
  }
  .section-head { margin-bottom: 48px; }

  /* ── ABOUT ── */
  #about { background: #fff; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .about-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
  }
  .about-card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -30px;
    width: 220px; height: 220px;
    background: rgba(208,2,27,.15);
    border-radius: 50%;
  }
  .about-badge {
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px; font-weight: 900;
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    margin-bottom: 24px;
    line-height: 1;
    position: relative; z-index: 1;
  }
  .about-badge span { font-size: 13px; font-weight: 700; }
  .about-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .about-card p { font-size: 15px; line-height: 1.7; color: #c5cedf; position: relative; z-index: 1; }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 24px;
    position: relative; z-index: 1;
  }
  .stat {
    background: rgba(255,255,255,.08);
    border-radius: 8px; padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900;
    color: var(--gold);
  }
  .stat-label { font-size: 12px; color: #aab; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }

  .about-text .section-desc { max-width: 100%; }
  .about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .about-point {
    display: flex; gap: 12px; align-items: flex-start;
  }
  .about-point-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--light-bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .about-point-icon svg { width: 18px; height: 18px; fill: var(--red); }
  .about-point-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .about-point-text span { font-size: 14px; color: var(--gray); line-height: 1.5; }

  /* ── SERVICES ── */
  #services { background: var(--light-gray); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 28px;
    border: 2px solid var(--border);
    transition: border-color .2s, transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .service-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,42,94,.13); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { width: 28px; height: 28px; fill: #fff; }
  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 10px;
  }
  .service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }
  .service-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 700; color: var(--red);
    text-decoration: none; margin-top: 16px;
    text-transform: uppercase; letter-spacing: .5px;
  }
  .service-link:hover { gap: 8px; }

  /* ── WHY CHOOSE ── */
  #why { background: var(--navy); color: #fff; }
  #why .section-title { color: #fff; }
  #why .section-desc { color: #a0adc8; }
  #why .section-label { color: var(--gold); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: background .2s, transform .2s;
  }
  .why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
  .why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px; font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
  }
  .why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .3px;
    color: #fff; margin-bottom: 10px;
  }
  .why-card p { font-size: 14px; color: #8898b8; line-height: 1.6; }

  .why-bottom {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 36px 40px;
    align-items: center;
  }
  .why-bottom h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900;
    text-transform: uppercase; color: #fff;
    margin-bottom: 12px;
  }
  .why-bottom p { color: #8898b8; font-size: 15px; line-height: 1.7; }
  .why-bottom-ctas { display: flex; gap: 14px; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
  .btn-white {
    background: #fff; color: var(--navy);
    font-size: 14px; font-weight: 800;
    padding: 14px 28px; border-radius: 5px;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: .5px; transition: background .2s;
  }
  .btn-white:hover { background: #eef1f8; }
  .btn-red {
    background: var(--red); color: #fff;
    font-size: 14px; font-weight: 800;
    padding: 14px 28px; border-radius: 5px;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: .5px; transition: background .2s;
  }
  .btn-red:hover { background: #b00016; }

  /* ── FAQs ── */
  #faq { background: #fff; }
  .faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
  }
  .faq-sidebar .section-desc { max-width: 100%; }
  .faq-sidebar-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 28px;
    color: #fff;
    margin-top: 28px;
  }
  .faq-sidebar-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 900;
    text-transform: uppercase; margin-bottom: 8px;
  }
  .faq-sidebar-card p { font-size: 14px; color: #a0adc8; margin-bottom: 16px; }
  .faq-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 900;
    color: var(--gold);
  }

  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.active { border-color: var(--navy); }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    background: #fff;
    gap: 16px;
    user-select: none;
  }
  .faq-question span {
    font-size: 15px; font-weight: 700;
    color: var(--navy);
    flex: 1;
  }
  .faq-toggle {
    width: 28px; height: 28px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .3s;
  }
  .faq-toggle svg { fill: #fff; width: 14px; height: 14px; transition: transform .3s; }
  .faq-item.active .faq-toggle { background: var(--red); }
  .faq-item.active .faq-toggle svg { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 22px;
    font-size: 14px; color: var(--gray); line-height: 1.75;
  }
  .faq-item.active .faq-answer { max-height: 300px; padding: 0 22px 20px; }

  /* ── CONTACT ── */
  #contact { background: var(--light-gray); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  .contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
  }
  .contact-card:hover { border-color: var(--navy); box-shadow: 0 8px 28px rgba(26,42,94,.1); }
  .contact-icon {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .contact-icon svg { width: 30px; height: 30px; fill: #fff; }
  .contact-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 900;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 10px;
  }
  .contact-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
  .contact-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 900;
    color: var(--red);
  }
  .contact-value a { color: inherit; text-decoration: none; }
  .contact-value a:hover { color: var(--navy); }

  /* ── FOOTER ── */
  footer { background: var(--navy-dark); color: #8898b8; }
  .footer-top {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand .brand { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: var(--red); display: block; }
  .footer-brand .sub { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #667; margin-bottom: 14px; display: block; }
  .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .social-btn:hover { background: var(--red); }
  .social-btn svg { width: 16px; height: 16px; fill: #fff; }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 900;
    text-transform: uppercase; letter-spacing: .5px;
    color: #fff; margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    font-size: 14px; color: #8898b8;
    text-decoration: none; margin-bottom: 10px;
    transition: color .2s;
  }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
  }
  .footer-bottom a { color: #8898b8; text-decoration: none; margin-left: 16px; }
  .footer-bottom a:hover { color: #fff; }

  /* ── BACK TO TOP ── */
  .back-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    background: var(--red);
    color: #fff; border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(208,2,27,.4);
    opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .2s;
    z-index: 999;
  }
  .back-top.visible { opacity: 1; pointer-events: all; }
  .back-top:hover { transform: translateY(-3px); }
  .back-top svg { width: 20px; height: 20px; fill: #fff; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav, .header-ctas, .location-pill { display: none; }
    .hamburger { display: flex; }

    .hero-inner { flex-direction: column; padding: 40px 24px; }
    .hero-visual { min-height: auto; order: 2; width: 100%; }
    .hero-content { order: 1; text-align: center; }
    .hero-actions { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-bottom { grid-template-columns: 1fr; gap: 20px; }
    .why-bottom-ctas { justify-content: flex-start; }
    .faq-layout { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    section { padding: 60px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-phone { font-size: 38px; }
  }
