/* ============================================================
   MrCita.es — style.css  (v2 — Premium SaaS Redesign)
   Type: Manrope (Google Fonts)
   Colors: #166534 primary · #22C55E secondary · #F8FAFC bg
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:       #166534;
  --primary-hover: #14532D;
  --primary-light: #DCFCE7;
  --secondary:     #22C55E;
  --secondary-hover:#16A34A;

  /* Neutrals */
  --white:     #ffffff;
  --bg:        #F8FAFC;
  --gray-50:   #F8FAFC;
  --gray-100:  #F1F5F9;
  --gray-200:  #E2E8F0;
  --gray-300:  #CBD5E1;
  --gray-400:  #94A3B8;
  --gray-500:  #64748B;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1E293B;
  --gray-900:  #111827;

  /* Legacy aliases (used by app-shell.css) */
  --green-900: #052e16;
  --green-800: #14532d;
  --green-700: #15803d;
  --green-600: #166534;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;
  --gold:      #d4a843;
  --gold-lt:   #f5e6b8;

  /* WhatsApp */
  --wa-green:  #25D366;
  --wa-dark:   #128C7E;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows — softer, more premium */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 6px rgba(0,0,0,.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);

  /* Layout */
  --nav-h:     72px;
  --container: 1200px;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(22,101,52,.2), 0 4px 12px rgba(22,101,52,.15);
}
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(22,101,52,.25), 0 8px 20px rgba(22,101,52,.2);
}

.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
  box-shadow: 0 1px 2px rgba(37,211,102,.2), 0 4px 12px rgba(37,211,102,.15);
}
.btn--wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(37,211,102,.25), 0 8px 20px rgba(37,211,102,.2);
}

.btn--outline {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--gray-700);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--gray-100); color: var(--gray-900); }

.btn--lg  { padding: 14px 32px; font-size: 1rem; }
.btn--xl  { padding: 16px 40px; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn--sm  { padding: 8px 16px; font-size: .8125rem; }
.btn--block { width: 100%; }

/* ── LOGO ────────────────────────────────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 9px;
  font-size: .875rem;
  font-weight: 700;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.logo-dot { color: var(--secondary); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 40px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__login { margin-left: auto; }
.nav__cta { margin-left: 8px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.nav__hamburger:hover { background: var(--gray-100); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 28px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  gap: 0;
}
.nav__mobile a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
}
.nav__mobile a:hover { color: var(--primary); }
.nav__mobile .btn {
  margin-top: 20px;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
}
.nav__mobile.open { display: flex; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,101,52,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,101,52,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero__bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34,197,94,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(22,101,52,.04) 0%, transparent 50%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 600px; }
.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.hero__headline em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1875rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.75;
  font-weight: 400;
}
.hero__sub strong { color: var(--gray-800); font-weight: 600; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.hero__card--confirmed {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.hero__card--alert {
  background: var(--primary);
  color: var(--white);
  margin-left: 32px;
}
.hero__card--stat {
  background: linear-gradient(135deg, var(--primary) 0%, #14532d 100%);
  color: var(--white);
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 28px 32px;
}
.hero__card .card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__card--alert .card-icon { background: rgba(255,255,255,.15); color: var(--white); }
.hero__card div strong { display: block; font-size: .9375rem; font-weight: 700; }
.hero__card div span { display: block; font-size: .8125rem; opacity: .7; }
.hero__card div .time { font-size: .75rem; opacity: .55; }
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
  display: block;
}
.stat-label { font-size: .8125rem; opacity: .75; font-weight: 500; }
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--wa-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.hero__scroll-hint span {
  display: block;
  width: 24px; height: 36px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gray-400);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  padding: 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--white); }
.trust-icon { font-size: 1.375rem; flex-shrink: 0; }
.trust-item strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.trust-item p { font-size: .8125rem; color: var(--gray-500); line-height: 1.4; }

/* ── SERVICES ────────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  font-size: 1.75rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.1); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -.01em;
}
.service-card p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.service-card__link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 8px; }
.services__cta { text-align: center; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how {
  padding: 120px 0;
  background: var(--gray-50);
}
.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  margin-bottom: 56px;
}
.how__step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how__step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.how__step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: .875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.how__step-icon { font-size: 2rem; margin-bottom: 12px; }
.how__step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.how__step p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.how__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  color: var(--gray-300);
}
.how__connector::after {
  content: '→';
  font-size: 1.25rem;
  color: var(--gray-300);
}
.how__cta { text-align: center; }

/* ── ACTIVITY TICKER ─────────────────────────────────────── */
.activity {
  padding: 18px 0;
  background: var(--primary);
  overflow: hidden;
}
.activity__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.activity__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: var(--secondary); }
.time-ago { color: rgba(255,255,255,.5); font-weight: 400; margin-left: 4px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-card--featured {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  grid-row: span 1;
}
.testimonial-card--featured:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
.testimonial-card--featured .stars { color: #fde68a; }
.testimonial-card p {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card--featured p { color: rgba(255,255,255,.85); }
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9375rem;
  flex-shrink: 0;
}
.testimonial-card--featured .avatar { background: rgba(255,255,255,.2); color: var(--white); }
.testimonial-card footer div { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer cite { font-style: normal; font-weight: 700; font-size: .9rem; color: var(--gray-900); }
.testimonial-card--featured footer cite { color: var(--white); }
.testimonial-card footer span { font-size: .8rem; color: var(--gray-400); }
.testimonial-card--featured footer span { color: rgba(255,255,255,.6); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--gray-50);
}
.faq .container { max-width: 800px; }
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 20px;
  transition: background var(--transition);
}
.faq__question:hover { background: var(--gray-50); }
.faq__question[aria-expanded="true"] {
  background: var(--primary-light);
  color: var(--primary);
}
.faq__icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}
.faq__answer {
  padding: 0 28px 22px;
}
.faq__answer p {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.75;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.faq__answer strong { color: var(--gray-800); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #14532d 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(34,197,94,.08);
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.contact__text h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.contact__text > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact__info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  color: rgba(255,255,255,.8);
}
.contact__info a {
  transition: color var(--transition);
}
.contact__info a:hover { color: var(--secondary); }
.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.contact__actions .btn--xl { width: 100%; }
.contact__actions .btn--outline {
  width: 100%;
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.contact__actions .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand .nav__logo { margin-bottom: 18px; }
.footer__brand .logo-text { color: var(--white); }
.footer__brand p {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col span {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--secondary); }
.footer__bottom {
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.06);
}
.footer__social a:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px; height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,211,102,.4), 0 1px 4px rgba(37,211,102,.3);
  transition: all var(--transition);
  opacity: 1;
  pointer-events: auto;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}

/* ── HERO ILLUSTRATION (layered scene) ───────────────────── */
.hv__scene {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background SVG blob / map */
.hv__bg-blob {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hv__bg-blob svg { width: 100%; height: 100%; }

/* Phone mockup */
.hv__phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
}
.hv__phone-frame {
  width: 190px;
  background: #111827;
  border-radius: 32px;
  padding: 16px 12px 18px;
  border: 2px solid rgba(255,255,255,.12);
  position: relative;
}
.hv__phone-notch {
  width: 56px;
  height: 9px;
  background: #000;
  border-radius: 5px;
  margin: 0 auto 12px;
}
.hv__phone-screen {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 12px 10px;
  min-height: 280px;
}
.hv__phone-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}
.hv__phone-notif {
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv__phone-notif--green { background: #fff; border: 1px solid #E2E8F0; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.hv__phone-notif--dark  { background: #166534; }

/* Document cards */
.hv__doc {
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.2));
}
.hv__doc--tie {
  bottom: 40px;
  left: -10px;
  transform: rotate(-8deg);
}
.hv__doc--passport {
  top: 40px;
  right: 0px;
  transform: rotate(6deg);
}
.hv__tie-card {
  width: 130px;
  background: linear-gradient(135deg, #166534 0%, #14532d 100%);
  border-radius: 12px;
  padding: 12px;
  color: white;
}
.hv__tie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.hv__passport {
  width: 80px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2444 100%);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  color: white;
}

/* Fingerprint */
.hv__fingerprint {
  position: absolute;
  bottom: 80px;
  right: 20px;
  z-index: 4;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Floating notification cards */
.hv__float {
  position: absolute;
  z-index: 5;
}
.hv__float--1 { top: 20px;    left: -40px; }
.hv__float--2 { top: 160px;   right: -30px; }
.hv__float--3 { bottom: 120px; left: -30px; }
.hv__float--4 { bottom: 20px;  right: -20px; }

.hv__notif-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.hv__notif-card--white { background: #fff; border: 1px solid rgba(0,0,0,.06); }
.hv__notif-card--dark  { background: #166534; }

.hv__notif-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hv__notif-icon--green { background: #DCFCE7; color: #166534; }
.hv__notif-icon--pulse { background: rgba(255,255,255,.15); }

.hv__notif-title { font-size: .875rem; font-weight: 700; color: #111827; line-height: 1.3; }
.hv__notif-sub   { font-size: .75rem;  color: #64748B; margin-top: 2px; }

/* Float animation */
@keyframes hv-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hv__float-animate {
  animation: hv-float 4s ease-in-out infinite;
}

/* Social proof row */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__proof-avatars { display: flex; }
.proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.proof-avatar:first-child { margin-left: 0; }
.hero__proof-text { display: flex; flex-direction: column; gap: 1px; }
.hero__proof-stars { color: #f59e0b; font-size: .9375rem; letter-spacing: 1px; }
.hero__proof-text span:last-child { font-size: .8rem; color: var(--gray-500); font-weight: 500; }
.hero__proof-divider { width: 1px; height: 30px; background: var(--gray-200); }
.hero__proof-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gray-600);
}
.hero__proof-secure svg { color: var(--primary); flex-shrink: 0; }

/* Mobile adjustments */
@media (max-width: 900px) {
  .hv__scene { height: 380px; }
  .hv__phone-frame { width: 150px; }
  .hv__float--1 { left: -10px; top: 10px; }
  .hv__float--2 { right: -10px; top: 110px; }
  .hv__float--3 { left: -10px; bottom: 80px; }
  .hv__float--4 { right: -10px; bottom: 10px; }
  .hv__notif-card { padding: 8px 12px; }
  .hv__notif-title { font-size: .8125rem; }
  .hv__notif-sub   { font-size: .7rem; }
}
@media (max-width: 600px) {
  .hv__scene { height: 320px; }
  .hv__float--1, .hv__float--4 { display: none; }
  .hv__doc--passport { display: none; }
  .hv__phone-frame { width: 130px; }
  .hero__proof { gap: 10px; }
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}
.reveal--right { transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* Stagger */
.trust-bar__inner .reveal:nth-child(2) { transition-delay: .08s; }
.trust-bar__inner .reveal:nth-child(3) { transition-delay: .16s; }
.trust-bar__inner .reveal:nth-child(4) { transition-delay: .24s; }
.services__grid .reveal:nth-child(2) { transition-delay: .06s; }
.services__grid .reveal:nth-child(3) { transition-delay: .12s; }
.services__grid .reveal:nth-child(4) { transition-delay: .18s; }
.services__grid .reveal:nth-child(5) { transition-delay: .24s; }
.services__grid .reveal:nth-child(6) { transition-delay: .30s; }
.services__grid .reveal:nth-child(7) { transition-delay: .36s; }
.services__grid .reveal:nth-child(8) { transition-delay: .42s; }
.how__steps .reveal:nth-child(1) { transition-delay: 0s; }
.how__steps .reveal:nth-child(3) { transition-delay: .12s; }
.how__steps .reveal:nth-child(5) { transition-delay: .24s; }
.how__steps .reveal:nth-child(7) { transition-delay: .36s; }
.testimonials__grid .reveal:nth-child(2) { transition-delay: .08s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: .16s; }
.testimonials__grid .reveal:nth-child(4) { transition-delay: .08s; }
.testimonials__grid .reveal:nth-child(5) { transition-delay: .16s; }
.testimonials__grid .reveal:nth-child(6) { transition-delay: .24s; }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .activity__track { animation: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 40px); min-height: auto; padding-bottom: 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: 100%; }
  .hero__headline { font-size: clamp(2rem, 6vw, 2.75rem); }
  .hero__visual { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero__card { flex: 1; min-width: 200px; }

  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .trust-item:nth-child(2n) { border-bottom: none; }

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

  .how__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .how__connector { display: none; }
  .how__step {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .how__step-num { flex-shrink: 0; margin-bottom: 0; }
  .how__step-icon { display: none; }
  .how__step div { display: flex; flex-direction: column; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__actions { width: 100%; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding-inline: 20px; }

  .hero__headline { font-size: 2rem; letter-spacing: -.02em; }
  .hero__sub { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__visual { flex-direction: column; }
  .hero__card { width: 100%; }

  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .trust-item:last-child { border-bottom: none; }

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

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

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 1.75rem; }
}

/* ============================================================
   HERO ILLUSTRATION — hv- prefix (no conflicts with existing)
   ============================================================ */
.hero__visual {
  position: relative;
  height: 520px;
  overflow: visible;
}

/* Blob */
.hv-blob {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hv-blob svg { width: 100%; height: 100%; }

/* Phone — absolutely centered */
.hv-phone {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
}
.hv-phone-frame {
  width: 188px;
  background: #0f172a;
  border-radius: 34px;
  padding: 14px 10px 18px;
  border: 2px solid rgba(255,255,255,.1);
}
.hv-phone-notch {
  width: 60px; height: 10px;
  background: #000;
  border-radius: 5px;
  margin: 0 auto 12px;
}
.hv-phone-screen {
  background: #F8FAFC;
  border-radius: 22px;
  padding: 12px 10px;
  min-height: 280px;
}
.hv-phone-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}
.hv-logo-mark {
  width: 22px; height: 22px;
  background: #166534;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hv-logo-text { font-size: .75rem; font-weight: 800; color: #111827; }
.hv-logo-text span { color: #22C55E; }
.hv-phone-notif {
  border-radius: 12px;
  padding: 9px 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-notif-white { background: #fff; border: 1px solid #E2E8F0; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.hv-notif-green { background: #166534; }
.hv-notif-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hv-dot-green { background: #166534; color: #fff; }
.hv-dot-light { background: #22C55E; color: #fff; }
.hv-ntitle { font-size: .65rem; font-weight: 700; color: #111827; line-height: 1.3; }
.hv-nsub   { font-size: .58rem; color: #64748B; }
.hv-ntitle-w { color: #fff; }
.hv-nsub-w   { color: rgba(255,255,255,.65); }
.hv-phone-stat {
  margin-top: 10px;
  background: rgba(22,101,52,.07);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.hv-stat-num   { font-size: 1.25rem; font-weight: 800; color: #166534; display: block; }
.hv-stat-label { font-size: .6rem; color: #64748B; font-weight: 600; }

/* TIE Card */
.hv-tie {
  position: absolute;
  bottom: 44px; left: -4px;
  z-index: 4;
  transform: rotate(-7deg);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.18));
}
.hv-tie-inner {
  width: 136px;
  background: linear-gradient(135deg, #166534 0%, #14532d 100%);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
}
.hv-tie-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.hv-tie-label { font-size: .42rem; font-weight: 700; letter-spacing: .06em; opacity: .8; }
.hv-tie-chips { display: flex; gap: 3px; }
.hv-tie-chip  { height: 4px; border-radius: 2px; background: rgba(255,255,255,.5); }
.hv-tie-body  { display: flex; gap: 8px; align-items: flex-start; }
.hv-tie-photo {
  width: 26px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}
.hv-tie-fields { display: flex; flex-direction: column; gap: 2px; }
.hv-tie-fields span { font-size: .42rem; opacity: .75; }
.hv-tie-footer { font-size: .38rem; opacity: .5; margin-top: 6px; letter-spacing: .04em; }

/* Passport */
.hv-passport {
  position: absolute;
  top: 36px; right: 4px;
  z-index: 4;
  transform: rotate(6deg);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.2));
}
.hv-passport-inner {
  width: 80px;
  background: linear-gradient(160deg, #1e3a5f 0%, #0c1e3e 100%);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  color: #fff;
}
.hv-pass-country { font-size: .48rem; font-weight: 700; letter-spacing: .1em; opacity: .9; margin-bottom: 6px; }
.hv-pass-emblem  { font-size: 1.6rem; margin-bottom: 6px; display: block; }
.hv-pass-word    { font-size: .52rem; font-weight: 800; letter-spacing: .08em; opacity: .95; }

/* Fingerprint */
.hv-fingerprint {
  position: absolute;
  bottom: 76px; right: 18px;
  z-index: 4;
  width: 54px; height: 54px;
  background: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

/* Floating cards */
.hv-float { position: absolute; z-index: 5; }
.hv-f1 { top: 18px;     left: -28px; }
.hv-f2 { top: 170px;    right: -16px; }
.hv-f3 { bottom: 110px; left: -20px; }
.hv-f4 { bottom: 16px;  right: -8px; }

.hv-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.hv-card-white { background: #fff; border: 1px solid rgba(0,0,0,.06); }
.hv-card-dark  { background: #166534; }
.hv-card-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 800; flex-shrink: 0;
}
.hv-icon-green { background: #DCFCE7; color: #166534; }
.hv-icon-pulse { background: rgba(255,255,255,.15); }
.hv-card-title { font-size: .875rem; font-weight: 700; color: #111827; }
.hv-card-sub   { font-size: .75rem;  color: #64748B; margin-top: 2px; }

/* Float animations */
@keyframes hv-float-anim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hv-f1 { animation: hv-float-anim 4s ease-in-out infinite; }
.hv-f2 { animation: hv-float-anim 4s ease-in-out infinite .8s; }
.hv-f3 { animation: hv-float-anim 4s ease-in-out infinite 1.6s; }
.hv-f4 { animation: hv-float-anim 4s ease-in-out infinite 2.4s; }

/* Responsive */
@media (max-width: 900px) {
  .hero__visual { height: 420px; }
  .hv-phone-frame { width: 150px; }
  .hv-f1 { left: -10px; } .hv-f2 { right: -10px; }
  .hv-f3 { left: -10px; } .hv-f4 { right: -10px; }
}
@media (max-width: 600px) {
  .hero__visual { height: 360px; }
  .hv-phone-frame { width: 130px; }
  .hv-passport { display: none; }
  .hv-f1 { display: none; } .hv-f4 { display: none; }
  .hv-f2 { right: 0; } .hv-f3 { left: 0; }
}
