:root {
  color-scheme: light;
  --ink: #10242f;
  --muted: #5f7380;
  --blue-950: #052333;
  --blue-900: #073149;
  --blue-800: #074967;
  --blue-700: #006d91;
  --cyan: #00a8c7;
  --cyan-soft: #dff8fc;
  --lime: #c8ef25;
  --lime-soft: #f0fac6;
  --white: #ffffff;
  --paper: #f7fbfd;
  --line: #d8e7ee;
  --shadow: 0 20px 60px rgba(5, 35, 51, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", 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;
}

a:hover {
  color: var(--blue-700);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  background: var(--blue-950);
  color: var(--white);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(200, 239, 37, 0.42);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
}

.brand img {
  width: 230px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(200, 239, 37, 0.9);
  background: var(--lime-soft);
  color: var(--blue-950);
  box-shadow: 0 10px 22px rgba(200, 239, 37, 0.18);
}

.site-nav .nav-download {
  margin-left: 0.35rem;
  border-color: rgba(200, 239, 37, 0.95);
  background: var(--lime);
  color: var(--blue-950);
  box-shadow: 0 12px 28px rgba(200, 239, 37, 0.3);
}

.site-nav .nav-download:hover {
  background: var(--lime-soft);
  color: var(--blue-950);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--blue-950);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

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

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(90deg);
}

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

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 4rem 0 5rem;
  background:
    linear-gradient(120deg, rgba(5, 35, 51, 0.95), rgba(7, 73, 103, 0.94) 58%, rgba(0, 109, 145, 0.88)),
    #073149;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(200, 239, 37, 0.08));
}

.safety-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.hero-logo {
  width: 360px;
  margin-bottom: 1.9rem;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.18));
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section .eyebrow {
  color: var(--blue-700);
}

.hero .eyebrow,
.page-hero .eyebrow,
.credential-band .eyebrow {
  color: var(--lime);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 3.6rem;
  line-height: 1.04;
}

.hero-lead {
  max-width: 690px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--lime);
  color: var(--blue-950);
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(200, 239, 37, 0.22);
}

.button:hover {
  transform: translateY(-1px);
  color: var(--blue-950);
  box-shadow: 0 18px 34px rgba(200, 239, 37, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.button.dark {
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 49, 73, 0.18);
}

.button.dark:hover {
  background: var(--blue-700);
  color: var(--white);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--blue-950);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--cyan-soft);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  font-size: 0.8rem;
  line-height: 1;
}

.button.dark .button-icon,
.button.secondary .button-icon {
  background: rgba(255, 255, 255, 0.18);
}

.hero-panel {
  display: grid;
  gap: 0.9rem;
  align-self: end;
}

.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.signal-card strong {
  display: block;
  color: var(--lime);
  font-size: 1.6rem;
  line-height: 1.1;
}

.signal-card span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.section.compact {
  padding: 4rem 0;
}

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

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
  margin-bottom: 2.6rem;
}

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

.section-heading h2,
.section-heading h1 {
  margin: 0;
  color: var(--blue-950);
  font-size: 2.35rem;
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(5, 35, 51, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 1.1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  content: "";
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 199, 0.45);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  color: var(--blue-900);
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--cyan);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  content: "";
}

.credential-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--blue-950), var(--blue-800) 62%, #0c7a9a);
  color: var(--white);
}

.credential-band::before {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  content: "";
}

.credential-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.credential-grid h2 {
  margin: 0;
  font-size: 2.3rem;
  line-height: 1.12;
}

.credential-grid p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.credential-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.09);
}

.credential-item strong {
  display: block;
  color: var(--lime);
  font-size: 1.15rem;
}

.credential-item span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.process-step {
  position: relative;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 35, 51, 0.07);
}

.process-step strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.1rem;
}

.process-step p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(5, 35, 51, 0.09);
}

.download-panel h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.55rem;
}

.download-panel p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 35, 51, 0.07);
}

.contact-panel h3 {
  margin: 0 0 1rem;
  color: var(--blue-900);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.contact-list div {
  display: grid;
  gap: 0.12rem;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
  font-weight: 750;
}

.contact-list a {
  color: var(--blue-800);
}

.small-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-box {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
  background:
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
}

.review-box h3 {
  color: var(--white);
}

.review-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-cta {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 56px;
  overflow: hidden;
  border-color: rgba(200, 239, 37, 0.85);
  background: var(--lime);
  color: var(--blue-950);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-cta::before {
  position: absolute;
  inset: -40% auto -40% -55%;
  z-index: -1;
  width: 48%;
  content: "";
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.44);
  animation: whatsappSheen 3s ease-in-out infinite;
}

.whatsapp-cta:hover {
  color: var(--blue-950);
  transform: translateY(-2px) scale(1.01);
}

.facebook-cta {
  width: 100%;
  min-height: 50px;
  border-color: rgba(255, 255, 255, 0.28);
  background: #1877f2;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.24);
}

.facebook-cta:hover {
  background: #0f65d8;
  color: var(--white);
  transform: translateY(-2px);
}

.stars {
  color: var(--lime);
  font-size: 1.55rem;
  line-height: 1;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(200, 239, 37, 0.26);
  }

  50% {
    box-shadow: 0 18px 42px rgba(200, 239, 37, 0.48);
  }
}

@keyframes whatsappSheen {
  0% {
    left: -55%;
  }

  45%,
  100% {
    left: 120%;
  }
}

.site-footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(230px, 0.9fr) minmax(190px, 0.65fr);
  gap: 2.5rem;
  padding: 3.2rem 0 2.2rem;
}

.footer-logo {
  width: 320px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 520px;
  margin: 0 0 1rem;
}

.footer-address {
  display: grid;
  gap: 0.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-address span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-address address {
  font-style: normal;
}

.footer-title {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lime);
}

.footer-contact li {
  display: grid;
  gap: 0.12rem;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-bottom {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
}

.footer-legal span {
  color: var(--white);
  font-weight: 850;
}

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

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--lime);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.2rem;
}

.footer-meta p {
  margin: 0;
}

.call-note {
  margin: 0;
  color: var(--lime);
  font-weight: 800;
}

.developer-credit a {
  color: var(--lime);
  font-weight: 800;
}

.developer-credit a:hover {
  color: var(--white);
}

.page-hero {
  padding: 5rem 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(5, 35, 51, 0.96), rgba(7, 73, 103, 0.9)),
    var(--blue-900);
  color: var(--white);
}

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

.legal-content {
  display: grid;
  gap: 1.2rem;
  max-width: 940px;
  margin-inline: auto;
}

.legal-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(5, 35, 51, 0.05);
}

.legal-block h2 {
  margin: 0 0 0.85rem;
  color: var(--blue-900);
  font-size: 1.32rem;
}

.legal-block h3 {
  margin: 1rem 0 0.5rem;
  color: var(--blue-950);
  font-size: 1.05rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block p:first-child,
.legal-block ul:first-child {
  margin-top: 0;
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--blue-800);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-block ul {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-table th,
.legal-table td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--cyan-soft);
  color: var(--blue-950);
}

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

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 200;
  width: min(720px, calc(100% - 2rem));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(5, 35, 51, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 0.35rem;
  color: var(--blue-950);
  font-size: 1.12rem;
}

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

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0.58rem 0.85rem;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 50px rgba(5, 35, 51, 0.16);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav .nav-download {
    margin-left: 0;
  }

  .hero-grid,
  .credential-grid,
  .contact-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
  }

  .site-nav {
    inset: 68px 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero-logo {
    width: 280px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-panel,
  .services-grid,
  .credential-list,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .section-heading h1 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    display: grid;
  }

  .footer-logo {
    width: 260px;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
  }

  .legal-block {
    padding: 1rem;
  }

  .legal-table {
    display: block;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .safety-canvas {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
