/* =============================================
   VARIABLES
============================================= */
:root {
  --fuchsia: #F034D8;
  --fuchsia-dark: #C41FB3;
  --gold: #C9A844;
  --gold-light: #E8C97A;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --white: #FFFFFF;
  --white-muted: #A0A0A0;
  --white-dim: #F5F5F5;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   UTILITIES
============================================= */
.fuchsia { color: var(--fuchsia); }
.gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--fuchsia {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
}
.btn--fuchsia:hover {
  background: transparent;
  color: var(--fuchsia);
}
.btn--full { width: 100%; text-align: center; display: block; }

/* =============================================
   SCROLL ANIMATIONS (initial states)
============================================= */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 68, 0.15);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav__cta {
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--fuchsia);
  color: var(--fuchsia);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav__cta:hover {
  background: var(--fuchsia);
  color: var(--white);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(233, 30, 140, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201, 168, 68, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  user-select: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}
.hero__title-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}
.hero__title-wrap h1 {
  flex-shrink: 0;
}
.hero__logo-float {
  flex-shrink: 0;
}
.hero__stamp {
  flex-shrink: 0;
  animation: spin-stamp 12s linear infinite;
}
@keyframes spin-stamp {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__logo-float img {
  height: clamp(5rem, 7vw, 10rem);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(240, 52, 216, 0.4));
}

/* ── Logo animado en hero ── */
.hero__logo-anim { flex-shrink: 0; }
.logo-build-svg {
  width: clamp(160px, 22vw, 340px);
  height: auto;
  overflow: visible;
}
.la-ovillo {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: la-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}
@keyframes la-pop {
  from { opacity: 0; transform: scale(0.1); }
  to   { opacity: 1; transform: scale(1); }
}
.la-arrow-path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: la-draw 0.7s ease-out 1.3s forwards;
}
@keyframes la-draw {
  to { stroke-dashoffset: 0; }
}
.la-plane {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: la-fade 0.3s ease 2.0s forwards;
}
@keyframes la-fade {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}
.la-ring {
  stroke-dasharray: 339;
  stroke-dashoffset: 339;
  animation: la-draw 0.9s ease-out 2.4s forwards;
}
.la-dot {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: la-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 3.3s forwards;
}
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 12rem);
  line-height: 0.9;
  display: flex;
  flex-direction: column;
}
.hero__title .line {
  display: block;
}
.hero__title .white { color: var(--white); }
.hero__title .fuchsia { color: var(--fuchsia); }
.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero__sub em {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
}
.hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  opacity: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.hero__scroll-hint:hover { color: var(--fuchsia); }
.hero__arrow {
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* TICKER */
.hero__ticker {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.8rem 0;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 120s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--white-muted);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   MANIFIESTO
============================================= */
.manifesto {
  padding: 10rem 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.manifesto__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 4rem;
}
.manifesto__big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.05;
  margin-bottom: 2rem;
}
.manifesto__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-muted);
  max-width: 680px;
  margin-top: 3rem;
}

/* =============================================
   METRICS
============================================= */
.metrics {
  padding: 8rem 4rem;
  background: var(--black-soft);
  border-top: 1px solid rgba(201, 168, 68, 0.1);
  border-bottom: 1px solid rgba(201, 168, 68, 0.1);
}
.metrics__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.metrics__label {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--white-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
  line-height: 1.5;
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.metric-card {
  background: var(--black-card);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s, background 0.3s;
}
.metric-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  background: rgba(233, 30, 140, 0.04);
}
.metric-card__top {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.metric-card__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  color: var(--fuchsia);
  line-height: 1;
}
.metric-card__unit {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gold);
}
.metric-card__desc {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.metric-card__small {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.metrics__closing {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--white);
}
.about__more {
  display: inline-block;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.about__more:hover { color: var(--fuchsia); border-color: var(--fuchsia); }

/* =============================================
   SERVICES
============================================= */
.services {
  padding: 10rem 4rem;
}
.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 1.5rem;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 5rem;
}
.services__header {
  margin-bottom: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 5rem;
}
.service-card {
  background: var(--black-card);
  padding: 3.5rem;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fuchsia), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(233, 30, 140, 0.2); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--fuchsia);
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.service-card__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 2rem;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.service-card__list li {
  font-size: 0.9rem;
  color: var(--white-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.service-card__result {
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  background: rgba(233, 30, 140, 0.06);
  border-left: 2px solid var(--fuchsia);
  color: var(--white);
  line-height: 1.6;
}

/* =============================================
   ABOUT
============================================= */
.about {
  padding: 10rem 4rem;
  background: var(--black-soft);
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services__intro {
  max-width: 680px;
  margin-top: 1.5rem;
}
.services__intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 1rem;
}
.services__intro p:first-child {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.services__intro p:last-child {
  color: var(--gold);
  margin-bottom: 0;
}
.about__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4rem;
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
}
.about__body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--white-muted);
  margin-bottom: 1.2rem;
}
.about__body strong { color: var(--white); font-weight: 600; }
.about__values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--white-muted);
}
.value-item__icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.about__photo-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__photo-wrap {
  position: relative;
  overflow: hidden;
}
.about__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--fuchsia);
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}
.about__photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--black-soft), transparent);
  z-index: 1;
  pointer-events: none;
}
.about__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.4s;
}
.about__photo:hover { filter: grayscale(0%); }
.about__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--white);
  padding-left: 1.5rem;
  border-left: 3px solid var(--fuchsia);
}
.about__cite {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.8rem;
  padding-left: 1.5rem;
}

/* =============================================
   PROMISE
============================================= */
.promise {
  padding: 12rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.promise__inner { position: relative; z-index: 2; }
.promise__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 2rem;
}
.promise__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 2.5rem;
}
.promise__body {
  font-size: 1.1rem;
  color: var(--white-muted);
  margin-bottom: 3rem;
}

/* =============================================
   CONTACT
============================================= */
.contact {
  padding: 8rem 4rem;
  background: var(--black-soft);
}
.contact__inner {
  max-width: 760px;
  margin: 0 auto;
}
.contact__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 1rem;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.contact__sub {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.contact__sub strong { color: var(--gold); }

/* FORM */
.contact__form { display: flex; flex-direction: column; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__group label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--fuchsia); }
.form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A0A0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__group select option { background: var(--black-card); }
.form__privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 0.5rem;
}
.form__privacy a { color: var(--white-muted); text-decoration: underline; }

/* SUCCESS */
.contact__success {
  text-align: center;
  padding: 5rem 2rem;
}
.success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(233, 30, 140, 0.15);
  border: 2px solid var(--fuchsia);
  color: var(--fuchsia);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.contact__success h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact__success p { color: var(--white-muted); line-height: 1.7; }
.contact__success strong { color: var(--gold); }

/* =============================================
   FOOTER
============================================= */
.footer {
  padding: 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 2rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--fuchsia); }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.15);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .about__content { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
  .nav { padding: 0.8rem 2rem; }
  .nav.scrolled { padding: 0.6rem 2rem; }
  .hero { padding: 7rem 2rem 6rem; }
  .hero__ticker { display: block; }
  .ticker__track { font-size: 0.75rem; animation-duration: 120s; }
  .manifesto { padding: 6rem 2rem; }
  .metrics { padding: 6rem 2rem; }
  .metrics__grid { grid-template-columns: 1fr 1fr; }
  .services { padding: 6rem 2rem; }
  .service-card { padding: 2.5rem 2rem; }
  .about { padding: 6rem 2rem; }
  .about__quote { padding: 3rem 2rem; }
  .promise { padding: 8rem 2rem; }
  .contact { padding: 6rem 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .footer { padding: 3rem 2rem; }
  .footer__links { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .metrics__grid { grid-template-columns: 1fr; }
}

/* ── Hamburger Menu ── */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1000;
  transition: right 0.3s ease;
}
.nav__mobile.open { right: 0; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav__mobile-link:hover { color: var(--fuchsia); }
.nav__mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: var(--fuchsia);
  border-radius: 4px;
}
.nav__mobile-cta:hover { background: var(--fuchsia-dark); color: var(--white); }
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(201,168,68,0.3);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.cookie-banner__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.cookie-banner__btn--outline:hover { border-color: var(--white); color: var(--white); }
.cookie-banner__btn--primary { background: var(--fuchsia); color: var(--white); }
.cookie-banner__btn--primary:hover { background: var(--fuchsia-dark); }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__btns { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ── Back to top ── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A0A0A;
  border: 2px solid #C9A844;
  color: #C9A844;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#backToTop.visible {
  display: flex;
}
#backToTop:hover {
  background: #F034D8;
  border-color: #F034D8;
  color: #fff;
}

/* =============================================
   TESTS / DIAGNÓSTICO
============================================= */
.tests {
  background: var(--black-soft);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.tests__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tests__label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tests__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.tests__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.tests__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.test-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.test-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.test-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.test-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--white);
  line-height: 1.15;
}
.test-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  flex: 1;
}
.test-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.test-card:hover .test-card__cta {
  opacity: 0.85;
}
.tests__note {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .tests { padding: 5rem 1.5rem; }
  .tests__grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* =============================================
   FAQ
============================================= */
.faq {
  background: var(--black);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 3.5rem;
}
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0;
}
.faq__item:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.faq__q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.faq__a {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
}
.faq__a strong { color: var(--white); }
@media (max-width: 768px) { .faq { padding: 5rem 1.5rem; } }

/* =============================================
   TESTIMONIOS (listo para activar)
============================================= */
.testimonials {
  background: var(--black-soft);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonials__inner { max-width: 1100px; margin: 0 auto; }
.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 3.5rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  flex: 1;
}
.testimonial-card__text::before { content: '"'; color: var(--fuchsia); font-size: 1.5rem; line-height: 0; }
.testimonial-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-card__role {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .testimonials { padding: 5rem 1.5rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
}


/* ── SECCIÓN VISUAL: PROCESO + INFOGRAFÍAS ── */
.visual-section { padding: 7rem 5rem; background: #0D0D0D; }
.visual-section + .visual-section { border-top: 1px solid rgba(255,255,255,0.06); }
.visual-inner { max-width: 900px; margin: 0 auto; }
.visual-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 0.8rem; }
.visual-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.6rem; }
.visual-title span { color: var(--fuchsia); }
.visual-subtitle { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 520px; margin-bottom: 3rem; }

/* Proceso */
.vproceso { display: flex; flex-direction: column; position: relative; }
.vproceso::before { content: ''; position: absolute; left: 23px; top: 48px; bottom: 48px; width: 2px; background: linear-gradient(to bottom, var(--fuchsia), var(--gold)); opacity: 0.25; }
.vpaso { display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem; align-items: flex-start; padding: 1.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.vpaso:last-child { border-bottom: none; }
.vpaso-num { width: 48px; height: 48px; border-radius: 50%; background: #1A1A1A; border: 2px solid var(--fuchsia); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--fuchsia); flex-shrink: 0; position: relative; z-index: 2; }
.vpaso:nth-child(even) .vpaso-num { border-color: var(--gold); color: var(--gold); }
.vpaso-content { padding-top: 0.5rem; }
.vpaso-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: 4px; margin-bottom: 0.5rem; }
.vpaso-tag.fc { background: rgba(233,30,140,0.1); color: var(--fuchsia); border: 1px solid rgba(233,30,140,0.2); }
.vpaso-tag.gc { background: rgba(201,168,68,0.1); color: var(--gold); border: 1px solid rgba(201,168,68,0.2); }
.vpaso-titulo { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.vpaso-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Funnel */
.vfunnel { display: flex; flex-direction: column; }
.vfunnel-stage { display: grid; grid-template-columns: 90px 1fr; gap: 1.2rem; align-items: center; }
.vfunnel-bar-wrap { display: flex; flex-direction: column; align-items: center; }
.vfunnel-bar { height: 60px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; color: #0A0A0A; font-weight: 700; }
.vfunnel-arrow { width: 2px; height: 16px; background: rgba(255,255,255,0.08); }
.vfunnel-stage:nth-child(1) .vfunnel-bar { background: var(--fuchsia); width: 100%; }
.vfunnel-stage:nth-child(3) .vfunnel-bar { background: #c4186e; width: 88%; }
.vfunnel-stage:nth-child(5) .vfunnel-bar { background: #9e146c; width: 74%; }
.vfunnel-stage:nth-child(7) .vfunnel-bar { background: #7a1060; width: 58%; }
.vfunnel-stage:nth-child(9) .vfunnel-bar { background: var(--gold); width: 42%; color: #0A0A0A; }
.vfunnel-divider { grid-column: 1/-1; height: 16px; display: flex; align-items: center; padding-left: 45px; }
.vfunnel-divider::after { content: '↓'; color: rgba(255,255,255,0.15); font-size: 0.9rem; }
.vfunnel-info { padding: 0.9rem 1.2rem; background: #1A1A1A; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; }
.vfunnel-info h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.vfunnel-info p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Email flow */
.vemail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; }
.vemail-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; margin-top: 1px; }
.vemail-step { background: #111; padding: 1.4rem 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; position: relative; }
.vemail-step::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--fuchsia); font-size: 1rem; z-index: 2; }
.vemail-step:nth-child(3n)::after, .vemail-step:last-child::after { display: none; }
.vemail-num { width: 30px; height: 30px; border-radius: 50%; background: rgba(233,30,140,0.1); border: 1.5px solid var(--fuchsia); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--fuchsia); }
.vemail-step:nth-child(3n) .vemail-num { background: rgba(201,168,68,0.1); border-color: var(--gold); color: var(--gold); }
.vemail-step h4 { font-size: 0.83rem; font-weight: 700; color: #fff; line-height: 1.3; }
.vemail-step p { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.vemail-result { background: rgba(201,168,68,0.06); border: 1px solid rgba(201,168,68,0.18); border-radius: 10px; padding: 1.2rem 1.4rem; margin-top: 1rem; display: flex; gap: 0.8rem; align-items: center; }
.vemail-result p { font-size: 0.85rem; color: #fff; line-height: 1.5; }
.vemail-result p strong { color: var(--gold); }

@media (max-width: 768px) {
  .visual-section { padding: 5rem 1.5rem; }
  .vfunnel-stage { grid-template-columns: 70px 1fr; }
  .vemail-grid, .vemail-row2 { grid-template-columns: 1fr; }
  .vemail-step::after { display: none; }
}
