/* ========== METODO REINA — Brand System ========== */
:root {
  --bg: #0A0A0A;
  --bg-alt: #0D1117;
  --brand: #0B3C5D;
  --brand-deep: #082C44;
  --accent: #FF6B00;
  --accent-hover: #E65C00;
  --text: #FFFFFF;
  --text-dim: rgba(255,255,255,0.55);
  --text-faint: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --whatsapp: #25D366;
  --danger: #DC2626;
  --footer-bg: #050505;

  --font-display: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --container: 1200px;
  --pad: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ========== Typography ========== */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
p { color: var(--text-dim); font-size: clamp(15px, 1.2vw, 17px); }
.lead { font-size: clamp(17px, 1.6vw, 21px); color: rgba(255,255,255,0.78); line-height: 1.55; }

/* ========== Layout ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section {
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative;
}
.section-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  border: 0;
  width: 100%;
}

/* ========== Buttons ========== */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,107,0,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,0,0.4);
}
.btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-dark {
  background: #0A0A0A;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-arrow::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 14px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 600px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { padding: 17px 22px; }
}

/* ========== Badges ========== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.10);
  border: 1px solid rgba(255,107,0,0.32);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), #c44d00);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(255,107,0,0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 10px 16px; font-size: 12px; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: #fff;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .menu-toggle { display: flex; }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 100px 24px 40px;
  display: none;
  flex-direction: column;
}
.mobile-menu.open { display: flex; animation: fadeIn .25s var(--ease); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  padding: 16px 0;
  color: #fff;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu .cta-row { margin-top: 32px; }

/* ========== Hero ========== */
.hero {
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 75% 30%, rgba(11,60,93,0.55), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(255,107,0,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.hero-text > * + * { margin-top: 22px; }
.hero-text .eyebrow-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
.hero-text h1 {
  margin-top: 14px;
  font-size: clamp(38px, 6.4vw, 78px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.hero-text h1 .accent { color: var(--accent); }
.hero-text .lead { max-width: 580px; }
.hero-text p { max-width: 560px; }
.hero-text .cta-row { margin-top: 36px; }
.hero-image-wrap {
  position: relative;
  aspect-ratio: 1/1.05;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(11,60,93,0.85) 0%, rgba(11,60,93,0.4) 40%, transparent 72%);
  filter: blur(20px);
  z-index: 0;
}
.hero-image-wrap::after {
  /* fade-out from bottom into bg */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-image-wrap img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero-image-tag {
  position: absolute;
  bottom: 28%; left: 8%;
  z-index: 3;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.hero-image-tag .dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #4ade80;
  margin-right: 8px;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { max-width: 380px; margin: 0 auto; order: -1; aspect-ratio: 1/1; }
  .hero-text { text-align: left; }
  .hero-text h1 { font-size: clamp(34px, 9vw, 52px); }
}

/* ========== Pain points ========== */
.problem {
  background: var(--bg-alt);
  position: relative;
}
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' /></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.03;
  pointer-events: none;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.section-head .badge { margin-bottom: 4px; }
.section-head p { max-width: 640px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.pain-item:hover {
  border-color: rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.04);
}
.pain-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255,107,0,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 14px;
}
.pain-item p { color: rgba(255,255,255,0.85); font-size: 15px; margin: 0; }
.problem-conclusion {
  margin-top: clamp(56px, 7vw, 80px);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.problem-conclusion h3 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  display: inline;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255,107,0,0.25) 50%, rgba(255,107,0,0.25) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 4px 8px;
  margin: 0 -8px;
  transition: background-position 1.4s var(--ease);
}
.problem-conclusion.in-view h3 { background-position: 0% 0; }
.problem-conclusion p { margin-top: 24px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ========== Testimonials ========== */
.testimonials {
  background: var(--brand);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  padding-bottom: clamp(56px, 8vw, 100px);
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255,107,0,0.10), transparent 60%);
}
.ticker {
  position: relative;
  margin: 0 calc(var(--pad) * -1);
  padding: 0 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 40s linear infinite;
  padding: 8px 0;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial {
  width: clamp(290px, 32vw, 380px);
  flex-shrink: 0;
  position: relative;
  background:
    linear-gradient(155deg, rgba(255,107,0,0.10) 0%, rgba(11,60,93,0.45) 100%),
    rgba(10,10,10,0.5);
  border: 1px solid rgba(255,107,0,0.28);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(255,107,0,0.08),
    0 12px 40px rgba(0,0,0,0.4),
    0 0 30px rgba(255,107,0,0.10);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -28px; right: 14px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(255,107,0,0.4),
    0 18px 50px rgba(0,0,0,0.5),
    0 0 60px rgba(255,107,0,0.30);
}
.testimonial > * { position: relative; z-index: 1; }
.testimonial .quote {
  display: none;
}
.testimonial p {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}
.testimonial .author {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,107,0,0.25);
  padding-top: 14px;
}
.testimonial .author span { color: rgba(255,255,255,0.6); font-weight: 500; margin-left: 4px; }
.testimonials .cta-center { margin-top: 56px; text-align: center; }

/* ========== Comparison ========== */
.compare-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 800px) {
  .compare-grid { grid-template-columns: 1fr; gap: 20px; }
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  position: relative;
}
.compare-col.bad {
  opacity: 0.7;
  filter: grayscale(0.8) brightness(0.85);
  transform: scale(0.94);
  background: rgba(255,255,255,0.015);
}
.compare-col.bad * { color: rgba(255,255,255,0.55) !important; }
.compare-col.bad .compare-icon { background: rgba(255,255,255,0.06) !important; color: rgba(255,255,255,0.4) !important; }
.compare-col.bad .compare-tag { color: rgba(255,255,255,0.4) !important; }
.compare-col.bad .compare-list li { font-size: 14px; }
.compare-col.good {
  border: 2px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(255,107,0,0.10) 0%, rgba(11,60,93,0.20) 100%),
    rgba(10,10,10,0.5);
  box-shadow:
    0 0 0 1px rgba(255,107,0,0.4),
    0 30px 80px rgba(255,107,0,0.18),
    0 0 60px rgba(255,107,0,0.15);
  padding: 40px 32px;
  transform: scale(1.02);
}
.compare-col.good .compare-list li { font-size: 18px; font-weight: 600; color: #fff; }
.compare-col.good .compare-head h3 { font-size: 28px; }
.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.compare-head h3 { font-size: 22px; }
.compare-col.bad .compare-head h3 { color: var(--text-dim); }
.compare-col.good .compare-head h3 { color: var(--accent); }
.compare-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
}
.compare-col.good .compare-tag { background: var(--accent); color: #fff; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.compare-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.compare-col.bad .compare-icon { background: rgba(220,38,38,0.12); color: #f87171; }
.compare-col.good .compare-icon { background: rgba(255,107,0,0.18); color: var(--accent); }
.compare-conclusion {
  text-align: center;
  margin-top: 56px;
  font-size: clamp(22px, 3vw, 32px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Method (3 pillars) ========== */
.method {
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.method::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 80% 100%, rgba(255,107,0,0.08), transparent 60%),
    radial-gradient(500px 300px at 0% 0%, rgba(11,60,93,0.6), transparent);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.pillar:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: inline-block;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}
.pillar h4 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}
.method-impact {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.method-impact .line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  color: #fff;
}
.method-impact .line .em { color: var(--accent); font-weight: 900; }
.method-impact .sep {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.2);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 15px;
}
.benefit::before {
  content: "✓";
  width: 24px; height: 24px;
  background: rgba(255,107,0,0.18);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

/* ========== Includes ========== */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.include-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(11,60,93,0.18), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: start;
  position: relative;
  overflow: hidden;
}
.include-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.include-icon svg { width: 24px; height: 24px; }
.include-body h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.include-body p { color: var(--text-dim); margin: 0; }
.include-progress {
  grid-column: 1 / -1;
  margin-top: 18px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.include-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffb380);
  width: 0;
  border-radius: 99px;
  transition: width 1.2s var(--ease);
}
.include-card.in-view .include-progress-bar { width: 100%; }
@media (max-width: 600px) {
  .include-card { padding: 24px; gap: 18px; }
}

/* ========== How it works (steps) ========== */
.howitworks {
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.howitworks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 80px;
  width: 2px;
  background: rgba(255,255,255,0.10);
}
.steps::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255,107,0,0));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.6s var(--ease);
}
.steps.in-view::after { transform: scaleY(1); }
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-deep);
  border: 2px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.step-content {
  padding-top: 14px;
}
.step h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
}
.step p { margin-top: 6px; font-size: 15px; }
.step-final .step-num {
  background: var(--accent);
  border-color: var(--accent);
  width: 64px; height: 64px;
  font-size: 18px;
  box-shadow: 0 0 0 6px rgba(255,107,0,0.18);
}
.step-final.in-view .step-num { animation: pulseOnce 1s var(--ease); }
@keyframes pulseOnce {
  0% { box-shadow: 0 0 0 6px rgba(255,107,0,0.18); }
  50% { box-shadow: 0 0 0 16px rgba(255,107,0,0.4); }
  100% { box-shadow: 0 0 0 6px rgba(255,107,0,0.18); }
}
.step-final h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.step-final p { font-size: 16px; max-width: 540px; margin-top: 14px; }
.howitworks .cta-row { margin-top: 56px; justify-content: center; }

/* ========== About Diego ========== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-mobile-title { display: block; order: 1; margin-bottom: 8px; }
  .about-image-wrap { order: 2; }
  .about-text { order: 3; }
  .about-text .about-mobile-hide { display: none; }
}
.about-mobile-title { display: none; }
.about-image-wrap {
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
  border: none;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  left: 50%; top: 6%;
  transform: translateX(-50%);
  width: 92%; height: 92%;
  border-radius: 50% 50% 16px 16px;
  background: radial-gradient(circle at center 40%, rgba(11,60,93,0.7) 0%, rgba(11,60,93,0.25) 45%, transparent 75%);
  filter: blur(24px);
  z-index: 0;
}
.about-image-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.about-image-wrap img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.about-text > * + * { margin-top: 18px; }
.about-text h2 { font-size: clamp(36px, 5vw, 60px); }
.about-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--accent);
  letter-spacing: -0.02em;
}
.about-text p { max-width: 540px; }
.responsibilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.resp-block h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}
.resp-block ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.resp-block li { font-size: 15px; color: rgba(255,255,255,0.85); }
.resp-block li.highlight {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ========== Sticky bottom CTA ========== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(0);
  z-index: 88;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255,107,0,0.45), 0 0 0 1px rgba(255,255,255,0.10) inset;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.sticky-cta:hover { background: var(--accent-hover); }
.sticky-cta.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(140%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .sticky-cta { bottom: 84px; font-size: 12px; padding: 13px 22px; }
  .whatsapp-fab { bottom: 22px; }
}

/* ========== Final CTA ========== */
.final-cta {
  background: var(--accent);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,0.15) 0%, transparent 40%);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='1.2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.final-cta .container { position: relative; }
.final-cta h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 40px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.final-cta .cta-row { justify-content: center; }
.final-cta .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.final-cta .btn-outline:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--footer-bg);
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .logo { margin-bottom: 16px; font-size: 18px; }
.footer-brand p { max-width: 360px; font-size: 14px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ========== WhatsApp floating ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-fab .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  border: 1px solid var(--border);
}
.whatsapp-fab:hover .tooltip { opacity: 1; }
@media (max-width: 600px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .whatsapp-fab.bouncing { animation: fabBounce 0.5s var(--ease) 0s 3; }
  .whatsapp-fab .tooltip { display: none; }
}
@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== Cookies banner ========== */
.cookies {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  background: #111111;
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 95;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(120%);
  transition: transform .5s var(--ease);
  max-width: 720px;
  margin: 0 auto;
}
.cookies.show { transform: translateY(0); }
.cookies-text { flex: 1 1 280px; min-width: 260px; }
.cookies-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.cookies-text p { font-size: 13px; line-height: 1.5; }
.cookies-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookies-btn {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all .2s ease;
}
.cookies-btn.accept { background: var(--accent); color: #fff; }
.cookies-btn.accept:hover { background: var(--accent-hover); }
.cookies-btn.reject, .cookies-btn.custom {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid var(--border);
}
.cookies-btn.reject:hover, .cookies-btn.custom:hover { background: rgba(255,255,255,0.1); }

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 400ms; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* Hero entrance */
.hero-text > * { opacity: 0; transform: translateY(20px); animation: heroIn 0.8s var(--ease) forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }
.hero-text > *:nth-child(5) { animation-delay: 0.7s; }
.hero-image-wrap { opacity: 0; transform: translateX(40px); animation: heroImgIn 1s var(--ease) 0.3s forwards; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgIn {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ========== Subpages ========== */
.subpage {
  padding-top: clamp(120px, 14vw, 160px);
  padding-bottom: clamp(72px, 10vw, 120px);
  min-height: 70vh;
}
.subpage h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; }
.subpage .lead { max-width: 720px; margin-bottom: 40px; }
.subpage .prose { max-width: 760px; }
.subpage .prose h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--accent);
}
.subpage .prose p { margin-bottom: 14px; }
.subpage .prose ul { padding-left: 22px; margin-bottom: 14px; }
.subpage .prose li { color: var(--text-dim); margin-bottom: 6px; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.form-row input, .form-row textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s ease, background-color .2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,107,0,0.04);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-success {
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.4);
  color: #4ade80;
  font-size: 14px;
  margin-bottom: 18px;
  display: none;
}
.form-success.show { display: block; animation: fadeIn .3s ease; }
.contact-info {
  background: rgba(11,60,93,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.contact-info-row:first-of-type { border-top: none; }
.contact-info-row .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,107,0,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Contact-only styles */
.contact-hero { max-width: 720px; margin: 0 auto; text-align: center; }
.wa-card {
  margin-top: 48px;
  padding: 48px 32px;
  background: linear-gradient(160deg, rgba(37,211,102,0.08), rgba(11,60,93,0.25));
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 60px rgba(37,211,102,0.10);
}
.wa-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  margin-bottom: 20px;
}
.wa-icon svg { width: 38px; height: 38px; fill: #fff; }
.wa-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.wa-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}
