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

:root {
  --navy: #0a1628;
  --navy-light: #112038;
  --blue: #1d6fa4;
  --blue-dark: #175d8a;
  --blue-light: #e8f4fd;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --white: #ffffff;
  --grey: #f4f6f8;
  --border: #e2e8f0;
  --text: #1a2332;
  --muted: #64748b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
}

/* ── CONCEPT BANNER ── */
.concept-banner {
  background: var(--navy);
  color: #94a8c0;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.concept-banner a { color: #7fb3d3; text-decoration: underline; }

/* ── NAV ── */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  border-bottom: none !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.25s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 8px 0; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 24px;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a.active { color: var(--blue); }
.mobile-menu ul li a:hover { background: var(--grey); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--blue);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--navy);
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-1px); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--white);
  transition: background 0.15s, transform 0.1s;
}
.btn-white:hover { background: var(--grey); transform: translateY(-1px); }

/* ── SHARED SECTION UTILITIES ── */
section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 24px 72px;
  text-align: center;
  background: var(--navy);
}
.page-hero .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7fb3d3;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--blue);
  padding: 60px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-strip p { color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 28px; }
.cta-strip .phone-link {
  display: block;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  transition: opacity 0.15s;
}
.cta-strip .phone-link:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #94a8c0;
  padding: 56px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 14px; color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #6b8aa0; max-width: 280px; }
footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: #6b8aa0; text-decoration: none; font-size: 14px; transition: color 0.15s; }
footer ul li a:hover { color: #c8dcea; }
.footer-info p { font-size: 14px; line-height: 1.8; color: #6b8aa0; }
.footer-info a { color: #7fb3d3; text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid #1c2e45; margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #3a5570; }
.footer-bottom a { color: #3a5570; text-decoration: none; }

/* ─────────────────────────────────────────
   INDEX PAGE
───────────────────────────────────────── */
.hero {
  background: linear-gradient(to bottom, var(--white) 80%, var(--grey) 100%);
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-content { flex: 1; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-phone-wrap { text-align: right; flex-shrink: 0; }
.hero-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero-phone {
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  transition: color 0.15s;
  white-space: nowrap;
}
.hero-phone:hover { color: var(--blue); }
.hero-phone-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
  text-align: right;
}

/* Offer banner */
.offer-banner {
  background: var(--blue);
  padding: 16px 24px;
  text-align: center;
}
.offer-banner p {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.offer-banner strong { font-weight: 700; }

/* Trust bar */
.trust-bar {
  background: var(--grey);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Services grid */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--grey);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 6px;
  padding: 28px 24px;
  transition: border-top-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: default;
}
.service-card:hover {
  border-top-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-icon { display: block; margin-bottom: 16px; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Service area */
.service-area { background: var(--navy); }
.service-area .section-eyebrow { color: #7fb3d3; }
.service-area .section-title { color: var(--white); }
.service-area .section-sub { color: rgba(255,255,255,0.6); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.city-item {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.service-detail-section { padding: 72px 24px; }
.service-detail-inner { max-width: 1100px; margin: 0 auto; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block-left { position: sticky; top: 88px; }
.service-block-icon { display: block; margin-bottom: 20px; }
.service-block-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.call-link {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s;
}
.call-link:hover { background: var(--blue-dark); }
.service-block-right p {
  font-size: 16px;
  line-height: 1.78;
  color: #444;
  margin-bottom: 20px;
}
.service-block-right h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  margin-top: 28px;
}
.symptom-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.symptom-list li {
  font-size: 14px;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.symptom-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
}

/* Premium brands */
.premium-brands {
  background: var(--grey);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}
.premium-brands-inner { max-width: 1100px; margin: 0 auto; }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.brand-badge {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.brand-badge:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(29,111,164,0.12);
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-section { padding: 80px 24px; }
.about-inner { max-width: 1100px; margin: 0 auto; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}
.about-text .section-eyebrow { margin-bottom: 12px; }
.about-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}
.about-photo img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-creds-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  margin-top: 48px;
}
.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.credential-card {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
}
.cred-icon { display: block; margin: 0 auto 14px; }
.credential-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.credential-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* About service area */
.about-area { background: var(--navy); padding: 64px 24px; }
.about-area-inner { max-width: 1100px; margin: 0 auto; }
.about-area .section-eyebrow { color: #7fb3d3; }
.about-area .section-title { color: var(--white); margin-bottom: 36px; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-hero {
  background: var(--navy);
  padding: 72px 24px 64px;
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  line-height: 1.1;
}
.contact-hero .big-phone {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 0.15s;
  line-height: 1;
}
.contact-hero .big-phone:hover { color: #7fb3d3; }
.contact-hero p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 28px; }

.hours-band {
  background: var(--grey);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.hours-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.hours-item { padding: 12px 24px; border-right: 1px solid var(--border); }
.hours-item:last-child { border-right: none; }
.hours-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hours-value { font-size: 20px; font-weight: 700; color: var(--navy); }

.contact-body { padding: 72px 24px; }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.contact-info > p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 32px; }
.info-block { margin-bottom: 28px; }
.info-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-block a {
  color: var(--navy);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.15s;
  display: inline-block;
}
.info-block a:hover { color: var(--blue); }
.info-block p { font-size: 15px; color: #555; line-height: 1.65; }

.contact-cities h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  margin-top: 32px;
}
.cities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-tag {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

/* Contact form */
.contact-form-wrap h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-note { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.form-note a { color: var(--blue); text-decoration: none; font-weight: 600; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-disclaimer { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-phone-wrap { text-align: left; }
  .hero-phone { font-size: 52px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }

  .cities-grid { grid-template-columns: repeat(2, 1fr); }

  .service-block { grid-template-columns: 1fr; }
  .service-block-left { position: static; }
  .symptom-list { grid-template-columns: 1fr; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-credentials { grid-template-columns: 1fr; }

  .hours-inner { grid-template-columns: 1fr; }
  .hours-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .hours-item:last-child { border-bottom: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  section { padding: 52px 24px; }
}

@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .trust-item:nth-child(odd) { border-right: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
}
