/* ================================
   NVR STUDIOS — Landing Page
   Fuentes: Cormorant Garamond + Outfit
   Tema: Negro profundo + Morado elegante
   ================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Fondos */
  --black:      #050507;
  --black2:     #090910;
  --surface:    #0e0e18;
  --surface2:   #141420;
  --surface3:   #1a1a2a;

  /* Bordes */
  --border:     rgba(139,92,246,0.10);
  --border2:    rgba(139,92,246,0.22);
  --border3:    rgba(139,92,246,0.40);

  /* Morados */
  --purple:     #8b5cf6;
  --purple-d:   #7c3aed;
  --purple-l:   #a78bfa;
  --purple-xl:  #c4b5fd;
  --purple-dim: rgba(139,92,246,0.07);
  --purple-glow:rgba(139,92,246,0.30);

  /* Texto */
  --white:      #ededf5;
  --gray:       #8888a8;
  --gray2:      #55556a;

  /* Tipografía */
  --display:    'Cormorant Garamond', Georgia, serif;
  --body:       'Outfit', system-ui, sans-serif;

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== CURSOR ===== */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.055) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(24px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo span { color: var(--purple-l); }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(140deg, var(--purple-d) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(139,92,246,0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(139,92,246,0.40);
  background: linear-gradient(140deg, var(--purple) 0%, var(--purple-l) 100%);
}
.btn--ghost {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border2);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: var(--purple-l);
  background: var(--purple-dim);
}
.btn--nav {
  background: transparent;
  color: var(--purple-l);
  border: 1px solid var(--border2);
  padding: 9px 20px;
  font-size: 13px;
  border-radius: var(--r-sm);
}
.btn--nav:hover { background: var(--purple-dim); border-color: var(--purple-l); }
.btn--submit {
  width: 100%;
  padding: 17px;
  font-size: 16px;
  border-radius: var(--r-md);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb--1 {
  width: 700px; height: 700px;
  top: -250px; right: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.38) 0%, transparent 70%);
  animation: floatA 9s ease-in-out infinite;
}
.orb--2 {
  width: 450px; height: 450px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 70%);
  animation: floatB 11s ease-in-out infinite;
}
.orb--3 {
  width: 280px; height: 280px;
  top: 45%; left: 38%;
  background: radial-gradient(circle, rgba(167,139,250,0.14) 0%, transparent 70%);
  animation: floatC 13s ease-in-out infinite;
}
@keyframes floatA { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-28px,28px) scale(1.04)} }
@keyframes floatB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(22px,-22px)} }
@keyframes floatC { 0%,100%{transform:translate(0,0)} 33%{transform:translate(14px,-14px)} 66%{transform:translate(-14px,10px)} }

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139,92,246,0.035) 1px,transparent 1px), linear-gradient(90deg,rgba(139,92,246,0.035) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 840px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(139,92,246,0.06);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--gray);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-l);
  box-shadow: 0 0 8px var(--purple);
  animation: blink 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero__headline {
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 600;
  line-height: 1.03;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: italic;
  background: linear-gradient(130deg, var(--purple-l) 0%, var(--purple-xl) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat { text-align: left; }
.stat strong { display: block; font-size: 18px; font-weight: 600; color: var(--purple-l); line-height: 1.3; }
.stat span { font-size: 11px; color: var(--gray2); text-transform: uppercase; letter-spacing: 0.07em; }
.stat__divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.scroll-indicator { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  margin: 0 auto;
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTIONS ===== */
.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--black2); }

.section__header { text-align: center; margin-bottom: 72px; }
.label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section__body { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.8; }

/* ===== SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ===== PAIN LIST ===== */
.pain__list {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
}
.pain__item {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pain__item:last-child { border-bottom: none; }
.pain__item:hover { background: var(--surface2); }
.pain__num {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  color: var(--border2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 38px;
}
.pain__item strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.pain__item p { font-size: 13.5px; font-weight: 300; color: var(--gray); margin: 0; }

/* ===== SERVICES ===== */
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.service__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service__card:hover {
  border-color: var(--border2);
  box-shadow: 0 0 50px rgba(139,92,246,0.07);
}
.service__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--purple-dim);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-l);
  margin-bottom: 20px;
}
.service__badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 12px;
}
.service__card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.service__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: #9999bb;
  line-height: 1.55;
}
.service__list li svg { flex-shrink: 0; margin-top: 2px; color: var(--purple-l); }
.service__platform {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 1px;
}
.service__platform--meta {
  background: rgba(24,119,242,0.12);
  color: #60a5fa;
  border: 1px solid rgba(24,119,242,0.2);
}
.service__platform--google {
  background: rgba(234,67,53,0.10);
  color: #f87171;
  border: 1px solid rgba(234,67,53,0.2);
}
.service__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.service__footer > span { font-size: 12px; color: var(--gray2); }

.combo__card {
  background: linear-gradient(140deg, rgba(124,58,237,0.1) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.combo__badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(139,92,246,0.15);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 12px;
}
.combo__left h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.combo__left p { font-size: 14px; font-weight: 300; color: var(--gray); max-width: 500px; line-height: 1.7; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.step {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.25s;
}
.step:hover { background: var(--surface); }
.step__header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.step__num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), transparent 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step__line { flex: 1; height: 1px; background: linear-gradient(to right, var(--border2), transparent); }
.step__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--purple-dim);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-l);
  margin-bottom: 18px;
}
.step h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.step p { font-size: 13.5px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.step__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--purple-dim);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--purple-l);
  letter-spacing: 0.04em;
}

/* ===== FIT GRID ===== */
.fit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit__col { padding: 44px; border-radius: var(--r-xl); }
.fit__col--yes {
  background: linear-gradient(145deg, rgba(139,92,246,0.07) 0%, rgba(139,92,246,0.02) 100%);
  border: 1px solid var(--border2);
}
.fit__col--no { background: var(--surface); border: 1px solid var(--border); }
.fit__header { margin-bottom: 28px; }
.fit__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.fit__badge--yes { background: rgba(139,92,246,0.12); color: var(--purple-l); border: 1px solid rgba(139,92,246,0.25); }
.fit__badge--no  { background: rgba(255,255,255,0.03); color: var(--gray); border: 1px solid var(--border); }
.fit__col ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.fit__col li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; font-weight: 300; color: #aaaabb; line-height: 1.55; }
.fit__col li svg { flex-shrink: 0; margin-top: 2px; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 20px; margin-bottom: 28px; }
.testimonial {
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial:hover { border-color: var(--border2); box-shadow: 0 0 40px rgba(139,92,246,0.07); }
.testimonial__quote {
  font-family: var(--display);
  font-size: 72px;
  line-height: 0.75;
  color: var(--purple);
  opacity: 0.25;
  margin-bottom: 4px;
  font-weight: 600;
}
.testimonial blockquote {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #ccccdd;
  font-style: italic;
  margin-bottom: 32px;
  border: none;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-d), var(--surface2));
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial__author span { font-size: 12px; font-weight: 300; color: var(--gray); }
.testimonial__stars { margin-left: auto; color: var(--purple-l); font-size: 13px; letter-spacing: 2px; }
.social__note { text-align: center; font-size: 12.5px; font-weight: 300; color: var(--gray2); }

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  background: var(--surface);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq__q:hover { background: var(--surface2); }
.faq__icon { font-size: 20px; color: var(--purple-l); flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
  background: var(--black2);
}
.faq__item.open .faq__a { max-height: 320px; padding: 18px 32px 26px; }
.faq__a p { font-size: 14.5px; font-weight: 300; color: var(--gray); line-height: 1.8; }

/* ===== CONTACT SECTION ===== */
.contact__section { position: relative; overflow: hidden; }
.contact__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__left .section__title {
  margin-bottom: 16px;
}
.contact__left .section__title em {
  font-style: italic;
  background: linear-gradient(130deg, var(--purple-l), var(--purple-xl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact__left .section__body { margin-bottom: 36px; }
.contact__trust { display: flex; flex-direction: column; gap: 14px; }
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
}
.trust__item svg { color: var(--purple-l); flex-shrink: 0; }

/* ===== FORM ===== */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__group label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form__group label span { color: var(--purple-l); }
.form__optional { color: var(--gray2) !important; font-weight: 300; text-transform: none; letter-spacing: 0; }

.form__group input,
.form__group select,
.form__group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__group textarea { resize: vertical; min-height: 90px; }

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray2); }
.form__group select option { background: var(--surface2); color: var(--white); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.form__group input:hover,
.form__group select:hover,
.form__group textarea:hover { border-color: var(--border2); }

.field__error {
  display: block;
  font-size: 12px;
  color: rgba(239,68,68,0.9);
  margin-top: 4px;
}

.form__privacy {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--gray2);
  margin-top: -8px;
}
.form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(139,92,246,0.1);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--purple-l);
}
.form__success[hidden] { display: none; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0; border-top: 1px solid var(--border); background: var(--black); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer__nav { display: flex; gap: 28px; margin: 4px 0; }
.footer__nav a { font-size: 13px; font-weight: 300; color: var(--gray2); text-decoration: none; transition: color 0.2s; }
.footer__nav a:hover { color: var(--white); }
.footer__inner p { font-size: 13px; font-weight: 300; color: var(--gray2); }
.footer__inner a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer__inner a:hover { color: var(--purple-l); }
.footer__copy { color: var(--gray2) !important; margin-top: 8px; font-size: 12px !important; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--delay   { transition-delay: 0.13s; }
.reveal--delay-2 { transition-delay: 0.26s; }
.reveal--delay-3 { transition-delay: 0.39s; }
.reveal.visible  { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .split, .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: 1fr; }
  .fit__grid { grid-template-columns: 1fr; }
  .combo__card { flex-direction: column; gap: 24px; }
  .nav__links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding: 110px 0 80px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__actions { flex-direction: column; }
  .container { padding: 0 18px; }
  .form__row { grid-template-columns: 1fr; }
  .service__card, .contact__form, .testimonial { padding: 28px 24px; }
  .fit__col { padding: 28px 20px; }
  .combo__card { padding: 28px 24px; }
}
