:root {
  --navy: #061d4f;
  --navy-deep: #001a49;
  --teal: #178f7c;
  --green: #1a9c45;
  --red: #d1171c;
  --ink: #071f52;
  --muted: #53637f;
  --line: #dfe6ef;
  --soft: #f7fafc;
  --white: #fff;
  --shadow: 0 18px 42px rgba(6, 29, 79, 0.11);
}

.espaciado {
  margin-top: 35px;
  margin-bottom: 15px;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Avenir Next", Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 96px, 1210px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 92px, 1220px);
  margin: 26px auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-image {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  transform: scale(1.2);
  /* Slight scale to help if there's padding in the image */
  transform-origin: left center;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 3px;
  border: 1px solid rgba(10, 54, 131, 0.34);
  border-radius: 18px;
  background: linear-gradient(180deg, #123f91 0%, #082d72 100%);
  box-shadow:
    0 10px 24px rgba(4, 22, 62, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58));
  opacity: 0.78;
  pointer-events: none;
}

.site-nav:hover {
  border-color: rgba(37, 92, 182, 0.42);
  background: linear-gradient(180deg, #15459a 0%, #0a317a 100%);
  box-shadow:
    0 12px 26px rgba(4, 22, 62, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-right: 1px solid rgba(186, 209, 255, 0.14);
  color: rgba(247, 250, 255, 0.96);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:last-child {
  border-right: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: 5px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
}

.site-nav a:active {
  background: rgba(255, 255, 255, 0.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(6, 29, 79, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

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

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

.btn-primary:hover {
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(23, 143, 124, 0.25);
}

.btn-light {
  min-width: 270px;
  background: var(--white);
  color: var(--navy);
}

.header-btn {
  margin-top: 23px;
  min-height: 51px;
}

.hero {
  position: relative;
  min-height: 660px;
  padding: 80px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 901px) {
  .hero-grid {
    align-items: start;
  }
}

.hero-copy h1,
.section-copy h2,
.section-center h2,
.why-copy h2,
.cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--navy-deep);
}

.hero-copy h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.95;
}

.hero-copy p {
  max-width: 420px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.flag-line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  margin: 40px 0 48px;
  position: relative;
}

.flag-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: -1;
}

.flag-line span {
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 2px;
}

.flag-line span:first-child {
  background: var(--green);
}

.flag-line span:last-child {
  background: var(--red);
}

.hero-features {
  display: flex;
  gap: 70px;
  margin-bottom: 48px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 210px;
  font-size: 13px;
  line-height: 1.45;
}

.mini-icon,
.circle-icon,
.line-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
}

.mini-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
}

.mini-icon::before,
.circle-icon::before,
.line-icon::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
}

.dna-icon,
.people {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3c5 3 5 15 0 18M17 3c-5 3-5 15 0 18M8 7h8M7 12h10M8 17h8'/%3E%3C/svg%3E");
}

.globe-icon,
.globe {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E");
}

.flask {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3h6M10 3v6l-5 9a2 2 0 0 0 2 3h10a2 2 0 0 0 2-3l-5-9V3M8 16h8'/%3E%3C/svg%3E");
}

.clipboard {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4h6l1 3H8l1-3ZM7 6H5v15h14V6h-2M9 13l2 2 4-5M8 18h8'/%3E%3C/svg%3E");
}

.nodes {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='18' r='2'/%3E%3Ccircle cx='12' cy='10' r='2'/%3E%3Ccircle cx='19' cy='5' r='2'/%3E%3Cpath d='m6.5 16.5 4-5M14 9l3.5-2.5'/%3E%3C/svg%3E");
}

.users,
.person {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7' r='3'/%3E%3Cpath d='M5 21c.8-4 3-6 7-6s6.2 2 7 6M4 12c-2 1-3 3-3 6M20 12c2 1 3 3 3 6'/%3E%3C/svg%3E");
}

.shield {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 5 3 8 7 10 4-2 7-5 7-10V6l-7-3Z'/%3E%3Cpath d='m8.5 12 2.2 2.2 4.8-5'/%3E%3C/svg%3E");
}

.med {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3h8v4l-4 3-4-3V3ZM5 21c.5-5 3-8 7-8s6.5 3 7 8M9 17h6M12 14v6M4 21h16'/%3E%3C/svg%3E");
}

.heart {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-8-5-10-11c-1.5-5 5-8 10-2 5-6 11.5-3 10 2-2 6-10 11-10 11Z'/%3E%3C/svg%3E");
}

.building {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V8h5v13M9 21V3h6v18M15 21V10h5v11M6 11h1M6 15h1M11 7h2M11 11h2M11 15h2M17 13h1M17 17h1M3 21h18'/%3E%3C/svg%3E");
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 33px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--teal);
  font-size: 26px;
  line-height: 1;
}

.text-link.teal span,
.text-link.teal {
  color: var(--teal);
}

.hero-statement img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(6, 29, 79, 0.08);
  width: 100%;
  height: auto;
}

.hero-statement p {
  margin: 40px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

.hero-statement span {
  color: var(--teal);
}

.hero-dna {
  position: absolute;
  right: -20px;
  top: 0;
  width: 320px;
  height: 100%;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cg fill='none' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M20,0 C20,50 80,50 80,100 C80,150 20,150 20,200' stroke='%23178f7c' /%3E%3Cpath d='M80,0 C80,50 20,50 20,100 C20,150 80,150 80,200' stroke='%23061d4f' /%3E%3Cg stroke='%23061d4f' opacity='0.3'%3E%3Cline x1='24' y1='10' x2='76' y2='10' /%3E%3Cline x1='31' y1='20' x2='69' y2='20' /%3E%3Cline x1='39' y1='30' x2='61' y2='30' /%3E%3Cline x1='46' y1='40' x2='54' y2='40' /%3E%3Cline x1='54' y1='60' x2='46' y2='60' /%3E%3Cline x1='61' y1='70' x2='39' y2='70' /%3E%3Cline x1='69' y1='80' x2='31' y2='80' /%3E%3Cline x1='76' y1='90' x2='24' y2='90' /%3E%3Cline x1='76' y1='110' x2='24' y2='110' /%3E%3Cline x1='69' y1='120' x2='31' y2='120' /%3E%3Cline x1='61' y1='130' x2='39' y2='130' /%3E%3Cline x1='54' y1='140' x2='46' y2='140' /%3E%3Cline x1='46' y1='160' x2='54' y2='160' /%3E%3Cline x1='39' y1='170' x2='61' y2='170' /%3E%3Cline x1='31' y1='180' x2='69' y2='180' /%3E%3Cline x1='24' y1='190' x2='76' y2='190' /%3E%3C/g%3E%3Cg fill='%23178f7c' stroke='none'%3E%3Ccircle cx='24' cy='10' r='2' /%3E%3Ccircle cx='31' cy='20' r='2' /%3E%3Ccircle cx='39' cy='30' r='2' /%3E%3Ccircle cx='46' cy='40' r='2' /%3E%3Ccircle cx='54' cy='60' r='2' /%3E%3Ccircle cx='61' cy='70' r='2' /%3E%3Ccircle cx='69' cy='80' r='2' /%3E%3Ccircle cx='76' cy='90' r='2' /%3E%3Ccircle cx='76' cy='110' r='2' /%3E%3Ccircle cx='69' cy='120' r='2' /%3E%3Ccircle cx='61' cy='130' r='2' /%3E%3Ccircle cx='54' cy='140' r='2' /%3E%3Ccircle cx='46' cy='160' r='2' /%3E%3Ccircle cx='39' cy='170' r='2' /%3E%3Ccircle cx='31' cy='180' r='2' /%3E%3Ccircle cx='24' cy='190' r='2' /%3E%3C/g%3E%3Cg fill='%23061d4f' stroke='none'%3E%3Ccircle cx='76' cy='10' r='2' /%3E%3Ccircle cx='69' cy='20' r='2' /%3E%3Ccircle cx='61' cy='30' r='2' /%3E%3Ccircle cx='54' cy='40' r='2' /%3E%3Ccircle cx='46' cy='60' r='2' /%3E%3Ccircle cx='39' cy='70' r='2' /%3E%3Ccircle cx='31' cy='80' r='2' /%3E%3Ccircle cx='24' cy='90' r='2' /%3E%3Ccircle cx='24' cy='110' r='2' /%3E%3Ccircle cx='31' cy='120' r='2' /%3E%3Ccircle cx='39' cy='130' r='2' /%3E%3Ccircle cx='46' cy='140' r='2' /%3E%3Ccircle cx='54' cy='160' r='2' /%3E%3Ccircle cx='61' cy='170' r='2' /%3E%3Ccircle cx='69' cy='180' r='2' /%3E%3Ccircle cx='76' cy='190' r='2' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 320px;
  background-repeat: repeat-y;
  background-position: center 0;
  transform: rotate(15deg);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  pointer-events: none;
  animation: float-dna 25s linear infinite;
}

@keyframes float-dna {
  0% {
    background-position: center 0;
  }

  100% {
    background-position: center 320px;
  }
}

.section {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.34fr;
  gap: 78px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 52, 89, 0.14);
}

.section-copy {
  max-width: 565px;
}

.eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-copy h2,
.why-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
}

.section-copy p {
  margin: 22px 0 0;
  max-width: 535px;
  font-weight: 700;
}

.section-copy .text-link {
  margin-top: 31px;
}

.process {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background: radial-gradient(circle at 50% 28%, #0b3675 0%, #05245b 46%, #00183e 100%);
  color: var(--white);
}

.process .container {
  position: relative;
  z-index: 2;
}

.process .eyebrow {
  color: var(--white);
}

.process .section-center h2 {
  color: var(--white);
}

.process .step {
  background:
    linear-gradient(180deg, rgba(7, 31, 82, 0.92) 0%, rgba(3, 23, 62, 0.96) 100%);
  box-shadow: 0 18px 42px rgba(0, 10, 30, 0.28);
}

.audience {
  background: linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}

.section-center {
  text-align: center;
}

.section-center h2 {
  font-size: clamp(30px, 3.4vw, 43px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.step {
  --step-color: var(--teal);
  --step-color-rgb: 23, 143, 124;
  --step-top-line: rgba(244, 249, 255, 0.9);

  position: relative;
  padding: 40px 32px;
  text-align: left;
  background: rgba(7, 31, 82, 0.94);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 10, 30, 0.2);
  border: 1px solid rgba(147, 218, 255, 0.14);
  border-top: 4px solid var(--step-top-line);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
}

.step:nth-child(1) {
  --step-color: #178f7c;
  /* Brand Teal */
  --step-color-rgb: 23, 143, 124;
}

.step:nth-child(2) {
  --step-color: #0077b6;
  /* Clinical Blue */
  --step-color-rgb: 0, 119, 182;
}

.step:nth-child(3) {
  --step-color: #1e40af;
  /* Deep Trust Blue */
  --step-color-rgb: 30, 64, 175;
}

.step:nth-child(4) {
  --step-color: #061d4f;
  /* Brand Navy */
  --step-color-rgb: 6, 29, 79;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--step-color-rgb), 0.14) 0%, rgba(var(--step-color-rgb), 0.01) 100%);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -12% 18px auto;
  width: 170px;
  height: 70px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(var(--step-color-rgb), 0.26), rgba(var(--step-color-rgb), 0) 72%);
  filter: blur(14px);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(0, 10, 30, 0.34);
  border-color: rgba(var(--step-color-rgb), 0.45);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1;
  color: #f7fbff;
  text-shadow: 0 0 20px rgba(247, 251, 255, 0.12);
  opacity: 0.74;
  margin-bottom: 24px;
  font-weight: bold;
  transition: all 0.4s ease;
}

.step:hover .step-number {
  opacity: 0.4;
  transform: scale(1.05) translateX(4px);
}

.step h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.3;
  color: #f7fbff;
}

.step p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(236, 244, 255, 0.9);
  line-height: 1.7;
}

.why {
  background:
    radial-gradient(ellipse at 36% 52%, rgba(6, 29, 79, 0.04), transparent 23%),
    #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 35px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 900;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 26px;
}

.metric {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  min-height: 148px;
  padding: 29px 35px;
  background: #f8fafc;
  border: 1px solid rgba(223, 230, 239, 0.8);
  border-radius: 8px;
}

.metric .circle-icon {
  margin: 0;
}

.metric strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 500;
}

.metric p {
  grid-column: 2;
  margin: -15px 0 0 2px;
  max-width: 220px;
  font-size: 13px;
  font-weight: 700;
}

.metric.wide {
  grid-column: 1 / -1;
  grid-template-columns: 125px 1fr;
}

.metric.wide p {
  grid-column: 2;
  margin: 0;
  max-width: none;
  font-size: 18px;
  line-height: 1.4;
}

.audience {
  padding: 44px 0 37px;
  border-bottom: 0;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 43px;
}

.audience-row div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 67px;
  padding: 0 24px;
  font-size: 13px;
  line-height: 1.45;
}

.audience-row div+div {
  border-left: 1px solid #cbd4df;
}

.line-icon {
  width: 50px;
  height: 50px;
}

.line-icon::before {
  width: 45px;
  height: 45px;
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 38px 0 26px;
  background: radial-gradient(circle at 50% 28%, #0b3675 0%, #05245b 46%, #00183e 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(29px, 3.1vw, 41px);
  line-height: 1.12;
}

.cta .btn {
  margin-top: 26px;
}

.cta p {
  margin: 24px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.map {
  position: absolute;
  inset-block: 0;
  width: 420px;
  opacity: 0.2;
  background:
    radial-gradient(circle at 30% 40%, rgba(23, 143, 124, 0.9) 0 1px, transparent 3px),
    radial-gradient(circle at 46% 49%, rgba(23, 143, 124, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 32%, rgba(23, 143, 124, 0.8) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 29%, rgba(23, 143, 124, 0.45) 30% 31%, transparent 32%),
    linear-gradient(45deg, transparent 45%, rgba(23, 143, 124, 0.5) 46% 47%, transparent 48%);
  clip-path: polygon(7% 0, 100% 9%, 88% 89%, 15% 100%, 0 45%);
}

.map-left {
  left: 0;
}

.map-right {
  right: 0;
  transform: scaleX(-1);
}

.route {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 124px;
  height: 82px;
  border-top: 2px solid rgba(23, 143, 124, 0.48);
  border-radius: 50%;
}

.footer {
  background: #fff;
  scroll-margin-top: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 68px;
  padding: 30px 0 20px;
}

.footer .brand {
  display: inline-flex;
}

.footer-brand .logo-image {
  transform-origin: center center;
}

.footer h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 8px 40px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(6, 29, 79, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-widget span {
  display: block;
  width: 34px;
  height: 34px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.02 3.2A12.77 12.77 0 0 0 5.04 22.48L3.5 28.1l5.76-1.5a12.76 12.76 0 0 0 6.76 1.93h.01A12.67 12.67 0 0 0 28.8 15.87 12.79 12.79 0 0 0 16.02 3.2Zm0 22.96h-.01a10.57 10.57 0 0 1-5.39-1.47l-.39-.23-3.42.9.91-3.33-.26-.43a10.38 10.38 0 0 1-1.6-5.53 10.17 10.17 0 1 1 20.34.01 10.18 10.18 0 0 1-10.18 10.08Zm5.58-7.62c-.3-.15-1.8-.89-2.08-.99-.28-.1-.48-.15-.68.15-.2.3-.78.99-.96 1.19-.18.2-.35.23-.65.08-.3-.15-1.28-.47-2.44-1.51-.9-.8-1.51-1.8-1.69-2.1-.18-.3-.02-.47.13-.62.14-.13.3-.35.45-.53.15-.18.2-.3.3-.5.1-.2.05-.38-.03-.53-.08-.15-.68-1.64-.93-2.24-.25-.59-.5-.5-.68-.51h-.58c-.2 0-.53.08-.8.38-.28.3-1.05 1.03-1.05 2.51s1.08 2.91 1.23 3.11c.15.2 2.13 3.25 5.16 4.56.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.8-.74 2.05-1.45.25-.71.25-1.32.18-1.45-.08-.13-.28-.2-.58-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 20px 42px rgba(6, 29, 79, 0.22);
  transform: translateY(-3px);
}

.whatsapp-widget:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 24, 62, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  position: relative;
  width: min(100%, 500px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 38px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 24, 62, 0.28);
  transform: translateY(18px);
  transition: transform 0.24s ease;
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-dialog h2 {
  margin: 6px 46px 24px 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 143, 124, 0.13);
}

.form-message {
  min-height: 22px;
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.form-message.success {
  color: var(--teal);
}

.form-message.error {
  color: var(--red);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

/* --- Carousel Section --- */
.carousel-section {
  background: var(--soft);
}

.carousel-container {
  margin-top: 50px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-subtitle {
  margin-top: 62px;
}

.carousel-track {
  display: inline-flex;
  gap: 24px;
  padding: 0 4px;
}

.carousel-item {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 29, 79, 0.05);
  border: 1px solid rgba(223, 230, 239, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(23, 143, 124, 0.15);
}

.carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(223, 230, 239, 0.6);
}

.carousel-item h3 {
  padding: 20px;
  margin: 0;
  font-size: 16px;
  color: var(--navy-deep);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    width: min(100% - 48px, 1120px);
    align-items: center;
  }

  .container {
    width: min(100% - 48px, 1024px);
  }

  .hero-grid,
  .about-grid,
  .why-grid {
    gap: 48px;
  }

  .hero-features {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .site-header {
    margin-top: 18px;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    order: 2;
  }

  .header-btn {
    margin-top: 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-dna {
    opacity: 0.07;
    right: -100px;
  }

  .hero-grid,
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .audience-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .audience-row div:nth-child(3) {
    border-left: 0;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container,
  .site-header {
    width: min(100% - 24px, 560px);
  }

  .site-header {
    margin-top: 12px;
    gap: 14px;
  }

  .brand {
    justify-content: center;
    width: 100%;
    max-height: 130px;
    overflow: hidden;
  }

  .site-nav {
    width: 100%;
    gap: 0;
    padding: 3px;
    justify-content: stretch;
    border-radius: 16px;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 11px;
    border-right: 1px solid rgba(166, 197, 255, 0.2);
  }

  .site-nav a:last-child {
    border-right: none;
  }

  .logo-image {
    max-height: 210px;
    transform: none;
  }

  .header-btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 48px;
  }

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

  .hero-statement {
    display: flex;
    flex-direction: column;
  }

  .hero-statement p {
    order: 1;
    margin: 0 0 18px;
  }

  .hero-statement img {
    order: 2;
  }

  .hero-statement .cta-trigger {
    order: 3;
  }

  .hero-copy {
    order: 2;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1;
  }

  .hero-copy p {
    max-width: none;
    font-size: 16px;
  }

  .flag-line {
    max-width: none;
    gap: 24px;
    margin: 24px 0 30px;
  }

  .hero-features,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-copy,
  .hero-statement,
  .section-center,
  .why-copy,
  .cta-content {
    text-align: center;
  }

  .mini-feature {
    min-width: 0;
    justify-content: center;
    text-align: left;
  }

  .hero-statement p {
    margin-top: 24px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.05;
  }

  .section {
    padding: 54px 0;
  }

  .section-copy h2,
  .why-copy h2,
  .section-center h2 {
    font-size: 31px;
  }

  .steps,
  .metrics,
  .audience-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding-inline: 24px;
  }

  .check-list {
    text-align: left;
  }

  .audience-row div {
    border-left: 0 !important;
    padding-inline: 8px;
  }

  .metric,
  .metric.wide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 20px;
  }

  .metric strong {
    font-size: 38px;
  }

  .metric p,
  .metric.wide p {
    grid-column: 1;
    margin: 0;
    max-width: none;
  }

  .metric.wide p {
    font-size: 16px;
  }

  .cta {
    padding: 44px 0 34px;
  }

  .modal-overlay {
    padding: 14px;
  }

  .modal-dialog {
    max-height: calc(100vh - 28px);
    padding: 30px 20px 24px;
    border-radius: 14px;
  }

  .modal-dialog h2 {
    margin-right: 42px;
    font-size: 28px;
  }

  .btn-light,
  .btn-primary {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
    text-align: center;
  }

  .footer-grid>* {
    justify-self: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 20px;
    text-align: center;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-widget span {
    width: 30px;
    height: 30px;
  }

  .carousel-container {
    margin-top: 32px;
    padding-bottom: 12px;
  }

  .carousel-subtitle {
    margin-top: 42px;
  }

  .carousel-track {
    gap: 16px;
    padding: 0 2px;
  }

  .carousel-item {
    flex-basis: min(82vw, 280px);
  }

  .carousel-item h3 {
    padding: 16px;
    font-size: 15px;
  }

  .map,
  .route,
  .hero-dna {
    display: none;
  }
}

@media (max-width: 420px) {
  .btn {
    min-height: 50px;
    padding-inline: 20px;
  }

  .hero-features {
    margin-bottom: 0;
  }

  .mini-feature {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .step {
    padding: 28px 20px;
  }

  .step-number {
    font-size: 44px;
    margin-bottom: 18px;
  }
}
