/* =====================================================================
   NDS CLEANING SERVICES — STYLESHEET
   Design tokens: Deep Blue #0E5AA7 / White / Light Grey / CTA Green
   Type: Outfit (display) + Inter (body)
   ===================================================================== */

:root {
  /* Color */
  --color-primary: #0E5AA7;
  --color-primary-dark: #0A4680;
  --color-primary-light: #E7F0FA;
  --color-white: #FFFFFF;
  --color-grey: #F4F6F8;
  --color-grey-mid: #E3E8ED;
  --color-grey-dark: #64748B;
  --color-text: #16232E;
  --color-cta: #16A85C;
  --color-cta-dark: #0F8A49;
  --color-whatsapp: #25D366;

  /* Type */
  --font-display: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(14, 34, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 34, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(14, 34, 58, 0.16);
  --header-h: 78px;
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; color: var(--color-text); }
p { margin: 0 0 1em; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
}

/* =====================================================================
   UTILITIES
   ===================================================================== */
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem;
}
.eyebrow--light { color: #BFE0FF; }

.section-heading { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-heading h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.section-heading__sub { color: var(--color-grey-dark); font-size: 1.05rem; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-primary-dark); box-shadow: var(--shadow-md); }

.btn--cta { background: var(--color-cta); color: #fff; box-shadow: 0 8px 20px rgba(22,168,92,0.28); }
.btn--cta:hover { background: var(--color-cta-dark); }

.btn--whatsapp { background: var(--color-whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1DAE54; }

.btn--outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }

/* =====================================================================
   HEADER / NAVBAR
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--color-grey-mid); }

.navbar {
  max-width: var(--container-w); margin: 0 auto; padding: 0 24px;
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.navbar__brand { display: flex; align-items: center; gap: 12px; }
.navbar__brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 90, 167, 0.25);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff; letter-spacing: 0.02em;
}
.navbar__brand-text { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; line-height: 1.2; }
.navbar__brand-text small { font-weight: 400; color: var(--color-grey-dark); font-size: 0.78rem; }

.navbar__menu { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-display); font-weight: 500; font-size: 0.94rem; color: var(--color-text);
  position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-cta);
  transition: width .2s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--color-primary); }

.navbar__cta { display: flex; align-items: center; gap: 16px; }
.navbar__phone { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; color: var(--color-primary); font-size: 0.92rem; }

.navbar__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: var(--color-grey); border: none; border-radius: 10px;
}
.navbar__toggle span { display: block; width: 20px; height: 2px; background: var(--color-text); margin: 0 auto; transition: transform .2s ease, opacity .2s ease; }
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden;
  color: #fff; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,32,58,0.78) 0%, rgba(14,90,167,0.75) 55%, rgba(9,32,58,0.9) 100%);
}
.hero__wipe { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; }

.hero__content { position: relative; z-index: 1; padding: 140px 24px 90px; }
.hero__title { font-size: clamp(2.2rem, 5.4vw, 3.9rem); color: #fff; max-width: 780px; }
.hero__title span { color: #7FD6A6; }
.hero__subtitle { font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: #E3EEFA; max-width: 600px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3rem; }

.hero__quickstats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__quickstats li { display: flex; flex-direction: column; }
.hero__quickstats strong { font-family: var(--font-display); font-size: 1.6rem; color: #7FD6A6; }
.hero__quickstats span { font-size: 0.85rem; color: #C9DCF2; }

/* =====================================================================
   TRUST BADGES
   ===================================================================== */
.trust { background: var(--color-primary); padding: 34px 0; }
.trust__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; }
.trust__item { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; }
.trust__item svg { width: 24px; height: 24px; flex-shrink: 0; color: #7FD6A6; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { padding: 100px 0; }
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 7/8; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--color-white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 18px 22px;
  display: flex; flex-direction: column; border: 1px solid var(--color-grey-mid);
}
.about__badge strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-primary); }
.about__badge span { font-size: 0.78rem; color: var(--color-grey-dark); }

.about__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about__content p { color: var(--color-grey-dark); }
.about__list { margin: 1.5rem 0 2rem; display: grid; gap: 10px; }
.about__list li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about__list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--color-primary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%230E5AA7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { padding: 100px 0; background: var(--color-grey); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--color-white); border-radius: var(--radius-md); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-grey-mid);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-primary-light); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--color-primary-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--color-grey-dark); font-size: 0.95rem; }
.service-card__link {
  background: none; border: none; padding: 0; font-family: var(--font-display); font-weight: 600;
  color: var(--color-primary); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px;
}
.service-card__link span { transition: transform .18s ease; }
.service-card__link:hover span { transform: translateX(4px); }

/* =====================================================================
   AREAS WE COVER
   ===================================================================== */
.areas { padding: 100px 0; }
.areas__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.area-card {
  background: var(--color-white); border: 1px solid var(--color-grey-mid); border-radius: var(--radius-md);
  padding: 28px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--color-primary-light); }
.area-card svg { width: 26px; height: 26px; color: var(--color-primary); }
.area-card span { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.areas__note { text-align: center; margin: 2.2rem auto 0; color: var(--color-grey-dark); max-width: 520px; }
.areas__note a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.why { padding: 100px 0; background: var(--color-grey); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--color-white); border-radius: var(--radius-md); padding: 26px 22px;
  border: 1px solid var(--color-grey-mid); box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 1.02rem; margin-bottom: 0.35em; color: var(--color-primary); }
.why-card p { font-size: 0.9rem; color: var(--color-grey-dark); margin: 0; }

/* =====================================================================
   COUNTERS
   ===================================================================== */
.counters { background: var(--color-primary-dark); padding: 60px 0; }
.counters__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.counter { display: flex; flex-direction: column; color: #fff; }
.counter__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: #7FD6A6; }
.counter__label { font-size: 0.88rem; color: #C9DCF2; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews { padding: 100px 0; }
.reviews__wrap { display: flex; flex-direction: column; align-items: center; }
.reviews__card {
  text-align: center; background: var(--color-white); border: 1px solid var(--color-grey-mid);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 48px 40px; max-width: 480px;
}
.reviews__stars { color: #F5B301; font-size: 1.8rem; letter-spacing: 4px; }
.reviews__score { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 6px 0 2px; }
.reviews__count { color: var(--color-grey-dark); font-size: 0.92rem; }
.reviews__hint { font-size: 0.85rem; color: var(--color-grey-dark); margin: 12px 0 20px; }

/* =====================================================================
   QUOTE FORM
   ===================================================================== */
.quote { background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); padding: 100px 0; color: #fff; }
.quote__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.quote__intro h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.quote__intro p { color: #D9E7F7; }
.quote__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 14px; }
.quote__contact-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; }
.quote__contact-item svg { color: #7FD6A6; }

.quote__form { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); color: var(--color-text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-grey-mid); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--color-grey); transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-primary); background: #fff; outline: none;
}
.form-field textarea { resize: vertical; }
.quote__form-note { font-size: 0.8rem; color: var(--color-grey-dark); text-align: center; margin: 12px 0 0; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { padding: 100px 0; background: var(--color-grey); }
.faq__wrap { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--color-grey-mid); }
.faq-item h3 { margin: 0; }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--color-text);
}
.faq-item__icon { font-size: 1.4rem; color: var(--color-primary); transition: transform .2s ease; flex-shrink: 0; }
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__a p { padding: 0 4px 20px; color: var(--color-grey-dark); margin: 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #0B1B2C; color: #B9C7D6; padding: 80px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.navbar__brand-text--footer { color: #fff; }
.navbar__brand-text--footer small { color: #94A9C0; }
.site-footer__desc { font-size: 0.9rem; margin: 16px 0 20px; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.site-footer__social a:hover { background: var(--color-cta); }
.site-footer__col h4 { color: #fff; font-size: 0.98rem; margin-bottom: 16px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.site-footer__col a:hover { color: #fff; }
.site-footer__col p { font-size: 0.9rem; margin-bottom: 10px; }
.site-footer__col .btn { margin-top: 8px; }

.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.site-footer__legal { display: flex; gap: 20px; }

/* =====================================================================
   FLOATING ACTIONS
   ===================================================================== */
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 400; display: flex; flex-direction: column; gap: 12px; }
.floating-btn {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md); border: none; transition: transform .2s ease, opacity .2s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn--whatsapp { background: var(--color-whatsapp); }
.floating-btn--call { background: var(--color-primary); }
.floating-btn--top { background: var(--color-text); opacity: 0; pointer-events: none; }
.floating-btn--top.is-visible { opacity: 1; pointer-events: auto; }

/* =====================================================================
   MODAL
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11,27,44,0.7); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; background: #fff; border-radius: var(--radius-lg); max-width: 640px; width: 100%;
  max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal__close {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-grey); border: none; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.modal__body { padding: 44px 40px 40px; }
.modal__subheading { font-size: 1.05rem; margin-top: 1.8rem; }
.modal__benefits { display: grid; gap: 10px; }
.modal__benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.modal__benefits li::before { content: '✓'; color: var(--color-cta); font-weight: 700; flex-shrink: 0; }

/* Before/After slider */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-md);
  overflow: hidden; margin: 16px 0 24px; user-select: none; box-shadow: var(--shadow-sm);
}
.ba-slider__after, .ba-slider__before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider__before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-slider__before { width: 200%; max-width: none; position: absolute; left: 0; top: 0; height: 100%; }
.ba-slider__before-wrap .ba-slider__before { width: var(--ba-w, 100%); }
.ba-slider__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; appearance: none;
}
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; pointer-events: none;
  display: flex; align-items: center; justify-content: center; transform: translateX(-50%);
}
.ba-slider__handle svg {
  width: 32px; height: 32px; background: #fff; border-radius: 50%; padding: 8px; color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.ba-slider__label { position: absolute; top: 12px; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; padding: 4px 10px; border-radius: 999px; background: rgba(11,27,44,0.6); color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.ba-slider__label--before { left: 12px; }
.ba-slider__label--after { right: 12px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .quote__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .navbar__menu, .navbar__phone { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__menu.is-open {
    display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 20px 24px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .navbar__menu.is-open .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-grey-mid); }
  .counters__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .hero__content { padding: 110px 20px 70px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .quote__form { padding: 26px; }
  .modal__body { padding: 60px 22px 30px; }
}
