*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0c1b33;
  --navy-mid: #1b3461;
  --blue: #1a56db;
  --orange: #e85d04;
  --orange-h: #c2410c;
  --light: #f8fafc;
  --white: #fff;
  --dark: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --sh: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --sh-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.25);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  transition: all 0.3s ease;
}
nav.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-h);
}
.nav-cta svg {
  width: 16px;
  height: 16px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 101;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 1.5rem 5%;
  z-index: 99;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c1b33 0%, #0f2347 50%, #0a1828 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 86, 219, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 86, 219, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 219, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 100px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-eyebrow svg {
  color: var(--orange);
  width: 14px;
  height: 14px;
}
h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
h1 .highlight {
  color: var(--orange);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.route-motif {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.pin {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}
.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--blue);
}
.pin-dot.dest {
  border-color: var(--orange);
  background: var(--orange);
}
.route-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0,
    rgba(255, 255, 255, 0.3) 6px,
    transparent 6px,
    transparent 12px
  );
  position: relative;
}
.route-arrow {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-stats-row {
  display: flex;
  gap: 2rem;
}
.hero-stat {
  text-align: left;
}
.hero-stat .num {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat .lbl {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── QUOTE CARD ── */
.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--sh-lg);
}
.quote-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.quote-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group select,
.form-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
  transition:
    border 0.2s,
    box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.btn-primary {
  width: 100%;
  padding: 0.85rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--orange-h);
}
.btn-primary:active {
  transform: scale(0.99);
}
.quote-assurance {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  justify-content: center;
}
.quote-assurance svg {
  color: var(--blue);
  width: 14px;
  height: 14px;
}
.quote-assurance span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── TRUST STRIP ── */
#trust {
  background: var(--navy-mid);
  padding: 2rem 5%;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.trust-item {
  background: var(--navy-mid);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.trust-item .t-num {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.trust-item .t-lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  margin-top: 0.1rem;
}

/* ── SECTION COMMONS ── */
section {
  padding: 5rem 5%;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(26, 86, 219, 0.08);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.75rem;
}
h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
h2 .acc {
  color: var(--orange);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}
.center {
  text-align: center;
}
.center .section-sub {
  margin: 0 auto;
}

/* ── SERVICES ── */
#services {
  background: var(--light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
}
.svc-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-img.blue {
  background: linear-gradient(135deg, #0c1b33, #1b3461);
}
.svc-img.orange {
  background: linear-gradient(135deg, #7c2d12, #c2410c);
}
.svc-img.teal {
  background: linear-gradient(135deg, #0f4c75, #1b3461);
}
.svc-icon {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}
.svc-body {
  padding: 1.5rem;
}
.svc-body h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.svc-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.svc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.svc-card:hover .svc-link svg {
  transform: translateX(3px);
}

/* ── HOW IT WORKS ── */
#how {
  background: #fff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.6% + 28px);
  right: calc(16.6% + 28px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0,
    var(--blue) 8px,
    transparent 8px,
    transparent 16px
  );
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.step-num.active {
  background: var(--orange);
}
.step h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── WHY US ── */
#why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#why .glow {
  position: absolute;
  left: -5%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 219, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 {
  color: #fff;
}
.why-text .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(26, 86, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.feat-txt h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}
.feat-txt p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.why-visual {
  position: relative;
}
.why-card-main {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}
.price-display {
  margin-bottom: 1.5rem;
}
.price-display .from {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-display .amount {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.price-display .amt-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.price-bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price-bar svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.price-bar span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.price-bar .bold {
  font-weight: 600;
  color: #fff;
}
.guarantee-badge {
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  text-align: center;
}
.guarantee-badge p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin: 0;
}
.guarantee-badge p strong {
  color: var(--orange);
}

/* ── COVERAGE ── */
#coverage {
  background: var(--light);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
  cursor: default;
  white-space: nowrap;
}
.area-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26, 86, 219, 0.05);
}
.area-pill svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}

/* ── TESTIMONIALS ── */
#reviews {
  background: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--light);
  border-radius: 16px;
  padding: 1.75rem;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.85rem;
}
.stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}
.review-text {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.av-b {
  background: var(--navy);
}
.av-o {
  background: var(--orange);
}
.av-bl {
  background: var(--blue);
}
.reviewer-info .name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}
.reviewer-info .loc {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── CTA BANNER ── */
#cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #b45309 100%);
  padding: 4.5rem 5%;
  text-align: center;
}
#cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
#cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--orange);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover {
  background: var(--navy);
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn-white svg,
.btn-ghost svg {
  width: 18px;
  height: 18px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 4rem 5% 2rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-contact {
  margin-top: 1.5rem;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-contact svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-hours {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  color: #fff;
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .quote-card {
    max-width: 480px;
    margin: 0 auto;
  }
  .steps-grid::before {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 4%;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  #hero {
    padding: 0 4%;
  }
  .hero-content {
    padding: 90px 0 50px;
  }
  .hero-stats-row {
    gap: 1.25rem;
  }
  .hero-stat .num {
    font-size: 1.3rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section {
    padding: 3.5rem 4%;
  }
  .services-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .areas-grid {
    justify-content: center;
  }
}

/* Mobile-specific improvements */
@media (max-width: 480px) {
  .nav-inner {
    height: 60px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .burger span {
    width: 20px;
    height: 2px;
  }
  .mobile-menu {
    top: 60px;
    padding: 1rem 4%;
  }
  .mobile-menu a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
  }
  h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }
  .route-motif {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .route-line {
    width: 2px;
    height: 40px;
    max-width: 2px;
    background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.3) 0,
      rgba(255, 255, 255, 0.3) 6px,
      transparent 6px,
      transparent 12px
    );
  }
  .route-arrow {
    transform: rotate(90deg);
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 1rem;
  }
  .quote-card {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    padding: 1.25rem;
  }
  .trust-item .t-num {
    font-size: 1.8rem;
  }
  .section-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
  }
  h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .section-sub {
    font-size: 0.95rem;
  }
  .services-grid {
    gap: 1rem;
  }
  .svc-img {
    height: 150px;
  }
  .svc-body {
    padding: 1.25rem;
  }
  .steps-grid {
    gap: 2rem;
  }
  .step-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .feat {
    gap: 0.75rem;
  }
  .feat-icon {
    width: 32px;
    height: 32px;
  }
  .feat-icon svg {
    width: 14px;
    height: 14px;
  }
  .feat-txt h4 {
    font-size: 0.9rem;
  }
  .areas-grid {
    gap: 0.5rem;
  }
  .area-pill {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .reviews-grid {
    gap: 1rem;
  }
  .review-card {
    padding: 1.25rem;
  }
  .cta-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .btn-white,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }
  .footer-grid {
    gap: 2rem;
  }
  .footer-contact {
    margin-top: 1rem;
  }
  .footer-contact a {
    font-size: 0.8rem;
  }
}
