:root {
  --blue-950: #0a1e3c;
  --blue-900: #0f2d5c;
  --blue-800: #142f6a;
  --red-600: #c8102e;
  --red-300: #ff8096;
  --red-400: #ff6b80;
  --ice-50: #f0f7ff;
  --ice-100: #ebf3fb;
  --text: #1a1a2e;
  --muted: #4b5a6b;
  --muted-soft: #6b7280;
  --white: #ffffff;
  --container: 1200px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --shadow-soft: 0 20px 60px rgba(15, 45, 92, 0.12);
  --shadow-card: 0 12px 32px rgba(15, 45, 92, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Rethink Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-offset {
  padding-top: 152px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 45, 92, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 260ms ease, transform 320ms var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(15, 45, 92, 0.08);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 117px;
  height: 72px;
  overflow: visible;
}

.brand img {
  width: 117px;
  height: auto;
  transform: translateY(-1px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: var(--blue-900);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: color 220ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.primary-nav a:hover {
  color: var(--red-600);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 45, 92, 0.06);
  padding: 12px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--blue-900);
  transition: transform 240ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms ease, color 260ms ease;
}

.btn img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 8px 18px rgba(200, 16, 46, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(200, 16, 46, 0.36);
}

.btn-blue {
  background: #293097;
  box-shadow: 0 8px 18px rgba(41, 48, 151, 0.28);
}

.btn-blue:hover {
  box-shadow: 0 14px 26px rgba(41, 48, 151, 0.32);
}

.btn-outline {
  color: var(--blue-900);
  background: transparent;
  border: 2px solid var(--blue-900);
}

.btn-outline img {
  width: 17px;
  height: 17px;
  transition: transform 260ms var(--ease);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--blue-900);
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(15, 45, 92, 0.16);
}

.btn-outline:hover img {
  transform: translateX(3px);
  filter: brightness(0) invert(1);
}

.btn-small {
  min-height: 41px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
}

.btn-small img {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding-bottom: 80px;
  background: linear-gradient(151deg, var(--ice-50) 0%, var(--ice-100) 50%, var(--white) 100%);
}

.hero-orb,
.cta-orb,
.cta-ring {
  position: absolute;
  pointer-events: none;
}

.hero-orb-red {
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.04);
}

.hero-orb-blue {
  left: -60px;
  bottom: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(15, 45, 92, 0.04);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 544px) minmax(420px, 544px);
  align-items: center;
  gap: 64px;
  min-height: auto;
}

.hero-copy {
  padding-top: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--red-600);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow.pill {
  min-height: 34px;
  padding: 7px 16px;
  color: var(--blue-900);
  letter-spacing: 0.3px;
  text-transform: none;
  background: rgba(15, 45, 92, 0.06);
  border: 1px solid rgba(15, 45, 92, 0.1);
  border-radius: 999px;
}

.eyebrow span,
.section-kicker::before,
.section-kicker::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--red-600);
}

.eyebrow.pill span,
.eyebrow.dark span {
  width: 6px;
  height: 6px;
}

.section-kicker.left::after {
  display: none;
}

.section-kicker.left::before {
  margin-right: 0;
}

.section-kicker.center {
  justify-content: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 24px 0 18px;
  color: var(--blue-900);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 strong,
h2 strong {
  color: var(--red-600);
  font-weight: inherit;
}

.hero-text {
  max-width: 544px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-features article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 13px 17px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid rgba(15, 45, 92, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(15, 45, 92, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.hero-features article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 45, 92, 0.12);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.feature-icon.red {
  background: rgba(200, 16, 46, 0.08);
}

.feature-icon.blue {
  background: rgba(15, 45, 92, 0.07);
}

.feature-icon img {
  width: 18px;
  height: 18px;
}

.hero-media {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 544 / 520;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 22px;
}

.floating-card,
.years-badge,
.units-card {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(15, 45, 92, 0.1);
}

.floating-card {
  left: -24px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 183px;
  padding: 17px 21px;
  background: var(--white);
  border: 1px solid rgba(15, 45, 92, 0.06);
  box-shadow: 0 12px 28px rgba(15, 45, 92, 0.12);
  animation: floatSoft 5s ease-in-out infinite;
}

.floating-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
}

.floating-card img {
  width: 20px;
  height: 20px;
}

.floating-card small {
  display: block;
  color: var(--muted-soft);
  font-size: 13px;
}

.floating-card strong {
  display: block;
  color: var(--blue-900);
  font-size: 15px;
  line-height: 1.5;
}

.years-badge {
  top: 24px;
  right: -20px;
  min-width: 119px;
  padding: 14px 18px 13px;
  color: var(--white);
  text-align: center;
  background: var(--red-600);
  box-shadow: 0 12px 24px rgba(200, 16, 46, 0.22);
  animation: floatSoft 5.4s ease-in-out infinite reverse;
}

.years-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.years-badge span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 540px) minmax(0, 540px);
  align-items: center;
  gap: 72px;
}

.about-media {
  position: relative;
  max-width: 540px;
  margin-top: 14px;
}

.about-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 22px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms var(--ease), transform 1400ms var(--ease);
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.units-card {
  right: -24px;
  bottom: -24px;
  width: 210px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 14px 28px rgba(15, 45, 92, 0.16);
}

.units-card strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.units-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
}

.section-copy h2,
.section-heading h2,
.cta-inner h2 {
  color: var(--blue-900);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-copy h2 {
  margin: 22px 0 22px;
}

.section-copy p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.check-list img {
  width: 18px;
  height: 18px;
}

blockquote {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 67px;
  margin: 0;
  padding: 20px 28px 20px 24px;
  color: var(--blue-900);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  background: linear-gradient(173deg, var(--ice-100), var(--ice-50));
  border-left: 4px solid var(--red-600);
  border-radius: 0 16px 16px 0;
}

blockquote img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.services {
  background: var(--ice-50);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0 14px;
}

.section-heading p {
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  min-height: 325px;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: none;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 45, 92, 0.08);
}

.service-card-tall {
  min-height: 478px;
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-card:hover .service-image img,
.differential-card:hover > img {
  transform: scale(1.045);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(15, 45, 92, 0.5));
}

.tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.tag.red {
  background: var(--red-600);
}

.tag.blue {
  background: var(--blue-900);
}

.tag img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tag.wide {
  min-width: 195px;
}

.service-body {
  padding: 24px 28px 28px;
}

.service-body.compact {
  min-height: 123px;
}

.service-body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.service-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.service-body li img {
  width: 14px;
  height: 14px;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red-600);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: gap 220ms var(--ease), border-color 220ms ease;
}

.service-body a:hover {
  gap: 10px;
  border-color: currentColor;
}

.service-body a img {
  width: 14px;
  height: 14px;
}

.service-body .blue-link {
  color: var(--blue-900);
}

.cities {
  margin: 10px 0 32px;
}

.cities strong {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cities div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cities span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 45, 92, 0.07);
  border-radius: 999px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.differential-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: none;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.differential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 45, 92, 0.08);
}

.differential-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.differential-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(10, 25, 50, 0.82));
}

.differential-content {
  position: absolute;
  inset: auto 24px 24px;
  color: var(--white);
}

.differential-content span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.differential-content span.red {
  background: var(--red-600);
}

.differential-content span.blue {
  background: var(--blue-900);
}

.differential-content img {
  width: 20px;
  height: 20px;
}

.differential-content h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.3;
}

.differential-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background: linear-gradient(157deg, #0a1e3c 0%, var(--blue-900) 60%, var(--blue-800) 100%);
}

.cta-ring {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.ring-one {
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
}

.ring-two {
  top: 30px;
  right: 30px;
  width: 180px;
  height: 180px;
}

.cta-orb {
  left: -40px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.eyebrow.dark {
  justify-content: center;
  min-height: 34px;
  padding: 7px 18px;
  color: var(--red-300);
  letter-spacing: 0.5px;
  text-transform: none;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 999px;
}

.eyebrow.dark span {
  background: var(--red-300);
}

.cta-inner h2 {
  max-width: 760px;
  margin: 22px auto 18px;
  color: var(--white);
  font-size: 50px;
  line-height: 1.2;
}

.cta-inner h2 strong {
  color: var(--red-400);
}

.cta-inner > p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.8;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
}

.cta-meta a,
.cta-meta span:not(:nth-child(2)) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-meta img {
  width: 15px;
  height: 15px;
}

.site-footer {
  color: var(--white);
  background: var(--blue-950);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.7fr) minmax(280px, 1fr);
  gap: 56px;
  padding: 64px 0 40px;
}

.footer-brand > img {
  width: 117px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.14));
}

.footer-brand p {
  max-width: 462px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background 220ms ease, transform 220ms var(--ease);
}

.social-links a:hover {
  background: rgba(200, 16, 46, 0.25);
  transform: translateY(-3px);
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.5;
  transition: color 220ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  align-items: flex-start;
}

.footer-contact span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.15);
}

.footer-contact img {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 61px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  line-height: 1.5;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: var(--red-600);
  box-shadow: 0 16px 36px rgba(200, 16, 46, 0.38);
  animation: pulseFloat 3.2s ease-in-out infinite;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 44px rgba(200, 16, 46, 0.44);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal="down"] {
  transform: translateY(-18px);
}

.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(200, 16, 46, 0.34);
  }
  50% {
    box-shadow: 0 16px 36px rgba(200, 16, 46, 0.46), 0 0 0 9px rgba(200, 16, 46, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media,
  .about-media {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 20px auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 45, 92, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms var(--ease), opacity 220ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 14px 10px;
    border-radius: 10px;
  }

  .primary-nav a:hover {
    background: rgba(15, 45, 92, 0.06);
  }

  .primary-nav a::after {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  h1 {
    font-size: 44px;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-inner h2 {
    font-size: 36px;
  }

  .services-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-tall {
    min-height: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    width: 98px;
  }

  .brand img {
    width: 98px;
  }

  .section-offset {
    padding-top: 152px;
  }

  .hero {
    padding-bottom: 80px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow.pill {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }

  h1 {
    margin-top: 20px;
    font-size: 36px;
    line-height: 1.16;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions,
  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    justify-items: center;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 20px;
  }

  .hero-features article {
    justify-content: center;
    text-align: center;
  }

  .floating-card {
    left: 12px;
    bottom: 14px;
    min-width: 170px;
    padding: 14px;
  }

  .years-badge {
    right: 12px;
    top: 12px;
  }

  .units-card {
    right: 12px;
    bottom: -28px;
    width: 190px;
  }

  .section-copy {
    padding-top: 12px;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-inner h2 {
    font-size: 31px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading p,
  .cta-inner > p {
    font-size: 16px;
  }

  .section-kicker.center {
    width: 100%;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 20px;
  }

  blockquote {
    align-items: flex-start;
    padding: 18px 20px;
    font-size: 16px;
  }

  .service-body {
    padding: 22px 20px 24px;
  }

  .tag {
    max-width: calc(100% - 32px);
    font-size: 13px;
  }

  .differential-card {
    min-height: 260px;
  }

  .final-cta {
    padding: 88px 0;
  }

  .cta-meta {
    flex-direction: column;
  }

  .cta-meta > span:nth-child(2) {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand > img {
    margin-inline: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact a {
    align-items: flex-start;
    word-break: break-word;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }
}
