﻿/* =========================================================
   GLOBAL / INDEX
   Archivo: css/style.css
   Propósito: Estilos globales y exclusivos de index.html
   ⚠️ No incluir estilos del dashboard/factura aquí
   ========================================================= */

/* ========== Reset mínimo y base tipográfica ========== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 2px solid rgba(0, 160, 192, .34);
}
button, input, select, textarea { font: inherit; }

:where(.right-image img,
  .mobile-hero-image img,
  .project-sections__character-img,
  .project-section__media img,
  .project-split-cta__media,
  .project-feature-panel__media img,
  .project-quality-mobile-visual img,
  .miss-invoice-img) {
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0, 160, 192, .34);
}

:where(.project-trust-strip__image,
  .project-trust-strip__image img,
  .project-cta__media,
  .project-cta__media img,
  .site-footer__mascot,
  .site-footer__mascot img) {
  border: 0;
}

/* ========== Tema / Variables ========== */
:root {
  --color-primario: #00A0C0;
  --color-primario-600: #0088A3;
  --aqua-card: #eefcfd;
  --aqua-card-strong: #ddf8fb;
  --color-texto: #111;
  --color-muted: #5a6170;
  --color-bg: #ffffff;
  --color-borde: #e6e8ee;
  --surface: rgba(255, 255, 255, .94);
  --surface-soft: #f6fbfc;
  --shadow-soft: 0 16px 40px rgba(17, 28, 45, .075);
  --shadow-card: 0 22px 54px rgba(17, 28, 45, .09);
  --radius: 12px;
  --shadow: 0 10px 24px rgba(17, 28, 45, 0.08);
}

/* ========== Body ========== */
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-texto);
  background: var(--color-bg);
  line-height: 1.55;
  min-height: 100dvh;
  display: grid;
  place-items: center; /* Centro vertical + horizontal para el bloque .welcome */
}

body.info-page {
  display: block;
  min-height: 100vh;
  background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 58%);
}

.info-header,
.info-main,
.info-footer {
  width: min(980px, 92vw);
  margin: 0 auto;
}

body.info-page .site-footer {
  width: min(980px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.info-header__brand {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.info-header__back {
  color: var(--color-primario);
  font-weight: 700;
  text-decoration: none;
}

.info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin: 24px 0;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-primario), var(--color-primario-600));
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 160, 192, .2);
}

.info-hero p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.info-hero span {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
  line-height: 1.65;
}

.info-hero__media {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 20px 40px rgba(17, 28, 45, .18),
    0 0 0 9px rgba(255, 255, 255, .24);
  overflow: hidden;
  animation: assistantFloat 5.8s ease-in-out infinite;
}

.info-hero__media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border: 0;
}

.info-card {
  margin: 0 0 36px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(17, 28, 45, .08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 28, 45, .08);
}

.info-card h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.info-card p,
.info-card li {
  color: var(--color-muted);
  line-height: 1.75;
}

.info-card p {
  margin: 0 0 16px;
}

.info-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.info-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 160, 192, .22);
  border-radius: 999px;
  background: rgba(0, 160, 192, .08);
}

.info-price strong {
  color: var(--color-primario);
}

.assistant-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 36px;
}

.assistant-service-strip article {
  position: relative;
  display: grid;
  grid-template-rows: 150px auto;
  overflow: hidden;
  border: 2px solid rgba(0, 160, 192, .24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 252, 253, .66), #fff 42%),
    #fff;
  box-shadow:
    0 0 0 4px rgba(0, 160, 192, .045),
    0 14px 28px rgba(17, 28, 45, .065);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.assistant-service-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primario), #8ee1dd);
}

.assistant-service-strip article:hover {
  border-color: rgba(0, 160, 192, .45);
  box-shadow:
    0 0 0 5px rgba(0, 160, 192, .06),
    0 18px 36px rgba(17, 28, 45, .09);
  transform: translateY(-3px);
}

.assistant-service-strip img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 14px;
  border: 0;
  background: linear-gradient(180deg, #f7fcfc, #ffffff);
  transition: transform .28s ease;
}

.assistant-service-strip article:hover img {
  transform: translateY(-3px) scale(1.025);
}

.assistant-service-strip div {
  padding: 18px;
}

.assistant-service-strip h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.25;
}

.assistant-service-strip p {
  margin: 0;
  color: var(--color-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.assistant-image-card {
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  border-color: rgba(0, 160, 192, .22);
  box-shadow:
    0 0 0 4px rgba(0, 160, 192, .04),
    0 16px 34px rgba(17, 28, 45, .07);
}

.assistant-image-card--right {
  grid-template-columns: minmax(0, 1fr) minmax(210px, .72fr);
}

.assistant-image-card__copy {
  min-width: 0;
}

.assistant-image-card__media {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 210px;
  border: 2px solid rgba(0, 160, 192, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 160, 192, .12), transparent 44%),
    linear-gradient(180deg, #ffffff, #f4fcfc);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .62);
  overflow: hidden;
}

.assistant-image-card__media img {
  width: min(88%, 300px);
  max-height: 250px;
  object-fit: contain;
  padding: 10px;
  border: 0;
  animation: assistantImageFloat 5.8s ease-in-out infinite;
}

.assistant-seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  align-items: center;
  gap: clamp(20px, 4vw, 34px);
  margin: 0 0 36px;
  padding: clamp(28px, 5vw, 46px);
  border: 2px solid rgba(0, 160, 192, .24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 160, 192, .1), transparent 38%),
    linear-gradient(180deg, #ffffff, #f5fbfb);
  box-shadow:
    0 0 0 4px rgba(0, 160, 192, .045),
    0 16px 34px rgba(17, 28, 45, .075);
}

.assistant-seo-panel__copy p:first-child {
  margin: 0 0 10px;
  color: var(--color-primario);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.assistant-seo-panel h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(1.45rem, 3.4vw, 2.25rem);
  line-height: 1.18;
}

.assistant-seo-panel p:last-child {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.assistant-seo-panel__media {
  display: grid;
  place-items: center;
  margin: 0;
}

.assistant-seo-panel__media img {
  width: min(100%, 230px);
  max-height: 240px;
  object-fit: contain;
  border: 0;
  animation: assistantImageFloat 6.2s ease-in-out infinite;
}

.assistant-process {
  margin: 0 0 36px;
  padding: clamp(28px, 5vw, 44px);
  border: 2px solid rgba(142, 225, 221, .32);
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .16);
}

.assistant-process__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 190px);
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.assistant-process h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  line-height: 1.18;
}

.assistant-process__header img {
  justify-self: end;
  width: min(100%, 180px);
  max-height: 160px;
  object-fit: contain;
  padding: 10px;
  border: 2px solid rgba(142, 225, 221, .32);
  border-radius: 8px;
  background: #fff;
  animation: assistantImageFloat 6s ease-in-out infinite;
}

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

.assistant-process__steps article {
  padding: 18px;
  border: 1px solid rgba(142, 225, 221, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

@keyframes assistantImageFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.015);
  }
}

.assistant-process__steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #8ee1dd;
  color: #111827;
  font-weight: 700;
}

.assistant-process__steps h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.assistant-process__steps p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  line-height: 1.65;
}

.assistant-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  width: min(100%, 720px);
  margin: 24px auto 0;
}

.assistant-contact-form label {
  color: #111827;
  font-size: .9rem;
  font-weight: 700;
}

.info-contact {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-color: rgba(0, 160, 192, .18);
  background:
    radial-gradient(circle at 88% 12%, rgba(142, 225, 221, .28), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4fcfc);
}

.info-contact::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 28px;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(244, 183, 64, .62);
  border-radius: 8px;
  transform: rotate(14deg);
}

.info-contact h2,
.info-contact p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.assistant-contact-form input,
.assistant-contact-form select,
.assistant-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 28, 45, .14);
  border-radius: 8px;
  background: #fff;
  color: #111827;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.assistant-contact-form label[for="contactHelp"],
.assistant-contact-form select,
.assistant-contact-form label[for="reservationDate"],
.assistant-contact-form input[type="date"],
.reservation-note,
.assistant-contact-form label[for="contactMessage"],
.assistant-contact-form textarea {
  grid-column: 1 / -1;
}

.reservation-note {
  margin: -6px 0 4px;
  padding: 10px 12px;
  border-left: 4px solid #08c7cf;
  border-radius: 8px;
  background: rgba(8, 199, 207, .08);
  color: #23424a;
  font-size: .9rem;
  font-weight: 600;
  text-align: left;
}

.assistant-contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.assistant-contact-form input:focus,
.assistant-contact-form select:focus,
.assistant-contact-form textarea:focus {
  border-color: rgba(0, 160, 192, .62);
  box-shadow: 0 0 0 4px rgba(0, 160, 192, .1);
}

.assistant-contact-form .btn {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 280px);
  margin-top: 6px;
}

.info-footer {
  padding: 24px 0 40px;
  color: var(--color-muted);
}

/* =========================================================
   SELECTOR DE IDIOMA (barra pequeña flotante)
   ========================================================= */
.language-selector {
  position: fixed;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.language-selector button {
  border: 1px solid var(--color-borde);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 2px 8px rgba(17, 28, 45, 0.05);
}

.language-selector button:hover {
  transform: translateY(-1px);
  border-color: var(--color-primario);
  box-shadow: 0 6px 16px rgba(17, 28, 45, 0.08);
}

/* =========================================================
   CONTENEDOR DE BIENVENIDA
   ========================================================= */
.welcome {
  width: min(980px, 92vw);
  text-align: center;
  padding: clamp(24px, 6vw, 64px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-borde);
  background: #fff;
  animation: cardEnter .5s ease both;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* =========================================================
   TÍTULO PRINCIPAL CON ANIMACIÓN EN “horas/minutos”
   ========================================================= */
#main-title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .2px;
}

/* Texto previo “Tus facturas en ” */
#beforeText { color: var(--color-texto); }

/* Texto tachado “horas” con animación */
.wrong-text {
  color: #d93025; /* rojo */
  position: relative;
  display: inline-block;
  margin: 0 .25ch;
  text-decoration: line-through;
  text-decoration-color: #d93025;
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none; /* para que la línea no salte las letras */
  animation: wrongStrike 1s ease forwards; /* animación del tachado */
}

/* Animación: la línea se dibuja de izquierda a derecha */
@keyframes wrongStrike {
  from {
    text-decoration-color: transparent;
    text-decoration-thickness: 0;
  }
  to {
    text-decoration-color: #d93025;
    text-decoration-thickness: 3px;
  }
}

/* Texto “minutos” con aparición + resaltado */
#rightText {
  color: var(--color-primario); /* azul */
  display: inline-block;
  margin-left: .35ch;
  opacity: 0;
  transform: translateY(6px);
  position: relative;
  /* Aparición y resaltado de fondo (una sola vez) */
  animation: rightReveal .8s ease .65s forwards, highlightBg 1.2s ease .65s forwards;
}

#rightText.active {
  animation: rightReveal .2s ease forwards, minuteBounce .8s cubic-bezier(.2, .9, .25, 1.25) forwards, highlightBg 1.2s ease forwards;
}

/* Aparición suave del texto */
@keyframes rightReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes minuteBounce {
  0% { transform: translateY(10px) scale(.92); }
  35% { transform: translateY(-14px) scale(1.1); }
  55% { transform: translateY(4px) scale(.98); }
  72% { transform: translateY(-6px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

/* Resaltado de fondo animado para “minutos” */
@keyframes highlightBg {
  0%   { background: rgba(255, 230, 0, 0.72); }
  60%  { background: rgba(255, 230, 0, 0.72); }
  100% { background: transparent; }
}

/* Subtítulo */
#subtitle {
  margin: 8px 0 22px 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 2.6vw, 1.125rem);
}

.pay-promo {
  width: min(100%, 660px);
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(0, 160, 192, .18);
  border-radius: 8px;
  background: rgba(0, 160, 192, .07);
  color: #23424a;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.55;
}

.mobile-hero-image {
  display: none;
}

/* =========================================================
   BOTONES DE ACCIÓN
   ========================================================= */
.buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.btn {
  --padY: 12px;
  --padX: 18px;
  display: inline-block;
  padding: var(--padY) var(--padX);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  user-select: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primario (Iniciar sesión) */
.btn-primary {
  background: var(--color-primario);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 160, 192, .25);
}
.btn-primary:hover { background: var(--color-primario-600); }

/* Secundario (Registrarse) */
.btn-secondary {
  background: #111827;  /* gris muy oscuro elegante */
  color: #fff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, .2);
}
.btn-secondary:hover { filter: brightness(1.05); }

/* Outline (Entrar sin registrarse) */
.btn-outline {
  background: transparent;
  color: var(--color-primario);
  border-color: var(--color-primario);
}
.btn-outline:hover {
  background: rgba(0, 160, 192, .08);
}

.btn-service {
  background: #111827;
  color: #fff;
  border-color: #111827;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .18);
}

.btn-service:hover {
  background: #1f2937;
  border-color: #1f2937;
}

/* Accesibilidad foco */
.btn:focus-visible,
.language-selector button:focus-visible {
  outline: 3px solid rgba(0, 160, 192, .35);
  outline-offset: 2px;
  border-radius: 999px;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 720px) {
  .welcome { padding: 28px 16px; }
  .buttons { gap: 10px; }
  .btn { --padY: 10px; --padX: 16px; }
  .right-image {
    left: 16px;
    opacity: .35;
  }

  .right-image img {
    max-width: 150px;
  }
}
.right-image {
  position: absolute;
  top: 55%;
  left: 40px;            /* ahora a la izquierda */
  transform: translateY(-50%);
  z-index: 0;            /* detrás del texto */
  opacity: 0.9;          /* un poco más suave */
}

.right-image img {
  max-width: 220px;      /* más pequeña */
  width: 100%;
  height: auto;
  transform-origin: 50% 85%;
  will-change: transform;
  animation: friendlyFloat 4.8s ease-in-out infinite;
}

/* =========================================================
   DESCRIPCIÓN DEL PROYECTO / SEO
   Se agrega debajo del diseño original sin modificarlo
   ========================================================= */
.project-sections {
  position: absolute;
  top: calc(100dvh - 120px);
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  z-index: 1;
  display: grid;
  gap: clamp(30px, 5vw, 52px);
  padding: clamp(36px, 6vw, 58px) 0 86px;
  isolation: isolate;
}

.project-sections::before {
  content: "";
  position: absolute;
  inset: 0 50% auto;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #edfafa 34%, #ffffff 78%);
}

.project-progress-path {
  position: absolute;
  top: clamp(150px, 18vw, 210px);
  bottom: 260px;
  left: clamp(-28px, -4vw, -18px);
  z-index: -1;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 160, 192, .22) 10%, rgba(0, 160, 192, .18) 86%, transparent);
}

.project-progress-path span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-primario);
  box-shadow: 0 10px 22px rgba(0, 160, 192, .22);
  transform: translateX(-50%);
  will-change: transform, opacity;
  animation: pathPulse 4.8s ease-in-out infinite;
}

.project-progress-path span:nth-child(1) { top: 4%; }
.project-progress-path span:nth-child(2) { top: 40%; animation-delay: .7s; }
.project-progress-path span:nth-child(3) { top: 64%; animation-delay: 1.4s; }
.project-progress-path span:nth-child(4) { top: 88%; animation-delay: 2.1s; }

.reveal-card {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

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

@keyframes pathPulse {
  0%, 100% {
    opacity: .72;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}

.project-sections__intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: clamp(150px, 24vw, 250px) auto clamp(4px, 2vw, 18px);
  padding: clamp(42px, 7vw, 68px) clamp(24px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(17, 28, 45, .075);
  border-radius: 10px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 28%, rgba(0, 160, 192, .08) 45%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .99) 44%, rgba(248, 251, 255, .96) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .96)),
    #fff;
  background-size: 220% 100%, auto, auto;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .86) inset,
    0 24px 70px rgba(0, 160, 192, .12),
    var(--shadow-card);
  overflow: visible;
  animation: introCardReveal .68s cubic-bezier(.2, .78, .18, 1) both;
}

.project-sections__eyebrow {
  max-width: 760px;
  margin: -22px auto 4px;
  text-align: center;
}

.project-sections__intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(210px, 46vw);
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--color-primario), #00B0C0, transparent);
  transform: translateX(-50%);
  z-index: 2;
}

.project-sections__intro::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 160, 192, .08);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
}

.project-sections__intro-copy {
  position: relative;
  z-index: 3;
}

.project-sections__intro-copy::before {
  content: "";
  position: absolute;
  inset: -22px -18px;
  z-index: -1;
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 160, 192, .07), transparent),
    repeating-linear-gradient(0deg, rgba(17, 28, 45, .035) 0 1px, transparent 1px 15px);
  opacity: .78;
  transform: scaleX(.92);
  will-change: transform, opacity;
  animation: introGridFocus 4.2s ease-in-out infinite;
}

.project-sections__character-img {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 238px);
  z-index: -1;
  width: calc(100% - 28px);
  overflow: hidden;
  margin: 0;
  border-radius: 16px 16px 8px 8px;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 22px 32px rgba(17, 28, 45, .1))
    drop-shadow(0 2px 0 rgba(255, 255, 255, .75));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 72%, transparent 100%);
  animation: characterHold 5.2s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.project-sections__character-img img {
  width: 100%;
  height: auto;
  opacity: .86;
  filter: grayscale(.06) brightness(1.08) contrast(1.02) saturate(.9);
}

.project-sections__character-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(248, 251, 255, .18) 45%, rgba(255, 255, 255, .76) 100%),
    linear-gradient(180deg, rgba(0, 160, 192, .08), rgba(232, 251, 250, .18));
  mix-blend-mode: overlay;
  opacity: .62;
}

.project-sections__eyelid {
  position: absolute;
  top: 26%;
  width: 13%;
  height: 10%;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(232, 251, 250, .62));
  opacity: 0;
  transform: scaleY(.05);
  transform-origin: top;
  will-change: transform, opacity;
  animation: characterBlink 3.9s ease-in-out infinite;
  pointer-events: none;
}

.project-sections__eyelid--left { left: 36%; }
.project-sections__eyelid--right {
  right: 36%;
  animation-delay: .05s;
}

.project-intro-accent {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.project-intro-accent--invoice {
  top: clamp(16px, 4vw, 34px);
  left: clamp(-44px, -5vw, -30px);
  width: clamp(66px, 11vw, 94px);
  height: clamp(78px, 13vw, 112px);
  border: 1px solid rgba(17, 28, 45, .1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 160, 192, .9) 0 42%, transparent 42%),
    linear-gradient(#dbe8ee, #dbe8ee) 18px 38% / 64% 2px no-repeat,
    linear-gradient(#e7eef2, #e7eef2) 18px 50% / 72% 2px no-repeat,
    linear-gradient(#e7eef2, #e7eef2) 18px 62% / 54% 2px no-repeat,
    linear-gradient(135deg, #fff, #f4fbfc);
  box-shadow: 0 18px 34px rgba(17, 28, 45, .12);
  opacity: .72;
  transform: rotate(-7deg);
  will-change: transform;
  animation: introInvoiceFloat 4.4s ease-in-out infinite;
}

.project-intro-accent--spark {
  top: clamp(18px, 4vw, 34px);
  right: clamp(12px, 5vw, 48px);
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  will-change: transform, opacity;
  animation: introSparkPulse 1.9s ease-in-out infinite;
}

.project-intro-accent--spark::before,
.project-intro-accent--spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: #f4b740;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.project-intro-accent--spark::before {
  width: 34px;
  height: 4px;
}

.project-intro-accent--spark::after {
  width: 4px;
  height: 34px;
}

.project-intro-accent--check {
  right: clamp(-12px, -1vw, -4px);
  bottom: clamp(22px, 5vw, 44px);
  width: clamp(72px, 12vw, 98px);
  height: clamp(72px, 12vw, 98px);
  border: 1px solid rgba(0, 160, 192, .16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(0, 160, 192, .1), rgba(255, 255, 255, .96)),
    #fff;
  box-shadow: 0 16px 32px rgba(17, 28, 45, .1);
  transform: rotate(7deg);
  will-change: transform;
  animation: introCheckLift 3.8s ease-in-out .35s infinite;
}

.project-intro-accent--check::before {
  content: "";
  position: absolute;
  left: 25%;
  top: 48%;
  width: 48%;
  height: 26%;
  border-left: 5px solid var(--color-primario);
  border-bottom: 5px solid var(--color-primario);
  border-radius: 2px;
  transform: translateY(-50%) rotate(-45deg);
}

.project-sections__eyebrow p,
.project-cta p,
.project-split-cta p {
  margin: 0 0 8px;
  color: var(--color-primario);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

.project-sections__ready {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 12px !important;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primario) !important;
  border: 1px solid rgba(0, 160, 192, .16);
  box-shadow: 0 8px 18px rgba(17, 28, 45, .06);
}

.project-sections__intro h2,
.project-cta h2,
.project-split-cta h2 {
  margin: 0;
  color: var(--color-texto);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.22;
}

.project-intro-title {
  max-width: 720px;
  margin: 0 !important;
  padding: 0;
  font-size: clamp(1.9rem, 4vw, 3.15rem) !important;
  line-height: 1.12 !important;
  font-weight: 700;
  color: #111827 !important;
  text-wrap: balance;
  text-shadow: 0 12px 30px rgba(17, 28, 45, .08);
  transform-origin: center;
  will-change: transform, opacity;
  animation: introTitleReveal .72s cubic-bezier(.2, .86, .2, 1) .12s both, introTitleBreath 3.8s ease-in-out .9s infinite;
}

.project-intro-title::after {
  content: "";
  display: block;
  width: min(92px, 28vw);
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f4b740, var(--color-primario), #21b6aa);
  opacity: .85;
  transform-origin: center;
  will-change: transform, opacity;
  animation: introRuleGlow 2.1s ease-in-out infinite;
}

.project-section {
  position: relative;
  margin: 0 auto;
  min-height: clamp(500px, 72vw, 650px);
  padding: clamp(38px, 7vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  gap: clamp(26px, 5vw, 48px);
  align-items: center;
  border: 1px solid rgba(17, 28, 45, .075);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .94)),
    #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-section:hover {
  border-color: rgba(0, 160, 192, .2);
  box-shadow: 0 30px 74px rgba(17, 28, 45, .12);
  transform: translateY(-6px) scale(1.006);
}

.project-process::before,
.project-feature-panel::before,
.project-cta::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 34%;
  height: 320%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
  transform: rotate(18deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.project-process:hover::before,
.project-feature-panel:hover::before,
.project-cta:hover::before {
  animation: magicSweep .9s ease both;
}

.project-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 160, 192, .82), rgba(0, 176, 192, .38), transparent);
}

.project-section__number {
  position: absolute;
  top: clamp(24px, 4vw, 34px);
  left: clamp(24px, 4vw, 36px);
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--color-primario);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  border: 1px solid rgba(0, 160, 192, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 22px rgba(17, 28, 45, .06);
  pointer-events: none;
}

.project-section__content {
  position: relative;
  z-index: 1;
  padding-top: 68px;
}

.project-section__media {
  position: relative;
  z-index: 1;
}

.project-section__media::before,
.project-section__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.project-section__media::before {
  top: 8%;
  right: 6%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 4px solid rgba(0, 160, 192, .72);
  border-radius: 50%;
  animation: mediaOrbFloat 5.4s ease-in-out infinite;
}

.project-section__media::after {
  left: 5%;
  bottom: 10%;
  z-index: 2;
  width: 46px;
  height: 24px;
  border-left: 5px solid rgba(244, 183, 64, .88);
  border-bottom: 5px solid rgba(244, 183, 64, .88);
  border-radius: 3px;
  transform: rotate(-45deg);
  animation: mediaCheckFloat 4.8s ease-in-out infinite;
}

.project-section--reverse {
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
}

.project-section--reverse .project-section__number {
  left: auto;
  right: 24px;
}

.project-section--reverse .project-section__content {
  grid-column: 2;
  grid-row: 1;
}

.project-section--reverse .project-section__media {
  grid-column: 1;
  grid-row: 1;
}

.project-overview__label {
  margin: 0 0 12px;
  color: var(--color-primario);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.4;
}

.project-section h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--color-texto);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: .01em;
}

.project-overview .project-overview__label {
  letter-spacing: .16em;
}

.project-overview h2 {
  line-height: 1.24;
  letter-spacing: .018em;
  word-spacing: .12em;
}

.project-overview .project-section__content p:not(.project-overview__label) {
  line-height: 1.82;
  word-spacing: .08em;
}

.project-section p {
  margin: 0 0 16px;
  color: var(--color-muted);
  line-height: 1.75;
}

.project-section strong {
  color: var(--color-texto);
  background: rgba(0, 160, 192, .09);
  padding: 1px 5px;
  border-radius: 6px;
}

.project-section__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(270px, 38vw, 390px);
  object-fit: contain;
  background:
    linear-gradient(180deg, #ffffff, #f5fbfc);
  border: 2px solid rgba(0, 160, 192, .34);
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(17, 28, 45, .1);
  transform-origin: 50% 85%;
  animation: mediaFloat 6.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.project-benefits .project-section__media img {
  animation-delay: .7s;
}

.project-workflow .project-section__media img {
  animation-delay: 1.2s;
}

@keyframes characterHold {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  35% { transform: translateX(-50%) translateY(-6px) rotate(-.35deg); }
  70% { transform: translateX(-50%) translateY(3px) rotate(.25deg); }
}

@keyframes introCardReveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLightSweep {
  0%, 100% { background-position: 130% 0, 0 0, 0 0; }
  48% { background-position: -35% 0, 0 0, 0 0; }
}

@keyframes introGridFocus {
  0%, 100% {
    opacity: .5;
    transform: scaleX(.9) translateY(0);
  }
  50% {
    opacity: .9;
    transform: scaleX(1) translateY(-2px);
  }
}

@keyframes introTitleReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introTitleBreath {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes introRuleGlow {
  0%, 100% {
    opacity: .72;
    transform: scaleX(.74);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes introInvoiceFloat {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  45% { transform: translateY(-12px) rotate(-3deg); }
  72% { transform: translateY(5px) rotate(-9deg); }
}

@keyframes introSparkPulse {
  0%, 100% {
    opacity: .52;
    transform: rotate(45deg) scale(.82);
  }
  45% {
    opacity: 1;
    transform: rotate(45deg) scale(1.08);
  }
}

@keyframes introCheckLift {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes characterBlink {
  0%, 91%, 100% {
    opacity: 0;
    transform: scaleY(.05);
  }
  94%, 96% {
    opacity: .86;
    transform: scaleY(1);
  }
}

@keyframes mediaFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  32% { transform: translateY(-7px) rotate(-.5deg); }
  68% { transform: translateY(4px) rotate(.35deg); }
}

@keyframes friendlyFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-1.2deg); }
  50% { transform: translateY(0) rotate(1deg); }
  75% { transform: translateY(-3px) rotate(-.6deg); }
}

@keyframes friendlyWave {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  18% { transform: translateY(-8px) rotate(-5deg) scale(1.03); }
  36% { transform: translateY(-2px) rotate(5deg) scale(1.02); }
  54% { transform: translateY(-7px) rotate(-4deg) scale(1.03); }
  72% { transform: translateY(-1px) rotate(3deg) scale(1.01); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

.project-split-cta {
  padding: clamp(34px, 6vw, 58px);
  min-height: clamp(230px, 30vw, 310px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgba(0, 160, 192, .34);
  background:
    linear-gradient(135deg, rgba(0, 160, 192, .08), rgba(255, 255, 255, .96)),
    #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-split-cta > p,
.project-split-cta > h2 {
  position: relative;
  z-index: 1;
}

.project-split-cta__media {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid rgba(0, 160, 192, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 28, 45, .08);
}

.project-split-cta__media::before,
.project-split-cta__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: transform, opacity;
}

.project-split-cta__media::before {
  top: 10px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primario);
  opacity: .9;
  animation: decorDotFloat 4.2s ease-in-out infinite;
}

.project-split-cta__media::after {
  left: 12px;
  bottom: 13px;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 183, 64, .96);
  animation: decorLineFloat 4.6s ease-in-out infinite;
}

.project-split-cta__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 10px;
}

.project-split-cta:hover {
  border-color: rgba(0, 160, 192, .26);
  box-shadow: 0 24px 60px rgba(17, 28, 45, .1);
  transform: translateY(-5px);
}

.project-space-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.project-space-motion::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 14%;
  width: clamp(150px, 22vw, 230px);
  height: clamp(150px, 22vw, 230px);
  border: 1px solid rgba(0, 160, 192, .16);
  border-radius: 50%;
  box-shadow: inset 0 0 36px rgba(0, 160, 192, .06);
  animation: orbitDrift 9s ease-in-out infinite;
}

.project-space-motion::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 15%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff, rgba(255, 255, 255, .65) 18%, rgba(0, 160, 192, .2) 52%, rgba(0, 160, 192, .08));
  box-shadow: 0 18px 38px rgba(0, 160, 192, .14);
  animation: planetFloat 7s ease-in-out infinite;
}

.project-space-motion span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 160, 192, .55);
  box-shadow: 0 0 18px rgba(0, 160, 192, .32);
  animation: starFloat 5.6s ease-in-out infinite;
}

.project-space-motion span:nth-child(1) {
  left: 18%;
  top: 22%;
}

.project-space-motion span:nth-child(2) {
  right: 22%;
  top: 28%;
  width: 5px;
  height: 5px;
  animation-delay: .8s;
}

.project-space-motion span:nth-child(3) {
  right: 13%;
  bottom: 24%;
  animation-delay: 1.6s;
}

.project-space-motion span:nth-child(4) {
  left: 31%;
  bottom: 20%;
  width: 5px;
  height: 5px;
  animation-delay: 2.2s;
}

@keyframes orbitDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .58; }
  50% { transform: translate(-10px, 8px) rotate(12deg); opacity: .9; }
}

@keyframes planetFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.04); }
}

@keyframes starFloat {
  0%, 100% { opacity: .35; transform: translateY(0) scale(.8); }
  50% { opacity: 1; transform: translateY(-12px) scale(1.15); }
}

.project-split-cta--intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  justify-items: stretch;
  margin-top: 4px;
  min-height: clamp(320px, 46vw, 430px);
  padding: clamp(38px, 7vw, 70px);
  text-align: left;
  border-color: rgba(0, 160, 192, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(237, 250, 250, .94) 58%, rgba(255, 255, 255, .98)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 24px 58px rgba(17, 28, 45, .095);
  overflow: hidden;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-split-cta--intro:hover {
  border-color: rgba(0, 160, 192, .28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 30px 70px rgba(17, 28, 45, .12);
  transform: translateY(-5px);
}

.project-split-cta--intro::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-primario), rgba(0, 176, 192, .38));
}

.project-split-cta--intro::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -95px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(0, 160, 192, .12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 192, .08), transparent 64%);
  pointer-events: none;
}

.project-magic-dust {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.project-magic-dust span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 160, 192, .42);
  box-shadow:
    0 0 0 6px rgba(0, 160, 192, .06),
    0 0 20px rgba(0, 160, 192, .24);
  animation: magicDustFloat 6s ease-in-out infinite;
}

.project-magic-dust span:nth-child(1) {
  left: 10%;
  top: 20%;
}

.project-magic-dust span:nth-child(2) {
  left: 24%;
  bottom: 18%;
  width: 7px;
  height: 7px;
  animation-delay: .8s;
}

.project-magic-dust span:nth-child(3) {
  right: 28%;
  top: 18%;
  width: 11px;
  height: 11px;
  animation-delay: 1.4s;
}

.project-magic-dust span:nth-child(4) {
  right: 16%;
  bottom: 24%;
  width: 6px;
  height: 6px;
  animation-delay: 2.1s;
}

.project-magic-dust span:nth-child(5) {
  right: 8%;
  top: 48%;
  width: 8px;
  height: 8px;
  animation-delay: 2.8s;
}

.project-rocket {
  position: absolute;
  left: 4%;
  bottom: 10%;
  z-index: 0;
  width: 88px;
  height: 44px;
  opacity: .88;
  transform: translate(-40px, 34px) rotate(-28deg);
  animation: rocketLaunch 6.6s cubic-bezier(.2, .78, .22, 1) infinite;
  pointer-events: none;
}

.project-rocket__body {
  position: absolute;
  right: 0;
  top: 8px;
  width: 46px;
  height: 24px;
  border-radius: 999px 999px 999px 999px;
  background:
    radial-gradient(circle at 70% 50%, #ffffff 0 4px, rgba(255, 255, 255, .35) 5px, transparent 6px),
    linear-gradient(90deg, #ffffff, #dff7f8 52%, var(--color-primario));
  border: 1px solid rgba(0, 160, 192, .22);
  box-shadow: 0 12px 26px rgba(0, 160, 192, .18);
}

.project-rocket__body::before {
  content: "";
  position: absolute;
  right: -13px;
  top: 5px;
  border-left: 15px solid var(--color-primario);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.project-rocket__body::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -10px;
  width: 19px;
  height: 14px;
  border-radius: 2px 2px 12px 12px;
  background: #11394a;
  transform: skewX(-18deg);
}

.project-rocket__trail {
  position: absolute;
  left: 0;
  top: 18px;
  width: 48px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 160, 192, .22), rgba(255, 255, 255, .9));
  filter: blur(.2px);
  animation: rocketTrail 1.2s ease-in-out infinite;
}

@keyframes rocketLaunch {
  0% {
    opacity: 0;
    transform: translate(-46px, 42px) rotate(-28deg) scale(.86);
  }
  12% {
    opacity: .92;
  }
  58% {
    opacity: .92;
  }
  82%, 100% {
    opacity: 0;
    transform: translate(min(760px, 82vw), max(-250px, -27vw)) rotate(-28deg) scale(1.02);
  }
}

@keyframes rocketTrail {
  0%, 100% { transform: scaleX(.78); opacity: .54; }
  50% { transform: scaleX(1.12); opacity: .9; }
}

@keyframes magicDustFloat {
  0%, 100% {
    opacity: .2;
    transform: translateY(0) scale(.82);
  }
  35% {
    opacity: .9;
    transform: translateY(-14px) scale(1);
  }
  70% {
    opacity: .45;
    transform: translateY(7px) scale(.9);
  }
}

.project-split-cta--intro .project-split-cta__copy::after {
  content: "";
  display: block;
  width: min(170px, 46vw);
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primario), rgba(0, 176, 192, .34), transparent);
  animation: magicUnderline 3.8s ease-in-out infinite;
}

.project-split-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.project-split-cta--intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.08;
}

.project-split-cta__marks {
  position: relative;
  z-index: 1;
  width: clamp(118px, 16vw, 164px);
  aspect-ratio: 1;
  min-width: 118px;
}

.project-split-cta__marks span {
  position: absolute;
  display: block;
}

.project-split-cta__paper {
  inset: 18% 20% 10% 10%;
  border: 1px solid rgba(0, 160, 192, .18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 160, 192, .18), rgba(0, 160, 192, .18)) 22% 30% / 48% 3px no-repeat,
    linear-gradient(90deg, rgba(17, 28, 45, .12), rgba(17, 28, 45, .12)) 22% 45% / 62% 3px no-repeat,
    linear-gradient(90deg, rgba(17, 28, 45, .1), rgba(17, 28, 45, .1)) 22% 58% / 52% 3px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 252, 252, .96));
  box-shadow: 0 18px 34px rgba(17, 28, 45, .1);
  transform: rotate(-4deg);
  animation: introPaperLift 5.8s ease-in-out infinite;
}

.project-split-cta__check {
  right: 8%;
  bottom: 12%;
  width: 52%;
  height: 52%;
  border-radius: 50%;
  border: 1px solid rgba(0, 160, 192, .18);
  background: linear-gradient(135deg, var(--color-primario), #15bdc8);
  box-shadow: 0 16px 30px rgba(0, 160, 192, .22);
  animation: introCheckPulse 4.4s ease-in-out infinite;
}

.project-split-cta__check::before {
  content: "";
  position: absolute;
  left: 31%;
  top: 26%;
  width: 36%;
  height: 20%;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
  border-radius: 1px;
}

.project-split-cta__spark {
  top: 7%;
  right: 18%;
  width: 18px;
  height: 18px;
  color: var(--color-primario);
  animation: introSpark 3.6s ease-in-out infinite;
}

.project-split-cta__spark::before,
.project-split-cta__spark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  border-radius: 999px;
}

.project-split-cta__spark::before {
  width: 4px;
  height: 18px;
}

.project-split-cta__spark::after {
  width: 18px;
  height: 4px;
}

@keyframes introPaperLift {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-7px) rotate(-2deg); }
}

@keyframes introCheckPulse {
  0%, 100% { transform: scale(1); }
  48% { transform: scale(1.06); }
}

@keyframes introSpark {
  0%, 100% { transform: scale(.86) rotate(0deg); opacity: .55; }
  50% { transform: scale(1.16) rotate(90deg); opacity: 1; }
}

@keyframes magicUnderline {
  0%, 100% { opacity: .72; transform: scaleX(.88); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@keyframes magicSweep {
  0% {
    opacity: 0;
    transform: rotate(18deg) translateX(-120%);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(18deg) translateX(420%);
  }
}

.project-split-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.24;
}

#projectSpeedTitle {
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
  letter-spacing: .018em;
  word-spacing: .14em;
  animation: speedTextLift 4.8s ease-in-out infinite;
}

#projectSpeedTitle::after {
  content: "";
  display: block;
  width: min(180px, 44vw);
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-primario), #8EE1DD, transparent);
  animation: speedUnderlineGlow 2.8s ease-in-out infinite;
}

@keyframes speedTextLift {
  0%, 100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-5px);
  }
}

@keyframes speedUnderlineGlow {
  0%, 100% {
    opacity: .55;
    transform: scaleX(.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.project-split-cta--intro h2 {
  margin: 0;
}

.project-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-trust-strip__heading {
  display: none;
}

.project-trust-strip__image {
  display: none;
}

.project-trust-strip article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 28px;
  overflow: hidden;
  border: 2px solid rgba(0, 160, 192, .28);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(238, 252, 253, .82), rgba(255, 255, 255, .96)),
    #fff;
  box-shadow:
    0 0 0 5px rgba(0, 160, 192, .055),
    0 16px 34px rgba(17, 28, 45, .075);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.project-trust-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primario), #8ee1dd);
}

.project-trust-strip article:hover {
  border-color: rgba(0, 160, 192, .5);
  background:
    linear-gradient(180deg, rgba(221, 248, 251, .9), rgba(255, 255, 255, .98)),
    #fff;
  box-shadow:
    0 0 0 6px rgba(0, 160, 192, .08),
    0 20px 48px rgba(17, 28, 45, .11);
  transform: translateY(-6px);
}

.project-trust-strip strong {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 160, 192, .22);
  border-radius: 50%;
  background: #fff;
  color: var(--color-primario);
  font-size: .9rem;
  box-shadow: 0 8px 16px rgba(0, 160, 192, .12);
}

.project-trust-strip span {
  position: relative;
  z-index: 1;
  color: var(--color-texto);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.42;
}

.project-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  min-height: clamp(420px, 54vw, 540px);
  padding: clamp(38px, 7vw, 68px);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(17, 57, 74, .96)),
    #111827;
  color: #fff;
  box-shadow: 0 24px 56px rgba(17, 24, 39, .2);
  overflow: hidden;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease;
}

.project-feature-panel__copy {
  min-width: 0;
}

.project-feature-panel__side {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.project-feature-panel__media {
  margin: 0;
}

.project-feature-panel__media img {
  width: min(100%, 250px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto;
  border: 5px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, .24),
    0 0 0 10px rgba(142, 225, 221, .12);
  animation: featureCircleFloat 4.8s ease-in-out infinite;
}

@keyframes featureCircleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg) scale(1);
  }

  50% {
    transform: translateY(-12px) rotate(-2deg) scale(1.035);
  }
}

.project-feature-panel:hover {
  box-shadow: 0 32px 78px rgba(17, 24, 39, .24);
  transform: translateY(-6px);
}

.project-feature-panel .project-overview__label,
.project-feature-panel p {
  color: #8EE1DD;
}

.project-feature-panel h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.22;
}

.project-feature-panel p {
  margin: 0;
  line-height: 1.72;
}

.project-feature-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-feature-panel li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .075);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

.project-quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-quality-mobile-visual {
  display: none;
}

.project-quality-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(17, 28, 45, .07);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #ffffff, #f8fcfc);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.project-quality-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 160, 192, .35);
  box-shadow: 0 18px 40px rgba(17, 28, 45, .12);
}

.project-quality-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 160, 192, .1);
  color: var(--color-primario);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

.project-quality-grid h3 {
  margin: 0 0 8px;
  color: var(--color-texto);
  font-size: 1.12rem;
  line-height: 1.35;
}

.project-quality-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.project-process {
  min-height: clamp(420px, 52vw, 540px);
  padding: clamp(38px, 7vw, 68px);
  border: 1px solid rgba(17, 28, 45, .07);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #ffffff, #f8fcfc);
  box-shadow: var(--shadow-card);
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-process:hover {
  border-color: rgba(0, 160, 192, .18);
  box-shadow: 0 30px 74px rgba(17, 28, 45, .12);
  transform: translateY(-6px);
}

.project-process__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(170px, 24vw, 240px);
  align-items: center;
  gap: clamp(22px, 5vw, 54px);
  margin-bottom: 28px;
}

.project-process h2 {
  max-width: 740px;
  margin: 0;
  color: var(--color-texto);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.24;
}

.project-process__media {
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 8px solid #08c7cf;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 160, 192, .18);
}

.project-process__media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
}

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

.project-process__steps article {
  position: relative;
  padding: 28px 24px;
  border-radius: 8px;
  background: #f2fbfb;
  border: 1px solid rgba(0, 160, 192, .11);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.project-process__steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 160, 192, .22);
  background: #ebfafa;
}

.project-process__steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--color-primario);
  color: #fff;
  font-weight: 700;
}

.project-process__steps h3 {
  margin: 0 0 8px;
  color: var(--color-texto);
  line-height: 1.35;
}

.project-process__steps p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.project-section__media img:hover {
  animation: friendlyWave .9s ease both;
  filter: saturate(1.05);
  box-shadow: 0 22px 42px rgba(17, 28, 45, .14);
}

.project-overview .project-section__media img {
  border: 0;
  will-change: transform;
  animation: mediaFloat 6.8s ease-in-out infinite;
}

@media (max-width: 560px) {
  .project-overview .project-section__media img {
    border: 2px solid rgba(0, 160, 192, .34);
  }
}

.right-image img:hover {
  animation: friendlyWave .9s ease both;
}

.project-assistant-service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, .72fr);
  align-items: center;
  gap: clamp(22px, 5vw, 54px);
  min-height: clamp(420px, 54vw, 560px);
  padding: clamp(38px, 7vw, 68px);
  border: 1px solid rgba(0, 160, 192, .18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 86% 18%, rgba(142, 225, 221, .28), transparent 27%),
    linear-gradient(180deg, #ffffff, #f4fcfc);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-assistant-service::before,
.project-assistant-service::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.project-assistant-service::before {
  right: clamp(18px, 5vw, 64px);
  top: clamp(18px, 4vw, 48px);
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 3px solid rgba(244, 183, 64, .72);
  transform: rotate(12deg);
  animation: assistantAccentFloat 5.4s ease-in-out infinite;
}

.project-assistant-service::after {
  left: clamp(18px, 5vw, 58px);
  bottom: clamp(20px, 5vw, 54px);
  width: 42px;
  height: 22px;
  border-left: 5px solid rgba(0, 160, 192, .58);
  border-bottom: 5px solid rgba(0, 160, 192, .58);
  border-radius: 4px;
  transform: rotate(-45deg);
  animation: mediaCheckFloat 5.1s ease-in-out infinite;
}

.project-assistant-service:hover {
  border-color: rgba(0, 160, 192, .32);
  box-shadow: 0 30px 74px rgba(17, 28, 45, .12);
  transform: translateY(-5px);
}

.project-assistant-service__copy {
  position: relative;
  z-index: 1;
}

.project-assistant-service h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--color-texto);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.18;
}

.project-assistant-service p:not(.project-overview__label) {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--color-muted);
  line-height: 1.75;
}

.project-assistant-service__price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 15px;
  border: 1px solid rgba(0, 160, 192, .22);
  border-radius: 999px;
  background: rgba(0, 160, 192, .09);
  color: var(--color-primario);
  font-weight: 800;
}

.project-assistant-service__media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #ffffff, #effcfc);
  box-shadow:
    0 18px 38px rgba(17, 28, 45, .13),
    0 0 0 10px rgba(0, 160, 192, .09);
  overflow: hidden;
  animation: assistantFloat 5.8s ease-in-out infinite;
}

.project-assistant-service__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 160, 192, .24);
  animation: assistantRing 12s linear infinite;
}

.project-assistant-service__media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  border: 0;
  animation: assistantImageLift 4.8s ease-in-out infinite;
}

@keyframes assistantFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes assistantImageLift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

@keyframes assistantRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes assistantAccentFloat {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(-8px) rotate(-4deg);
  }
}

.project-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: clamp(220px, 28vw, 280px);
  padding: clamp(34px, 6vw, 56px);
  border-radius: 10px;
  background:
    linear-gradient(135deg, #111827, #11394a);
  color: #fff;
  box-shadow: 0 24px 56px rgba(17, 24, 39, .2);
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease;
}

.project-cta__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.project-cta__media {
  position: relative;
  z-index: 1;
  width: min(20vw, 160px);
  margin: 0;
  opacity: 1;
  will-change: transform;
  animation: ctaCircleFloat 5s ease-in-out infinite;
}

.project-cta__media::before,
.project-cta__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.project-cta__media::before {
  top: -10px;
  right: 2px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #8EE1DD;
  animation: decorDotFloat 4s ease-in-out infinite;
}

.project-cta__media::after {
  left: -4px;
  bottom: 12px;
  z-index: 2;
  width: 36px;
  height: 18px;
  border-left: 5px solid #f4b740;
  border-bottom: 5px solid #f4b740;
  border-radius: 3px;
  transform: rotate(-45deg);
  animation: mediaCheckFloat 4.7s ease-in-out infinite;
}

.project-cta__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .16);
}

@keyframes ctaCircleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }

  50% {
    transform: translateY(-12px) rotate(2deg) scale(1.035);
  }
}

.project-cta:hover {
  box-shadow: 0 32px 78px rgba(17, 24, 39, .24);
  transform: translateY(-6px);
}

.project-cta h2 {
  color: #fff;
  max-width: 640px;
}

.project-cta p {
  color: #8EE1DD;
}

.project-cta .btn {
  flex: 0 0 auto;
  width: fit-content;
  padding: 11px 16px;
  font-size: .94rem;
}

.project-cta__note {
  display: inline-flex;
  width: fit-content;
  max-width: 460px;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(142, 225, 221, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
  line-height: 1.45;
}

.voluntary-pay-card h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.voluntary-pay-form {
  margin-top: 22px;
}

.voluntary-pay-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-items: center;
  gap: 14px;
  margin-top: 20px;
  width: 100%;
}

.zelle-pay-box {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(17, 28, 45, .1);
  border-radius: 8px;
  background: #fff;
}

.paypal-pay-box {
  align-self: center;
  width: fit-content;
  min-width: 170px;
  padding: 10px 12px;
  border-color: rgba(17, 28, 45, .08);
  box-shadow: none;
}

.zelle-pay-box span {
  color: #111827;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.zelle-pay-box p {
  margin: 0;
}

.zelle-pay-box strong {
  color: var(--color-primario);
  overflow-wrap: anywhere;
}

.zelle-pay-box .btn {
  padding: 9px 14px;
  font-size: .9rem;
}

.zelle-pay-box .paypal-pay-btn {
  min-height: 30px;
  padding: 6px 10px;
  font-size: .78rem;
  width: fit-content;
  justify-self: center;
}

#paypal-button-container {
  width: min(100%, 320px);
  min-height: 44px;
  margin-top: 4px;
}

.payment-note {
  color: var(--color-muted);
  font-size: .86rem;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: visible;
  margin-top: 22px;
  padding: clamp(36px, 6vw, 58px) 0 clamp(30px, 5vw, 46px);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #087f98;
  box-shadow: 0 18px 42px rgba(0, 120, 145, .2);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .14), transparent 24%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.site-footer__inner {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.site-footer__brand,
.site-footer__top,
.site-footer__mascot,
.site-footer__links,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 240px);
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
  margin-bottom: 26px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
}

.site-footer__brand {
  max-width: 620px;
}

.site-footer__brand h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.site-footer__brand p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
}

.site-footer__mascot {
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 18px 30px rgba(0, 68, 82, .22);
  animation: footerMascotFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.site-footer__mascot::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f4b740;
  opacity: .9;
  animation: decorDotFloat 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.site-footer__mascot::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 16px;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(142, 225, 221, .95);
  animation: decorLineFloat 4.8s ease-in-out infinite;
  will-change: transform, opacity;
}

.site-footer__mascot img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

@keyframes footerMascotFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes mediaOrbFloat {
  0%,
  100% {
    opacity: .58;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: .95;
    transform: translateY(-9px) scale(1.08);
  }
}

@keyframes mediaCheckFloat {
  0%,
  100% {
    opacity: .55;
    transform: translateY(0) rotate(-45deg) scale(1);
  }

  50% {
    opacity: .9;
    transform: translateY(-7px) rotate(-45deg) scale(1.05);
  }
}

@keyframes decorDotFloat {
  0%,
  100% {
    opacity: .65;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px) scale(1.12);
  }
}

@keyframes decorLineFloat {
  0%,
  100% {
    opacity: .58;
    transform: translateX(0) scaleX(.88);
  }

  50% {
    opacity: .96;
    transform: translateX(6px) scaleX(1);
  }
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 34px);
  padding: 24px 4px 26px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  background: transparent;
}

.site-footer__links section {
  display: grid;
  gap: 9px;
}

.site-footer__links h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-footer__links a {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}

.site-footer__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  text-align: center;
}

@media (max-width: 780px) {
  .project-sections {
    top: calc(100dvh - 60px);
    gap: 22px;
    padding-bottom: 56px;
  }

  .project-progress-path {
    display: none;
  }

  .project-sections__intro {
    margin-top: clamp(138px, 42vw, 210px);
    padding: 34px 18px;
    text-align: center;
  }

  .project-sections__character-img {
    bottom: calc(100% - 154px);
    width: calc(100% - 18px);
    border-radius: 10px 10px 6px 6px;
  }

  .project-intro-title {
    font-size: clamp(1.55rem, 8vw, 2.2rem) !important;
  }

  .project-intro-accent--invoice {
    left: -32px;
    width: 62px;
    height: 76px;
    opacity: .46;
  }

  .project-intro-accent--check {
    right: -2px;
    width: 64px;
    height: 64px;
    opacity: .78;
  }

  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-assistant-service,
  .project-cta {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 18px;
  }

  .project-feature-panel__side {
    width: 100%;
    justify-items: center;
  }

  .project-feature-panel__media img {
    width: min(72vw, 220px);
    object-fit: contain;
    padding: 12px;
  }

  .project-split-cta--intro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 20px;
    text-align: left;
  }

  .project-rocket {
    width: 70px;
    height: 36px;
    opacity: .55;
  }

  .project-split-cta--intro h2 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .project-split-cta__marks {
    width: 118px;
    min-width: 118px;
  }

  .project-section,
  .project-section--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding: 78px 18px 26px;
  }

  .project-section__number {
    top: 18px;
    left: 22px;
    right: auto;
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }

  .project-section--reverse .project-section__number {
    left: 22px;
    right: auto;
  }

  .project-section__content {
    padding-top: 0;
  }

  .project-section--reverse .project-section__content,
  .project-section--reverse .project-section__media {
    grid-column: auto;
    grid-row: auto;
  }

  .project-section__media img {
    height: 210px;
  }

  .project-trust-strip,
  .project-feature-panel,
  .project-quality-grid {
    grid-template-columns: 1fr;
  }

  .project-process__header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .project-process__media {
    width: clamp(170px, 58vw, 230px);
  }

  .project-process__steps {
    grid-template-columns: 1fr;
  }

  .project-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-cta__copy,
  .project-cta__media {
    flex-basis: auto;
    width: 100%;
  }

  .project-cta__media img {
    width: min(100%, 220px);
  }

  .project-cta .btn {
    width: 100%;
    text-align: center;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

}

@media (max-width: 1100px) {
  .right-image {
    left: 18px;
    opacity: .52;
  }

  .right-image img {
    max-width: 170px;
  }

  .project-sections {
    width: min(920px, 92vw);
  }

  .project-section,
  .project-section--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(210px, .78fr);
  }
}

@media (max-width: 900px) {
  body {
    place-items: start center;
    padding-top: clamp(104px, 18vh, 150px);
  }

  .language-selector {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    justify-content: center;
    width: min(420px, calc(100vw - 28px));
  }

  .language-selector button {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .welcome {
    width: min(760px, 92vw);
  }

  .right-image {
    top: 46%;
    left: 12px;
    opacity: .28;
  }

  .right-image img {
    max-width: 140px;
  }

  .project-sections {
    top: calc(100dvh - 36px);
    width: min(760px, 92vw);
    gap: 34px;
  }

  .project-split-cta--intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-split-cta__marks {
    width: 132px;
    min-width: 132px;
  }

  .project-section,
  .project-section--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 84px clamp(22px, 5vw, 34px) clamp(26px, 5vw, 38px);
  }

  .project-section--reverse .project-section__content,
  .project-section--reverse .project-section__media {
    grid-column: auto;
    grid-row: auto;
  }

  .project-section--reverse .project-section__number {
    left: clamp(24px, 4vw, 36px);
    right: auto;
  }

  .project-section__content {
    padding-top: 0;
  }

  .project-section__media img {
    height: clamp(220px, 48vw, 320px);
  }

  .project-trust-strip,
  .project-quality-grid,
  .project-process__steps,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .project-feature-panel,
  .project-cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    display: block;
    padding-top: 74px;
    overflow-x: hidden;
    background:
      linear-gradient(180deg, #f8fcfd 0%, #ffffff 270px),
      #fff;
  }

  .language-selector {
    top: 8px;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(17, 28, 45, .07);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 24px rgba(17, 28, 45, .08);
    backdrop-filter: blur(10px);
  }

  .language-selector button {
    flex: 1 1 0;
    padding: 8px 10px;
    border: 2px solid rgba(0, 160, 192, .34);
    font-size: .8rem;
    box-shadow: none;
  }

  .welcome {
    position: relative;
    width: calc(100vw - 24px);
    margin: 0 auto;
    padding: 28px 18px 24px;
    border-color: rgba(0, 160, 192, .12);
    box-shadow: 0 16px 36px rgba(17, 28, 45, .08);
    min-height: calc(100svh - 88px);
    display: grid;
    align-content: center;
    overflow: hidden;
    animation: mobileWelcomeEnter .72s cubic-bezier(.2, .84, .24, 1) both;
  }

  .welcome > * {
    position: relative;
    z-index: 1;
  }

  #main-title {
    font-size: clamp(1.82rem, 9vw, 2.35rem);
    line-height: 1.08;
    animation: mobileTextRise .68s cubic-bezier(.2, .84, .24, 1) .08s both;
  }

  #subtitle {
    margin-bottom: 18px;
    font-size: .98rem;
    animation: mobileTextRise .68s cubic-bezier(.2, .84, .24, 1) .18s both;
  }

  .mobile-hero-image {
    display: grid;
    place-items: center;
    width: min(58vw, 200px);
    margin: 0 auto 18px;
    animation: mobileTextRise .68s cubic-bezier(.2, .84, .24, 1) .26s both;
  }

  .mobile-hero-image img {
    width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 12px 18px rgba(17, 28, 45, .12));
    transform-origin: 50% 82%;
    will-change: transform;
    animation: mobileHeroFloat 3.8s ease-in-out .9s infinite;
  }

  .buttons,
  .btn {
    width: 100%;
  }

  .buttons {
    display: grid;
    animation: mobileTextRise .68s cubic-bezier(.2, .84, .24, 1) .34s both;
  }

  .btn {
    text-align: center;
  }

  #guestBtn {
    will-change: transform;
    animation: mobileButtonPulse 2.8s ease-in-out infinite;
  }

  .right-image {
    display: none;
  }

  .project-sections {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin: 24px auto 0;
    gap: 24px;
    padding: 22px 12px 38px;
    text-align: center;
  }

  .project-sections::before {
    background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 62%);
  }

  .project-sections__eyebrow {
    display: none;
  }

  .project-sections__ready {
    padding: 6px 12px;
    font-size: .76rem !important;
    box-shadow: none;
  }

  .project-split-cta,
  .project-split-cta--intro,
  .project-feature-panel,
  .project-process,
  .project-cta,
  .project-section {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 28, 45, .065);
  }

  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-cta,
  .project-section,
  .project-sections__intro,
  .project-trust-strip,
  .project-quality-grid {
    min-height: calc(100svh - 24px);
    align-content: center;
  }

  .project-split-cta--intro {
    padding: 24px 18px;
    gap: 16px;
    text-align: center;
    justify-items: center;
  }

  .project-split-cta {
    width: 100%;
    max-width: calc(100vw - 24px);
    margin-left: auto;
    margin-right: auto;
    padding: 28px 16px;
    overflow: hidden;
  }

  .project-split-cta__media {
    width: min(78vw, 260px);
    margin-top: 24px;
  }

  .project-trust-strip {
    position: relative;
    width: 100%;
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    padding: 30px 18px;
    gap: 13px;
    height: calc(100svh - 24px);
    min-height: calc(100svh - 24px);
    align-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 160, 192, .18);
    border-radius: 8px;
    background:
      linear-gradient(180deg, #ffffff 0%, #eefbfc 100%);
    box-shadow: 0 18px 42px rgba(0, 96, 115, .12);
  }

  .project-trust-strip::before {
    display: none;
  }

  .project-trust-strip::after {
    display: none;
  }

  .project-trust-strip__heading {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
    justify-items: center;
    text-align: center;
  }

  .project-trust-strip__heading p {
    margin: 0;
    color: #007f99;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .project-trust-strip__heading h2 {
    max-width: 280px;
    margin: 0;
    color: #05070a;
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    line-height: 1.14;
    text-align: center;
  }

  .project-trust-strip__image {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(46vw, 165px);
    aspect-ratio: 1;
    margin: 2px auto 4px;
    overflow: hidden;
    border: 3px solid rgba(0, 160, 192, .18);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 96, 115, .12);
    will-change: transform;
    animation: trustImageFloat 4.6s ease-in-out infinite;
  }

  .project-trust-strip__image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
  }

  @keyframes trustImageFloat {
    0%,
    100% {
      transform: translateY(0) rotate(-1deg);
    }

    50% {
      transform: translateY(-8px) rotate(1deg);
    }
  }

  .project-trust-strip article {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 10px;
    width: 100%;
    min-height: 88px;
    padding: 14px 14px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 160, 192, .18);
    border-left: 0;
    border-radius: 8px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(0, 96, 115, .1);
    will-change: transform;
    animation: trustCardFloat 4.8s ease-in-out infinite;
  }

  .project-trust-strip article:nth-child(2) {
    animation-delay: .22s;
  }

  .project-trust-strip article:nth-child(3) {
    animation-delay: .44s;
  }

  .project-trust-strip article::after {
    display: none;
  }

  .project-trust-strip article::before {
    display: none;
  }

  .project-trust-strip strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 160, 192, .18);
    border-radius: 50%;
    background: #e8fbfd;
    color: var(--color-primario);
    font-size: .94rem;
    letter-spacing: .04em;
    box-shadow: none;
    will-change: transform;
    animation: trustNumberPop 3.8s ease-in-out infinite;
  }

  .project-trust-strip span {
    color: #05070a !important;
    display: block !important;
    max-width: 230px !important;
    font-size: clamp(.9rem, 4vw, .98rem) !important;
    font-weight: 650 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    letter-spacing: .01em !important;
    word-spacing: normal !important;
    text-wrap: auto !important;
  }

  #projectSpeedTitle {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.3;
    word-spacing: .16em;
    animation-name: speedTextLiftMobile;
  }

  #projectSpeedTitle::after {
    width: min(132px, 52vw);
    margin-top: 14px;
  }

  .project-magic-dust,
  .project-space-motion,
  .project-split-cta--intro::after,
  .project-process::before,
  .project-feature-panel::before,
  .project-cta::before {
    display: none;
  }

  .project-split-cta--intro h2,
  .project-split-cta h2,
  .project-cta h2,
  .project-process h2,
  .project-section h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    line-height: 1.16;
  }

  .project-split-cta__marks {
    width: 96px;
    min-width: 96px;
    justify-self: center;
  }

  .project-rocket {
    display: none;
  }

  .project-section,
  .project-section--reverse {
    padding: 70px 16px 20px;
    gap: 18px;
    border-color: rgba(17, 28, 45, .06);
    text-align: center;
    justify-items: center;
  }

  .project-section__number {
    top: 16px;
    left: 50%;
    width: 46px;
    height: 46px;
    font-size: .95rem;
    transform: translateX(-50%);
  }

  .project-section--reverse .project-section__number {
    left: 50%;
  }

  .project-section__content,
  .project-section__media {
    width: 100%;
  }

  .project-section__media::before {
    width: 22px;
    height: 22px;
    right: 10%;
  }

  .project-section__media::after {
    width: 34px;
    height: 18px;
    left: 8%;
  }

  .project-overview__label,
  .project-sections__eyebrow p,
  .project-cta p,
  .project-split-cta p {
    text-align: center;
  }

  .project-section h2,
  .project-split-cta h2,
  .project-process h2,
  .project-cta h2,
  .project-feature-panel h2,
  .project-feature-panel p {
    margin-left: auto;
    margin-right: auto;
  }

  .project-section p,
  .project-process__steps p,
  .project-quality-grid p,
  .project-feature-panel p {
    font-size: .94rem;
    line-height: 1.62;
  }

  .project-section p {
    margin-bottom: 12px;
  }

  .project-overview h2 {
    line-height: 1.3;
    word-spacing: .14em;
  }

  .project-overview .project-section__content p:not(.project-overview__label) {
    line-height: 1.74;
    word-spacing: .1em;
  }

  .project-section__media img {
    height: min(56vw, 210px);
    border-width: 1px;
    box-shadow: 0 10px 22px rgba(17, 28, 45, .08);
    will-change: transform;
    animation: mobileImageFloat 5.8s ease-in-out infinite;
  }

  .project-trust-strip article,
  .project-quality-grid article,
  .project-process__steps article {
    min-height: auto;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(17, 28, 45, .055);
  }

  .project-quality-grid {
    position: relative;
    width: 100%;
    max-width: calc(100vw - 24px);
    margin-left: auto;
    margin-right: auto;
    padding: 22px 14px 18px;
    gap: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 160, 192, .12);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(0, 160, 192, .1), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
    box-shadow: 0 18px 42px rgba(17, 28, 45, .09);
  }

  .project-quality-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, .92) 42%, transparent 62%),
      repeating-linear-gradient(90deg, rgba(0, 160, 192, .045) 0 1px, transparent 1px 18px);
    background-size: 220% 100%, auto;
    opacity: .7;
    pointer-events: none;
    will-change: opacity, transform;
    animation: qualityMobileSweep 4.6s ease-in-out infinite;
  }

  .project-quality-mobile-visual {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 184px;
    margin-bottom: 4px;
  }

  .project-quality-mobile-visual::before {
    content: "";
    position: absolute;
    width: min(68vw, 260px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 160, 192, .18), transparent 68%);
    will-change: transform, opacity;
    animation: qualityMobileGlow 3.2s ease-in-out infinite;
  }

.project-quality-mobile-visual img {
    position: relative;
    z-index: 1;
    width: min(72vw, 278px);
    height: 168px;
    object-fit: contain;
    padding: 10px;
    border: 2px solid rgba(0, 160, 192, .34);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 36px rgba(17, 28, 45, .12);
    will-change: transform;
    animation: qualityPreviewFloat 3.6s ease-in-out infinite;
  }

  .project-quality-mobile-visual span {
    position: absolute;
    right: clamp(18px, 8vw, 42px);
    bottom: 18px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primario);
    box-shadow: 0 12px 24px rgba(0, 160, 192, .28);
    will-change: transform;
    animation: qualityBadgePop 2.4s ease-in-out infinite;
  }

  .project-quality-mobile-visual span::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 14px;
    width: 18px;
    height: 10px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    border-radius: 2px;
    transform: rotate(-45deg);
  }

  .project-quality-grid article {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 16px;
    text-align: center;
    justify-items: center;
    border-color: rgba(0, 160, 192, .12);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    will-change: transform;
    animation: qualityCardRise 3.8s ease-in-out infinite;
  }

  .project-quality-grid article:nth-of-type(2) {
    animation-delay: .18s;
  }

  .project-quality-grid article:nth-of-type(3) {
    animation-delay: .36s;
  }

  .project-quality-grid article span {
    grid-row: auto;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primario), #21b6aa);
    color: #fff;
    font-size: .72rem;
    box-shadow: 0 10px 20px rgba(0, 160, 192, .2);
  }

  .project-quality-grid article h3 {
    margin: 0 0 3px;
    font-size: 1rem;
    text-align: center;
  }

  .project-quality-grid article p {
    margin: 0;
    font-size: .85rem;
    line-height: 1.42;
    text-align: center;
  }

  .project-feature-panel,
  .project-process,
  .project-assistant-service,
  .project-cta,
  .project-split-cta {
    box-shadow: 0 10px 24px rgba(17, 28, 45, .07);
  }

  .project-assistant-service {
    display: grid;
    grid-template-columns: 1fr;
    align-content: space-evenly;
    justify-items: center;
    gap: 24px;
    width: 100%;
    max-width: calc(100vw - 24px);
    min-height: calc(100svh - 24px);
    margin-left: auto;
    margin-right: auto;
    padding: 42px 20px;
    text-align: center;
    border: 2px solid rgba(0, 160, 192, .34);
    background:
      radial-gradient(circle at 82% 14%, rgba(142, 225, 221, .3), transparent 25%),
      linear-gradient(180deg, #ffffff, #f4fcfc);
  }

  .project-assistant-service::before {
    top: 20px;
    right: 22px;
    width: 24px;
    height: 24px;
  }

  .project-assistant-service::after {
    left: 22px;
    bottom: 24px;
    width: 30px;
    height: 16px;
  }

  .project-assistant-service__copy {
    display: grid;
    justify-items: center;
    gap: 12px;
  }

  .project-assistant-service h2 {
    max-width: 330px;
    margin: 0;
    font-size: clamp(1.5rem, 7.4vw, 2.08rem);
    line-height: 1.24;
  }

  .project-assistant-service p:not(.project-overview__label) {
    max-width: 320px;
    margin: 0;
    font-size: .94rem;
    line-height: 1.72;
  }

  .project-assistant-service__price {
    margin: 0;
  }

  .project-assistant-service .btn {
    width: min(100%, 320px);
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1rem;
  }

  .project-assistant-service__media {
    width: min(66vw, 250px);
  }

  .project-feature-panel {
    padding: 28px 20px;
    text-align: center;
    justify-items: center;
    gap: 22px;
  }

  .project-feature-panel__side {
    gap: 16px;
  }

  .project-feature-panel__media img {
    width: min(62vw, 180px);
    padding: 10px;
  }

  .project-feature-panel .project-overview__label {
    margin-bottom: 12px;
    letter-spacing: .12em;
  }

  .project-feature-panel h2 {
    max-width: 330px;
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 1.34;
    letter-spacing: .015em;
  }

  .project-feature-panel p {
    max-width: 300px;
    line-height: 1.9 !important;
    letter-spacing: .025em;
    word-spacing: .08em;
  }

  .project-feature-panel ul {
    width: 100%;
    gap: 12px;
  }

  .project-feature-panel li {
    padding: 14px 16px;
    font-size: .92rem;
    line-height: 1.65;
    letter-spacing: .018em;
    text-align: center;
  }

  .project-process__steps {
    gap: 10px;
  }

  .project-process__steps h3,
  .project-quality-grid h3 {
    font-size: 1.02rem;
  }

  .project-sections__intro {
    margin-top: 14px;
    padding: 18px 16px 24px;
    overflow: hidden;
    display: grid;
    align-content: center;
    border-color: rgba(17, 28, 45, .055);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(250, 253, 253, .98) 100%),
      #fff;
    box-shadow: 0 10px 24px rgba(17, 28, 45, .055);
    animation: introCardReveal .68s cubic-bezier(.2, .78, .18, 1) both;
  }

  .project-sections__intro-copy::before,
  .project-intro-accent {
    display: none;
  }

  .project-sections__character-img {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-height: 230px;
    margin: 0 auto 16px;
    transform: none;
    z-index: 0;
    border-radius: 8px;
    border: 2px solid rgba(0, 160, 192, .34);
    background: transparent;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    animation: mobileImageFloat 6.4s ease-in-out infinite;
  }

  .project-sections__character-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center top;
  }

  .project-sections__intro-copy {
    position: relative;
    z-index: 1;
  }

  .project-trust-strip article,
  .project-quality-grid article,
  .project-process__steps article {
    justify-items: center;
    text-align: center;
  }

  .project-trust-strip article {
    justify-items: center;
    min-height: 88px;
    padding: 14px;
    text-align: center;
    border: 2px solid rgba(0, 160, 192, .3);
    background:
      linear-gradient(180deg, rgba(238, 252, 253, .86), rgba(255, 255, 255, .96)),
      #fff;
    box-shadow:
      0 0 0 4px rgba(0, 160, 192, .055),
      0 8px 20px rgba(17, 28, 45, .055);
  }

  .project-quality-grid span {
    margin-left: auto;
    margin-right: auto;
  }

  .project-quality-grid article {
    justify-items: center;
    text-align: center;
    place-items: center;
  }

  .project-quality-grid article span {
    margin: 0;
  }

  .project-quality-grid article h3,
  .project-quality-grid article p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .project-cta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    max-width: calc(100vw - 24px);
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 42px 20px;
    border: 2px solid rgba(0, 160, 192, .34);
    background:
      linear-gradient(180deg, rgba(17, 24, 39, .9), rgba(17, 57, 74, .94)),
      linear-gradient(135deg, #111827, #11394a);
    box-shadow: 0 18px 40px rgba(17, 24, 39, .18);
  }

  .project-cta__copy {
    order: 1;
    flex: none;
    display: grid;
    justify-items: center;
    gap: 8px;
    width: 100%;
  }

  .project-cta__media {
    display: none;
  }

  .project-cta p {
    margin-bottom: 0;
    max-width: 250px;
    padding: 7px 12px;
    border: 1px solid rgba(142, 225, 221, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #9ff0ec;
    font-size: .82rem;
    line-height: 1.25;
  }

  .project-cta h2 {
    max-width: 310px;
    margin: 0;
    font-size: clamp(1.65rem, 8vw, 2.18rem);
    line-height: 1.22;
    overflow-wrap: normal;
  }

  .project-cta .btn {
    order: 3;
    flex: none;
    justify-self: center;
    align-self: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 16px;
    font-size: .94rem;
    background: #ffffff;
    color: #11394a;
    border-color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
    transform: none;
    text-align: center;
  }

  @keyframes ctaCircleFloatMobile {
    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-7px) scale(1.025);
    }
  }

  #projectCtaBtn {
    position: relative;
    overflow: hidden;
    animation: none;
    transform: none;
  }

  #projectCtaBtn::before {
    display: none;
  }

  .site-footer {
    margin-left: -12px;
    margin-right: -12px;
    padding: 30px 0;
    text-align: center;
  }

  .site-footer__inner {
    width: calc(100% - 32px);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
    padding: 22px 16px 18px;
  }

  .site-footer__brand {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__mascot {
    justify-self: center;
    width: min(58vw, 190px);
    margin: 0 auto;
  }

  .site-footer__links {
    padding: 22px 0;
    background: transparent;
  }

  .site-footer__brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__links section {
    justify-items: center;
  }

  .site-footer__bottom {
    align-items: center;
    gap: 8px;
  }

  @keyframes mobileImageFloat {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-7px) scale(1.012);
    }
  }

  @keyframes mobileHeroFloat {
    0%, 100% {
      transform: translateY(0) rotate(-1deg) scale(1);
    }
    50% {
      transform: translateY(-10px) rotate(1.5deg) scale(1.025);
    }
  }

  @keyframes mobileWelcomeEnter {
    from {
      opacity: 0;
      transform: translateY(18px) scale(.985);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes mobileTextRise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes mobileButtonPulse {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2px);
    }
  }

  @keyframes trustStripSweep {
    0%, 100% {
      opacity: .55;
      transform: translateX(18px);
    }
    50% {
      opacity: .85;
      transform: translateX(-18px);
    }
  }

  @keyframes trustCardFloat {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-3px) scale(1.006);
    }
  }

  @keyframes trustNumberPop {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.045);
    }
  }

  @keyframes trustBadgeGlow {
    0%, 100% {
      opacity: .72;
      transform: scale(.92);
    }
    50% {
      opacity: 1;
      transform: scale(1.08);
    }
  }

  @keyframes finalCtaButtonMove {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-5px) scale(1.025);
    }
  }

  @keyframes finalCtaButtonShine {
    0%, 35% {
      transform: translateX(-140%) skewX(-18deg);
    }
    70%, 100% {
      transform: translateX(260%) skewX(-18deg);
    }
  }

  @keyframes speedTextLiftMobile {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3px);
    }
  }

  @keyframes qualityMobileSweep {
    0%, 100% {
      opacity: .45;
      transform: translateX(18px);
    }
    50% {
      opacity: .75;
      transform: translateX(-18px);
    }
  }

  @keyframes qualityMobileGlow {
    0%, 100% {
      opacity: .6;
      transform: scale(.94);
    }
    50% {
      opacity: 1;
      transform: scale(1.04);
    }
  }

  @keyframes qualityPreviewFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
  }

  @keyframes qualityBadgePop {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.08); }
  }

  @keyframes qualityCardRise {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
  }
}

@media (max-width: 390px) {
  .language-selector button {
    font-size: .74rem;
    padding: 6px 7px;
  }

  .project-split-cta--intro h2,
  .project-split-cta h2,
  .project-process h2,
  .project-section h2 {
    font-size: clamp(1.32rem, 7.2vw, 1.78rem);
  }

  .project-cta h2 {
    max-width: 250px;
    font-size: clamp(1.18rem, 6.2vw, 1.48rem);
  }

  #projectSpeedTitle {
    max-width: 270px;
    font-size: clamp(1.25rem, 7vw, 1.62rem);
  }

  .project-section__media img {
    height: 168px;
  }

  .project-split-cta__marks {
    width: 84px;
    min-width: 84px;
  }
}

@media (max-width: 720px) {
  .info-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .info-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 34px 20px;
  }

  .info-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .info-hero__media {
    width: min(68vw, 230px);
  }

  .info-card {
    padding: 24px 20px;
  }

  .assistant-service-strip,
  .assistant-image-card,
  .assistant-image-card--right,
  .assistant-seo-panel,
  .assistant-process__header,
  .assistant-process__steps,
  .voluntary-pay-actions {
    grid-template-columns: 1fr;
  }

  .assistant-service-strip {
    gap: 12px;
  }

  .assistant-service-strip article {
    grid-template-rows: 128px auto;
    border-width: 1px;
    box-shadow: 0 10px 22px rgba(17, 28, 45, .06);
  }

  .assistant-service-strip img {
    height: 128px;
  }

  .assistant-image-card,
  .assistant-image-card--right {
    gap: 18px;
  }

  .assistant-image-card--right .assistant-image-card__media {
    order: -1;
  }

  .assistant-image-card__media {
    min-height: 170px;
    border-width: 1px;
  }

  .assistant-image-card__media img {
    max-height: 190px;
  }

  .assistant-seo-panel,
  .assistant-process {
    padding: 24px 20px;
    text-align: center;
  }

  .assistant-seo-panel__media img,
  .assistant-process__header img {
    justify-self: center;
    max-height: 150px;
  }

  .assistant-process__steps article {
    text-align: left;
  }

  .info-contact {
    text-align: center;
  }

  .info-contact::before {
    width: 22px;
    height: 22px;
    top: 18px;
    right: 18px;
  }

  .assistant-contact-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    text-align: left;
  }

  .assistant-contact-form label,
  .assistant-contact-form input,
  .assistant-contact-form select,
  .assistant-contact-form textarea,
  .assistant-contact-form .btn {
    grid-column: 1;
  }

  .assistant-contact-form .btn {
    width: 100%;
  }

  body.info-page .site-footer {
    width: min(100% - 24px, 980px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .right-image img,
  .welcome,
  #main-title,
  #subtitle,
  .buttons,
  #guestBtn,
  .mobile-hero-image,
  .mobile-hero-image img,
  .project-trust-strip::before,
  .project-trust-strip article::after,
  .project-trust-strip article,
  .project-trust-strip__image,
  .project-trust-strip strong,
  #projectCtaBtn,
  #projectCtaBtn::before,
  .project-cta__media,
  .project-cta__media::before,
  .project-cta__media::after,
  .project-cta__media img,
  .project-assistant-service::before,
  .project-assistant-service::after,
  .project-assistant-service__media,
  .project-assistant-service__media::before,
  .project-assistant-service__media img,
  .info-hero__media,
  .project-feature-panel__media img,
  .site-footer__mascot,
  .site-footer__mascot::before,
  .site-footer__mascot::after,
  .project-section__media::before,
  .project-section__media::after,
  .project-split-cta__media::before,
  .project-split-cta__media::after,
  .project-sections__intro,
  .project-sections__intro-copy::before,
  .project-sections__character-img,
  .project-sections__eyelid,
  .project-intro-accent,
  .project-quality-grid::before,
  .project-quality-mobile-visual::before,
  .project-quality-mobile-visual img,
  .project-quality-mobile-visual span,
  .project-quality-grid article,
  .project-section__media img,
  .project-split-cta__paper,
  .project-split-cta__check,
  .project-split-cta__spark,
  .project-split-cta__media,
  .project-split-cta__media img,
  .project-progress-path span,
  .project-split-cta--intro .project-split-cta__copy::after,
  .project-magic-dust span,
  .project-space-motion::before,
  .project-space-motion::after,
  .project-space-motion span,
  .project-rocket,
  .project-rocket__trail,
  #rightText,
  #rightText.active,
  .wrong-text,
  .project-intro-title,
  .project-intro-title::after,
  #projectSpeedTitle,
  #projectSpeedTitle::after {
    animation: none;
  }

  .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.project-trust-strip__image,
.project-trust-strip__image img,
.project-cta__media,
.project-cta__media img,
.site-footer__mascot,
.site-footer__mascot img {
  border: 0;
}

@media (min-width: 561px) {
  .right-image img,
  .project-overview .project-section__media img {
    border: 0;
  }
}

/* Ajuste final movil: mantiene el look, evita recortes y compacta secciones en telefonos bajos. */
@media (max-width: 560px) {
  .welcome,
  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-cta,
  .project-section,
  .project-sections__intro,
  .project-trust-strip,
  .project-quality-grid,
  .project-assistant-service {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .welcome {
    min-height: calc(100svh - 88px);
  }

  .project-sections {
    gap: 18px;
  }

  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-cta,
  .project-section,
  .project-sections__intro,
  .project-trust-strip,
  .project-quality-grid,
  .project-assistant-service {
    width: 100%;
    max-width: calc(100vw - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .project-section,
  .project-section--reverse {
    padding: 62px 15px 18px;
    gap: 14px;
  }

  .project-section__media img {
    height: clamp(138px, 44vw, 185px);
  }

  .project-split-cta {
    padding: 24px 16px;
  }

  .project-split-cta__media {
    width: min(70vw, 230px);
    margin-top: 16px;
  }

  .project-trust-strip {
    padding: 24px 14px;
    gap: 10px;
  }

  .project-trust-strip__heading {
    margin-bottom: 4px;
  }

  .project-trust-strip__image {
    width: min(38vw, 138px);
  }

  .project-trust-strip article {
    gap: 8px;
    padding: 12px;
  }

  .project-trust-strip strong {
    width: 36px;
    height: 36px;
  }

  .project-quality-grid {
    padding: 18px 12px;
  }

  .project-quality-mobile-visual {
    min-height: 140px;
  }

  .project-quality-mobile-visual img {
    height: 132px;
    width: min(64vw, 230px);
  }

  .project-quality-grid article {
    padding: 13px;
    gap: 8px;
  }

  .project-quality-grid article span {
    width: 48px;
    height: 48px;
  }

  .project-feature-panel,
  .project-process,
  .project-assistant-service {
    padding: 24px 16px;
    gap: 16px;
  }

  .project-feature-panel__media img {
    width: min(48vw, 150px);
  }

  .project-feature-panel p {
    line-height: 1.58 !important;
  }

  .project-feature-panel li {
    padding: 11px 14px;
    line-height: 1.4;
  }

  .project-process__header {
    gap: 14px;
    margin-bottom: 16px;
  }

  .project-process__media {
    width: min(42vw, 150px);
    border-width: 6px;
  }

  .project-process__steps article {
    padding: 14px;
  }

  .project-assistant-service__media {
    width: min(48vw, 170px);
    margin-top: 10px;
  }

  .project-assistant-service p:not(.project-overview__label) {
    line-height: 1.55;
  }

  .project-cta {
    padding: 32px 18px;
  }

  .project-cta__note {
    display: block;
    max-width: 300px;
    margin-top: 8px;
  }
}

@media (max-width: 560px) and (max-height: 720px) {
  body {
    padding-top: 62px;
  }

  .language-selector {
    top: 6px;
    padding: 5px;
  }

  .language-selector button {
    padding: 6px 8px;
    font-size: .76rem;
  }

  .welcome {
    min-height: calc(100svh - 74px);
    padding: 20px 15px 18px;
  }

  #main-title {
    font-size: clamp(1.52rem, 8vw, 2rem);
  }

  #subtitle {
    margin-bottom: 12px;
    font-size: .9rem;
  }

  .mobile-hero-image {
    width: min(44vw, 150px);
    margin-bottom: 12px;
  }

  .buttons {
    gap: 8px;
  }

  .btn {
    --padY: 9px;
    --padX: 13px;
    font-size: .9rem;
  }

  .project-sections {
    margin-top: 18px;
    gap: 14px;
    padding-inline: 10px;
  }

  .project-split-cta--intro h2,
  .project-split-cta h2,
  .project-cta h2,
  .project-process h2,
  .project-section h2 {
    font-size: clamp(1.28rem, 6.6vw, 1.68rem);
    line-height: 1.16;
  }

  .project-intro-title,
  .project-feature-panel h2,
  .project-assistant-service h2 {
    font-size: clamp(1.28rem, 6.8vw, 1.72rem) !important;
    line-height: 1.18 !important;
  }

  .project-overview__label,
  .project-sections__eyebrow p,
  .project-cta p,
  .project-split-cta p {
    margin-bottom: 6px;
    font-size: .72rem;
    line-height: 1.24;
  }

  .project-section p,
  .project-process__steps p,
  .project-quality-grid p,
  .project-feature-panel p,
  .project-assistant-service p:not(.project-overview__label) {
    font-size: .84rem;
    line-height: 1.42;
  }

  .project-section,
  .project-section--reverse {
    padding: 56px 13px 15px;
    gap: 10px;
  }

  .project-section__number {
    top: 12px;
    width: 40px;
    height: 40px;
    font-size: .82rem;
  }

  .project-section__media img {
    height: clamp(112px, 35vw, 148px);
  }

  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-assistant-service,
  .project-cta,
  .project-sections__intro,
  .project-trust-strip,
  .project-quality-grid {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .project-sections__character-img,
  .project-sections__character-img img {
    max-height: 150px;
    height: 150px;
  }

  .project-trust-strip__heading h2 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .project-trust-strip__image {
    width: min(32vw, 112px);
  }

  .project-trust-strip article {
    padding: 10px;
  }

  .project-trust-strip span {
    font-size: .82rem !important;
    line-height: 1.28 !important;
  }

  .project-quality-mobile-visual {
    min-height: 112px;
  }

  .project-quality-mobile-visual img {
    height: 104px;
  }

  .project-quality-grid article {
    padding: 10px;
  }

  .project-quality-grid article span {
    width: 42px;
    height: 42px;
  }

  .project-feature-panel__media img,
  .project-assistant-service__media,
  .project-process__media {
    width: min(36vw, 122px);
  }

  .project-feature-panel li {
    padding: 9px 11px;
    font-size: .82rem;
  }

  .project-process__steps {
    gap: 8px;
  }

  .project-process__steps span {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .project-cta {
    gap: 12px;
  }

  .project-cta__note {
    font-size: .82rem;
    line-height: 1.35;
  }
}

@media (max-width: 360px) and (max-height: 680px) {
  .project-section p:nth-of-type(2),
  .project-overview .project-section__content p:not(.project-overview__label) {
    line-height: 1.34;
  }

  .project-section__media img,
  .project-split-cta__media img {
    max-height: 124px;
  }

  .project-quality-mobile-visual {
    display: none;
  }
}

/* Pantallas completas en movil: cada bloque entra en una vista de telefono. */
@media (max-width: 560px) {
  html {
    scroll-padding-top: 10px;
  }

  .project-sections {
    gap: 12px;
  }

  .welcome,
  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-cta,
  .project-section,
  .project-sections__intro,
  .project-trust-strip,
  .project-quality-grid,
  .project-assistant-service {
    min-height: calc(100svh - 20px);
    height: calc(100svh - 20px);
    display: grid;
    align-content: center;
    overflow: hidden;
  }

  .project-section,
  .project-section--reverse {
    grid-template-rows: auto auto;
    padding: 54px 14px 14px;
  }

  .project-section h2 {
    margin-bottom: 10px;
  }

  .project-section p {
    margin-bottom: 8px;
  }

  .project-section__media img {
    height: clamp(105px, 34vw, 150px);
  }

  .project-split-cta {
    padding: 20px 14px;
  }

  .project-split-cta__media {
    width: min(62vw, 205px);
    margin-top: 12px;
  }

  .project-trust-strip {
    padding: 18px 12px;
    gap: 8px;
  }

  .project-trust-strip__heading {
    gap: 5px;
    margin-bottom: 2px;
  }

  .project-trust-strip__heading h2 {
    max-width: 270px;
    font-size: clamp(1.22rem, 6.2vw, 1.68rem);
  }

  .project-trust-strip__image {
    width: min(34vw, 120px);
    margin: 0 auto 2px;
  }

  .project-trust-strip article {
    min-height: 0;
    padding: 10px;
  }

  .project-trust-strip strong {
    width: 34px;
    height: 34px;
  }

  .project-trust-strip span {
    font-size: clamp(.78rem, 3.6vw, .9rem) !important;
    line-height: 1.28 !important;
  }

  .project-quality-grid {
    padding: 16px 12px;
    gap: 8px;
  }

  .project-quality-mobile-visual {
    min-height: 110px;
  }

  .project-quality-mobile-visual img {
    width: min(58vw, 205px);
    height: 104px;
  }

  .project-quality-grid article {
    min-height: 0;
    padding: 10px 12px;
  }

  .project-quality-grid article span {
    width: 42px;
    height: 42px;
    font-size: .68rem;
  }

  .project-quality-grid article h3 {
    font-size: .92rem;
  }

  .project-quality-grid article p {
    font-size: .78rem;
    line-height: 1.28;
  }

  .project-feature-panel,
  .project-process,
  .project-assistant-service {
    padding: 20px 14px;
    gap: 12px;
  }

  .project-feature-panel__media img,
  .project-assistant-service__media,
  .project-process__media {
    width: min(34vw, 126px);
  }

  .project-assistant-service__media {
    margin-top: 12px;
  }

  .project-feature-panel__side {
    gap: 10px;
  }

  .project-feature-panel ul {
    gap: 8px;
  }

  .project-feature-panel li {
    padding: 9px 10px;
    font-size: .82rem;
    line-height: 1.32;
  }

  .project-process__header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .project-process__steps {
    gap: 8px;
  }

  .project-process__steps article {
    padding: 10px 12px;
  }

  .project-process__steps span {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }

  .project-process__steps h3 {
    margin-bottom: 4px;
    font-size: .94rem;
  }

  .project-assistant-service h2,
  .project-feature-panel h2 {
    margin-bottom: 8px;
  }

  .project-assistant-service p:not(.project-overview__label) {
    margin-bottom: 10px;
  }

  .project-assistant-service .btn {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .project-cta {
    padding: 24px 16px;
    gap: 12px;
  }

  .project-cta h2 {
    max-width: 290px;
  }

  .welcome {
    min-height: calc(100svh - 88px);
    height: calc(100svh - 88px);
  }
}

@media (max-width: 560px) and (max-height: 720px) {
  .welcome,
  .project-split-cta,
  .project-feature-panel,
  .project-process,
  .project-cta,
  .project-section,
  .project-sections__intro,
  .project-trust-strip,
  .project-quality-grid,
  .project-assistant-service {
    min-height: calc(100svh - 16px);
    height: calc(100svh - 16px);
  }

  .project-section,
  .project-section--reverse {
    padding: 48px 12px 12px;
  }

  .project-section__media img {
    height: clamp(88px, 30vw, 126px);
  }

  .project-sections__character-img,
  .project-sections__character-img img {
    max-height: 118px;
    height: 118px;
  }

  .project-quality-mobile-visual {
    display: none;
  }

  .project-trust-strip__image {
    width: min(28vw, 96px);
  }

  .project-feature-panel__media img,
  .project-assistant-service__media,
  .project-process__media {
    width: min(30vw, 102px);
  }

  .project-assistant-service__media {
    margin-top: 10px;
  }

  .project-split-cta__media {
    width: min(54vw, 170px);
  }

  .welcome {
    min-height: calc(100svh - 74px);
    height: calc(100svh - 74px);
  }
}

@media (max-width: 380px) and (max-height: 680px) {
  .project-split-cta--intro h2,
  .project-split-cta h2,
  .project-cta h2,
  .project-process h2,
  .project-section h2,
  .project-feature-panel h2,
  .project-assistant-service h2,
  .project-intro-title {
    font-size: clamp(1.08rem, 5.8vw, 1.42rem) !important;
    line-height: 1.12 !important;
  }

  .project-section p,
  .project-process__steps p,
  .project-quality-grid p,
  .project-feature-panel p,
  .project-assistant-service p:not(.project-overview__label) {
    font-size: .76rem;
    line-height: 1.28;
  }

  .project-section__media img,
  .project-split-cta__media img {
    max-height: 96px;
  }

  .project-trust-strip__image,
  .project-feature-panel__media,
  .project-assistant-service__media,
  .project-process__media {
    display: none;
  }
}
