/* ═══════════════════════════════════════════════════════════════
   DAYNNE NÚÑEZ — style.css
   Paleta: #6e547c | #658960 | blanco
   Tipografía: Cormorant Garamond + Jost
═══════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
    --purple: #6e547c;
    --purple-dark: #4d3a58;
    --purple-light: #8a6e98;
    --purple-pale: #f2eef5;
    --purple-glass: rgba(110, 84, 124, 0.08);

    --green: #658960;
    --green-dark: #4a6645;
    --green-light: #7fa87a;
    --green-pale: #eef3ed;

    --white: #ffffff;
    --off-white: #faf8fc;
    --cream: #f7f4f0;

    --text-primary: #2a1f30;
    --text-body: #4a3f52;
    --text-muted: #887892;
    --text-light: #b8aac0;

    --border: rgba(110, 84, 124, 0.15);
    --border-light: rgba(110, 84, 124, 0.08);
    --shadow-sm: 0 2px 12px rgba(110, 84, 124, 0.08);
    --shadow-md: 0 8px 32px rgba(110, 84, 124, 0.13);
    --shadow-lg: 0 20px 60px rgba(110, 84, 124, 0.18);

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    --container: 1200px;
    --gap: 32px;
    --nav-h: 76px;
    --section-v: 96px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 150ms;
    --dur-mid: 260ms;
    --dur-slow: 440ms;
}

/* ── Reset ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

ul,
ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

input,
textarea,
select {
    font-family: inherit
}

p {
    max-width: 65ch
}

/* ── Fondo lotus global ──────────────────────────────────────── */
.lotus-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%236e547c' stroke-width='1.5' opacity='0.055' transform='translate(100,105)'%3E%3Cpath d='M0,-55 C15,-35 15,-15 0,0 C-15,-15 -15,-35 0,-55Z'/%3E%3Cpath d='M-28,-35 C-10,-25 -5,-10 0,0 C-15,-8 -28,-18 -28,-35Z'/%3E%3Cpath d='M28,-35 C10,-25 5,-10 0,0 C15,-8 28,-18 28,-35Z'/%3E%3Cpath d='M-55,-15 C-35,-10 -20,-5 0,0 C-18,5 -38,2 -55,-15Z'/%3E%3Cpath d='M55,-15 C35,-10 20,-5 0,0 C18,5 38,2 55,-15Z'/%3E%3Cpath d='M-30,0 C-18,10 -8,14 0,15 C8,14 18,10 30,0'/%3E%3Cellipse cx='0' cy='18' rx='30' ry='5' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px 200px
}

#page-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh
}

#main-content {
    display: block
}

/* ── Container + Layout ──────────────────────────────────────── */
.container {
    width: min(var(--container), 100% - 2*var(--gap));
    margin-inline: auto
}

.lp-section {
    padding-block: var(--section-v)
}

.lp-section--alt {
    background: var(--cream)
}

.lp-section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-pale) 0%, transparent 60%);
    opacity: .4;
    pointer-events: none
}

.lp-section--alt {
    position: relative
}

.lp-section--purple-soft {
    background: linear-gradient(160deg, var(--purple-pale) 0%, var(--off-white) 60%)
}

.lp-section__header {
    text-align: center;
    margin-bottom: 56px
}

.lp-section__header p {
    margin-inline: auto;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 52ch;
    margin-top: 14px
}

.lp-section__cta {
    text-align: center;
    margin-top: 48px
}

.lp-section__cta p {
    color: var(--text-muted);
    margin-bottom: 16px;
    margin-inline: auto
}

/* ── Typography ──────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -.01em
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem)
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem)
}

em {
    font-style: italic;
    color: var(--purple)
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 12px
}

.eyebrow--light {
    color: rgba(255, 255, 255, .6)
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all var(--dur-mid) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent
}

.btn--lg {
    padding: 15px 34px;
    font-size: .88rem
}

.btn--sm {
    padding: 9px 20px;
    font-size: .76rem
}

.btn--full {
    width: 100%;
    justify-content: center
}

.btn--primary {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple)
}

.btn--primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 84, 124, .35)
}

.btn--green {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.btn--green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101, 137, 96, .35)
}

.btn--outline {
    background: transparent;
    color: var(--purple);
    border-color: var(--border)
}

.btn--outline:hover {
    border-color: var(--purple);
    background: var(--purple-glass)
}

.btn--cta {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.btn--cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 137, 96, .4)
}

.btn--whatsapp-outline {
    background: transparent;
    color: #25D366;
    border-color: #25D366
}

.btn--whatsapp-outline:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px)
}

.btn--whatsapp-solid {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    width: 100%;
    justify-content: center
}

.btn--whatsapp-solid:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35)
}

/* ── NAV ─────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(250, 248, 252, .92);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--dur-mid) var(--ease)
}

.site-header.scrolled {
    box-shadow: var(--shadow-md)
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0
}

.nav__lotus {
    width: 42px;
    height: 36px;
    color: var(--purple);
    transition: color var(--dur-mid)
}

.nav__logo:hover .nav__lotus {
    color: var(--green)
}

.nav__brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.nav__brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: -.02em
}

.nav__brand-sub {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto
}

.nav__link {
    padding: 7px 13px;
    font-size: .78rem;
    font-weight: 300;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: var(--radius-pill);
    transition: all var(--dur-fast);
    position: relative
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--purple);
    border-radius: 2px;
    transition: width var(--dur-mid) var(--ease)
}

.nav__link:hover,
.nav__link--active {
    color: var(--purple)
}

.nav__link--active::after,
.nav__link:hover::after {
    width: calc(100% - 26px)
}

.nav__cta {
    margin-left: 10px
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 8px
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--purple);
    border-radius: 2px;
    transition: all var(--dur-mid) var(--ease)
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250, 248, 252, .98);
    backdrop-filter: blur(20px);
    padding: 24px 32px 32px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--dur-mid) var(--ease);
    z-index: 999;
    pointer-events: none; /* Evita que el menú invisible intercepte clics */
    visibility: hidden;   /* Mejora el rendimiento y la accesibilidad */
}

.nav__mobile.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto; /* Reactiva los clics cuando está abierto */
    visibility: visible;
}

.nav__mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__mobile a:not(.btn) {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem; /* Un tamaño excelente para leer en celular */
    font-weight: 500;
    color: #4d3a58; /* El tono oscuro que usas en tu paleta */
    text-decoration: none;
    display: block;
    padding: 16px 0; /* Espacio generoso para que sea fácil tocarlos */
    border-bottom: 1px solid rgba(110, 84, 124, 0.1); /* Una línea separadora muy elegante */
    transition: color 0.2s ease;
}

.nav__mobile a:not(.btn):active {
    color: #658960; /* El verde de tu paleta */
}

.nav__mobile .btn--cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ocupa todo el ancho disponible */
    margin-top: 1.5rem; /* Le da un respiro separándolo de la lista de links */
    
    /* Forzamos los estilos para vencer la regla general de los enlaces */
    color: #ffffff !important; 
    font-family: 'Jost', sans-serif !important; 
    text-align: center;
    text-decoration: none;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
    /* 1. AGREGADO: Evita que el padding aumente el tamaño total más allá de los 100vh */
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* 2. AGREGADO: Centra el contenido internamente en caso de que flex: 1 falle en algunos navegadores */
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, #f2eef5 0%, #faf8fc 40%, #eef3ed 100%);
    overflow: hidden;
    padding-top: var(--nav-h, 80px);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__bg-lotus--1 {
    position: absolute;
    width: 520px;
    height: 520px;
    top: -60px;
    right: -80px;
    color: var(--purple);
    opacity: .07;
    animation: floatLotus 8s ease-in-out infinite;
}

.hero__bg-lotus--2 {
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: 40px;
    left: -60px;
    color: var(--green);
    opacity: .06;
    animation: floatLotus 10s ease-in-out infinite reverse;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    /* CORREGIDO: Punto y coma faltante */
    padding-block: 32px 48px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-pale);
    border: 1px solid rgba(101, 137, 96, .25);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    /* CORREGIDO: Punto y coma faltante */
    margin-bottom: 22px;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    /* CORREGIDO: Punto y coma faltante */
    animation: pulse 2s ease-in-out infinite;
}

.hero__title em {
    color: var(--purple);
    /* CORREGIDO: Punto y coma faltante */
    font-weight: 400;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 16px;
    /* CORREGIDO: Punto y coma faltante */
    margin-bottom: 32px;
}

.hero__proof-item {
    display: flex;
    /* CORREGIDO: Punto y coma faltante */
    flex-direction: column;
}

.hero__proof-item strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 300;
    /* CORREGIDO: Punto y coma faltante */
    line-height: 1;
}

.hero__proof-item span {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    /* CORREGIDO: Punto y coma faltante */
    color: var(--text-muted);
}

.hero__proof-sep {
    width: 1px;
    height: 32px;
    /* CORREGIDO: Punto y coma faltante */
    background: var(--border);
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    /* CORREGIDO: Punto y coma faltante */
    margin-bottom: 18px;
}

.hero__note {
    font-size: .75rem;
    color: var(--text-light);
    /* CORREGIDO: Punto y coma faltante */
    letter-spacing: .06em;
}

/* Hero visual */
.hero__visual {
    display: flex;
    justify-content: center;
    /* CORREGIDO: Punto y coma faltante */
    align-items: center;
}

.hero__photo-wrap {
    position: relative;
    /* CORREGIDO: Punto y coma faltante */
    width: min(380px, 100%);
}

.hero__photo-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    /* CORREGIDO: Punto y coma faltante */
    background: var(--purple-pale);
}

.hero__photo-placeholder svg {
    width: 100%;
    height: auto;
    /* CORREGIDO: Punto y coma faltante */
    display: block;
}

.hero__photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CORREGIDO: Punto y coma faltante */
    border-radius: var(--radius-xl);
}

.hero__photo-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    /* CORREGIDO: Punto y coma faltante */
    animation: floatLotus 5s ease-in-out infinite;
}

.hero__photo-card--1 {
    bottom: -12px;
    left: -20px;
    /* CORREGIDO: Punto y coma faltante */
    animation-delay: -2s;
}

.hero__photo-card--2 {
    top: -12px;
    right: -20px;
    /* CORREGIDO: Punto y coma faltante */
    animation-delay: -1s;
}

.hero__photo-card-icon {
    /* CORREGIDO: Punto y coma faltante */
    font-size: 1.4rem;
}

.hero__photo-card div {
    display: flex;
    flex-direction: column;
    /* CORREGIDO: Punto y coma faltante */
    line-height: 1.2;
}

.hero__photo-card strong {
    font-size: .8rem;
    /* CORREGIDO: Punto y coma faltante */
    color: var(--text-primary);
}

.hero__photo-card span {
    font-size: .68rem;
    /* CORREGIDO: Punto y coma faltante */
    color: var(--text-muted);
}

.hero__scroll-cue {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-bottom: 28px;
    color: var(--purple-light);
    opacity: .6;
    animation: bounce 2s ease-in-out infinite;
    /* CORREGIDO: Punto y coma faltante */
    transition: opacity var(--dur-fast);
}

.hero__scroll-cue:hover {
    /* CORREGIDO: Punto y coma faltante */
    opacity: 1;
}

/* Asegurar visibilidad del texto del hero */
.hero__title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 20px;
    /* CORREGIDO: Punto y coma faltante */
    color: #2a1f30;
}

@keyframes floatLotus {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.15)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(7px)
    }
}



/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
    background: var(--purple-dark);
    padding-block: 20px
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.trust-bar__label {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    white-space: nowrap;
    flex-shrink: 0
}

.trust-bar__logos {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center
}

.trust-logo {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .05em;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

/* ── Services LP Grid ────────────────────────────────────────── */
/* 5 tarjetas desktop: fila 1 → 3 cards, fila 2 → 2 cards centradas */
.services-lp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px
}

.services-lp-grid .service-lp-card {
    grid-column: span 2
}

.services-lp-grid .service-lp-card:nth-child(4) {
    grid-column: 2/span 2
}

.services-lp-grid .service-lp-card:nth-child(5) {
    grid-column: 4/span 2
}

.service-lp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--dur-mid) var(--ease);
    position: relative;
    overflow: hidden;
    animation: fadeUp var(--dur-slow) var(--ease) calc(var(--i)*.07s) both
}

.service-lp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-mid) var(--ease)
}

.service-lp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-light)
}

.service-lp-card:hover::after {
    transform: scaleX(1)
}

.service-lp-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service-lp-card__glyph {
    font-size: 1.6rem;
    color: var(--purple);
    opacity: .5;
    font-weight: 100;
    line-height: 1
}

.service-lp-card__tag {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--green-pale);
    color: var(--green-dark);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(101, 137, 96, .2)
}

.service-lp-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary)
}

.service-lp-card p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.62;
    flex: 1
}

.service-lp-card__cta {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--purple);
    margin-top: 4px;
    transition: color var(--dur-fast)
}

.service-lp-card:hover .service-lp-card__cta {
    color: var(--green)
}

/* ── Results Strip ───────────────────────────────────────────── */
.results-strip {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple))
}

.results-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .12)
}

.result-item {
    background: transparent;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.result-item strong {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    font-weight: 300;
    line-height: 1
}

.result-item span {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55)
}

/* ── Split Section (Nutrición) ───────────────────────────────── */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center
}

.split-section__content p {
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 14px
}

.split-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-block: 20px
}

.split-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-body)
}

.split-checklist__item svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px
}

.split-section__plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-block: 24px
}

.mini-plan {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative
}

.mini-plan--featured {
    background: var(--purple);
    border-color: var(--purple)
}

.mini-plan strong {
    font-size: .82rem;
    color: var(--text-primary)
}

.mini-plan--featured strong {
    color: #fff
}

.mini-plan span {
    font-size: .72rem;
    color: var(--text-muted)
}

.mini-plan--featured span {
    color: rgba(255, 255, 255, .7)
}

.mini-plan em {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--green);
    color: #fff;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-style: normal;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

/* Nutrition visual */
.split-section__visual {
    display: flex;
    justify-content: center
}

.nutrition-visual {
    position: relative;
    width: 320px;
    height: 320px
}

.nutrition-visual__circle {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.nutrition-visual__circle svg {
    width: 100%;
    height: 100%;
    animation: floatLotus 7s ease-in-out infinite
}

.nutrition-pill {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 7px 14px;
    font-size: .78rem;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    animation: floatLotus 5s ease-in-out infinite
}

.nutrition-pill--1 {
    top: 20px;
    left: 0;
    animation-delay: 0s
}

.nutrition-pill--2 {
    top: 20px;
    right: 0;
    animation-delay: -1.2s
}

.nutrition-pill--3 {
    bottom: 20px;
    left: 0;
    animation-delay: -2.4s
}

.nutrition-pill--4 {
    bottom: 20px;
    right: 0;
    animation-delay: -3.6s
}

/* ── Supplements Preview ─────────────────────────────────────── */
.supple-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px
}

.supple-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--dur-mid) var(--ease);
    text-align: center
}

.supple-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.supple-card--purple .supple-card__bottle {
    color: var(--purple)
}

.supple-card--purple .supple-card__bottle svg {
    background: var(--purple-pale);
    border-radius: var(--radius-md);
    padding: 8px
}

.supple-card--green .supple-card__bottle {
    color: var(--green)
}

.supple-card--green .supple-card__bottle svg {
    background: var(--green-pale);
    border-radius: var(--radius-md);
    padding: 8px
}

.supple-card--light .supple-card__bottle {
    color: var(--text-muted)
}

.supple-card__bottle {
    display: flex;
    justify-content: center;
    margin-bottom: 4px
}

.supple-card__bottle svg {
    width: 60px;
    height: 90px
}

.supple-card__cat {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--purple-light)
}

.supple-card--green .supple-card__cat {
    color: var(--green)
}

.supple-card h3 {
    font-size: 1.05rem
}

.supple-card p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1
}

.supple-cta-banner {
    background: var(--purple-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.supple-cta-banner div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.supple-cta-banner strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary)
}

.supple-cta-banner span {
    font-size: .82rem;
    color: var(--text-muted)
}

/* ── About LP ────────────────────────────────────────────────── */
.about-lp {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center
}

.about-lp__frame {
    position: relative;
    max-width: 300px;
    margin: 0 auto
}

.about-lp__img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--purple-pale)
}

.about-lp__img-wrap svg,
.about-lp__img-wrap img {
    width: 100%;
    display: block
}

.about-lp__img-wrap img {
    height: 100%;
    object-fit: cover
}

.about-lp__badge {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .58rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.35;
    border: 4px solid var(--off-white);
    box-shadow: var(--shadow-md);
    gap: 3px
}

.about-lp__content p {
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 14px
}

.about-lp__quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--purple);
    border-left: 3px solid var(--purple);
    padding-left: 16px;
    margin-block: 18px 20px;
    line-height: 1.55;
    max-width: 50ch
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-block: 20px 28px
}

.credential-chip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px
}

.credential-chip span {
    font-size: 1.2rem;
    flex-shrink: 0
}

.credential-chip div {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.credential-chip strong {
    font-size: .82rem;
    color: var(--text-primary)
}

.credential-chip small {
    font-size: .7rem;
    color: var(--text-muted)
}

/* ── How Steps ───────────────────────────────────────────────── */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.how-step {
    padding: 0 20px;
    text-align: center;
    position: relative
}

.how-step__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--purple);
    color: var(--purple);
    font-family: var(--font-display);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
    transition: all var(--dur-mid)
}

.how-step--green .how-step__num {
    border-color: var(--green);
    color: var(--green)
}

.how-step:hover .how-step__num {
    background: var(--purple);
    color: #fff
}

.how-step--green:hover .how-step__num {
    background: var(--green);
    color: #fff
}

.how-step__line {
    position: absolute;
    top: 26px;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 1px;
    background: var(--border);
    z-index: 1
}

.how-step__body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px
}

.how-step__body p {
    font-size: .84rem;
    color: var(--text-muted)
}

/* ── Testimonials LP ─────────────────────────────────────────── */
.testimonials-lp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.testimonial-lp {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--dur-mid);
    animation: fadeUp var(--dur-slow) var(--ease) calc(var(--i)*.06s) both
}

.testimonial-lp:hover {
    box-shadow: var(--shadow-md)
}

.testimonial-lp__stars {
    color: #f4c542;
    letter-spacing: 2px;
    font-size: .95rem
}

.testimonial-lp blockquote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    flex: 1
}

.testimonial-lp footer {
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 3px
}

.testimonial-lp footer strong {
    font-size: .88rem;
    color: var(--text-primary)
}

.testimonial-lp footer span {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple-light)
}

.testimonials-lp__aggregate {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.aggregate-stars {
    font-size: 1.4rem;
    color: #f4c542;
    letter-spacing: 3px
}

.testimonials-lp__aggregate strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary)
}

.testimonials-lp__aggregate span {
    font-size: .8rem;
    color: var(--text-muted)
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: start
}

.faq-header {
    position: sticky;
    top: calc(var(--nav-h) + 24px)
}

.faq-header p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-top: 12px
}

.faq-header a {
    color: var(--purple)
}

.faq-list {
    display: flex;
    flex-direction: column
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit
}

.faq-item__question span {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.35
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--purple-light);
    transition: transform var(--dur-mid) var(--ease)
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg)
}

.faq-item__question:hover span {
    color: var(--purple)
}

.faq-item__answer {
    padding-bottom: 18px
}

.faq-item__answer p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 65ch
}

/* ── Contact LP ──────────────────────────────────────────────── */
.contact-lp {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    position: relative;
    overflow: hidden
}

.contact-lp__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23fff' stroke-width='1' opacity='0.05' transform='translate(100,110)'%3E%3Cpath d='M0,-80 C20,-50 20,-22 0,0 C-20,-22 -20,-50 0,-80Z'/%3E%3Cpath d='M-40,-52 C-15,-38 -6,-17 0,0 C-20,-12 -38,-25 -40,-52Z'/%3E%3Cpath d='M40,-52 C15,-38 6,-17 0,0 C20,-12 38,-25 40,-52Z'/%3E%3Cpath d='M-70,-28 C-44,-22 -24,-10 0,0 C-22,7 -48,3 -70,-28Z'/%3E%3Cpath d='M70,-28 C44,-22 24,-10 0,0 C22,7 48,3 70,-28Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none
}

.contact-lp__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
    position: relative
}

.contact-lp__info h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 2.8rem)
}

.contact-lp__info h2 em {
    color: rgba(255, 255, 255, .7)
}

.contact-lp__info p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 28px;
    font-size: .95rem
}

.contact-lp__perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.contact-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .8);
    font-size: .88rem
}

.contact-perk svg {
    color: var(--green-light);
    flex-shrink: 0
}

.contact-lp__phone {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 12px;
    text-align: center
}

.contact-lp__phone a {
    color: rgba(255, 255, 255, .7)
}

.contact-lp__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg)
}

.contact-lp__form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary)
}

.contact-form-lp {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-row-lp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.fg label {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.fg label span {
    color: var(--purple-light)
}

.fg input,
.fg select,
.fg textarea {
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: .92rem;
    color: var(--text-primary);
    background: var(--off-white);
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
    outline: none;
    width: 100%
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(110, 84, 124, .1);
    background: var(--white)
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--text-light)
}

.fg textarea {
    resize: vertical;
    min-height: 110px
}

.fg select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23887892' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px
}

.form-privacy-lp {
    font-size: .74rem;
    color: var(--text-muted)
}

.form-success-lp {
    text-align: center;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.form-success-lp__icon {
    color: var(--green)
}

.form-success-lp h3 {
    font-size: 1.8rem
}

.form-success-lp p {
    color: var(--text-muted);
    font-size: .92rem;
    max-width: 32ch;
    margin: 0 auto
}

.form-error-lp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    color: #dc2626;
    font-size: .86rem
}

.form-error-lp svg {
    flex-shrink: 0
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
    background: var(--purple-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 12px
}

.footer__lotus-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    opacity: .25;
    color: var(--purple-light)
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-block: 56px
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px
}

.footer__logo svg {
    width: 32px;
    height: 26px;
    color: rgba(255, 255, 255, .65)
}

.footer__logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff
}

.footer__tagline {
    font-size: .72rem;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    line-height: 1.8;
    margin-bottom: 20px
}

.footer__social {
    display: flex;
    gap: 10px
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    transition: all var(--dur-fast)
}

.footer__social-link svg {
    width: 15px;
    height: 15px
}

.footer__social-link:hover {
    background: var(--purple-light);
    border-color: var(--purple-light);
    color: #fff
}

.footer__heading {
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px;
    font-weight: 400
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer__list li a,
.footer__list li span,
.footer__list li {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    transition: color var(--dur-fast);
    line-height: 1.5
}

.footer__list li a:hover {
    color: #fff
}

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px
}

.footer__list--contact svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--purple-light)
}

.footer__col--cta p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
    max-width: 26ch
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 18px
}

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.footer__bottom p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    max-width: none
}

.footer__bottom a {
    color: rgba(255, 255, 255, .5);
    transition: color var(--dur-fast)
}

.footer__bottom a:hover {
    color: rgba(255, 255, 255, .8)
}

/* ── Secondary pages (tienda, legales) ───────────────────────── */
.secondary-hero {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: #fff;
    padding-top: calc(var(--nav-h) + 56px);
    padding-bottom: 64px
}

.secondary-hero--minimal {
    background: var(--cream);
    color: var(--text-primary)
}

.secondary-hero--minimal h1 {
    color: var(--text-primary)
}

.secondary-hero--minimal em {
    color: var(--purple)
}

.secondary-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 300;
    margin-block: 12px
}

.secondary-hero h1 em,
.secondary-hero em {
    color: rgba(255, 255, 255, .7)
}

.secondary-hero--minimal h1 em {
    color: var(--purple)
}

.secondary-hero p {
    color: rgba(255, 255, 255, .7);
    max-width: 55ch
}

.secondary-hero--minimal p {
    color: var(--text-muted)
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 20px;
    transition: color var(--dur-fast)
}

.secondary-hero--minimal .back-link {
    color: var(--text-muted)
}

.back-link:hover {
    color: #fff
}

.secondary-hero--minimal .back-link:hover {
    color: var(--purple)
}

/* Store */
.store-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.store-filter {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--dur-fast)
}

.store-filter:hover,
.store-filter--active {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple)
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px
}

.store-product {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--dur-mid)
}

.store-product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
}

.store-product[style*="display:none"] {
    display: none !important
}

.store-product__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green);
    color: #fff;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    z-index: 2
}

.store-product__visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center
}

.store-product__visual--purple {
    background: linear-gradient(135deg, var(--purple-pale), var(--purple-glass));
    color: var(--purple)
}

.store-product__visual--green {
    background: linear-gradient(135deg, var(--green-pale), rgba(101, 137, 96, .07));
    color: var(--green)
}

.store-product__visual--light {
    background: linear-gradient(135deg, var(--cream), var(--border-light));
    color: var(--text-muted)
}

.store-product__visual svg {
    width: 80px;
    height: 120px
}

.store-product__body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.store-product__cat {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--purple-light)
}

.store-product__body h3 {
    font-size: 1.05rem;
    color: var(--text-primary)
}

.store-product__body p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1
}

.store-product__flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px
}

.store-product__flavors span {
    font-size: .68rem;
    background: var(--cream);
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light)
}

.store-note {
    text-align: center;
    padding: 36px;
    background: var(--purple-pale);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border)
}

.store-note p {
    font-size: .92rem;
    color: var(--text-muted);
    margin: 0 auto 20px
}

/* Legal */
.legal-content {
    max-width: 760px;
    margin-inline: auto
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-block: 28px 10px;
    color: var(--text-primary)
}

.legal-content p {
    font-size: .92rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 10px;
    max-width: none
}

.legal-content ul {
    margin-block: 8px 16px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.legal-content ul li {
    font-size: .9rem;
    color: var(--text-body);
    list-style: disc
}

.legal-content a {
    color: var(--purple);
    text-decoration: underline
}

.legal-back {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border)
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:1100px) {
    .services-lp-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-lp-grid .service-lp-card {
        grid-column: span 1
    }

    .services-lp-grid .service-lp-card:nth-child(4),
    .services-lp-grid .service-lp-card:nth-child(5) {
        grid-column: span 1
    }

    .store-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .faq-wrap {
        grid-template-columns: 1fr
    }

    .faq-header {
        position: static
    }
}

@media(max-width:900px) {
    :root {
        --section-v: 72px;
        --gap: 20px
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-block: 56px 40px
    }

    .hero__visual {
        display: none
    }

    .hero__proof {
        justify-content: center
    }

    .hero__actions {
        justify-content: center
    }

    .hero__badge {
        margin-inline: auto
    }

    p {
        max-width: 100%
    }

    .split-section {
        grid-template-columns: 1fr
    }

    .split-section__visual {
        display: none
    }

    .about-lp {
        grid-template-columns: 1fr
    }

    .about-lp__photo {
        display: none
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px
    }

    .how-step__line {
        display: none
    }

    .testimonials-lp {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-lp__inner {
        grid-template-columns: 1fr
    }

    .results-strip__inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .nav__links,
    .nav__cta {
        display: none
    }

    .nav__hamburger {
        display: flex
    }

    .nav__mobile {
        display: block
    }
}

@media(max-width:640px) {
    :root {
        --section-v: 56px;
        --nav-h: 68px
    }

    .services-lp-grid {
        grid-template-columns: 1fr
    }

    .services-lp-grid .service-lp-card {
        grid-column: span 1
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonials-lp {
        grid-template-columns: 1fr
    }

    .results-strip__inner {
        grid-template-columns: 1fr 1fr
    }

    .footer__inner {
        grid-template-columns: 1fr
    }

    .footer__bottom .container {
        flex-direction: column;
        text-align: center
    }

    .split-section__plans {
        grid-template-columns: 1fr
    }

    .credentials-grid {
        grid-template-columns: 1fr
    }

    .hero__actions {
        flex-direction: column;
        align-items: center
    }

    .supple-cta-banner {
        flex-direction: column;
        text-align: center
    }

    .contact-lp__form-wrap {
        padding: 24px 18px
    }

    .form-row-lp {
        grid-template-columns: 1fr
    }
}

@media(max-width:420px) {
    .supple-preview {
        grid-template-columns: 1fr
    }

    .store-grid {
        grid-template-columns: 1fr
    }

    .trust-bar__inner {
        flex-direction: column;
        gap: 12px
    }
}