/* ==========================================================================
   Google Ads Landing Page Platform — Shared Stylesheet
   Pure CSS. No frameworks. Mobile-first. Optimised for Core Web Vitals.

   Table of contents
   01. Design tokens
   02. Reset & base
   03. Layout primitives
   04. Typography & section headers
   05. Buttons & badges
   06. Header / navigation
   07. Hero
   08. Trust bar
   09. Benefits
   10. Services
   11. Why choose us
   12. Testimonials
   13. FAQ
   14. Contact form
   15. Footer
   16. Sticky mobile CTA bar
   17. Motion & reveal
   18. Utilities & print
   ========================================================================== */

/* 01. Design tokens ======================================================= */

:root {
  /* Brand — override these per client to re-skin the whole platform. */
  --c-brand: #0e7490;
  --c-brand-600: #0b5f77;
  --c-brand-700: #094c5f;
  --c-brand-900: #06303c;
  --c-brand-050: #ecfafc;
  --c-brand-100: #d5f1f6;

  --c-accent: #ff6b4a;
  --c-accent-600: #ef5230;
  --c-accent-700: #d43f1f;

  --c-whatsapp: #25d366;
  --c-whatsapp-600: #1da851;

  --c-gold: #ffb020;

  /* Neutrals */
  --c-ink: #071b24;
  --c-body: #40545e;
  --c-muted: #6b8089;
  --c-line: #e2ebee;
  --c-line-soft: #eef4f6;
  --c-surface: #ffffff;
  --c-surface-alt: #f6fafb;

  /* Typography — system stack, zero webfont requests, zero CLS. */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: clamp(1.0625rem, 0.98rem + 0.42vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fs-h3: clamp(1.25rem, 1.12rem + 0.65vw, 1.5rem);
  --fs-h2: clamp(1.75rem, 1.42rem + 1.65vw, 2.75rem);
  --fs-h1: clamp(2.125rem, 1.62rem + 2.5vw, 3.75rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --section-y: clamp(3.25rem, 2.2rem + 5vw, 6rem);

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(7, 27, 36, 0.06);
  --sh-sm: 0 2px 8px rgba(7, 27, 36, 0.07);
  --sh-md: 0 10px 28px -12px rgba(7, 27, 36, 0.22);
  --sh-lg: 0 26px 60px -22px rgba(7, 27, 36, 0.32);
  --sh-brand: 0 16px 34px -14px rgba(14, 116, 144, 0.55);
  --sh-accent: 0 16px 34px -14px rgba(255, 107, 74, 0.6);

  --container: 1160px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.68, 0.36, 1);
}

/* 02. Reset & base ======================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--sp-4);
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}

p {
  margin: 0 0 var(--sp-4);
  text-wrap: pretty;
}

a {
  color: var(--c-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

img,
svg,
picture {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

ul,
ol {
  margin: 0 0 var(--sp-4);
  padding-left: 1.15rem;
}

li {
  margin-bottom: var(--sp-2);
}

strong {
  color: var(--c-ink);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 03. Layout primitives =================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--alt {
  background: var(--c-surface-alt);
  border-block: 1px solid var(--c-line-soft);
}

.section--ink {
  background:
    radial-gradient(
      120% 140% at 85% 0%,
      rgba(14, 116, 144, 0.55) 0%,
      transparent 55%
    ),
    var(--c-brand-900);
  color: #c9dfe6;
}

.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.grid {
  display: grid;
  gap: var(--sp-5);
}

/* 04. Typography & section headers ======================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  padding: 6px 14px 6px 10px;
  border-radius: var(--r-pill);
  background: var(--c-brand-050);
  border: 1px solid var(--c-brand-100);
  color: var(--c-brand-600);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow .icon {
  width: 15px;
  height: 15px;
}

.section--ink .eyebrow {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  color: #a9e4f0;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-7);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: var(--fs-h2);
}

.section-head p {
  font-size: var(--fs-lg);
  margin-bottom: 0;
  color: var(--c-muted);
}

.section--ink .section-head p {
  color: #a8c6ce;
}

.lead {
  font-size: var(--fs-lg);
  color: var(--c-muted);
}

/* 05. Buttons & badges ==================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.btn .icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: var(--sh-accent);
}

.btn--primary:hover {
  background: var(--c-accent-600);
}

.btn--brand {
  background: var(--c-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.btn--brand:hover {
  background: var(--c-brand-600);
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: #05331a;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, 0.65);
}

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

.btn--ghost {
  background: #fff;
  color: var(--c-brand-700);
  border-color: var(--c-line);
  box-shadow: var(--sh-xs);
}

.btn--ghost:hover {
  border-color: var(--c-brand);
  color: var(--c-brand);
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--lg {
  padding: 18px 32px;
  min-height: 58px;
  font-size: var(--fs-lg);
}

.btn--sm {
  padding: 10px 18px;
  min-height: 42px;
  font-size: var(--fs-sm);
}

.btn--block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--c-brand-050);
  color: var(--c-brand-700);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.badge .icon {
  width: 14px;
  height: 14px;
}

.badge--urgent {
  background: #fff1ed;
  color: var(--c-accent-700);
}

.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: currentColor;
}

/* Live "open now" pulse dot */
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
  flex: none;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* 06. Header / navigation ================================================= */

.topbar {
  background: var(--c-brand-900);
  color: #bfe0e9;
  font-size: var(--fs-xs);
  font-weight: 600;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  min-height: 38px;
  text-align: center;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__item .icon {
  width: 15px;
  height: 15px;
  color: #6fd7bd;
}

/* Address is noise on the narrowest screens — the phone CTA matters more. */
.topbar__item--addr {
  display: none;
}

@media (min-width: 700px) {
  .topbar__item--addr {
    display: inline-flex;
  }
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--c-line-soft);
  transition:
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 6px 24px -14px rgba(7, 27, 36, 0.4);
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--c-brand) 0%, var(--c-brand-700) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm);
  flex: none;
}

.brand__mark .icon {
  width: 22px;
  height: 22px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list li {
  margin: 0;
}

.nav__list a {
  color: var(--c-body);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 6px 0;
  position: relative;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--c-brand);
  border-radius: 2px;
  transition: right 0.22s var(--ease);
}

.nav__list a:hover {
  color: var(--c-ink);
}

.nav__list a:hover::after {
  right: 0;
}

.header-cta {
  display: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--c-ink);
}

.header-phone__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.header-phone__num {
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--c-ink);
  cursor: pointer;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--c-line-soft);
  background: #fff;
  padding: var(--sp-4) 0 var(--sp-5);
}

.mobile-nav.is-open {
  display: block;
  animation: fade-down 0.24s var(--ease);
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.mobile-nav__list {
  list-style: none;
  margin: 0 0 var(--sp-4);
  padding: 0;
}

.mobile-nav__list li {
  margin: 0;
  border-bottom: 1px solid var(--c-line-soft);
}

.mobile-nav__list a {
  display: block;
  padding: 13px 2px;
  color: var(--c-ink);
  font-weight: 600;
  text-decoration: none;
}

/* Breadcrumb (mirrors the BreadcrumbList schema on each page) */
.breadcrumb {
  margin-bottom: var(--sp-5);
  font-size: var(--fs-xs);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin: 0;
  font-weight: 600;
  color: var(--c-muted);
}

.breadcrumb li + li::before {
  content: "/";
  color: #b9cdd4;
}

.breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--c-brand);
}

.breadcrumb [aria-current="page"] {
  color: var(--c-ink);
}

/* 07. Hero ================================================================ */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.6rem + 4.5vw, 5rem)
    clamp(3rem, 2rem + 5vw, 5.5rem);
  background:
    radial-gradient(
      110% 120% at 88% -10%,
      rgba(14, 116, 144, 0.16) 0%,
      transparent 58%
    ),
    linear-gradient(180deg, var(--c-brand-050) 0%, #ffffff 62%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 74, 0.14) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 5vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-4);
}

.hero h1 .hl {
  color: var(--c-brand);
  position: relative;
  white-space: nowrap;
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.03em;
  height: 0.3em;
  background: rgba(255, 176, 32, 0.28);
  border-radius: 3px;
  z-index: -1;
}

.hero__sub {
  font-size: var(--fs-lg);
  color: var(--c-body);
  max-width: 46ch;
  margin-bottom: var(--sp-5);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.hero__ctas .btn {
  flex: 1 1 100%;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-body);
}

.hero__assurance li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.hero__assurance .icon {
  width: 18px;
  height: 18px;
  color: var(--c-brand);
}

/* Hero media panel */
.hero__media {
  position: relative;
}

.hero__figure {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--c-brand-050);
  aspect-ratio: 4 / 3;
}

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

.hero__card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
  width: min(320px, 90%);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-line-soft);
}

.hero__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--c-brand-050);
  color: var(--c-brand);
  flex: none;
}

.hero__card-title {
  display: block;
  font-weight: 800;
  color: var(--c-ink);
  font-size: var(--fs-sm);
  line-height: 1.3;
}

.hero__card-meta {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--c-gold);
}

.rating .icon {
  width: 16px;
  height: 16px;
}

/* 08. Trust bar =========================================================== */

.trustbar {
  border-block: 1px solid var(--c-line-soft);
  background: #fff;
  padding-block: var(--sp-5);
}

.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) var(--sp-4);
  text-align: center;
}

.stat__num {
  display: block;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.125rem);
  font-weight: 800;
  color: var(--c-brand);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* 09. Benefits ============================================================ */

.cards {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-brand-100);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--c-brand-050), var(--c-brand-100));
  color: var(--c-brand);
  margin-bottom: var(--sp-4);
}

.card__icon .icon {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-2);
}

.card p:last-child {
  margin-bottom: 0;
}

/* 10. Services ============================================================ */

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.service__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.service__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--c-brand-050);
  color: var(--c-brand);
  flex: none;
}

.service h3 {
  margin: 0;
  font-size: var(--fs-lg);
}

.service__price {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-accent-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service p {
  font-size: var(--fs-sm);
}

.service__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: var(--fs-sm);
  text-decoration: none;
}

.service__link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.2s var(--ease);
}

.service__link:hover .icon {
  transform: translateX(4px);
}

/* 11. Why choose us ======================================================= */

.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}

.split__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 5 / 4;
  background: var(--c-brand-050);
}

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

.checklist {
  list-style: none;
  margin: 0 0 var(--sp-5);
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

.checklist li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: var(--sp-3);
  margin: 0;
}

.checklist__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-brand);
  color: #fff;
  margin-top: 2px;
}

.checklist__mark .icon {
  width: 17px;
  height: 17px;
  stroke: #fff;
}

.checklist strong {
  display: block;
  font-size: var(--fs-lg);
  margin-bottom: 2px;
}

.checklist span {
  font-size: var(--fs-sm);
  color: var(--c-muted);
}

.section--ink .checklist span {
  color: #9dbcc5;
}

.section--ink .checklist strong {
  color: #fff;
}

.section--ink .checklist__mark {
  background: rgba(255, 255, 255, 0.14);
}

/* 12. Testimonials ======================================================== */

.testimonial {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.testimonial__quote {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  color: var(--c-brand-100);
}

.testimonial blockquote {
  margin: 0;
  font-size: var(--fs-base);
  color: var(--c-body);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-line-soft);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--c-brand), var(--c-brand-700));
  color: #fff;
  font-weight: 800;
  font-size: var(--fs-sm);
  flex: none;
}

.testimonial__name {
  display: block;
  font-weight: 700;
  color: var(--c-ink);
  font-size: var(--fs-sm);
  line-height: 1.3;
}

.testimonial__meta {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* 13. FAQ ================================================================= */

.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq__item.is-open {
  border-color: var(--c-brand-100);
  box-shadow: var(--sh-sm);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}

.faq__q:hover {
  color: var(--c-brand);
}

.faq__chevron {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--c-brand);
  transition: transform 0.25s var(--ease);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  padding: 0 var(--sp-5) var(--sp-5);
  margin: 0;
  font-size: var(--fs-sm);
}

/* 14. Contact form ======================================================== */

.contact {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.25rem);
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--sh-md);
}

.form-card h2,
.contact-aside h2 {
  font-size: var(--fs-xl);
}

.contact-aside .lead {
  margin-bottom: var(--sp-5);
}

.form-grid {
  display: grid;
  gap: var(--sp-4);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink);
}

.field .req {
  color: var(--c-accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: var(--fs-base);
  color: var(--c-ink);
  background: var(--c-surface-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b8089' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.14);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--c-accent-600);
  background: #fff6f4;
}

.field__error {
  display: none;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-accent-700);
}

.field.has-error .field__error {
  display: block;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

.form-note .icon {
  width: 16px;
  height: 16px;
  color: var(--c-brand);
  margin-top: 2px;
}

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: var(--sp-4);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: #eafaf1;
  border: 1px solid #b7ebcd;
  color: #0f6b3f;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.form-status.is-visible {
  display: flex;
  animation: fade-down 0.3s var(--ease);
}

.form-status .icon {
  width: 20px;
  height: 20px;
}

.contact-aside__list {
  list-style: none;
  margin: 0 0 var(--sp-5);
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

.contact-aside__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-3);
  align-items: center;
  margin: 0;
}

.contact-aside__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--c-brand-050);
  color: var(--c-brand);
}

.contact-aside__list strong {
  display: block;
  font-size: var(--fs-base);
  line-height: 1.35;
}

.contact-aside__list a {
  text-decoration: none;
  font-weight: 800;
}

/* Only the small label span is uppercased — not the value it wraps. */
.contact-aside__list li > span > span {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hours {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  padding: var(--sp-4) var(--sp-5);
}

.hours h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-3);
}

.hours dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px var(--sp-4);
  margin: 0;
  font-size: var(--fs-sm);
}

.hours dt {
  color: var(--c-muted);
}

.hours dd {
  margin: 0;
  font-weight: 700;
  color: var(--c-ink);
  text-align: right;
}

/* 15. Footer ============================================================== */

.site-footer {
  background: var(--c-brand-900);
  color: #9dbcc5;
  padding-block: var(--sp-7) var(--sp-5);
  font-size: var(--fs-sm);
}

.footer__grid {
  display: grid;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
  color: #fff;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.site-footer .brand {
  color: #fff;
  margin-bottom: var(--sp-4);
}

.site-footer .brand__sub {
  color: #7fa6b1;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #9dbcc5;
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: #7fa6b1;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal li {
  margin: 0;
}

.footer__disclaimer {
  max-width: 70ch;
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: #6f95a0;
}

/* 16. Sticky mobile CTA bar =============================================== */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px -18px rgba(7, 27, 36, 0.5);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta .btn {
  min-height: 50px;
  padding: 12px 14px;
  font-size: var(--fs-sm);
  box-shadow: none;
}

body.has-mobile-cta {
  padding-bottom: 76px;
}

/* 17. Motion & reveal ===================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* 18. Responsive ========================================================== */

@media (min-width: 600px) {
  .hero__ctas .btn {
    flex: 0 1 auto;
  }

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

  .trustbar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 78px;
  }

  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .contact {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .nav,
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
  }

  .nav-toggle,
  .mobile-nav,
  .mobile-cta {
    display: none !important;
  }

  body.has-mobile-cta {
    padding-bottom: 0;
  }
}

@media (min-width: 1100px) {
  .cards--4 {
    gap: var(--sp-5);
  }
}

/* 19. Print =============================================================== */

@media print {
  .site-header,
  .mobile-cta,
  .topbar,
  .hero__ctas,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
  }
}
