:root {
  --navy: #0B1F3A;
  --navy-dark: #061426;
  --navy-light: #123A63;
  --orange: #F97316;
  --blue: #2563EB;
  --green: #16A34A;
  --yellow: #FACC15;
  --off-white: #F8FAFC;
  --light-blue: #EAF3FF;
  --light-orange: #FFF3E8;
  --light-green: #EAF8EF;
  --light-red: #FFF0F0;
  --light-yellow: #FFF9D8;
  --ink: #111827;
  --muted: #4B5563;
  --line: #E5E7EB;
  --white: #FFFFFF;
  --shadow: 0 18px 46px rgba(6, 20, 38, 0.12);
  --shadow-soft: 0 10px 28px rgba(6, 20, 38, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section-light {
  background: var(--off-white);
}

.section-blue {
  background: var(--light-blue);
}

.section-orange {
  background: var(--light-orange);
}

.section-green {
  background: var(--light-green);
}

.section-dark {
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title,
.section-dark .lead {
  color: var(--white);
}

.top-strip {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

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

.top-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-links a:hover,
.footer a:hover {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 28px rgba(6, 20, 38, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}

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

.brand img {
  width: 184px;
  max-width: 44vw;
  height: auto;
}

.brand-label {
  display: grid;
  gap: 0;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
}

.brand-label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a {
  border-radius: 8px;
  padding: 10px 12px;
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav a[aria-current="page"] {
  color: var(--orange);
  background: var(--light-orange);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: relative;
}

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

.menu-toggle span::after {
  top: 5px;
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(90deg) translate(7px, 0);
}

.menu-toggle[aria-expanded="true"] span::after {
  opacity: 0;
}

.mobile-panel {
  display: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--navy);
  background: var(--light-blue);
  border: 1px solid rgba(37, 99, 235, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge.orange {
  background: var(--light-orange);
  border-color: rgba(249, 115, 22, 0.22);
}

.badge.green {
  background: var(--light-green);
  border-color: rgba(22, 163, 74, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-secondary {
  color: var(--white);
  background: var(--navy);
}

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

.btn-ghost {
  color: var(--navy);
  background: transparent;
  border-color: rgba(11, 31, 58, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 94px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 92px);
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -84px;
  width: 280px;
  height: 280px;
  border: 38px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  transform: rotate(10deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  max-width: 720px;
}

h1,
h2,
h3,
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(38px, 5.6vw, 68px);
}

h2,
.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
}

h3 {
  font-size: 21px;
}

.hero .lead,
.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.lead {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.stat strong {
  display: block;
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: -1;
  border: 2px solid rgba(250, 204, 21, 0.55);
  border-radius: 8px;
}

.hero-media img,
.feature-image img,
.gallery-card img,
.media-tile img,
.wide-image img {
  width: 100%;
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.hero-note {
  position: absolute;
  left: -22px;
  bottom: 24px;
  max-width: 245px;
  padding: 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.hero-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head > div {
  max-width: 760px;
}

.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 {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.card.blue::before {
  background: var(--blue);
}

.card.green::before {
  background: var(--green);
}

.card.yellow::before {
  background: var(--yellow);
}

.card p,
.card li,
.timeline p,
.split p,
.footer p {
  color: var(--muted);
}

.section-dark .card {
  color: var(--ink);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--light-blue);
  font-weight: 900;
}

.icon-box.orange {
  background: var(--light-orange);
}

.icon-box.green {
  background: var(--light-green);
}

.icon-box.yellow {
  background: var(--light-yellow);
}

.trust-strip {
  margin-top: -28px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

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

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

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

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

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

.feature-image {
  position: relative;
}

.feature-image img,
.wide-image img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.image-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.check-list li,
.arrow-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--light-green);
}

.arrow-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.timeline-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-item::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
}

.timeline-item > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  opacity: 0.84;
}

.gallery-card.large img {
  aspect-ratio: 4 / 2.62;
}

.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.media-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.media-tile img {
  aspect-ratio: 16 / 10;
}

.media-tile div {
  padding: 18px;
}

.quick-answer {
  border-left: 6px solid var(--orange);
  padding: 24px;
  border-radius: 8px;
  background: var(--light-orange);
}

.quick-answer p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 0;
  padding: 20px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  background: var(--orange);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 42px;
  color: var(--white);
  background: var(--navy);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(37, 99, 235, 0.38);
  border-radius: 8px;
  transform: rotate(14deg);
}

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.76);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  padding: 9px;
  border-radius: 8px;
  background: var(--white);
}

.footer h2,
.footer h3 {
  color: var(--white);
  font-size: 18px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-actions a,
.mobile-actions a {
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.floating-actions a {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.action-call {
  background: var(--blue);
}

.action-whatsapp {
  background: var(--green);
}

.action-email {
  background: var(--navy);
}

.action-quote {
  background: var(--orange);
}

.mobile-actions {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 88;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-dark);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-stagger > * {
  opacity: 0;
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal,
.reveal-up,
.reveal-stagger > * {
  transform: translateY(24px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger > *:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-stagger > *:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-stagger > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-stagger > *:nth-child(5) {
  transition-delay: 360ms;
}

.reveal-stagger > *:nth-child(6) {
  transition-delay: 450ms;
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-panel {
    position: fixed;
    inset: 120px 16px auto 16px;
    z-index: 100;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--navy);
    background: var(--off-white);
    font-weight: 900;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-label,
  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 62px 0 56px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .split.reverse,
  .trust-grid,
  .gallery-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .cta-band {
    padding: 28px;
  }

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

  .footer-bottom {
    display: block;
  }

  .floating-actions {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--navy-dark);
  }

  .mobile-actions a {
    min-height: 54px;
    border-radius: 0;
    box-shadow: none;
    font-size: 13px;
  }

  .back-to-top {
    right: 14px;
    bottom: 68px;
  }

  body {
    padding-bottom: 54px;
  }
}

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

  .brand img {
    max-width: 64vw;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
