:root {
  --color-ink: #1a1a18;
  --color-paper: #faf8f4;
  --color-warm: #f5f0e8;
  --color-gold: #c8a245;
  --color-gold-light: #e8d48b;
  --color-gold-dark: #9a7a2e;
  --color-terracotta: #c4603a;
  --color-sage: #7a9a7a;
  --color-slate: #4a5568;
  --color-muted: #8a8a82;
  --color-border: #e8e4dc;
  --color-card: #ffffff;
  --color-overlay: rgba(26, 26, 24, 0.85);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1.0625rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.75rem;
  --size-4xl: 3.75rem;
  --size-5xl: 5rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-soft: 0 4px 24px rgba(26, 26, 24, 0.06);
  --shadow-medium: 0 8px 40px rgba(26, 26, 24, 0.1);
  --shadow-strong: 0 16px 64px rgba(26, 26, 24, 0.14);

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.7;
  color: var(--color-ink);
  background-color: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-terracotta);
}

/* ─── UTILITY ─── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--color-warm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ─── TYPOGRAPHY ─── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--size-4xl);
}

h2 {
  font-size: var(--size-3xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--size-xl);
  margin-bottom: var(--space-sm);
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.text-muted {
  color: var(--color-muted);
}

.text-gold {
  color: var(--color-gold-dark);
}

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

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: var(--size-lg);
  color: var(--color-slate);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-ink);
  color: var(--color-paper);
}

.btn--primary:hover {
  background: var(--color-terracotta);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}

.btn--secondary:hover {
  background: var(--color-ink);
  color: var(--color-paper);
}

.btn--gold {
  background: var(--color-gold);
  color: white;
}

.btn--gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ─── HEADER / NAV ─── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.header--scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--color-ink);
}

.header__logo span {
  color: var(--color-gold-dark);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav a {
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-slate);
  transition: color var(--transition-base);
}

.header__nav a:hover {
  color: var(--color-ink);
}

.header__cta {
  font-size: var(--size-sm) !important;
  padding: 0.65rem 1.25rem !important;
}

/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(200, 162, 69, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: var(--size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, var(--size-5xl));
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}

.hero__title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-terracotta);
}

.hero__subtitle {
  font-size: var(--size-lg);
  color: var(--color-slate);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--size-2xl);
  font-weight: 700;
  color: var(--color-ink);
  display: block;
}

.hero__stat-label {
  font-size: var(--size-sm);
  color: var(--color-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone {
  width: 300px;
  height: 600px;
  background: var(--color-ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-strong);
  position: relative;
  transform: rotate(2deg);
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-paper);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__phone-header {
  padding: 20px 16px 12px;
  background: var(--color-ink);
  color: white;
}

.hero__phone-header h4 {
  font-size: var(--size-sm);
  color: white;
  margin-bottom: 2px;
}

.hero__phone-header p {
  font-size: var(--size-xs);
  opacity: 0.7;
}

.hero__phone-cards {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}

.phone-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
  animation: cardSlideIn var(--transition-slow) ease-out both;
}

.phone-card:nth-child(1) { animation-delay: 0.3s; }
.phone-card:nth-child(2) { animation-delay: 0.5s; }
.phone-card:nth-child(3) { animation-delay: 0.7s; }

.phone-card__category {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.phone-card__title {
  font-family: var(--font-display);
  font-size: var(--size-sm);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.phone-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6875rem;
  color: var(--color-muted);
}

.phone-card__price {
  font-weight: 700;
  color: var(--color-sage);
}

.phone-card__badge {
  font-size: 0.5625rem;
  background: var(--color-warm);
  padding: 2px 6px;
  border-radius: 99px;
  color: var(--color-terracotta);
  font-weight: 600;
}

.hero__float-badge {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  font-size: var(--size-sm);
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}

.hero__float-badge--top {
  top: 40px;
  right: -20px;
}

.hero__float-badge--bottom {
  bottom: 60px;
  left: -20px;
  animation-delay: -3s;
}

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

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

/* ─── HOW IT WORKS ─── */

.how-it-works {
  padding: var(--space-3xl) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold), var(--color-gold-light));
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
}

.step__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-md);
  background: var(--color-paper);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.step:hover .step__icon {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 8px rgba(200, 162, 69, 0.08);
  transform: scale(1.05);
}

.step__number {
  position: absolute;
  top: -8px;
  right: calc(50% - 56px);
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  margin-bottom: var(--space-xs);
}

.step__desc {
  font-size: var(--size-sm);
  color: var(--color-slate);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── PLANS SHOWCASE ─── */

.plans-showcase {
  padding: var(--space-3xl) 0;
  background: var(--color-ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.plans-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 162, 69, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(196, 96, 58, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.plans-showcase .section-eyebrow {
  color: var(--color-gold-light);
}

.plans-showcase h2 {
  color: white;
}

.plans-showcase .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  position: relative;
  z-index: 2;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.plan-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--color-slate), var(--color-ink));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.plan-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(26, 26, 24, 0.8));
}

.plan-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 2;
}

.plan-card__body {
  padding: var(--space-md);
}

.plan-card__title {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.plan-card__desc {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.plan-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-gold-light);
}

.plan-card__social {
  font-size: var(--size-xs);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── FORM SECTION ─── */

.form-section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(var(--color-gold), transparent);
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border);
  position: relative;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold), var(--color-terracotta));
  border-radius: 0 0 4px 4px;
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.form__input,
.form__select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--size-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  color: var(--color-ink);
  transition: all var(--transition-base);
  appearance: none;
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 69, 0.1);
}

.form__input::placeholder {
  color: var(--color-muted);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8a82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form__chip {
  position: relative;
}

.form__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form__chip label {
  display: inline-block;
  padding: 8px 16px;
  font-size: var(--size-sm);
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition-base);
  user-select: none;
}

.form__chip label:hover {
  border-color: var(--color-gold);
  background: rgba(200, 162, 69, 0.05);
}

.form__chip input:checked + label {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: white;
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: var(--space-sm);
}

.form__checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form__checkbox span {
  font-size: var(--size-sm);
  color: var(--color-slate);
}

.form__submit {
  width: 100%;
  margin-top: var(--space-lg);
  font-size: var(--size-lg);
  padding: 1.125rem 2rem;
}

/* ─── PRICING / SUBSCRIPTION ─── */

.pricing {
  padding: var(--space-3xl) 0;
  background: var(--color-warm);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: var(--space-xl) auto 0;
}

.pricing-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.pricing-card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-medium);
}

.pricing-card--featured::before {
  content: 'Más popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 99px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--size-4xl);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: var(--size-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  font-size: var(--size-sm);
  color: var(--color-slate);
}

.pricing-card__features li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-sage);
  font-weight: 700;
}

.pricing-card__btn {
  width: 100%;
  margin-top: var(--space-md);
}

/* ─── TESTIMONIALS ─── */

.testimonials {
  padding: var(--space-3xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.testimonial__quote {
  font-family: var(--font-accent);
  font-size: var(--size-lg);
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testimonial__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: var(--size-3xl);
  color: var(--color-gold);
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 4px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--size-sm);
  color: white;
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--size-sm);
}

.testimonial__detail {
  font-size: var(--size-xs);
  color: var(--color-muted);
}

/* ─── FOOTER ─── */

.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  color: white;
}

.footer__logo span {
  color: var(--color-gold);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
}

.footer__links a {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.5);
}

.footer__links a:hover {
  color: var(--color-gold-light);
}

.footer__copy {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.4);
}

/* ─── ANIMATIONS (scroll-triggered) ─── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ─── SUCCESS STATE ─── */

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.form-success.active {
  display: block;
}

.form-success__icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.form-success__title {
  font-family: var(--font-display);
  font-size: var(--size-2xl);
  margin-bottom: var(--space-sm);
}

.form-success__text {
  color: var(--color-slate);
  font-size: var(--size-base);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 968px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    margin-top: var(--space-xl);
  }

  .hero__phone {
    width: 260px;
    height: 520px;
    transform: rotate(0);
  }

  .hero__float-badge {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps::before {
    display: none;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

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

  .header__nav {
    display: none;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: var(--size-3xl);
  }

  h2 {
    font-size: var(--size-2xl);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .form-wrapper {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
  }
}
