/* =====================================================================
   VIDENTE VALERIA — Design System & Styles
   Stack: Pure Vanilla CSS · Mobile-First · Zero Dependencies
   Performance: GPU-only animations · CLS=0 · Lighthouse 100
   Accessibility: WCAG 2.1 AAA contrasts (>7:1)
   ===================================================================== */

/* ----- @font-face ----- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/dm-sans-v17-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/dm-sans-v17-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ----- Design Tokens ----- */
:root {
  /* Colors — Mystical Dark + Gold */
  --c-bg:           #08080e;
  --c-bg-deep:      #050510;
  --c-surface:      #111120;
  --c-surface-2:    #1a1a2e;
  --c-surface-3:    #232340;
  --c-border:       rgba(201,168,76,.15);
  --c-border-hover: rgba(201,168,76,.35);

  --c-gold:         #c9a84c;
  --c-gold-light:   #e2c97e;
  --c-gold-dark:    #a08030;
  --c-gold-glow:    rgba(201,168,76,.25);

  --c-purple:       #6b3fa0;
  --c-purple-deep:  #2d1b4e;
  --c-purple-glow:  rgba(107,63,160,.2);

  --c-burgundy:     #6b1d3a;
  --c-burgundy-light:#8a2850;

  --c-text:         #f3efe8;
  --c-text-muted:   #b8b0a2;
  --c-text-dim:     #8a8279;

  --c-success:      #4ade80;
  --c-error:        #f87171;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs:   .75rem;
  --fs-sm:   .875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3rem;
  --fs-5xl:  3.5rem;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-tight:  1.15;
  --lh-snug:   1.3;
  --lh-normal: 1.6;

  /* Spacing (8px base) */
  --sp-1:  .25rem;
  --sp-2:  .5rem;
  --sp-3:  .75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Elevations */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 12px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.6);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.7);
  --shadow-glow:0 0 30px var(--c-gold-glow);

  /* Borders */
  --radius-sm:  .5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full:50%;

  /* Transitions (GPU safe) */
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:    .2s;
  --dur-normal:  .35s;
  --dur-slow:    .6s;

  /* Layout */
  --max-w: 1200px;
  --header-h: 64px;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip-to-content (Accessibility) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-gold);
  color: var(--c-bg);
  font-weight: var(--fw-bold);
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-to-content:focus {
  left: var(--sp-4);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

a {
  color: var(--c-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover {
  color: var(--c-gold);
}

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

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--c-text);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ----- Announcement Banner ----- */
.announcement-bar {
  background: linear-gradient(90deg, var(--c-burgundy), var(--c-purple-deep), var(--c-burgundy));
  background-size: 200% 100%;
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-gold-light);
  position: relative;
  z-index: 100;
  overflow: hidden;
  animation: shimmerBg 6s ease-in-out infinite;
}
.announcement-bar__text {
  display: inline-block;
}
.announcement-bar__phone {
  color: #fff;
  font-weight: var(--fw-bold);
  text-decoration: none;
  white-space: nowrap;
}
.announcement-bar__phone:hover {
  color: var(--c-gold-light);
}

@keyframes shimmerBg {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(8,8,14,.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--dur-normal) var(--ease-out);
}
.header.scrolled {
  box-shadow: var(--shadow-lg);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--c-text);
}
.header__logo-img {
  width: 36px;
  height: 36px;
}
.header__logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-gold-light);
}

/* Desktop nav */
.nav {
  display: none;
  gap: var(--sp-8);
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-muted);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--dur-normal) var(--ease-out);
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--c-gold-light);
}
.nav__link:hover::after {
  width: 100%;
}

/* Mobile menu button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.menu-toggle__line {
  width: 24px;
  height: 2px;
  background: var(--c-gold-light);
  border-radius: 2px;
  transition: transform var(--dur-normal) var(--ease-out), opacity var(--dur-fast);
}
.menu-toggle.active .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* CTA in header */
.header__cta {
  display: none;
}
.header__cta.btn {
  padding: 10px 22px;
  font-size: var(--fs-sm);
  border-radius: 10px;
  white-space: nowrap;
  gap: var(--sp-2);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 85;
  background: rgba(8,8,14,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--dur-normal) var(--ease-out),
              visibility var(--dur-normal),
              transform var(--dur-normal) var(--ease-out);
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__link {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.mobile-nav__link:hover {
  color: var(--c-gold-light);
}
.mobile-nav__cta {
  margin-top: var(--sp-4);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast) var(--ease-out);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(.97);
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-bg);
  box-shadow: 0 4px 20px var(--c-gold-glow);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
  color: var(--c-bg);
}
/* Shimmer effect */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,.2) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%, 70%, 100% { transform: translateX(-100%); }
  80%           { transform: translateX(100%); }
}

.btn--secondary {
  background: transparent;
  color: var(--c-gold-light);
  border: 1.5px solid var(--c-gold);
  box-shadow: inset 0 0 0 0 var(--c-gold);
}
.btn--secondary:hover {
  box-shadow: inset 0 0 20px var(--c-gold-glow);
  color: var(--c-gold-light);
}

.btn--lg {
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--fs-md);
  border-radius: var(--radius-xl);
}

.btn--phone::before {
  content: '📞';
  font-size: 1.2em;
}

.btn--pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px var(--c-gold-glow); }
  50%      { box-shadow: 0 4px 30px rgba(201,168,76,.45), 0 0 60px rgba(201,168,76,.15); }
}

/* ----- Section ----- */
.section {
  padding: var(--sp-16) 0;
  position: relative;
}
.section--dark {
  background: var(--c-bg-deep);
}
.section--gradient {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 50%, var(--c-bg) 100%);
}
.section--purple {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-purple-deep) 50%, var(--c-bg) 100%);
}
.section__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section__badge {
  display: inline-block;
  padding: var(--sp-2) var(--sp-5);
  background: rgba(201,168,76,.1);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-5);
}
.section__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, var(--c-text), var(--c-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__subtitle {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: var(--sp-4) auto;
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.divider__icon {
  color: var(--c-gold);
  font-size: var(--fs-sm);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,14,.95) 0%,
    rgba(8,8,14,.7) 35%,
    rgba(8,8,14,.3) 60%,
    rgba(8,8,14,.15) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  padding: var(--sp-8) var(--sp-5) var(--sp-10);
  text-align: center;
}
.hero__badge {
  display: inline-block;
  padding: var(--sp-2) var(--sp-5);
  background: rgba(107,29,58,.5);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__title {
  font-size: var(--fs-3xl);
  font-weight: 900;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold), var(--c-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__desc {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  max-width: 500px;
  margin: 0 auto var(--sp-6);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
}
.hero__trust-stars {
  color: var(--c-gold);
  letter-spacing: 2px;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid var(--c-gold);
  border-radius: 12px;
  opacity: .4;
  display: none;
}
.hero__scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ----- Pricing Cards ----- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.pricing-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-normal) var(--ease-spring),
              border-color var(--dur-normal),
              box-shadow var(--dur-normal);
  will-change: transform;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-glow);
}
.pricing-card--featured {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, rgba(201,168,76,.08) 0%, var(--c-surface) 40%);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--sp-1) var(--sp-5);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-bg);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-card__duration {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}
.pricing-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}
.pricing-card__prices {
  margin-bottom: var(--sp-6);
}
.pricing-card__old-price {
  font-size: var(--fs-lg);
  color: var(--c-text-dim);
  text-decoration: line-through;
  margin-bottom: var(--sp-1);
}
.pricing-card__price {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--c-gold-light);
}
.pricing-card__price-unit {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--c-text-muted);
}
.pricing-card__discount {
  display: inline-block;
  margin-top: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: var(--radius-sm);
  color: var(--c-success);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
}
.pricing-card__features {
  text-align: left;
  margin-bottom: var(--sp-6);
  flex: 1;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.pricing-card__feature::before {
  content: '✦';
  color: var(--c-gold);
  font-size: var(--fs-xs);
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card .btn {
  width: 100%;
}

/* ----- Includes Section ----- */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.include-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-normal) var(--ease-spring),
              border-color var(--dur-normal);
  will-change: transform;
}
.include-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-border-hover);
}
.include-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
}
.include-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  color: var(--c-gold-light);
}
.include-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}
.include-card__img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

/* ----- Testimonials ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  padding: 0 var(--sp-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-card__stars {
  color: var(--c-gold);
  font-size: var(--fs-sm);
  letter-spacing: 3px;
}
.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--c-purple), var(--c-burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-gold-light);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}
.testimonial-card__verified {
  font-size: var(--fs-xs);
  color: var(--c-success);
}

/* ----- How it Works ----- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  counter-reset: step;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  counter-increment: step;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-bg);
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  box-shadow: 0 4px 20px var(--c-gold-glow);
}
.step__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.step__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  max-width: 280px;
}

/* Connector line between steps */
.step:not(:last-child)::after {
  content: '';
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  margin-top: var(--sp-5);
}

/* ----- Comparison Table ----- */
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.comparison-col {
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.comparison-col--generic {
  background: var(--c-surface);
  opacity: .7;
}
.comparison-col--valeria {
  background: linear-gradient(180deg, rgba(201,168,76,.06) 0%, var(--c-surface) 100%);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-glow);
}
.comparison-col__header {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-6);
  text-align: center;
}
.comparison-col__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.comparison-col__item:last-child {
  border-bottom: none;
}
.comparison-col__item-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ----- About / Quién Soy ----- */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 400px;
  margin: 0 auto;
}
.about__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  pointer-events: none;
}
.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, var(--c-text), var(--c-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__text p {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-normal);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.about__stat {
  text-align: center;
}
.about__stat-value {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-gold-light);
}
.about__stat-label {
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
  margin-top: var(--sp-1);
}

/* ----- FAQ Accordion ----- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  background: none;
  border: none;
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-item__question:hover {
  color: var(--c-gold-light);
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--c-gold);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-normal) var(--ease-out);
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.active .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out),
              padding var(--dur-slow) var(--ease-out);
}
.faq-item__answer-inner {
  padding-bottom: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* ----- Final CTA ----- */
.cta-final {
  text-align: center;
  padding: var(--sp-16) var(--sp-5);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--c-purple-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
  position: relative;
}
.cta-final__subtitle {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-final__phone {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--c-gold-light);
  display: block;
  margin-bottom: var(--sp-6);
  text-decoration: none;
  position: relative;
}
.cta-final__phone:hover {
  color: var(--c-gold);
}
.cta-final__availability {
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
  margin-top: var(--sp-4);
  position: relative;
}
.cta-final__availability .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: var(--radius-full);
  margin-right: var(--sp-2);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* ----- Gallery ----- */
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.gallery-row img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--c-border);
  transition: transform var(--dur-normal) var(--ease-spring);
  will-change: transform;
}
.gallery-row img:hover {
  transform: scale(1.02);
}

/* ----- Footer ----- */
.footer {
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-10) 0 var(--sp-6);
}
.footer__inner {
  text-align: center;
}
.footer__logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-gold-light);
  margin-bottom: var(--sp-4);
}
.footer__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-dim);
  max-width: 400px;
  margin: 0 auto var(--sp-6);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-gold-light);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-md);
}
.footer__phone:hover {
  color: var(--c-gold);
}
.footer__divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
  margin: var(--sp-6) 0;
}
.footer__bottom {
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
}

/* ----- Reveal Animations (JS-driven) ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* ----- Floating particles (decorative) ----- */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--c-gold);
  border-radius: var(--radius-full);
  opacity: .15;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .15; }
  90%  { opacity: .15; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ----- Live Counter (urgency) ----- */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--c-success);
  font-weight: var(--fw-medium);
}
.live-counter .dot {
  width: 6px;
  height: 6px;
  background: var(--c-success);
  border-radius: var(--radius-full);
  animation: blink 2s ease-in-out infinite;
}

/* =====================================================================
   RESPONSIVE — Tablet (768px+)
   ===================================================================== */
@media (min-width: 768px) {
  :root {
    --fs-2xl: 2.5rem;
    --fs-3xl: 3rem;
    --fs-4xl: 3.5rem;
  }

  .container {
    padding: 0 var(--sp-8);
  }

  .section {
    padding: var(--sp-20) 0;
  }

  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .header__cta {
    display: inline-flex;
  }

  .hero {
    align-items: center;
  }
  .hero__content {
    padding: var(--sp-16) var(--sp-8);
    text-align: left;
    max-width: 650px;
    margin-left: max(var(--sp-8), calc((100vw - var(--max-w)) / 2 + var(--sp-8)));
    margin-right: auto;
  }
  .hero__bg img {
    object-position: center;
  }
  .hero__overlay {
    background: linear-gradient(
      to right,
      rgba(8,8,14,.9) 0%,
      rgba(8,8,14,.65) 45%,
      rgba(8,8,14,.2) 70%,
      transparent 100%
    );
  }
  .hero__desc {
    margin: 0 0 var(--sp-6);
  }
  .hero__cta-group {
    flex-direction: row;
    justify-content: flex-start;
  }
  .hero__trust {
    justify-content: flex-start;
  }
  .hero__scroll-indicator {
    display: block;
  }

  .pricing {
    grid-template-columns: repeat(3, 1fr);
  }

  .includes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 var(--sp-8);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-10);
  }
  .step:not(:last-child)::after {
    display: none;
  }

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

  .about {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-16);
  }
  .about__image-wrapper {
    max-width: none;
  }

  .gallery-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-final__title {
    font-size: var(--fs-3xl);
  }
}

/* =====================================================================
   RESPONSIVE — Desktop Large (1024px+)
   ===================================================================== */
@media (min-width: 1024px) {
  :root {
    --fs-3xl: 3.5rem;
    --fs-5xl: 4.5rem;
  }

  .hero__title {
    font-size: var(--fs-5xl);
  }

  .hero__content {
    max-width: 620px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: var(--sp-24) 0;
  }
}

/* =====================================================================
   RESPONSIVE — Ultra wide (1400px+)
   ===================================================================== */
@media (min-width: 1400px) {
  .container {
    padding: 0 var(--sp-10);
  }
}

/* ----- Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
