/* ===========================================
   JORGE ANGUIANO BEAUTY — LANDING PAGE
   Premium Beauty Aesthetic × Hormozi Structure
   Mobile-first responsive design
   =========================================== */

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

:root {
    /* Colors */
    --cream: #FAF5F0;
    --cream-alt: #F5EDE4;
    --dark: #1A1210;
    --dark-card: #241C17;
    --brown: #2D2019;
    --gold: #C8956C;
    --gold-light: #D4A97A;
    --gold-dark: #A87A56;
    --gold-glow: rgba(200, 149, 108, 0.25);
    --rose: #E8C4B8;
    --text-dark: #2D2019;
    --text-light: #FAF5F0;
    --text-muted: #8A7A6D;
    --text-muted-light: #BBA899;
    --border-light: rgba(200, 149, 108, 0.2);
    --border-dark: rgba(200, 149, 108, 0.15);
    --success: #5B8C5A;
    --danger: #C0564B;

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

    /* Spacing */
    --section-pad: 80px;
    --container-max: 1140px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ---- SECTION UTILITIES ---- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section--light { background: var(--cream); }
.section--cream { background: var(--cream-alt); }
.section--dark { background: var(--dark); color: var(--text-light); }

.section__eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    text-align: center;
}

.section__eyebrow--gold { color: var(--gold-light); }

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 16px;
    color: var(--brown);
}

.section__title--light { color: var(--text-light); }

.section__title em {
    font-style: italic;
    color: var(--gold);
}

.section__description {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: var(--text-muted);
}

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 149, 108, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* Button shimmer effect */
.btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

/* ---- 1. URGENCY BAR ---- */
.urgency-bar {
    background: var(--dark);
    color: var(--gold-light);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
}

.urgency-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.urgency-bar__icon {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ---- 2. HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,16,0.95), rgba(26,18,16,0.7));
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(200, 149, 108, 0.12);
    border: 1px solid rgba(200, 149, 108, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 24px;
    width: fit-content;
}

.hero__badge svg {
    color: var(--gold);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__subtitle strong {
    color: var(--gold-light);
}

.hero__micro {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted-light);
    letter-spacing: 0.5px;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__image img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    aspect-ratio: 3/4;
}

.hero__image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ---- 3. PAIN POINTS ---- */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.pain-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(200, 149, 108, 0.12);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 149, 108, 0.1);
    border-color: var(--gold);
}

.pain-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 149, 108, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}

.pain-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.pain-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--brown);
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- 4. TRANSFORMATION ---- */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.ba-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.ba-card:hover {
    transform: scale(1.02);
}

.ba-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- 5. CTA STRIPS ---- */
.cta-strip {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 32px 20px;
    text-align: center;
}

.cta-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-strip__text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
}

.cta-strip .btn {
    background: var(--dark);
    color: var(--gold-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.cta-strip .btn:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.cta-strip .btn::after { display: none; }

.cta-strip--alt {
    background: linear-gradient(135deg, var(--gold-dark), #8B6544);
}

/* ---- 6. SOCIAL PROOF ---- */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

.proof-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 149, 108, 0.1);
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.proof-card img {
    width: 100%;
    height: auto;
}

/* ---- 7. CURRICULUM ---- */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.module-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 149, 108, 0.1);
    transition: all 0.4s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 149, 108, 0.12);
    border-color: var(--gold);
}

.module-card__number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(200, 149, 108, 0.08);
    line-height: 1;
}

.module-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.15), rgba(200, 149, 108, 0.05));
    border-radius: 12px;
    margin-bottom: 16px;
}

.module-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.module-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--brown);
    margin-bottom: 8px;
}

.module-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- 8. ABOUT JORGE ---- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about__text {
    text-align: center;
}

.about__image img {
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.about__role {
    font-size: 0.9rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about__bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted-light);
    margin-bottom: 16px;
}

.about__bio strong {
    color: var(--gold-light);
}

.about__quote {
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(200, 149, 108, 0.06);
    border-radius: 0 12px 12px 0;
    position: relative;
    text-align: left;
}

.about__quote svg {
    position: absolute;
    top: 12px;
    right: 16px;
    color: var(--gold);
    width: 24px;
    height: 24px;
}

.about__quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.6;
}

.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat__suffix {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.stat__label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted-light);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ---- 10. GALLERY ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ---- 11. AUDIENCE ---- */
.audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.audience__col {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(200, 149, 108, 0.1);
}

.audience__col--yes {
    border-top: 3px solid var(--success);
}

.audience__col--no {
    border-top: 3px solid var(--danger);
}

.audience__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.audience__header svg {
    color: var(--success);
    flex-shrink: 0;
}

.audience__header--no svg {
    color: var(--danger);
}

.audience__header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--brown);
}

.audience__col li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(200, 149, 108, 0.08);
}

.audience__col li:last-child { border-bottom: none; }

.audience__col--yes li svg {
    color: var(--success);
    margin-top: 2px;
    flex-shrink: 0;
}

.audience__col--no li svg {
    color: var(--danger);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- PRO SECTION (Maquillistas) ---- */
.pro-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.pro-section__visual img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.pro-section__highlights {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text-muted-light);
    line-height: 1.5;
}

.pro-highlight svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.pro-highlight span strong {
    color: var(--gold-light);
}

/* ---- 12. BONUSES ---- */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border-dark);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 149, 108, 0.1);
}

.bonus-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.bonus-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 149, 108, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}

.bonus-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.bonus-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.bonus-card p {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    line-height: 1.6;
}

/* ---- 13. PRICING ---- */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(200, 149, 108, 0.15);
    border: 2px solid var(--gold);
}

.pricing-card__header {
    background: linear-gradient(135deg, var(--dark), var(--dark-card));
    padding: 32px 28px;
    text-align: center;
    position: relative;
}

.pricing-card__badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(200, 149, 108, 0.15);
    border: 1px solid rgba(200, 149, 108, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.pricing-card__badge-wrap svg { color: var(--gold); }

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-card__currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-light);
}

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.pricing-card__period {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin-left: 4px;
}

.pricing-card__access {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pricing-card__body {
    padding: 32px 28px;
}

.pricing-card__features {
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.93rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

.pricing-card__features li:last-child { border-bottom: none; }

.pricing-card__features li svg {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-card__guarantee svg { color: var(--gold); }

/* ---- 14. FAQ ---- */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 149, 108, 0.15);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--brown);
    transition: color 0.3s ease;
}

.faq-item__question:hover { color: var(--gold); }

.faq-item__chevron {
    transition: transform 0.3s ease;
    color: var(--gold);
    flex-shrink: 0;
}

.faq-item.active .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item__answer p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ---- 15. FINAL CTA ---- */
.final-cta {
    text-align: center;
    padding: 100px 0;
}

.final-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta__icon {
    color: var(--gold);
    margin-bottom: 24px;
    animation: glowPulse 3s ease-in-out infinite;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
}

.final-cta__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted-light);
    margin-bottom: 32px;
}

.final-cta__micro {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

/* ---- 16. FOOTER ---- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border-dark);
    padding: 48px 0 32px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.footer__tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin-top: 8px;
}

.footer__brand { text-align: center; }

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted-light);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer__social:hover { color: var(--gold); }
.footer__social svg { color: var(--gold); }

.footer__bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    :root { --section-pad: 100px; }

    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .before-after-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .bonuses-grid { grid-template-columns: repeat(3, 1fr); }
    .audience__grid { grid-template-columns: repeat(2, 1fr); }

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

    .gallery-item--wide {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .cta-strip .container {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    :root { --section-pad: 120px; }

    .hero__content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero__text {
        order: 1;
    }

    .hero__image {
        order: 2;
    }

    .about__grid {
        grid-template-columns: 0.45fr 0.55fr;
        gap: 60px;
    }

    .about__text {
        text-align: left;
    }

    .about__stats {
        justify-content: flex-start;
    }

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

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

    .pro-section__grid {
        grid-template-columns: 0.55fr 0.45fr;
        gap: 60px;
    }
}

/* ============================================
   MOBILE POLISH (< 480px)
   ============================================ */
@media (max-width: 479px) {
    .urgency-bar {
        font-size: 0.68rem;
        padding: 8px 12px;
        letter-spacing: 1px;
    }

    .urgency-bar__icon { display: none; }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__image img {
        max-width: 280px;
    }

    .btn--lg {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .about__stats {
        justify-content: center;
        gap: 24px;
    }

    .stat__number {
        font-size: 1.8rem;
    }

    .pricing-card__amount {
        font-size: 2.8rem;
    }

    .final-cta {
        padding: 60px 0;
    }
}

/* ---- TOUCH / MOBILE INTERACTIONS ---- */
@media (hover: none) {
    .pain-card:hover,
    .module-card:hover,
    .bonus-card:hover,
    .proof-card:hover,
    .gallery-item:hover img {
        transform: none;
    }

    .ba-card:hover {
        transform: none;
    }
}
