/* ==========================================================================
   Get Compliance — design system
   Palette: deepwater navy / compliance green / signal blue / paper,
   plus official EPC band colours used only in the rating-chart motif.
   Type: Outfit (self-hosted), pill CTAs, rounded cards.
   ========================================================================== */

/* ---- Font (self-hosted variable font, GDPR-friendly, one 32KB file) ---- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-var.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --navy: #0B2C4D;
  --navy-2: #123D66;
  --ink: #16304E;
  --body-col: #40536B;
  --muted: #64748B;

  --green: #0C9A57;
  --green-dark: #0A7E48;
  --green-soft: #E4F4EC;

  --blue: #1268B3;
  --blue-soft: #E8F1F9;

  --paper: #F5F8F6;
  --card: #FFFFFF;
  --line: #DEE7E1;

  --red: #D64545;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* Official EPC band colours */
  --band-a: #008054;
  --band-b: #19B459;
  --band-c: #8DCE46;
  --band-d: #FFD500;
  --band-e: #FCAA65;
  --band-f: #EF8023;
  --band-g: #E9153B;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(11, 44, 77, 0.06), 0 8px 24px rgba(11, 44, 77, 0.08);
  --shadow-lg: 0 2px 4px rgba(11, 44, 77, 0.06), 0 16px 40px rgba(11, 44, 77, 0.14);

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --wrap: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-col);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }

.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-2); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

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

.btn-lg { padding: 15px 32px; font-size: 1.08rem; }

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ---- Topbar ---- */
.topbar {
  background: var(--navy);
  color: #CBD9E8;
  font-size: 0.86rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}
.topbar-item { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--band-b);
  flex: none;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(11, 44, 77, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
}
.logo:hover { text-decoration: none; }
.logo-badge { flex: none; }
.logo-word {
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.logo-word em { font-style: normal; color: var(--green); }
.logo-invert .logo-word { color: #fff; }
.logo-invert .logo-word em { color: #4CC98A; }

.site-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li > a,
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-drop-btn:hover {
  background: var(--green-soft);
  color: var(--green-dark);
  text-decoration: none;
}
.nav-list > li > a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
}

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 8px;
  display: none;
  z-index: 110;
}
.has-dropdown.is-open .dropdown { display: block; }
.has-dropdown.is-open .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-btn svg { transition: transform 0.18s ease; }
.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.dropdown a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
  text-decoration: none;
}

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.btn-phone { padding: 10px 18px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 72px 0 84px;
  background:
    linear-gradient(180deg, rgba(245, 248, 246, 0) 0%, var(--paper) 100%),
    repeating-linear-gradient(0deg, rgba(18, 104, 179, 0.045) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(18, 104, 179, 0.045) 0 1px, transparent 1px 32px),
    #FBFDFC;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 0.5em; }
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: 1.18rem;
  max-width: 34em;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg { color: var(--green); flex: none; }

/* ---- EPC chart (signature motif) ---- */
.epc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 20px;
  max-width: 430px;
  margin-inline: auto;
  width: 100%;
}
.epc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.epc-card-head h2, .epc-card-head p.epc-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.epc-card-head .epc-sub { font-size: 0.82rem; color: var(--muted); margin: 0; }

.epc-chart { display: grid; gap: 7px; }
.epc-row {
  display: grid;
  grid-template-columns: 1fr 92px;
  align-items: center;
  gap: 10px;
}
.epc-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 5px 10px;
  min-height: 30px;
  transform-origin: left center;
}
.epc-band .epc-range { font-weight: 500; font-size: 0.72rem; opacity: 0.9; }
.epc-band-a { width: 34%; background: var(--band-a); }
.epc-band-b { width: 45%; background: var(--band-b); }
.epc-band-c { width: 56%; background: var(--band-c); }
.epc-band-d { width: 67%; background: var(--band-d); color: #6b5900; }
.epc-band-e { width: 78%; background: var(--band-e); color: #7a4a12; }
.epc-band-f { width: 89%; background: var(--band-f); }
.epc-band-g { width: 100%; background: var(--band-g); }

.epc-pointer {
  justify-self: end;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 5px 12px;
  position: relative;
  display: none;
  align-items: center;
  gap: 6px;
}
.epc-pointer::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--navy);
  border-left: 0;
}
.epc-row-current .epc-pointer { display: inline-flex; }
.epc-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.epc-card-foot p { margin: 0; }

/* Chart entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .epc-animate .epc-band {
    animation: bandIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .epc-animate .epc-row:nth-child(1) .epc-band { animation-delay: 0.05s; }
  .epc-animate .epc-row:nth-child(2) .epc-band { animation-delay: 0.13s; }
  .epc-animate .epc-row:nth-child(3) .epc-band { animation-delay: 0.21s; }
  .epc-animate .epc-row:nth-child(4) .epc-band { animation-delay: 0.29s; }
  .epc-animate .epc-row:nth-child(5) .epc-band { animation-delay: 0.37s; }
  .epc-animate .epc-row:nth-child(6) .epc-band { animation-delay: 0.45s; }
  .epc-animate .epc-row:nth-child(7) .epc-band { animation-delay: 0.53s; }
  .epc-animate .epc-pointer { animation: pointerIn 0.5s ease 0.85s backwards; }
}
@keyframes bandIn {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes pointerIn {
  from { transform: translateX(14px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---- Sections ---- */
.section { padding: 76px 0; }
.section-alt { background: #fff; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
}
.section-head p { font-size: 1.1rem; }

/* ---- Cards grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #C8D8CE;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex: none;
}
.card-icon-blue { background: var(--blue-soft); color: var(--blue); }
.card h3 { margin-bottom: 8px; }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--green-dark); text-decoration: none; }
.card p { font-size: 0.97rem; flex-grow: 1; }
.card-links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-links li a {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--ink);
  font-weight: 500;
}
.card-links li a:hover {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-dark);
  text-decoration: none;
}
.card-cta {
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ---- Steps (how it works) ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.97rem; margin: 0; }

/* ---- Feature split rows ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split + .split { margin-top: 72px; }
.split-media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.split.reverse .split-media { order: 2; }

/* ---- Law / fact callout ---- */
.law-note {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 0.98rem;
}
.law-note strong { color: var(--navy); }
.law-note p:last-child { margin-bottom: 0; }

.penalty-note {
  background: #FBEDED;
  border-left-color: var(--red);
}
.penalty-note strong { color: #A03030; }

/* ---- Stat / trust strip ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
}
.trust-item .big {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.trust-item .small { font-size: 0.9rem; color: var(--muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green);
  flex: none;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green-dark); }
.faq-body { padding: 0 22px 18px; font-size: 0.98rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---- CTA band ---- */
.cta-band {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(12, 154, 87, 0.28), transparent 60%),
    var(--navy);
  color: #C9D8E7;
  padding: 64px 0;
}
.cta-band h2 { color: #fff; margin-bottom: 0.35em; }
.cta-band p { margin: 0; max-width: 34em; }
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Page hero (interior pages) ---- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(245, 248, 246, 0) 30%, var(--paper) 100%),
    repeating-linear-gradient(0deg, rgba(18, 104, 179, 0.04) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(18, 104, 179, 0.04) 0 1px, transparent 1px 32px),
    #FBFDFC;
  padding: 52px 0 56px;
}
.breadcrumbs {
  font-size: 0.88rem;
  margin-bottom: 18px;
  color: var(--muted);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs li + li::before { content: '›'; margin-right: 6px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--green-dark); }
.page-hero .lead {
  font-size: 1.16rem;
  max-width: 44em;
}
.page-hero .hero-actions { margin-top: 24px; margin-bottom: 0; }

/* ---- Service detail sections ---- */
.service-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
  scroll-margin-top: 100px;
}
.service-block h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.5rem;
}
.service-block h2 .card-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 12px;
}
.service-block h3 { font-size: 1.08rem; margin-top: 1.4em; }
.service-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 36px;
}

.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%230A7E48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---- Data tables ---- */
.table-scroll { overflow-x: auto; }
table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
table.spec th, table.spec td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
table.spec th {
  background: var(--paper);
  color: var(--navy);
  font-weight: 600;
}
table.spec tr:last-child td { border-bottom: none; }

/* ---- Forms ---- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.93rem; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.15s ease, background-color 0.15s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-hint { font-size: 0.83rem; color: var(--muted); }

/* ---- Contact channel cards ---- */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.channel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.channel .card-icon { margin-inline: auto; }
.channel a.big-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.channel p { font-size: 0.92rem; margin: 0; }

.emergency-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FBEDED;
  border: 1px solid #EFC9C9;
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 28px;
}
.emergency-banner .topbar-dot { background: var(--red); width: 10px; height: 10px; }
.emergency-banner p { margin: 0; font-size: 0.98rem; }
.emergency-banner a { color: #A03030; font-weight: 700; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #A9BDD1;
  padding: 64px 0 36px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand p { margin-top: 18px; max-width: 30em; }
.footer-contact { list-style: none; padding: 0; margin: 14px 0 0; }
.footer-contact li { margin-bottom: 6px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #A9BDD1; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: #7E96AD;
}
.footer-legal p { margin: 0; }
.footer-legal a { color: #A9BDD1; }

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.whatsapp-label { font-size: 0.95rem; }

/* ---- Reveal on scroll ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---- Prototype banner (only present in preview build) ---- */
.proto-note {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 7px 16px;
}
.proto-note a { color: #fff; text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .header-cta .btn-phone { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero-inner, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: #fff;
    padding: 100px 28px 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s;
    overflow-y: auto;
    z-index: 95;
    margin-left: 0;
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a, .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
  }
  .dropdown {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .has-dropdown .dropdown { display: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .header-cta .btn-primary { padding: 10px 18px; font-size: 0.92rem; }
  .nav-toggle { position: relative; z-index: 100; }
  .topbar-email { display: none; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 60px; }
  .service-block { padding: 26px 22px; }
  .service-cols { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-legal { flex-direction: column; }
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 15px; }
  .epc-card { padding: 20px 16px 16px; }
  .epc-row { grid-template-columns: 1fr 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
