/* ACENTRA reference-led visual system v11 */
:root {
  --color-surface: #f5f8fb;
  --color-surface-blue: #eaf2f8;
  --color-surface-warm: #fff7e8;
  --color-on-dark: rgba(255, 255, 255, 0.76);
  --shadow-sm: 0 12px 30px rgba(0, 31, 63, 0.08);
  --shadow-md: 0 24px 58px rgba(0, 31, 63, 0.12);
  --shadow-lg: 0 36px 84px rgba(0, 31, 63, 0.16);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --section-space: clamp(4.75rem, 7vw, 7rem);
}

html { scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  background: var(--color-surface);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(250, 155, 0, 0.3);
  color: var(--color-primary-deep);
}
main { overflow: clip; }
main section { padding: var(--section-space) 0; }
main > section:first-child {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(3rem, 7vh, 5rem));
  padding-bottom: clamp(3rem, 7vh, 5rem);
}
h1, h2, h3, h4 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
.hero-title {
  max-width: 16ch;
  font-size: clamp(3.1rem, 6.4vw, 5.75rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.058em;
}
.section-title {
  max-width: 18ch;
  font-size: clamp(2.55rem, 4.8vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
}
.hero-description {
  max-width: 60ch;
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
  line-height: 1.7;
}
.section-description {
  max-width: 66ch;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(250, 155, 0, 0.58);
  outline-offset: 4px;
}

/* Floating liquid-glass navigation */
.site-header {
  background: rgba(248, 251, 253, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background-color 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #ffc25f 52%, var(--color-accent));
  pointer-events: none;
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 18px;
  background: linear-gradient(to bottom, rgba(0, 31, 63, 0.055), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease-out);
}
.site-header.is-scrolled,
.site-header:has(.site-nav.is-open) {
  background-color: rgba(248, 251, 253, 0.98);
  border-bottom-color: rgba(0, 51, 102, 0.12);
  box-shadow: none;
}
.site-header.is-scrolled::after,
.site-header:has(.site-nav.is-open)::after { opacity: 1; }
.brand {
  border-radius: var(--radius-sm);
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.brand-logo { height: 43px; }
.nav-list { gap: 0.25rem; }
.nav-link {
  min-height: 46px;
  padding: 0.72rem 1rem;
  overflow: hidden;
  font-size: 0.9rem;
  transition:
    background-color 160ms var(--ease-out),
    color 160ms var(--ease-out),
    transform 160ms var(--ease-out);
}
.nav-link:not(.nav-link-cta)::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0.42rem;
  left: 1rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}
.nav-link.active:not(.nav-link-cta)::after,
.nav-link[aria-current="page"]:not(.nav-link-cta)::after { transform: scaleX(1); }
.nav-link-cta {
  margin-left: 0.35rem;
  background: var(--color-accent);
  color: var(--color-primary-deep);
  box-shadow: none;
}
.nav-link-cta:hover, .nav-link-cta.active {
  background: #ffad29;
  color: var(--color-primary-deep);
}
.menu-toggle {
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(0, 51, 102, 0.055);
}

/* Full-screen conversion scenes */
.page-home .hero-section,
.page-services .hero-section,
.page-about .hero-section,
.page-policy .hero-section,
.page-quote .quote-hero,
.page-mongagua .landing-hero,
.page-spabc .landing-hero {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(250, 155, 0, 0.24), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(55, 145, 210, 0.18), transparent 30%),
    linear-gradient(145deg, #00172e 0%, var(--color-primary) 54%, var(--color-primary-deep) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-services .hero-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(250, 155, 0, 0.25), transparent 27%),
    radial-gradient(circle at 86% 74%, rgba(51, 139, 202, 0.17), transparent 30%),
    linear-gradient(145deg, #00182f 0%, #00396f 54%, #001f3f 100%);
}
.page-about .hero-section {
  background:
    radial-gradient(circle at 14% 78%, rgba(250, 155, 0, 0.2), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(69, 158, 220, 0.18), transparent 30%),
    linear-gradient(145deg, #001a33 0%, #003366 55%, #00182f 100%);
}
.hero-section::before, .landing-hero::before, .quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.5;
  animation: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 62%, transparent 100%);
  pointer-events: none;
}
.hero-section::after, .landing-hero::after, .quote-hero::after {
  content: "";
  position: absolute;
  top: auto;
  right: -9rem;
  bottom: -13rem;
  left: auto;
  width: clamp(22rem, 42vw, 38rem);
  height: clamp(22rem, 42vw, 38rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.14), transparent 17%),
    radial-gradient(circle, rgba(250, 155, 0, 0.17), rgba(250, 155, 0, 0.025) 57%, transparent 72%);
  transform: none;
  filter: none;
  pointer-events: none;
}
.hero-section .container, .landing-hero .container, .quote-hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid.hero-single .hero-content,
.page-home .hero-grid.hero-single .hero-content,
.landing-hero .hero-content { max-width: 1040px; }
.hero-content, .policy-content { gap: 1.35rem; }
.hero-content::before,
main > section:first-child .policy-content::before {
  content: "";
  width: 68px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-accent), #ffd38a);
  transform-origin: left;
}
.hero-section .hero-title, .landing-hero .hero-title,
.quote-hero .hero-title,
.page-policy main > section:first-child .hero-title { color: var(--color-white); }
.hero-section .hero-description, .landing-hero .hero-description,
.quote-hero .hero-description,
.page-policy main > section:first-child .section-description { color: var(--color-on-dark); }
.hero-actions { gap: 0.75rem; margin-top: 0.15rem; }
.btn {
  min-height: 56px;
  padding: 0.92rem 1.65rem;
  border: 1px solid transparent;
  box-shadow: none;
  transition:
    transform 160ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.hero-section .btn-primary, .quote-hero .btn-primary,
.landing-hero .btn-light {
  background: var(--color-accent);
  color: var(--color-primary-deep);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.hero-section .btn-primary:hover, .quote-hero .btn-primary:hover,
.landing-hero .btn-light:hover {
  background: #ffad29;
  color: var(--color-primary-deep);
}
.page-home .hero-section .hero-actions .btn-whatsapp,
.page-about .hero-section .hero-actions .btn-whatsapp,
.page-services .hero-section .hero-actions .btn-whatsapp,
.page-quote .quote-hero .hero-actions .btn-whatsapp,
.landing-hero .hero-actions .btn-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #8bf0b1;
  border-color: rgba(90, 231, 143, 0.4);
  box-shadow: none;
}
.page-home .hero-section .hero-actions .btn-whatsapp:hover,
.page-about .hero-section .hero-actions .btn-whatsapp:hover,
.page-services .hero-section .hero-actions .btn-whatsapp:hover,
.page-quote .quote-hero .hero-actions .btn-whatsapp:hover,
.landing-hero .hero-actions .btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.17);
  color: #a9f6c5;
  border-color: rgba(117, 240, 163, 0.62);
}
.trust-strip, .quote-bar {
  max-width: 1000px;
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(7, 33, 58, 0.82);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.trust-strip span + span, .quote-bar span + span {
  border-color: rgba(255, 255, 255, 0.12);
}
.trust-strip strong, .quote-bar strong { color: var(--color-white); }
.trust-strip small, .quote-bar span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}
.landing-proof span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
}

/* Editorial color blocks */
.section-heading.text-center .section-title,
.section-heading.text-center .section-description {
  margin-inline: auto;
  text-align: center;
}
.bg-white { background: #ffffff; }
.bg-light-blue {
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 51, 102, 0.055), transparent 28%),
    var(--color-surface-blue);
}
.bg-cream {
  background:
    radial-gradient(circle at 8% 92%, rgba(250, 155, 0, 0.09), transparent 28%),
    var(--color-surface-warm);
}
.bg-blue {
  background:
    radial-gradient(circle at 82% 18%, rgba(250, 155, 0, 0.16), transparent 28%),
    linear-gradient(145deg, var(--color-primary), var(--color-primary-deep));
}
.bg-yellow {
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.42), rgba(0, 31, 63, 0.56)),
    var(--color-accent);
}
.bg-yellow,
.bg-yellow *,
.bg-yellow :where(h1, h2, h3, h4, p, li, strong, span, small, a),
.bg-yellow .section-title, .bg-yellow .section-description {
  color: var(--color-white) !important;
}

/* Dark editorial service lanes */
.service-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 10%, rgba(250, 155, 0, 0.13), transparent 25%),
    linear-gradient(145deg, #071e34, var(--color-primary-deep));
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.service-board .service-lanes { border-top: 0; }
.service-board .service-lane {
  position: relative;
  grid-template-columns: minmax(72px, 0.16fr) minmax(220px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.15rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3.2vw, 2.7rem);
  overflow: hidden;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.service-board .service-lane::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 220ms var(--ease-out);
}
.service-board .service-index {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: rgba(250, 155, 0, 0.82);
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.service-board .service-lane h3 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}
.service-board .service-lane p { color: rgba(255, 255, 255, 0.66); }
.service-board .service-tags span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}
.metric-wall {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}
.metric-wall span {
  background: rgba(255, 255, 255, 0.055);
  border-right-color: rgba(255, 255, 255, 0.12);
}
.metric-wall strong {
  color: var(--color-accent);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
}
.statement-panel {
  position: relative;
  padding-left: 1.25rem;
  border: 0;
}
.statement-panel::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0;
  width: 3px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
}
.proof-card, .journey-step, .landing-signals .signal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}
.proof-card::before, .journey-step::before,
.landing-signals .signal-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.2rem;
  left: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}
.proof-card strong {
  color: rgba(0, 51, 102, 0.25);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  letter-spacing: -0.065em;
}

/* One glass plane for process cards */
.process-flow, .process-flow.light {
  gap: 0.75rem;
  padding: 0.65rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(4, 27, 49, 0.44);
  box-shadow: none;
}
.process-node, .landing-process .process-node {
  min-height: 220px;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: var(--color-white);
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}
.process-node h3, .process-node p,
.landing-process .process-node h3,
.landing-process .process-node p { color: var(--color-white); }
.process-node p, .landing-process .process-node p {
  opacity: 0.74;
  line-height: 1.62;
}
.process-node strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}
.process-flow.light {
  border-color: rgba(0, 51, 102, 0.1);
  background: rgba(255, 255, 255, 0.58);
}
.process-flow.light .process-node {
  border-color: rgba(0, 51, 102, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  box-shadow: none;
}
.process-flow.light .process-node h3 { color: var(--color-primary); }
.process-flow.light .process-node p {
  color: var(--color-text-soft);
  opacity: 1;
}
.process-flow.light .process-node strong {
  border-color: rgba(250, 155, 0, 0.25);
  background: rgba(250, 155, 0, 0.13);
  color: var(--color-accent-dark);
}
.bg-yellow .process-flow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 31, 63, 0.2);
}
.bg-yellow .process-node {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.085);
}
.bg-yellow .process-node h3,
.bg-yellow .process-node p,
.bg-yellow .process-node strong { color: var(--color-white) !important; }
.bg-yellow .process-node p { opacity: 1; }

.page-spabc .market-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(250, 155, 0, 0.15), transparent 26%),
    linear-gradient(145deg, #062039, var(--color-primary-deep));
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.page-spabc .market-panel .section-title,
.page-spabc .market-panel .section-description { color: var(--color-white); }
.page-spabc .market-points span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
  color: var(--color-white);
  box-shadow: none;
}
.form-shell {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.cookie-banner {
  border-radius: var(--radius-lg);
  background: rgba(4, 28, 51, 0.97);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Liquid glass is progressive and deliberately limited */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background-color: rgba(248, 251, 253, 0.78);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
  }
  .site-header.is-scrolled,
  .site-header:has(.site-nav.is-open) { background-color: rgba(248, 251, 253, 0.9); }
  .trust-strip, .quote-bar {
    background: rgba(6, 28, 50, 0.58);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    backdrop-filter: blur(14px) saturate(135%);
  }
  .bg-yellow .process-flow {
    background: rgba(0, 31, 63, 0.16);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    backdrop-filter: blur(14px) saturate(130%);
  }
}

/* Progressive, one-shot marketing motion */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}
.motion-enabled .reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-enabled .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-enabled main > section:first-child .reveal,
.motion-enabled #formulario-contato .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.service-lanes > .reveal:nth-child(2),
.proof-grid > .reveal:nth-child(2),
.signal-grid > .reveal:nth-child(2),
.journey-steps > .reveal:nth-child(2) { --reveal-delay: 50ms; }
.service-lanes > .reveal:nth-child(3),
.proof-grid > .reveal:nth-child(3),
.signal-grid > .reveal:nth-child(3),
.journey-steps > .reveal:nth-child(3) { --reveal-delay: 100ms; }
.proof-grid > .reveal:nth-child(4),
.signal-grid > .reveal:nth-child(4) { --reveal-delay: 150ms; }

@media (prefers-reduced-motion: no-preference) {
  main > section:first-child .hero-content::before,
  main > section:first-child .policy-content::before {
    animation: acentraLineIn 420ms var(--ease-out) both;
  }
  main > section:first-child .hero-title {
    animation: acentraHeroIn 680ms var(--ease-out) both;
  }
  main > section:first-child .hero-description,
  main > section:first-child .policy-content .section-description {
    animation: acentraHeroIn 560ms var(--ease-out) 70ms both;
  }
  main > section:first-child .hero-actions {
    animation: acentraHeroIn 420ms var(--ease-out) 130ms both;
  }
  main > section:first-child .trust-strip,
  main > section:first-child .quote-bar,
  main > section:first-child .landing-proof {
    animation: acentraHeroIn 480ms var(--ease-out) 190ms both;
  }
  @keyframes acentraHeroIn {
    from { opacity: 0; transform: translate3d(0, 14px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
  }
  @keyframes acentraLineIn {
    from { opacity: 0; transform: scaleX(0.35); }
    to { opacity: 1; transform: scaleX(1); }
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover { opacity: 0.86; transform: translateY(-1px); }
  .btn:hover { transform: translateY(-2px); }
  .service-board .service-lane:hover { background-color: rgba(255, 255, 255, 0.045); }
  .service-board .service-lane:hover::before { transform: scaleY(1); }
  .proof-card:hover, .journey-step:hover,
  .landing-signals .signal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(250, 155, 0, 0.38);
  }
  .process-node:hover {
    transform: translateY(-3px);
    border-color: rgba(250, 155, 0, 0.48);
    background-color: rgba(255, 255, 255, 0.11);
  }
  .process-flow.light .process-node:hover { background-color: #ffffff; }
}

@media (max-width: 900px) {
  .site-nav {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms var(--ease-out),
      transform 180ms var(--ease-out),
      visibility 0s linear 180ms;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 180ms var(--ease-out),
      transform 180ms var(--ease-out),
      visibility 0s linear 0s;
  }
  main > section:first-child {
    padding-top: calc(var(--header-height) + 2.6rem);
    padding-bottom: 2.8rem;
  }
}
@media (max-width: 768px) {
  main > section:first-child {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-title { font-size: clamp(2.7rem, 12.5vw, 3.9rem); }
  .hero-description { font-size: 1rem; line-height: 1.63; }
  .section-title { font-size: clamp(2.2rem, 9.5vw, 2.9rem); }
  .service-board .service-lane { grid-template-columns: 1fr; }
  .service-board .service-index { font-size: 2.5rem; }
  .process-flow, .process-flow.light { grid-template-columns: 1fr; }
  .process-node, .process-flow.light .process-node,
  .landing-process .process-node { min-height: auto; }
}
@media (max-height: 700px) and (max-width: 768px) {
  main > section:first-child {
    align-items: start;
    padding-top: calc(var(--header-height) + 1.35rem);
  }
  .hero-title { font-size: clamp(2.25rem, 10.5vw, 2.9rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-enabled .reveal,
  .motion-enabled .reveal.is-visible {
    opacity: 1;
    transform: none !important;
    transition: opacity 160ms ease !important;
  }
  main > section:first-child .hero-title,
  main > section:first-child .hero-description,
  main > section:first-child .hero-actions,
  main > section:first-child .trust-strip,
  main > section:first-child .quote-bar,
  main > section:first-child .landing-proof { animation: none !important; }
  .btn, .brand, .nav-link, .menu-toggle {
    transform: none !important;
    transition:
      background-color 160ms ease,
      color 160ms ease,
      border-color 160ms ease,
      opacity 160ms ease !important;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .site-header, .site-header.is-scrolled,
  .site-header:has(.site-nav.is-open) {
    background: #f8fbfd;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .trust-strip, .quote-bar {
    background: #082a49;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .bg-yellow .process-flow {
    background: rgba(0, 31, 63, 0.42);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
@media (prefers-contrast: more) {
  .bg-yellow {
    background:
      linear-gradient(135deg, rgba(0, 31, 63, 0.6), rgba(0, 31, 63, 0.68)),
      var(--color-accent);
  }
  .trust-strip, .quote-bar, .process-flow, .process-node {
    border-color: rgba(255, 255, 255, 0.62);
  }
}
@media (forced-colors: active) {
  .site-header, .hero-section, .landing-hero, .quote-hero,
  .bg-blue, .bg-yellow, .service-board, .market-panel,
  .trust-strip, .quote-bar, .process-flow, .process-node {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
    box-shadow: none;
  }
  .hero-title, .hero-description, .section-title, .section-description,
  .service-board .service-lane h3, .service-board .service-lane p,
  .service-board .service-tags span,
  .bg-yellow *,
  .bg-yellow :where(h1, h2, h3, h4, p, li, strong, span, small, a) {
    color: CanvasText !important;
  }
}

/* Cascade and low-viewport safeguards */
main > section:first-child {
  min-height: 100dvh;
}

.process-flow > .process-node {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-flow.light > .process-node {
  border-color: rgba(0, 51, 102, 0.1);
}

.bg-yellow .process-flow > .process-node {
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 900px) {
  .nav-link-cta {
    margin-left: 0;
  }
}

@media (max-height: 760px) and (min-width: 769px) {
  main > section:first-child {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
  }

  .hero-content {
    gap: 0.85rem;
  }

  .hero-title {
    font-size: clamp(3rem, 6.5vw, 5rem);
  }

  .trust-strip,
  .quote-bar,
  .landing-proof {
    margin-top: 0.65rem;
  }
}

@media (max-height: 700px) and (max-width: 768px) {
  main > section:first-child {
    padding-top: calc(var(--header-height) + 1.35rem);
    padding-bottom: 2rem;
  }

  .hero-content {
    gap: 0.75rem;
  }

  .hero-actions {
    margin-top: 0;
  }

  .trust-strip,
  .quote-bar,
  .landing-proof {
    margin-top: 0.45rem;
  }
}
/* Screenshot-led refinements v12 */

/* Keep the ACENTRA orange vivid while preserving white copy throughout. */
.bg-yellow {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #ffad19 0%, #fa9b00 56%, #ffb52d 100%);
}

.bg-yellow,
.bg-yellow *,
.bg-yellow :where(h1, h2, h3, h4, p, li, strong, span, small, a) {
  color: var(--color-white) !important;
}

.bg-yellow .section-title,
.bg-yellow .section-description {
  text-shadow: 0 1px 2px rgba(0, 31, 63, 0.26);
}

.bg-yellow .process-flow {
  background: rgba(0, 31, 63, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.bg-yellow .process-flow > .process-node {
  min-width: 0;
  background: rgba(0, 51, 102, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Three facts stay balanced on wide screens and stack without an empty cell. */
.metric-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-wall span {
  min-width: 0;
  padding: 1.35rem 1.1rem;
}

.metric-wall strong {
  font-size: clamp(2.1rem, 2.4vw, 2.85rem);
  line-height: 1;
  white-space: nowrap;
}

.metric-wall small {
  line-height: 1.45;
}

/* Use generated dividers so legacy border overrides cannot remove them. */
@media (min-width: 769px) {
  .page-quote .quote-bar > span {
    position: relative;
    border: 0;
  }

  .page-quote .quote-bar > span + span::before {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
    pointer-events: none;
  }
}

/* One restrained hero art direction per page, continued into section two. */
:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) {
  --hero-art-left: auto;
  --hero-art-right: -8rem;
  --hero-art-width: clamp(22rem, 42vw, 38rem);
  --hero-art-height: clamp(22rem, 42vw, 38rem);
  --hero-art-radius: 50%;
  --hero-art-rotation: 0deg;
  --hero-art-cut: -65%;
  --hero-art-border: rgba(250, 155, 0, 0.3);
  --hero-art-fill:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.14), transparent 17%),
    radial-gradient(circle, rgba(250, 155, 0, 0.18), rgba(250, 155, 0, 0.025) 58%, transparent 72%);
  --hero-art-shadow: none;
}

.page-home {
  --hero-art-right: -8rem;
  --hero-art-width: clamp(24rem, 43vw, 40rem);
  --hero-art-height: clamp(24rem, 43vw, 40rem);
}

.page-services {
  --hero-art-right: -4rem;
  --hero-art-width: clamp(21rem, 36vw, 32rem);
  --hero-art-height: clamp(21rem, 36vw, 32rem);
  --hero-art-radius: 30% 70% 56% 44%;
  --hero-art-rotation: 16deg;
  --hero-art-cut: -61%;
  --hero-art-fill:
    linear-gradient(145deg, rgba(250, 155, 0, 0.19), rgba(50, 143, 210, 0.035) 62%),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.13), transparent 20%);
}

.page-about {
  --hero-art-left: -7rem;
  --hero-art-right: auto;
  --hero-art-width: clamp(27rem, 46vw, 42rem);
  --hero-art-height: clamp(16rem, 27vw, 24rem);
  --hero-art-radius: 50%;
  --hero-art-rotation: -8deg;
  --hero-art-cut: -58%;
  --hero-art-fill:
    radial-gradient(ellipse at 62% 34%, rgba(250, 155, 0, 0.19), transparent 35%),
    linear-gradient(120deg, rgba(57, 151, 218, 0.08), transparent 70%);
}

.page-quote {
  --hero-art-right: -10rem;
  --hero-art-width: clamp(28rem, 50vw, 44rem);
  --hero-art-height: clamp(28rem, 50vw, 44rem);
  --hero-art-cut: -67%;
  --hero-art-fill:
    radial-gradient(circle at 42% 40%, rgba(255, 255, 255, 0.12), transparent 13%),
    radial-gradient(circle, rgba(250, 155, 0, 0.14), transparent 68%);
  --hero-art-shadow:
    0 0 0 4.5rem rgba(255, 255, 255, 0.018),
    0 0 0 9rem rgba(250, 155, 0, 0.018);
}

.page-policy {
  --hero-art-left: -7rem;
  --hero-art-right: auto;
  --hero-art-width: clamp(21rem, 34vw, 30rem);
  --hero-art-height: clamp(25rem, 40vw, 35rem);
  --hero-art-radius: 50% 50% 2.5rem 2.5rem;
  --hero-art-rotation: 5deg;
  --hero-art-cut: -55%;
  --hero-art-border: rgba(250, 155, 0, 0.24);
  --hero-art-fill: linear-gradient(155deg, rgba(250, 155, 0, 0.11), transparent 68%);
}

.page-mongagua {
  --hero-art-left: -10rem;
  --hero-art-right: auto;
  --hero-art-width: clamp(30rem, 54vw, 48rem);
  --hero-art-height: clamp(16rem, 28vw, 23rem);
  --hero-art-radius: 50%;
  --hero-art-rotation: -4deg;
  --hero-art-cut: -53%;
  --hero-art-fill:
    repeating-radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px 3.4rem),
    linear-gradient(90deg, rgba(40, 149, 209, 0.09), rgba(250, 155, 0, 0.1));
}

.page-spabc {
  --hero-art-right: -5rem;
  --hero-art-width: clamp(21rem, 37vw, 33rem);
  --hero-art-height: clamp(21rem, 37vw, 33rem);
  --hero-art-radius: 4rem;
  --hero-art-rotation: 34deg;
  --hero-art-cut: -62%;
  --hero-art-fill:
    linear-gradient(135deg, rgba(250, 155, 0, 0.15), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 4rem);
}

.page-home .hero-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(250, 155, 0, 0.24), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(55, 145, 210, 0.18), transparent 30%),
    linear-gradient(145deg, #00172e 0%, #003366 54%, #001f3f 100%);
}

.page-about .hero-section {
  background:
    radial-gradient(ellipse at 10% 82%, rgba(250, 155, 0, 0.22), transparent 31%),
    radial-gradient(circle at 86% 16%, rgba(69, 158, 220, 0.19), transparent 27%),
    linear-gradient(150deg, #00162c 0%, #003a70 58%, #001a33 100%);
}

.page-services .hero-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(250, 155, 0, 0.27), transparent 25%),
    radial-gradient(ellipse at 88% 78%, rgba(51, 139, 202, 0.2), transparent 31%),
    linear-gradient(140deg, #00182f 0%, #003b73 52%, #001f3f 100%);
}

.page-quote .quote-hero {
  background:
    radial-gradient(circle at 50% 8%, rgba(250, 155, 0, 0.2), transparent 21%),
    radial-gradient(circle at 86% 82%, rgba(59, 151, 215, 0.21), transparent 31%),
    linear-gradient(160deg, #001326 0%, #00386e 55%, #001b36 100%);
}

.page-policy .hero-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 12% 72%, rgba(250, 155, 0, 0.2), transparent 27%),
    linear-gradient(138deg, #00172e 0%, #002f5c 60%, #001b35 100%);
  background-size: 110px 100%, auto, auto;
}

.page-mongagua .landing-hero {
  background:
    radial-gradient(ellipse at 18% 82%, rgba(47, 158, 211, 0.25), transparent 31%),
    radial-gradient(circle at 84% 12%, rgba(250, 155, 0, 0.2), transparent 25%),
    linear-gradient(145deg, #00172e 0%, #004176 56%, #001f3f 100%);
}

.page-spabc .landing-hero {
  background:
    radial-gradient(circle at 84% 13%, rgba(250, 155, 0, 0.24), transparent 24%),
    linear-gradient(90deg, rgba(66, 153, 214, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #001326 0%, #00315f 55%, #00172e 100%);
  background-size: auto, 92px 100%, auto;
}

:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child,
:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child + section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child {
  border-bottom: 0;
}

:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child::after,
:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child + section::after {
  content: "";
  position: absolute;
  top: 0;
  right: var(--hero-art-right);
  bottom: auto;
  left: var(--hero-art-left);
  z-index: 0;
  width: var(--hero-art-width);
  height: var(--hero-art-height);
  border: 1px solid var(--hero-art-border);
  border-radius: var(--hero-art-radius);
  background: var(--hero-art-fill);
  box-shadow: var(--hero-art-shadow);
  transform: translateY(var(--hero-art-cut)) rotate(var(--hero-art-rotation));
  filter: none;
  pointer-events: none;
}

:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child::after {
  top: 100%;
}

:is(
  .page-home,
  .page-services,
  .page-about,
  .page-quote,
  .page-policy,
  .page-mongagua,
  .page-spabc
) main > section:first-child + section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .metric-wall {
    grid-template-columns: minmax(0, 1fr);
  }

  .metric-wall span,
  .metric-wall span:last-child {
    border-right: 0;
  }

  .metric-wall span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metric-wall span:last-child {
    border-bottom: 0;
  }

  .metric-wall strong {
    font-size: clamp(2.15rem, 11vw, 2.75rem);
  }

  .page-quote .quote-bar > span {
    border: 0;
  }

  .page-quote .quote-bar > span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  :is(
    .page-home,
    .page-services,
    .page-about,
    .page-quote,
    .page-policy,
    .page-mongagua,
    .page-spabc
  ) {
    --hero-art-width: 23rem;
    --hero-art-height: 23rem;
  }

  .page-about,
  .page-mongagua {
    --hero-art-width: 27rem;
    --hero-art-height: 16rem;
  }

  .page-policy {
    --hero-art-width: 20rem;
    --hero-art-height: 24rem;
  }
}

@media (prefers-contrast: more) {
  :is(
    .page-home,
    .page-services,
    .page-about,
    .page-quote,
    .page-policy,
    .page-mongagua,
    .page-spabc
  ) main > section:first-child + section::after {
    opacity: 0.38;
  }

  .bg-yellow .process-flow {
    background: rgba(0, 31, 63, 0.42);
  }
}

@media (forced-colors: active) {
  :is(
    .page-home,
    .page-services,
    .page-about,
    .page-quote,
    .page-policy,
    .page-mongagua,
    .page-spabc
  ) main > section:first-child::after,
  :is(
    .page-home,
    .page-services,
    .page-about,
    .page-quote,
    .page-policy,
    .page-mongagua,
    .page-spabc
  ) main > section:first-child + section::after {
    display: none;
  }

  .bg-yellow,
  .bg-yellow .process-flow,
  .bg-yellow .process-node {
    background: Canvas;
  }

  .bg-yellow,
  .bg-yellow *,
  .bg-yellow :where(h1, h2, h3, h4, p, li, strong, span, small, a) {
    color: CanvasText !important;
  }
}