:root {
  --ink: #102033;
  --muted: #5c6b78;
  --navy: #0b2f4a;
  --teal: #118b98;
  --teal-dark: #0b6775;
  --orange: #f28c28;
  --steel: #e8eef2;
  --mist: #f6f8fa;
  --paper: #ffffff;
  --line: #d8e0e6;
  --shadow: 0 16px 42px rgba(14, 36, 52, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--orange);
  color: #111;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.topbar {
  background: #082235;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: #ffffff;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 224, 230, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand img {
  width: 172px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #20364a;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: #eef7f8;
  color: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--orange);
  color: #101820;
  box-shadow: 0 10px 24px rgba(242, 140, 40, 0.28);
}

.btn-secondary {
  background: var(--teal);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-light {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--line);
}

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

.hero {
  position: relative;
  min-height: clamp(570px, 72vh, 760px);
  display: grid;
  align-items: center;
  isolation: isolate;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 22, 35, 0.86) 0%, rgba(3, 22, 35, 0.62) 42%, rgba(3, 22, 35, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 22, 35, 0.44), rgba(3, 22, 35, 0.08));
}

.hero-content {
  max-width: var(--max);
  margin-inline: auto;
  padding: 72px 0;
  text-align: left;
}

.hero .eyebrow {
  color: #8fe6ee;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.trust-strip {
  background: #f2f6f8;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 22px 24px;
  background: var(--paper);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  background: #09253a;
  color: #fff;
}

.section-dark .section-header p,
.section-dark .muted,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.section-header h2,
.section-header h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(14, 36, 52, 0.06);
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.media-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.link-arrow {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #23394c;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(242, 140, 40, 0.45);
}

.section-dark .feature-list li {
  color: rgba(255, 255, 255, 0.86);
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: #eef7f8;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.section-dark .kicker {
  background: rgba(255, 255, 255, 0.1);
  color: #93edf1;
}

.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 27, 43, 0.86), rgba(4, 27, 43, 0.46));
}

.page-hero .container {
  padding: 78px 0;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf5f7;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card-body::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.case-list {
  display: grid;
  gap: 16px;
}

.case-item {
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(14, 36, 52, 0.06);
}

.case-item h3 {
  margin: 0 0 8px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  color: var(--navy);
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  background: #eef5f7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #25384a;
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd6dd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

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

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

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.map-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 139, 152, 0.13), rgba(242, 140, 40, 0.12)),
    #f3f7f9;
}

.cta-band {
  padding: 54px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(9, 37, 58, 0.96), rgba(12, 82, 91, 0.94)),
    var(--navy);
  color: #fff;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.cta-band p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .hero-actions {
  margin-top: 24px;
}

.article {
  max-width: 860px;
  margin-inline: auto;
}

.article h2 {
  margin-top: 42px;
  font-size: 30px;
  line-height: 1.14;
}

.article p,
.article li {
  color: #34485a;
  font-size: 17px;
}

.article ul {
  padding-left: 20px;
}

.site-footer {
  background: #071d2d;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
  padding: 58px 0 34px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
  filter: brightness(1.08);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.socials span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #19b657;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(25, 182, 87, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .header-actions .btn {
    display: none;
  }

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

@media (max-width: 900px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 114px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 650px;
  }

  .trust-grid,
  .grid-3,
  .grid-2,
  .split,
  .split.reverse,
  .quote-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .cta-band {
    padding: 26px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand img {
    width: 150px;
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .hero {
    min-height: 630px;
    background-position: 62% center;
  }

  .form-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    left: 12px;
    justify-content: center;
  }

  .cookie-banner.is-visible {
    align-items: stretch;
    flex-direction: column;
  }
}
