:root {
  --brand-blue-950: #061b30;
  --brand-blue-900: #092a4a;
  --brand-blue-700: #0f4c81;
  --brand-blue-600: #1463a5;
  --action-blue-500: #0b74c8;
  --action-blue-650: #075a9c;
  --white: #ffffff;
  --surface-50: #f6f9fc;
  --surface-100: #eef4f8;
  --steel-200: #d6e1ea;
  --ink-900: #17212b;
  --ink-650: #4b5b68;
  --ink-500: #687683;
  --teal-600: #147d7e;
  --amber-600: #b7791f;
  --green-650: #2f7d5a;
  --red-600: #b54b4b;
  --container-max: 1160px;
  --container-pad: 16px;
  --radius-card: 8px;
  --radius-control: 8px;
  --shadow-soft: 0 16px 40px rgba(6, 27, 48, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink-900);
  background: var(--white);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(20, 125, 126, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 12px;
  border-radius: var(--radius-control);
  background: var(--brand-blue-950);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(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;
}

.container {
  width: min(100% - (var(--container-pad) * 2), var(--container-max));
  margin-inline: auto;
}

.section,
.section-band,
.section-soft,
.section-callout,
.final-cta {
  padding: 56px 0;
}

.section-soft {
  background: var(--surface-50);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px var(--container-pad);
  border-bottom: 1px solid var(--steel-200);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue-950);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(180px, 46vw, 232px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  display: grid;
  width: 46px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-control);
  background: var(--surface-50);
  color: var(--brand-blue-900);
  font: inherit;
  font-weight: 800;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle-bars {
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  position: absolute;
  left: 0;
}

.menu-toggle-bars::before {
  top: -7px;
}

.menu-toggle-bars::after {
  top: 7px;
}

.nav-open .menu-toggle-bars {
  background: transparent;
}

.nav-open .menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  transition: background 160ms ease, transform 160ms ease, top 160ms ease;
}

.main-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 4px;
  padding: 10px 0 2px;
}

.nav-open .main-nav {
  display: grid;
}

.main-nav a {
  padding: 12px;
  border-radius: var(--radius-control);
  color: var(--ink-650);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  background: var(--surface-100);
  color: var(--brand-blue-900);
}

.header-cta {
  grid-column: 1 / -1;
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--action-blue-500);
  color: var(--white);
}

.button-primary:hover {
  background: var(--action-blue-650);
}

.button-secondary {
  border-color: var(--steel-200);
  background: var(--white);
  color: var(--brand-blue-900);
}

.button-secondary:hover {
  border-color: var(--brand-blue-600);
  color: var(--brand-blue-700);
}

.inline-whatsapp {
  color: inherit;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 42, 74, 0.98), rgba(15, 76, 129, 0.94)),
    var(--brand-blue-900);
  color: var(--white);
}

.hero.section-band {
  padding-top: 40px;
}

.hero-grid {
  display: grid;
  gap: 22px;
}

.hero-copy {
  min-width: 0;
  order: 2;
}

.hero-contact .hero-copy {
  order: 1;
}

.hero-contact .visual-panel {
  order: 2;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow,
.site-footer .eyebrow {
  color: #9dd7d8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: 36px;
}

h2 {
  font-size: 27px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  font-size: 18px;
  font-weight: 700;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.split-layout p,
.contact-grid p,
.final-cta p {
  max-width: 720px;
  color: var(--ink-650);
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy > * + * {
  margin-top: 13px;
}

.hero-actions,
.final-cta-actions,
.callout-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-actions .button {
  width: 100%;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.chip-list li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.hero-contact-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.hero-contact-summary div {
  min-width: 0;
}

.hero-contact-summary dt {
  color: #9dd7d8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-contact-summary dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.hero-contact-summary .inline-whatsapp {
  color: var(--white);
}

.visual-panel {
  position: relative;
  order: 1;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(6, 27, 48, 0.22);
  box-shadow: var(--shadow-soft);
}

.visual-grid {
  position: absolute;
  inset: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.visual-grid span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.visual-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.visual-mark .icon {
  width: 60px;
  height: 60px;
}

.visual-lines {
  position: absolute;
  right: 22px;
  bottom: 48px;
  left: 22px;
  display: grid;
  gap: 8px;
}

.visual-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.visual-lines span:nth-child(2) {
  width: 74%;
}

.visual-lines span:nth-child(3) {
  width: 48%;
}

.visual-panel figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.visual-panel-image {
  background: rgba(6, 27, 48, 0.22);
}

.visual-panel-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.hero .visual-panel {
  min-height: 170px;
  max-height: 210px;
}

.hero .visual-panel-image img {
  min-height: 170px;
}

.quick-facts {
  padding: 18px 0;
  background: var(--surface-50);
}

.breadcrumbs {
  padding: 12px 0;
  border-bottom: 1px solid var(--steel-200);
  background: var(--surface-50);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  color: var(--ink-650);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.breadcrumbs li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumbs li + li::before {
  padding-right: 6px;
  color: var(--ink-500);
  content: "/";
}

.breadcrumbs a {
  color: var(--brand-blue-700);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.facts-grid,
.card-grid,
.process-list,
.footer-grid,
.contact-grid,
.final-cta-grid {
  display: grid;
  gap: 14px;
}

.fact-card,
.service-card,
.callout,
.contact-list,
.faq-list details {
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-card);
  background: var(--white);
}

.fact-card {
  padding: 14px;
}

.fact-card span,
.contact-list dt {
  display: block;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-card strong,
.contact-list dd {
  display: block;
  margin: 4px 0 0;
  color: var(--ink-900);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 24px;
}

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

.editorial-mosaic-section {
  background:
    linear-gradient(180deg, var(--white), var(--surface-50));
}

.editorial-heading {
  max-width: 760px;
}

.editorial-mosaic-grid {
  display: grid;
  gap: 12px;
}

.editorial-mosaic-card {
  min-width: 0;
}

.editorial-feature {
  display: grid;
  gap: 24px;
  align-items: center;
}

.editorial-feature-section:nth-of-type(even) {
  background: var(--surface-50);
}

.editorial-copy {
  display: grid;
  gap: 12px;
}

.editorial-copy p {
  max-width: 700px;
  color: var(--ink-650);
}

.editorial-media-shell {
  min-width: 0;
}

.editorial-image {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.editorial-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.editorial-image figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  justify-content: space-between;
  padding: 10px 12px;
  border-top: 1px solid var(--steel-200);
  color: var(--ink-650);
  font-size: 12px;
  font-weight: 850;
}

.editorial-image figcaption small {
  color: var(--ink-650);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-check-list {
  margin-top: 4px;
}

.service-card {
  display: grid;
  min-height: 220px;
  gap: 12px;
  align-content: start;
  padding: 18px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: var(--brand-blue-600);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.card-core {
  border-top: 4px solid var(--brand-blue-700);
}

.card-support {
  border-top: 4px solid var(--teal-600);
}

.card-commercial {
  border-top: 4px solid var(--amber-600);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-card);
  background: var(--surface-100);
  color: var(--brand-blue-700);
}

.icon {
  width: 24px;
  height: 24px;
}

.service-card p,
.callout p,
.faq-list p,
.check-list,
.contact-grid p {
  color: var(--ink-650);
}

.card-link,
.text-link,
.related-link,
.footer-link {
  color: var(--brand-blue-700);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.card-link {
  align-self: end;
}

.process-list {
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-card);
  background: var(--white);
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius-card);
  background: var(--brand-blue-900);
  color: var(--white);
  font-weight: 900;
}

.process-list p {
  margin-top: 6px;
  color: var(--ink-650);
}

.section-cta {
  margin-top: 20px;
}

.callout {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-left: 4px solid var(--teal-600);
}

.callout-condition,
.callout-pending {
  border-left-color: var(--amber-600);
}

.callout-limit {
  border-left-color: var(--red-600);
}

.callout-commercial {
  border-left-color: var(--brand-blue-700);
}

.split-layout {
  display: grid;
  gap: 24px;
}

.split-layout > div:first-child {
  display: grid;
  gap: 12px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-card);
  background: var(--surface-50);
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-650);
  color: var(--white);
  content: "";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.contact-grid {
  align-items: start;
}

.contact-grid > div:first-child {
  display: grid;
  gap: 12px;
}

.contact-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.contact-list div {
  padding: 14px;
  border-bottom: 1px solid var(--steel-200);
}

.contact-list div:last-child {
  border-bottom: 0;
}

.faq-layout {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px;
  color: var(--brand-blue-950);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--steel-200);
}

.faq-list p {
  padding: 14px 16px 16px;
}

.related-section {
  padding-top: 32px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.related-link {
  padding: 10px 12px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-control);
  background: var(--white);
  text-decoration: none;
}

.final-cta {
  background: var(--brand-blue-900);
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.final-cta-grid {
  align-items: center;
}

.final-cta-actions .button {
  width: 100%;
}

.site-footer {
  padding: 42px 0;
  background: var(--brand-blue-950);
  color: var(--white);
}

.footer-grid {
  gap: 24px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.site-footer p,
.site-footer a,
.footer-pending {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand-wordmark .brand-logo {
  width: min(260px, 100%);
  max-height: 68px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.82);
}

.button-footer {
  width: 100%;
  margin-top: 14px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

@media (min-width: 560px) {
  :root {
    --container-pad: 24px;
  }

  .hero-actions .button,
  .final-cta-actions .button,
  .button-footer {
    width: auto;
  }

  .facts-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .section,
  .section-band,
  .section-soft,
  .section-callout,
  .final-cta {
    padding: 72px 0;
  }

  .hero.section-band {
    padding: 72px 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .final-cta-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .hero-copy,
  .visual-panel {
    order: initial;
  }

  .hero-contact-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .visual-panel {
    min-height: 300px;
    max-height: none;
  }

  .hero .visual-panel-image img {
    min-height: 300px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-feature {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .editorial-feature-reverse .editorial-copy {
    order: 2;
  }

  .editorial-feature-reverse .editorial-media-shell {
    order: 1;
  }

  .editorial-mosaic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  :root {
    --container-pad: 32px;
  }

  .site-header {
    grid-template-columns: minmax(232px, auto) minmax(0, 1fr) auto;
    padding-inline: 32px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    padding: 0;
  }

  .header-cta {
    grid-column: auto;
    width: auto;
  }

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

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

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 359px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 25px;
  }

  .button {
    padding-inline: 12px;
  }

  .service-card,
  .callout,
  .process-list li {
    padding: 14px;
  }

  .brand-logo {
    width: 184px;
    max-height: 52px;
  }
}
