﻿:root {
  --primary: #e31e24;
  --primary-dark: #b5161a;
  --secondary: #1b4079;
  --secondary-dark: #0f284f;
  --white: #ffffff;
  --ink: #152642;
  --line: #dbe2ef;

  /* new design tokens */
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(15, 40, 79, 0.12);
  --shadow-hard: 0 18px 45px rgba(10, 22, 45, 0.24);
  --shadow-glow: 0 18px 50px rgba(227, 30, 36, 0.18);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.2, 1.1, 0.2, 1);

  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 100% 0%, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0) 60%),
    radial-gradient(900px 520px at 10% 20%, rgba(27, 64, 121, 0.12), rgba(27, 64, 121, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 45%, #ffffff 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  overflow-x: hidden;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--secondary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.88rem;
}

.topbar-content {
  min-height: 44px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: #dfe9ff;
  font-weight: 600;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(27, 64, 121, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 12px 30px rgba(7, 18, 40, 0.22);
  transition: transform 0.35s var(--ease-out), background-color 0.35s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(12, 34, 69, 0.92);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.68rem;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.logo-text {
  font-weight: 700;
  font-size: 0.97rem;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(227, 30, 36, 0.45);
  outline-offset: 3px;
}

.header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.nav a {
  position: relative;
  overflow: hidden;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, rgba(227, 30, 36, 0), rgba(227, 30, 36, 0.95), rgba(227, 30, 36, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}
.nav a:focus-visible {
  outline: 3px solid rgba(227, 30, 36, 0.35);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  padding: 0.84rem 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background-color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}
.btn:active {
  transform: translateY(0) scale(0.99);
}
.btn:focus-visible {
  outline: 3px solid rgba(227, 30, 36, 0.35);
  outline-offset: 3px;
}

.btn-whatsapp {
  background: var(--white);
  color: var(--secondary);
  box-shadow: 0 6px 18px rgba(8, 20, 40, 0.22);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.2rem, 6vw, 5.2rem) 0;
  background:
    radial-gradient(850px 480px at 70% 20%, rgba(227, 30, 36, 0.35), rgba(227, 30, 36, 0) 60%),
    radial-gradient(900px 520px at 10% 70%, rgba(0, 168, 255, 0.12), rgba(0, 168, 255, 0) 55%),
    linear-gradient(110deg, rgba(27, 64, 121, 0.96) 0%, rgba(12, 34, 69, 0.92) 60%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--noise);
  mix-blend-mode: overlay;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 36px 36px;
  opacity: 0.15;
  z-index: -1;
  animation: grid-drift 14s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}
.hero-panel {
  animation: fade-up 0.85s var(--ease-out) both, float 7.5s ease-in-out 1.2s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-panel {
    animation: none;
  }
}

.hero-copy {
  animation: fade-up 0.7s var(--ease-out) both;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #f7bcc0;
  margin-bottom: 0.9rem;
}

.eyebrow.secondary {
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  max-width: 16ch;
}

.hero-subtitle {
  margin-top: 1.15rem;
  max-width: 58ch;
  color: #e4ecff;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(227, 30, 36, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: var(--white);
  background: transparent;
}

.hero-points {
  list-style: none;
  margin-top: 1.3rem;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
  color: #d9e6ff;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow-hard);
  animation: fade-up 0.85s var(--ease-out) both;
  transform-origin: top right;
}
.hero-panel:hover {
  box-shadow: var(--shadow-hard), var(--shadow-glow);
  transform: translateY(-2px);
}

.hero-panel h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.panel-intro {
  margin-top: 0.55rem;
  color: #d7e4ff;
  font-size: 0.94rem;
}

.panel-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.72rem;
}

.panel-grid article {
  border-radius: 10px;
  background: rgba(8, 22, 45, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.8rem;
}

.panel-grid strong {
  display: block;
  font-size: 1.05rem;
}

.panel-grid span {
  display: block;
  margin-top: 0.3rem;
  color: #d4e3ff;
  font-size: 0.87rem;
}

.panel-list {
  list-style: none;
  margin-top: 0.95rem;
  display: grid;
  gap: 0.42rem;
}

.panel-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #dbe7ff;
  font-size: 0.9rem;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.btn-panel {
  margin-top: 1rem;
  width: 100%;
  background: var(--white);
  color: var(--secondary-dark);
}

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

.trust-content {
  min-height: 90px;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.trust-content p {
  font-weight: 700;
  color: var(--secondary);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pills span {
  border: 1px solid #cfd8ea;
  border-radius: 999px;
  padding: 0.36rem 0.74rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #294e87;
}

.differentials,
.categories,
.process,
.about,
.middle-cta,
.location {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

h2 {
  color: var(--secondary-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

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

.diff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hard);
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f0f5ff 0%, #dce8ff 100%);
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
}
.diff-card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 12px 24px rgba(27, 64, 121, 0.16);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diff-card h3 {
  margin-top: 0.88rem;
  color: var(--secondary-dark);
}

.diff-card p {
  margin-top: 0.45rem;
  color: #3f4f6a;
}

.section-subtitle {
  margin-top: 0.65rem;
  color: #4d5d79;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.category-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-hard);
}
.category-card .card-image {
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.category-card:hover .card-image {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.08);
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.card-content {
  padding: 1rem 1.2rem 1.15rem;
}

.card-content p {
  margin-top: 0.45rem;
  color: #42526d;
}

.card-content a {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.alt .card-image {
  background:
    linear-gradient(140deg, rgba(27, 64, 121, 0.28), rgba(227, 30, 36, 0.28)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 700'%3E%3Cdefs%3E%3ClinearGradient id='bg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f4f8ff'/%3E%3Cstop offset='1' stop-color='%23d9e6ff'/%3E%3C/linearGradient%3E%3ClinearGradient id='metal' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%2366748e'/%3E%3Cstop offset='0.5' stop-color='%2397a4ba'/%3E%3Cstop offset='1' stop-color='%2354617a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='700' fill='url(%23bg)'/%3E%3Cellipse cx='620' cy='590' rx='420' ry='58' fill='%231b407922'/%3E%3Ccircle cx='510' cy='360' r='180' fill='url(%23metal)' stroke='%23364561' stroke-width='10'/%3E%3Ccircle cx='510' cy='360' r='95' fill='%23ecf1ff' stroke='%2361718a' stroke-width='8'/%3E%3Ccircle cx='510' cy='360' r='48' fill='%23505e77'/%3E%3Crect x='645' y='300' width='230' height='120' rx='26' fill='url(%23metal)' stroke='%23364561' stroke-width='9'/%3E%3Crect x='355' y='305' width='120' height='110' rx='20' fill='%238492a8' stroke='%23364561' stroke-width='8'/%3E%3Ccircle cx='399' cy='360' r='16' fill='%23e31e24'/%3E%3C/svg%3E")
    center/cover no-repeat;
}

.starter .card-image {
  background:
    linear-gradient(140deg, rgba(27, 64, 121, 0.2), rgba(227, 30, 36, 0.12)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 700'%3E%3Cdefs%3E%3ClinearGradient id='bg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f3f7ff'/%3E%3Cstop offset='1' stop-color='%23d9e6ff'/%3E%3C/linearGradient%3E%3ClinearGradient id='metal' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23667690'/%3E%3Cstop offset='.5' stop-color='%2395a3bb'/%3E%3Cstop offset='1' stop-color='%2352637e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='700' fill='url(%23bg)'/%3E%3Cellipse cx='620' cy='590' rx='410' ry='55' fill='%231b407922'/%3E%3Crect x='295' y='270' width='490' height='195' rx='84' fill='url(%23metal)' stroke='%23364561' stroke-width='9'/%3E%3Crect x='194' y='307' width='132' height='116' rx='22' fill='%23718098' stroke='%23364561' stroke-width='9'/%3E%3Ccircle cx='258' cy='364' r='23' fill='%23e31e24'/%3E%3Crect x='780' y='294' width='188' height='138' rx='23' fill='%238997ae' stroke='%23364561' stroke-width='9'/%3E%3Ccircle cx='973' cy='363' r='52' fill='%2352637e' stroke='%23364561' stroke-width='9'/%3E%3Ccircle cx='973' cy='363' r='20' fill='%23edf2ff'/%3E%3Crect x='470' y='217' width='95' height='45' rx='12' fill='%2352637e'/%3E%3Crect x='572' y='217' width='95' height='45' rx='12' fill='%2352637e'/%3E%3Cpath d='M225 286h62M256 253v62' stroke='%23e31e24' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M330 364h46M860 364h58' stroke='%23e31e24' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E")
    center/cover no-repeat;
}

.components .card-image {
  background:
    linear-gradient(140deg, rgba(27, 64, 121, 0.28), rgba(227, 30, 36, 0.24)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 700'%3E%3Cdefs%3E%3ClinearGradient id='bg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f4f8ff'/%3E%3Cstop offset='1' stop-color='%23dce8ff'/%3E%3C/linearGradient%3E%3ClinearGradient id='m' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23687690'/%3E%3Cstop offset='1' stop-color='%2352617c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='700' fill='url(%23bg)'/%3E%3Cellipse cx='600' cy='575' rx='450' ry='58' fill='%231b407922'/%3E%3Crect x='210' y='255' width='230' height='170' rx='24' fill='url(%23m)' stroke='%23364561' stroke-width='8'/%3E%3Crect x='270' y='305' width='110' height='70' rx='12' fill='%23e9efff'/%3E%3Crect x='485' y='265' width='240' height='160' rx='22' fill='url(%23m)' stroke='%23364561' stroke-width='8'/%3E%3Ccircle cx='605' cy='345' r='52' fill='%23e9efff'/%3E%3Ccircle cx='605' cy='345' r='24' fill='%2352617c'/%3E%3Crect x='770' y='260' width='225' height='165' rx='24' fill='url(%23m)' stroke='%23364561' stroke-width='8'/%3E%3Cpath d='M810 312h145M810 345h145M810 378h145' stroke='%23e31e24' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E")
    center/cover no-repeat;
}

.process {
  background: linear-gradient(180deg, #f2f7ff 0%, #f9fbff 100%);
}

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

.process-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.process-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 800;
}

.process-grid h3 {
  margin-top: 0.75rem;
  color: var(--secondary-dark);
}

.process-grid p {
  margin-top: 0.4rem;
  color: #42526d;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: start;
}

.about-grid p {
  margin-top: 0.82rem;
}

.about-highlight {
  border-left: 4px solid var(--primary);
  padding-left: 0.8rem;
  color: var(--secondary-dark);
  font-weight: 700;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.about-metrics article {
  border-radius: var(--radius);
  background: var(--secondary-dark);
  color: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.about-metrics strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

.about-metrics span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #d6e3ff;
}

.middle-cta {
  background:
    linear-gradient(120deg, var(--secondary-dark), var(--secondary)),
    radial-gradient(circle at 15% 70%, rgba(227, 30, 36, 0.45), rgba(227, 30, 36, 0));
  color: var(--white);
}

.middle-cta-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.middle-cta-copy {
  max-width: 760px;
}

.middle-cta-kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #ffd1d3;
  background: rgba(227, 30, 36, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
}

.middle-cta h2 {
  color: var(--white);
  margin-top: 0.6rem;
}

.middle-cta p {
  margin-top: 0.82rem;
  margin-bottom: 1.15rem;
  color: #dce7ff;
}

.middle-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.middle-cta-tags span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #e8efff;
  border-radius: 999px;
  padding: 0.32rem 0.64rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.middle-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(12, 30, 58, 0.52);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.middle-cta-card h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.middle-cta-card ul {
  margin-top: 0.7rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.middle-cta-card li {
  position: relative;
  padding-left: 1.1rem;
  color: #dce7ff;
}

.middle-cta-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.middle-cta-time {
  margin: 0.9rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  color: #f0f4ff;
  font-size: 0.9rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.location-kicker {
  display: inline-block;
  background: #edf3ff;
  color: var(--secondary);
  border: 1px solid #d4e2ff;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.location-lead {
  margin-top: 0.65rem;
  color: #40506b;
}

.contact-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-badges span {
  background: #f7faff;
  border: 1px solid #dbe6fa;
  color: #2c4f84;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-list {
  margin-top: 0.75rem;
}

.location-card p {
  margin-top: 0.65rem;
}

.request-card {
  margin-top: 0.9rem;
  border-radius: 12px;
  border: 1px solid #d9e2f3;
  background: linear-gradient(160deg, #f9fbff 0%, #f0f5ff 100%);
  padding: 0.9rem;
}

.request-card h3 {
  color: var(--secondary-dark);
  font-size: 1rem;
}

.request-card ul {
  list-style: none;
  margin-top: 0.55rem;
  display: grid;
  gap: 0.36rem;
}

.request-card li {
  position: relative;
  padding-left: 1.1rem;
  color: #40506c;
  font-size: 0.92rem;
}

.request-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.contact-actions {
  margin-top: 1.05rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-outline-red {
  border: 2px solid var(--primary);
  color: var(--white);
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.25);
}

.btn-outline-blue {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: var(--white);
}

.btn-outline-blue:hover {
  background: #f0f5ff;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  height: 100%;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.footer {
  background: var(--secondary-dark);
  color: var(--white);
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  gap: 0.72rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.footer-nav a {
  color: #dae7ff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2ee071, #1fb85a);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 30px rgba(31, 184, 90, 0.32);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(46, 224, 113, 0.34), rgba(46, 224, 113, 0) 60%);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.floating-whatsapp:hover::before {
  opacity: 1;
  transform: scale(1);
}

.floating-whatsapp {
  animation: float 6.5s ease-in-out 1.8s infinite;
}
.floating-whatsapp:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 34px rgba(31, 184, 90, 0.4);
}
@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp {
    animation: none;
  }
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  display: block;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.16s;
}
.reveal.delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .header-content {
    min-height: 74px;
  }

  .hero-grid,
  .about-grid,
  .middle-cta-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .topbar-content {
    min-height: auto;
    padding: 0.6rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content {
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    background: rgba(12, 34, 69, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 0.9rem;
    box-shadow: 0 16px 30px rgba(7, 18, 40, 0.35);
  }

  .header.nav-open .header-menu {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav a {
    width: 100%;
    padding: 0.65rem 0.8rem;
  }

  .btn-whatsapp {
    width: 100%;
  }

  .trust-content {
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .diff-grid,
  .category-grid,
  .process-grid,
  .location-grid,
  .about-metrics {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  h1 {
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }
}

