/* ============================================================
   BLOOMIE — Global Stylesheet
   Estructura: Variables → Reset → Base → Nav → Footer →
               Hero → How It Works → Results → Features →
               Pricing → About → Utilities → Responsive
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --cream: #fdfff8;
  --blush: #f0e4dc;
  --rose: #c4826a;
  --rose-deep: #a05a42;
  --rose-pale: #edd6cc;
  --sage: #8fa98a;
  --sage-pale: #d4e2d0;
  --charcoal: #2a2420;
  --mid: #6b5e58;
  --mist: #f5f0ec;
  --white: #ffffff;
  --gold: #c8a97a;
  --gold-pale: #f0e8d8;
  --border: rgba(42, 36, 32, 0.1);
  --border-light: rgba(42, 36, 32, 0.06);
  --ff-display: "Cormorant Garamond", serif;
  --ff-body: "DM Sans", sans-serif;
}

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

/* ── BASE ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(42, 36, 32, 0.07);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-links .nav-cta {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.52rem 1.35rem;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  transition: background 0.22s;
}

.nav-links .nav-cta:hover {
  background: var(--rose);
  color: var(--cream);
}

/* ── LANG BUTTON ─────────────────────────────────────────────── */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  height: 34px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mid);
  font-family: var(--ff-body);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-height: unset;
}

.lang-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.lang-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(196, 130, 106, 0.06);
}

/* ── NAVBAR RESPONSIVE ─────────────────────────────────────── */
.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* líneas */
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* posiciones */
.nav-toggle span:nth-child(1) {
  top: 2px;
}

.nav-toggle span:nth-child(2) {
  top: 9px;
}

.nav-toggle span:nth-child(3) {
  top: 16px;
}

/* mostrar en móvil */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

.nav-links {
    position: absolute;
    top: 68px;
    right: 0;
    background: var(--cream);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
/* FOOTER MINIMAL */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 248, 244, 0.6);
  padding: 4rem 6vw 2rem;
  text-align: center;
}

/* CONTENEDOR */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* MARCA */
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--cream);
}

.footer-brand span {
  color: var(--rose);
}

/* NAV LINKS */
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--rose);
}

/* LEGAL */
.footer-legal {
  display: flex;
  gap: 1.2rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.4);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* COPY */
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
}

/* ── SHARED SECTION TOKENS ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-sub {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 520px;
}

/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.88rem 1.9rem;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.24s,
    transform 0.24s,
    box-shadow 0.24s;
}

.btn-primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 130, 106, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--charcoal);
  padding: 0.88rem 1.9rem;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.24s,
    color 0.24s,
    transform 0.24s;
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: index.html — HERO
   ══════════════════════════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6vw;
  padding-top: 68px;
  gap: 4rem;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.38rem 1rem;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease both;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  animation: fade-up 0.7s 0.1s ease both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 2.4rem;
  animation: fade-up 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: fade-up 0.7s 0.3s ease both;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fade-up 0.7s 0.42s ease both;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.trust-label {
  font-size: 0.71rem;
  color: var(--mid);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

/* Scan visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up 0.9s 0.45s ease both;
}

.scan-scene {
  position: relative;
  width: min(420px, 42vw);
  aspect-ratio: 0.75;
}

.scan-beam {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rose) 20%,
    rgba(196, 130, 106, 0.9) 50%,
    var(--rose) 80%,
    transparent 100%
  );
  box-shadow: 0 0 18px 4px rgba(196, 130, 106, 0.35);
  animation: beam-sweep 3s ease-in-out infinite;
  z-index: 10;
}

.scan-grid {
  position: absolute;
  inset: 6%;
  z-index: 9;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(196, 130, 106, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 130, 106, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 18px;
  animation: grid-fade 3s ease-in-out infinite;
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 11;
  border-color: var(--rose);
  border-style: solid;
  opacity: 0.8;
}

.corner-tl {
  top: 8%;
  left: 8%;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.corner-tr {
  top: 8%;
  right: 8%;
  border-width: 2px 2px 0 0;
  border-radius: 0 4px 0 0;
}
.corner-bl {
  bottom: 8%;
  left: 8%;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 4px;
}
.corner-br {
  bottom: 8%;
  right: 8%;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.atag {
  position: absolute;
  z-index: 12;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.45rem 0.8rem;
  box-shadow: 0 6px 24px rgba(42, 36, 32, 0.1);
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  animation: float-bob 3s ease-in-out infinite;
}

.atag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.atag-val {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--rose);
}

.atag-hydra {
  top: 18%;
  right: -12%;
  animation-delay: 0s;
}
.atag-acne {
  top: 42%;
  left: -14%;
  animation-delay: -1s;
}
.atag-tex {
  bottom: 22%;
  right: -10%;
  animation-delay: -2s;
}

.score-ring {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  background: var(--charcoal);
  border-radius: 16px;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ring-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 244, 0.45);
}

.ring-val {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.ring-sub {
  font-size: 0.62rem;
  color: rgba(250, 248, 244, 0.45);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: how-it-works.html
   ══════════════════════════════════════════════════════════════ */

#how {
  padding: 7.5rem 6vw;
  background: var(--mist);
}

.how-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}

.how-header .section-sub {
  margin: 0 auto;
}

.steps-container,
.steps-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-row2 {
  margin-top: 2.5rem;
}

.steps-connector {
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--rose-pale);
  z-index: 0;
}

.steps-connector::before,
.steps-connector::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-pale);
}

.steps-connector::before {
  left: 0;
}
.steps-connector::after {
  right: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--rose);
  border: 1px solid var(--rose-pale);
  background: var(--cream);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.step:hover .step-num {
  background: var(--blush);
  border-color: var(--rose);
}

.step-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

.step-badge {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.64rem;
  background: var(--gold-pale);
  color: var(--rose-deep);
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: results.html
   ══════════════════════════════════════════════════════════════ */

#results {
  padding: 7.5rem 6vw;
  background: var(--cream);
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

.results-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(42, 36, 32, 0.08);
}

.stat-icon {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.stat-val {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.stat-desc {
  font-size: 0.79rem;
  color: var(--mid);
  margin-top: 0.35rem;
  line-height: 1.5;
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.7rem;
  transition: transform 0.28s;
}

.tcard:hover {
  transform: translateX(4px);
}

.stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

.tcard-text {
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tcard-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--rose-deep);
  flex-shrink: 0;
}

.tcard-name {
  font-size: 0.81rem;
  font-weight: 500;
}

.tcard-role {
  font-size: 0.71rem;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: features.html
   ══════════════════════════════════════════════════════════════ */

#features {
  padding: 7.5rem 6vw;
  background: var(--mist);
}

.features-header {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 1.8rem;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-pale), var(--sage-pale));
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(42, 36, 32, 0.08);
}

.feat-icon {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.feat-title {
  font-size: 0.97rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.feat-desc {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.65;
}

.feat-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.63rem;
  background: var(--blush);
  color: var(--rose-deep);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: pricing.html
   ══════════════════════════════════════════════════════════════ */

#pricing {
  padding: 7.5rem 6vw;
  background: var(--cream);
}

.pricing-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 1rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}

.toggle-label {
  font-size: 0.83rem;
  color: var(--mid);
}

.toggle-btn {
min-height: unset;
  width: 48px;
  height: 26px;
  border-radius: 50px;
  background: var(--charcoal);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.28s;

  flex-shrink: 0;
  display: inline-block; /* 🔥 importante */
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
  transition: transform 0.28s;
}

.toggle-btn.active .toggle-knob {
  transform: translateX(21px);
}

.save-badge {
  background: var(--sage-pale);
  color: #3d6e39;
  font-size: 0.68rem;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  font-weight: 500;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.plan-card {
  border-radius: 26px;
  padding: 2.1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  position: relative;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(42, 36, 32, 0.08);
}

.plan-card.featured {
  background: var(--charcoal);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 22px 56px rgba(42, 36, 32, 0.2);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.95rem;
  border-radius: 50px;
}

.plan-name {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 0.45rem;
}

.plan-card.featured .plan-name {
  color: rgba(250, 248, 244, 0.45);
}

.plan-price {
  font-family: var(--ff-display);
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-period {
  font-size: 0.76rem;
  color: var(--mid);
  margin-bottom: 1.4rem;
}

.plan-card.featured .plan-period {
  color: rgba(250, 248, 244, 0.45);
}

.plan-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 1.4rem;
}

.plan-card.featured .plan-divider {
  background: rgba(255, 255, 255, 0.1);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.plan-features li {
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mid);
}

.plan-card.featured .plan-features li {
  color: rgba(250, 248, 244, 0.72);
}

.plan-features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 500;
  flex-shrink: 0;
}

.plan-features li.off::before {
  content: "–";
  color: rgba(42, 36, 32, 0.18);
}

.plan-card.featured .plan-features li.off::before {
  color: rgba(250, 248, 244, 0.2);
}

.btn-plan {
  width: 100%;
  padding: 0.82rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--charcoal);
  transition:
    border-color 0.24s,
    color 0.24s,
    transform 0.24s;
}

.btn-plan:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-plan.feat {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.btn-plan.feat:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: about.html
   ══════════════════════════════════════════════════════════════ */

#about {
  padding: 7.5rem 6vw;
  background: var(--mist);
}

.about-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.about-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.about-desc {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  position: relative;
}

.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-pale), var(--sage-pale));
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover::after {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(42, 36, 32, 0.09);
}

.card-photo {
  width: 100%;
  aspect-ratio: 0.85;
  overflow: hidden;
  background: var(--blush);
  position: relative;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .card-photo img {
  transform: scale(1.04);
}

.card-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--blush);
}

.placeholder-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon svg {
  width: 28px;
  height: 28px;
  opacity: 0.55;
}

.placeholder-label {
  font-size: 0.68rem;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

.card-body {
  padding: 1.15rem 1rem 1.3rem;
  text-align: center;
}

.card-name {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.card-role {
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.63rem;
  background: var(--blush);
  color: var(--rose-deep);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════════ */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

@keyframes beam-sweep {
  0% {
    top: 12%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 88%;
    opacity: 0;
  }
}

@keyframes grid-fade {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .scan-scene {
    width: min(320px, 70vw);
  }

  .atag-acne {
    left: -6%;
  }
  .atag-hydra,
  .atag-tex {
    right: -6%;
  }

  .steps-container,
  .steps-row2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-connector {
    display: none;
  }

  .results-layout {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  section:not(#hero) {
    padding: 5rem 6vw;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .results-stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .atag {
    display: none;
  }
  .footer-legal {
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MEJORAS PRO (NO CAMBIA DISEÑO)
   ══════════════════════════════════════════════════════════════ */

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

button,
a {
  min-height: 44px;
}

section {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 68px;
    right: 0;
    background: var(--cream);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

.features-grid,
.plans-grid,
.team-grid {
  width: 100%;
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 5vw 1.5rem;
  }

  .footer-inner {
    gap: 1rem;
  }

  .footer-nav {
    gap: 1rem;
  }

  .footer-legal {
    gap: 0.8rem;
  }

  .footer-copy {
    margin-top: 1rem;
    font-size: 0.7rem;
  }
}