/* ───────────────────────────────────────────
   RB Garage — Styles
   Palette: Midnight Blue #0a2540 · Mint #7ddfc6
   Fonts: Playfair Display + DM Sans
─────────────────────────────────────────── */

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

:root {
  --midnight: #0a2540;
  --midnight-light: #113a5c;
  --midnight-dark: #061a2e;
  --mint: #7ddfc6;
  --mint-light: #a8ecd6;
  --mint-dark: #5bc9ad;
  --cream: #f7faf9;
  --warm-white: #fefcf8;
  --gray-100: #f0f4f3;
  --gray-200: #e2e8e6;
  --gray-400: #9aa8a4;
  --gray-600: #5a6b67;
  --gray-800: #2d3a36;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
  --shadow-md: 0 8px 30px rgba(10,37,64,0.10);
  --shadow-lg: 0 20px 60px rgba(10,37,64,0.14);
  --shadow-glow: 0 8px 40px rgba(125,223,198,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--midnight);
  line-height: 1.15;
  font-weight: 800;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: rgba(125,223,198,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-title-accent {
  color: var(--mint-dark);
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--mint);
  color: var(--midnight);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(125,223,198,0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--warm-white);
  color: var(--midnight);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,37,64,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(125,223,198,0.1);
  transition: var(--transition);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.nav__logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav__cta {
  background: var(--mint) !important;
  color: var(--midnight) !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--mint-light) !important; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav__overlay.open { opacity: 1; pointer-events: all; }

.nav__mobile {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav__mobile-link {
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.nav__mobile-link:hover { color: #fff; background: rgba(125,223,198,0.1); }
.nav__mobile-cta {
  margin-top: 1rem;
  color: var(--mint) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  padding: 72px 0 4rem;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { padding-right: 1rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(125,223,198,0.15);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(125,223,198,0.2);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  color: var(--mint);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--mint);
}

.hero__trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Image stack */
.hero__image-stack {
  position: relative;
  height: 620px;
}

.hero__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__img--main {
  width: 85%;
  height: 520px;
  margin-left: auto;
}

.hero__img--float {
  position: absolute;
  bottom: 60px;
  left: -30px;
  width: 220px;
  height: 160px;
  border: 4px solid var(--midnight);
  z-index: 2;
}

.hero__img--small {
  position: absolute;
  top: 30px;
  right: 0;
  width: 160px;
  height: 110px;
  z-index: 2;
  border: 4px solid var(--midnight);
}

.hero__img-badge {
  position: absolute;
  bottom: -16px;
  right: 20%;
  background: var(--mint);
  color: var(--midnight);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* ── SERVICES ── */
.services {
  padding: 7rem 0;
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc { margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mint);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(125,223,198,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--mint);
}

.service-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--midnight);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── ABOUT ── */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-col {
  position: relative;
  height: 600px;
}

.about__img-main {
  width: 78%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img { width: 100%; height: 100%; object-fit: cover; }

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about__body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
}

.about__highlight svg { flex-shrink: 0; }

/* ── WHY US ── */
.why {
  padding: 7rem 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125,223,198,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why__content .section-tag { background: rgba(125,223,198,0.15); color: var(--mint); }
.why__content .section-title { color: #fff; }
.why__content .section-desc { color: rgba(255,255,255,0.6); }

.why__list { display: flex; flex-direction: column; gap: 1.75rem; }

.why__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
}

.why__item-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(125,223,198,0.3);
  padding-top: 0.15rem;
}

.why__item-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.why__item-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.why__visual { position: relative; }

.why__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
}

.why__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.why__stat-cards {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.why__stat {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.why__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--mint);
}

.why__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 50%, var(--mint-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::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='%230a2540' fill-opacity='0.05'%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");
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.cta-banner__desc {
  font-size: 1.05rem;
  color: rgba(10,37,64,0.7);
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  padding: 7rem 0;
  background: var(--warm-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info .section-title { margin-bottom: 1rem; }
.contact__desc { color: var(--gray-600); margin-bottom: 2rem; font-size: 1.05rem; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 52px;
  height: 52px;
  background: rgba(125,223,198,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.contact__detail p {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.contact__detail a {
  color: var(--midnight);
  font-weight: 600;
  transition: var(--transition);
}
.contact__detail a:hover { color: var(--mint-dark); }

.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

/* Form */
.contact__form-col {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.contact__form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--mint-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125,223,198,0.2);
}

.form-input::placeholder { color: var(--gray-400); }

.form-select { appearance: none; cursor: pointer;
  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='%235a6b67' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(125,223,198,0.15);
  color: var(--midnight);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--midnight-dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; }

.footer__tagline { font-size: 0.9rem; line-height: 1.6; }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--mint); }

.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.footer__contact a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--mint); }

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__content { padding-right: 0; text-align: center; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__image-stack { height: 480px; max-width: 500px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image-col { height: 420px; max-width: 500px; margin: 0 auto; }
  .why__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__visual { max-width: 500px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding: 100px 0 3rem; min-height: auto; }
  .hero__image-stack { height: 380px; }
  .hero__img--main { width: 100%; height: 380px; }
  .hero__img--float { width: 160px; height: 120px; left: -10px; bottom: 30px; }
  .hero__img--small { width: 120px; height: 85px; top: 10px; right: 0; }
  .hero__img-badge { font-size: 0.75rem; padding: 0.4rem 0.9rem; bottom: -12px; }

  .services { padding: 5rem 0; }
  .services__grid { grid-template-columns: 1fr; }

  .about { padding: 5rem 0; }
  .about__image-col { height: 340px; }
  .about__img-main { height: 340px; width: 100%; }
  .about__img-accent { width: 50%; height: 160px; }

  .why { padding: 5rem 0; }
  .why__img-wrap { height: 380px; }
  .why__stat-cards { flex-direction: column; }

  .cta-banner { padding: 3.5rem 0; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .contact { padding: 5rem 0; }
  .contact__form-col { padding: 1.75rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { padding: 1rem 0; }
}

@media (max-width: 480px) {
  .hero__image-stack { height: 300px; }
  .hero__img--main { height: 300px; }
  .hero__img--float { display: none; }
  .hero__img--small { display: none; }
  .hero__trust { flex-direction: column; gap: 0.75rem; }
  .hero__trust-divider { width: 40px; height: 1px; }
}
