/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy-900: #081a30;
  --navy-800: #0b2440;
  --navy-700: #123a63;
  --navy-600: #1c4d7d;
  --white: #ffffff;
  --paper: #f5f8fb;
  --ink: #101826;
  --ink-soft: #2b3547;
  --ink-mute: #5a6478;
  --line: rgba(16, 25, 43, 0.1);
  --line-invert: rgba(255, 255, 255, 0.16);

  --gold: #f0a93a;
  --gold-dark: #cf8a1c;
  --gold-light: #ffd88a;
  --green: #2f8f5b;

  --cream: #f2ebda;

  --sans-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --sans-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(8, 26, 48, 0.08);
  --shadow-md: 0 14px 34px rgba(8, 26, 48, 0.14);
  --shadow-gold: 0 14px 30px rgba(207, 138, 28, 0.35);

  --header-h: 78px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; letter-spacing: -0.01em; font-family: var(--sans-display); color: var(--navy-800); }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--navy-900); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--navy-900); color: var(--white);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container-narrow { max-width: 820px; }

.icon { width: 1.3em; height: 1.3em; flex-shrink: 0; }
.icon-sm { width: 1.05em; height: 1.05em; }
.icon-lg { width: 2rem; height: 2rem; }

.accent-gold { color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--sans-display);
  font-weight: 600;
  font-size: .98rem;
  white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .88rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(207, 138, 28, 0.45); }

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-700); }

.btn-outline {
  border: 1.5px solid var(--navy-800);
  color: var(--navy-800);
  background: transparent;
}
.btn-outline:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }

.btn-outline-invert {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline-invert:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

@media (hover: hover) and (pointer: fine) {
  .btn:active { transform: translateY(0) scale(.98); }
}

/* =============================================================
   5. Header / Nav
   ============================================================= */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(8, 26, 48, 0.0);
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out), backdrop-filter .35s var(--ease-out);
}
.site-header.is-solid {
  background: rgba(8, 26, 48, 0.92);
  box-shadow: 0 8px 26px rgba(8,26,48,.18);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header.is-solid { backdrop-filter: blur(14px) saturate(160%); }
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 100%;
}

.brand { display: flex; align-items: center; gap: .6rem; }
.brand-badge {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.25));
}
.brand-badge img { width: 100%; height: 100%; object-fit: contain; }
.brand-badge--footer { width: 48px; height: 48px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--sans-display); font-size: 1.08rem; color: var(--white); }
.brand-text em { font-style: normal; font-size: .74rem; color: var(--gold-light); letter-spacing: .02em; }

.main-nav ul { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.88);
  position: relative; padding-block: .3rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold);
  transition: right .3s var(--ease-out);
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.header-cta { display: none; }

.hamburger {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--white);
  border-radius: 10px;
}
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-open { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 959px) {
  .main-nav {
    position: fixed;
    top: var(--header-h); right: 0; bottom: 0; left: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--navy-900);
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    overflow-y: auto;
    padding: 2rem 1.5rem;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .main-nav a { font-size: 1.25rem; }
  .site-header { background: rgba(8,26,48,.92); backdrop-filter: blur(10px); }
}
@media (min-width: 960px) {
  .hamburger { display: none; }
  .header-cta { display: inline-flex; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: clip;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,20,38,.88) 0%, rgba(8,26,48,.82) 32%, rgba(8,26,48,.9) 100%),
    linear-gradient(100deg, rgba(8,26,48,.95) 20%, rgba(8,26,48,.55) 62%, rgba(8,26,48,.35) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-block: 6.5rem 4rem; color: var(--white); max-width: 760px; }

.kicker {
  display: inline-block;
  font-family: var(--sans-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.kicker-light { color: var(--gold-light); }

.hero-title {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  max-width: 16ch;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; color: var(--gold-light); margin-bottom: .9rem; max-width: 46ch; }
.hero-text { font-size: 1.02rem; color: rgba(255,255,255,.82); max-width: 52ch; margin-bottom: 2.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,.14); color: var(--white); }

.trust-list { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; }
.trust-list li { display: flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.9); }
.trust-list .icon { color: var(--green); background: rgba(47,143,91,.18); border-radius: 50%; padding: 3px; }

/* =============================================================
   7. Sections generic
   ============================================================= */
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-alt { background: var(--paper); }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
.section-note { margin-top: .9rem; color: var(--ink-mute); font-size: .96rem; }

/* =============================================================
   8. Services
   ============================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(240,169,58,.4); }
.service-card--custom { background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); border-color: transparent; }
.service-card--custom h3, .service-card--custom p { color: var(--white); }
.service-card--custom .service-icon { background: rgba(240,169,58,.18); color: var(--gold-light); }
.service-card--custom .card-link { color: var(--gold-light); }

.service-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(11,36,64,.06);
  color: var(--navy-800);
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: .55rem; }
.service-card p { color: var(--ink-mute); font-size: .93rem; flex-grow: 1; margin-bottom: 1.1rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--sans-display); font-weight: 600; font-size: .92rem;
  color: var(--navy-800);
}
.card-link .icon-sm { transform: rotate(-90deg); transition: transform .3s var(--ease-out); }
.service-card:hover .card-link .icon-sm { transform: rotate(-90deg) translateX(3px); }

/* =============================================================
   9. Coverage
   ============================================================= */
.section-coverage { background: var(--navy-900); color: var(--white); overflow: clip; position: relative; }
.coverage-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
.coverage-copy h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1.1rem; }
.coverage-text { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 50ch; margin-bottom: 1.9rem; }

.coverage-visual { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.coverage-map { width: min(100%, 320px); height: auto; }
.map-shape { fill: rgba(240,169,58,.09); stroke: var(--gold); stroke-width: 1.6; }
.map-links path { stroke: rgba(240,169,58,.55); stroke-width: 1.4; fill: none; stroke-dasharray: 6 6; animation: dashFlow 7s linear infinite; }
.map-nodes circle { fill: var(--gold); animation: nodePulse 2.6s ease-in-out infinite; }
.map-nodes circle:nth-child(2) { animation-delay: .3s; }
.map-nodes circle:nth-child(3) { animation-delay: .6s; }
.map-nodes circle:nth-child(4) { animation-delay: .9s; }
.map-nodes circle:nth-child(5) { animation-delay: 1.2s; }
.map-nodes circle:nth-child(6) { animation-delay: 1.5s; }
.coverage-caption { font-size: .82rem; color: rgba(255,255,255,.5); text-align: center; max-width: 30ch; }

@keyframes dashFlow { to { stroke-dashoffset: -120; } }
@keyframes nodePulse { 0%, 100% { opacity: .7; r: 6; } 50% { opacity: 1; r: 8; } }

@media (prefers-reduced-motion: reduce) {
  .map-links path { animation-duration: 14s; }
}

@media (min-width: 960px) {
  .coverage-grid { grid-template-columns: 1.1fr .9fr; }
}

/* =============================================================
   10. About / Benefits
   ============================================================= */
.about-grid { display: grid; gap: 2.4rem; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.benefit-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit-icon {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 10px; background: rgba(47,143,91,.12); color: var(--green);
  margin-bottom: .8rem;
}
.benefit-card h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.benefit-card p { font-size: .9rem; color: var(--ink-mute); }

@media (min-width: 960px) {
  .about-grid { grid-template-columns: .85fr 1.15fr; align-items: stretch; }
}

/* =============================================================
   11. Steps
   ============================================================= */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step-n {
  display: block; font-family: var(--sans-display); font-weight: 800;
  font-size: 2.1rem; color: var(--gold-dark); opacity: .85; margin-bottom: .6rem;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.step-card p { font-size: .92rem; color: var(--ink-mute); }
.steps-cta { display: flex; justify-content: center; margin-top: 2.6rem; }

/* =============================================================
   12. Gallery + Lightbox
   ============================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,26,48,.55));
  opacity: 0; transition: opacity .3s var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }

@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,17,30,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white);
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* =============================================================
   13. Testimonials
   ============================================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-tag {
  position: absolute; top: 1rem; right: 1rem;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: rgba(11,36,64,.08); color: var(--navy-700);
  padding: .3rem .6rem; border-radius: 999px;
}
.icon-quote { color: var(--gold); margin-bottom: .8rem; }
.testimonial-card p { font-size: .98rem; color: var(--ink-soft); margin-bottom: 1.4rem; font-style: italic; }
.testimonial-foot { display: flex; align-items: center; gap: .7rem; }
.avatar {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: var(--white); font-weight: 700; font-size: .82rem;
  font-family: var(--sans-display);
}
.testimonial-role { font-size: .86rem; color: var(--ink-mute); font-weight: 500; }

/* =============================================================
   14. FAQ
   ============================================================= */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--sans-display); font-weight: 600; font-size: 1.01rem;
  color: var(--navy-800);
  padding-block: .3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--gold-dark); transition: transform .3s var(--ease-out); flex-shrink: 0; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { padding-top: .8rem; color: var(--ink-mute); font-size: .95rem; max-width: 68ch; }

/* =============================================================
   15. Contact form
   ============================================================= */
.section-form { background: var(--paper); }
.form-wrap { max-width: 880px; margin-inline: auto; position: relative; }
.quote-form {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-row { display: flex; flex-direction: column; gap: .45rem; }
.form-row--wide { grid-column: 1 / -1; }
.form-row label { font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.req { color: var(--gold-dark); }

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-row input:invalid[data-touched],
.form-row select:invalid[data-touched] {
  border-color: #d64545;
}
textarea { resize: vertical; min-height: 84px; }

.form-row--checkbox { flex-direction: row; align-items: center; }
.form-row--hp {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.checkbox-label { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--ink-soft); }
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--gold-dark); }

.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .4rem; }
.form-hint { grid-column: 1 / -1; font-size: .82rem; color: var(--ink-mute); }
.form-error {
  grid-column: 1 / -1;
  font-size: .9rem; font-weight: 600;
  color: #a32d2d;
  background: rgba(163,45,45,.08);
  border: 1px solid rgba(163,45,45,.25);
  border-radius: 10px;
  padding: .8rem 1rem;
}

.form-success {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-success .icon-lg { color: var(--green); margin-inline: auto; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.form-success p { color: var(--ink-mute); margin-bottom: 1.6rem; }

@media (min-width: 720px) {
  .quote-form { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   16. Final CTA + contact info
   ============================================================= */
.section-cta { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: var(--white); }
.cta-box {
  display: flex; flex-direction: column; gap: 1.6rem;
  align-items: flex-start; justify-content: space-between;
  padding-bottom: clamp(2.4rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--line-invert);
  margin-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.cta-copy h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: .5rem; }
.cta-copy p { color: rgba(255,255,255,.78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (min-width: 860px) {
  .cta-box { flex-direction: row; align-items: center; }
}

.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.contact-info-item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-invert);
  transition: background .3s var(--ease-out);
}
a.contact-info-item:hover { background: rgba(255,255,255,.12); }
.contact-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(240,169,58,.18); color: var(--gold-light); flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .84rem; color: rgba(255,255,255,.6); font-weight: 600; }
.contact-info-item > span > span:last-child { font-size: .96rem; font-weight: 600; }

/* =============================================================
   17. Footer
   ============================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding-top: clamp(2.6rem, 5vw, 3.6rem); }
.footer-inner {
  display: grid; gap: 2.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-invert);
}
.footer-brand { display: flex; gap: .9rem; align-items: flex-start; }
.footer-brand strong { font-family: var(--sans-display); color: var(--white); font-size: 1.05rem; display: block; margin-bottom: .3rem; }
.footer-brand p { font-size: .88rem; max-width: 32ch; }

.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav h4, .footer-contact h4 { color: var(--white); font-size: .9rem; margin-bottom: .3rem; }
.footer-nav a, .footer-contact a { font-size: .9rem; transition: color .25s var(--ease-out); display: inline-flex; align-items: center; gap: .5rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-secondary-phone { font-size: .84rem; color: rgba(255,255,255,.55); }

.footer-bottom { padding-block: 1.4rem; font-size: .82rem; text-align: center; color: rgba(255,255,255,.5); }

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.3fr .8fr .9fr; }
}

/* =============================================================
   18. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.07); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37,211,102,.45); }
  50% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.16); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation-duration: 5s; }
}

/* =============================================================
   19. Responsive helpers
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { flex-wrap: nowrap; }
}
