:root {
  --ink: #102029;
  --muted: #64717a;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --line: #dce5e8;
  --navy: #0f2530;
  --teal: #10a9b7;
  --teal-dark: #087b86;
  --amber: #e8922a;
  --steel: #6f7d86;
  --shadow: 0 18px 50px rgba(15, 37, 48, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(15, 37, 48, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand span {
  color: #dff4f7;
  font-size: 32px;
}

.brand small {
  color: var(--teal);
  font-size: 21px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: #ffffff;
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: #ffffff;
  background: var(--navy);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 76px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

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

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 37, 48, 0.94) 0%, rgba(15, 37, 48, 0.76) 47%, rgba(15, 37, 48, 0.3) 100%),
    linear-gradient(0deg, rgba(15, 37, 48, 0.88) 0%, rgba(15, 37, 48, 0.04) 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--amber);
  box-shadow: 0 16px 36px rgba(232, 146, 42, 0.26);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-row strong {
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.scroll-link {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.section-copy p {
  font-size: 17px;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(16, 32, 41, 0.08);
}

.value-item span,
.service-number {
  color: var(--teal);
  font-weight: 900;
}

.value-item p,
.service-card p,
.sector-item p {
  margin-bottom: 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head p:last-child {
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(16, 32, 41, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 169, 183, 0.42);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-block;
  margin-bottom: 36px;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.service-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--steel);
  font-size: 14px;
}

.service-card li + li {
  margin-top: 8px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.sectors {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sector-item {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.sector-item h3 {
  color: #ffffff;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(16, 169, 183, 0.08), rgba(255, 255, 255, 0)),
    #ffffff;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

address.contact-row {
  font-style: normal;
}

.contact-actions {
  margin-top: 24px;
}

.footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #0a171d;
}

.footer p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid {
  align-items: flex-start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.policy-page {
  background: var(--soft);
}

.nav-static {
  display: flex;
}

.policy-main {
  padding-top: 76px;
}

.policy-hero {
  padding: 80px 0 62px;
}

.policy-hero h1 {
  margin-bottom: 14px;
}

.policy-content {
  padding: 64px 0 90px;
}

.policy-wrap {
  max-width: 820px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 32, 41, 0.1);
}

.policy-wrap h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.policy-wrap a {
  color: var(--teal-dark);
  font-weight: 800;
}

.policy-contact {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.policy-contact span {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 20px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(15, 37, 48, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 10px 12px;
  }

  .nav-static {
    position: static;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .sectors {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 420px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand span {
    font-size: 28px;
  }

  .brand small {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 37, 48, 0.96), rgba(15, 37, 48, 0.78));
  }

  .hero-actions,
  .contact-actions,
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .scroll-link {
    display: none;
  }

  .value-item {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .nav-static a:not(.nav-cta) {
    display: none;
  }

  .policy-wrap {
    padding: 26px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
