/* Elena Giordani - Bundled CSS */

/* === variables.css === */
/* ===== CSS VARIABLES ===== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --pink-primary: #E91E63;
    --pink-light: #FF4081;
    --pink-soft: #FCE4EC;
    --pink-dark: #C2185B;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #666666;
    --gray-softer: #f5f5f5;
    --success-green: #4CAF50;
    --error-red: #f44336;
    /* Dark theme */
    --bg-secondary: #0A0A0A;
    --bg-card: #1A1A1A;
    --text-primary: rgba(255,255,255,0.8);
    --text-muted: rgba(255,255,255,0.6);
    --border-subtle: rgba(255,255,255,0.1);
}


/* === base.css === */
/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 4rem;
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-pink {
    background: rgba(233,30,99,0.05);
}

.section-gray {
    background: var(--bg-secondary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-number {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
}

.section-title .highlight {
    color: var(--pink-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 580px;
    margin-top: 1.5rem;
    line-height: 1.8;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}


/* === components/navigation.css === */
/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav.dark {
    background: rgba(0,0,0,0.95);
}

.nav.dark .nav-logo,
.nav.dark .nav-link {
    color: var(--white);
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--pink-primary);
}

.nav-cta {
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,30,99,0.3);
}

/* Mobile Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav.dark .nav-hamburger span {
    background: var(--white);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1A1A1A;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(233,30,99,0.1);
    color: var(--pink-primary);
}

/* ===== MOBILE MENU OVERRIDE ===== */
@media (max-width: 768px) {
    /* Force white text on mobile menu for dark theme */
    .nav .nav-menu .nav-link,
    .nav.dark .nav-menu .nav-link,
    .nav .nav-menu.active .nav-link,
    .nav.dark .nav-menu.active .nav-link {
        color: #ffffff !important;
    }

    .nav .nav-dropdown-toggle,
    .nav.dark .nav-dropdown-toggle,
    .nav .nav-menu.active .nav-dropdown-toggle,
    .nav.dark .nav-menu.active .nav-dropdown-toggle {
        color: #ffffff !important;
    }

    .nav .nav-menu .nav-cta,
    .nav.dark .nav-menu .nav-cta {
        color: #ffffff !important;
        background: #e91e63 !important;
    }
}


/* === components/buttons.css === */
/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233,30,99,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,30,99,0.3);
}

.btn-gallery-count {
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}


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

/* Hero Background Image - Elena */
.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 2rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(233,30,99,0.3);
    background: rgba(233,30,99,0.05);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--pink-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
}

.hero-title .accent {
    color: var(--pink-primary);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-number span {
    color: var(--pink-primary);
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Hero Video */
.hero-video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-box {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, var(--pink-primary), var(--pink-dark));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(233,30,99,0.3);
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video-placeholder:hover {
    background: rgba(0,0,0,0.1);
}

.hero-video-play {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-video-placeholder:hover .hero-video-play {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-video-placeholder span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--pink-primary);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.marquee-item::after {
    content: '\2726';
    font-size: 0.6rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* === components/letter.css === */
/* ===== LETTER TO WOMEN ===== */
.letter-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.letter-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(233,30,99,0.05);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.letter-grid {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.letter-image {
    position: relative;
}

.letter-image-box {
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--pink-primary), var(--pink-dark));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(233,30,99,0.2);
}

.letter-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.letter-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 1.75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-radius: 12px;
}

.letter-image-badge-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pink-primary);
    line-height: 1;
}

.letter-image-badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.letter-content {
    position: relative;
    z-index: 10;
}

.letter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.letter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.letter-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.letter-text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
}

.letter-text p {
    margin-bottom: 1.25rem;
}

.letter-text .highlight {
    color: var(--pink-primary);
    font-weight: 600;
}

.letter-signature {
    margin-top: 2rem;
}

.letter-signature-name {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

.letter-signature-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}


/* === components/team.css === */
/* ===== TEAM SECTION ===== */
.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.team-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.team-intro-text p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-intro-highlight {
    background: rgba(233,30,99,0.08);
    padding: 2rem 2.5rem;
    margin-top: 2rem;
}

.team-intro-highlight p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    font-style: italic;
}

.team-intro-image {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, rgba(233,30,99,0.15), var(--pink-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-color: rgba(233,30,99,0.3);
}

.team-card:hover .team-card-image {
    transform: scale(1.05);
}

.team-card-image-wrapper {
    overflow: hidden;
    aspect-ratio: 1;
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card-content {
    padding: 2rem;
}

.team-card-role {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 0.5rem;
}

.team-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.team-card-bio {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.team-card-link:hover {
    color: var(--pink-primary);
}

/* ===== SPECIALIST PAGE TEMPLATE ===== */
.specialist-hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0A0A0A;
}

.specialist-hero-image {
    background: linear-gradient(145deg, var(--pink-primary), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.specialist-hero-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialist-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(233,30,99,0.15);
    width: fit-content;
}

.specialist-name {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.specialist-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.specialist-quote {
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    padding-left: 1.5rem;
    border-left: 3px solid var(--pink-primary);
    margin-bottom: 2rem;
}

.specialist-credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.specialist-credential-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink-primary);
    line-height: 1;
}

.specialist-credential-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.specialist-details {
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialist-section {
    margin-bottom: 4rem;
}

.specialist-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.specialist-section p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.specialist-expertise {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.06);
}

.expertise-icon {
    width: 40px;
    height: 40px;
    background: rgba(233,30,99,0.15);
    color: var(--pink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.expertise-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.expertise-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.specialist-schedule {
    background: rgba(233,30,99,0.08);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.schedule-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}


/* === components/method.css === */
/* ===== METHOD E.A.S.Y. ===== */
.method-section {
    background: var(--black);
    padding: 7rem 0;
    overflow: hidden;
}

.method-header {
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.method-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 0 4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.method-scroll::-webkit-scrollbar { display: none; }

.method-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #1A1A1A;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255,255,255,0.06);
}

.method-card:hover {
    background: #111;
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233,30,99,0.15);
}

.method-card:hover .method-letter { color: var(--pink-primary); }
.method-card:hover .method-desc { color: rgba(255,255,255,0.7); }

.method-letter {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(233,30,99,0.3);
    transition: color 0.4s ease;
    letter-spacing: -0.05em;
}

.method-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
    color: var(--white);
}

.method-desc {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    transition: color 0.4s ease;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--black);
}

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

.how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-timeline {
    position: relative;
    padding: 2rem 0;
}

.how-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(233,30,99,0.2), var(--pink-primary), rgba(233,30,99,0.2));
}

.how-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.how-step:nth-child(odd) .how-step-content {
    text-align: right;
}

.how-step:nth-child(even) .how-step-content {
    grid-column: 3;
}

.how-step:nth-child(even) .how-step-visual {
    grid-column: 1;
    grid-row: 1;
}

.how-step-number {
    width: 80px;
    height: 80px;
    background: #1A1A1A;
    border: 3px solid var(--pink-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink-primary);
    box-shadow: 0 5px 20px rgba(233,30,99,0.15);
    position: relative;
    z-index: 5;
}

.how-step-content {
    padding: 1.5rem;
}

.how-step-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.how-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.how-step-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.how-step-visual {
    background: rgba(233,30,99,0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.how-step-icon {
    font-size: 4rem;
}

.how-cta-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(233,30,99,0.08);
    border-radius: 16px;
}

.how-cta-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.how-cta-box p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}


/* === components/programs.css === */
/* ===== PROGRAMS ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--pink-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-card:hover::before { width: 100%; }

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.program-card.featured {
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(233,30,99,0.3);
    transform: scale(1.02);
}

.program-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.program-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: rgba(233,30,99,0.15);
    color: var(--pink-primary);
    margin-bottom: 1.5rem;
}

.program-card.featured .program-badge {
    background: rgba(233,30,99,0.2);
}

.program-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.program-price {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.program-price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.6;
}

.program-desc {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.7);
}

.program-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid currentColor;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    color: var(--white);
}

.program-card.featured .program-btn {
    border-color: var(--white);
}

.program-card.featured .program-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ===== ENHANCED PROGRAMS ===== */
.programs-grid-enhanced {
    gap: 2.5rem;
}

.program-card-enhanced {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 16px;
}

.program-card-enhanced.featured {
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    white-space: nowrap;
}

.program-card-enhanced .program-badge {
    align-self: center;
}

.program-card-enhanced .program-name {
    font-size: 1.8rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.program-features li {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.8;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.program-card-enhanced .program-btn {
    margin-top: auto;
    border-radius: 8px;
}

/* ===== BOOKS SECTION ===== */
.books-section {
    background: #0A0A0A;
}

.books-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.book-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border-color: rgba(233,30,99,0.3);
}

.book-cover {
    aspect-ratio: 2/3;
    background: linear-gradient(145deg, rgba(233,30,99,0.15), var(--pink-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    padding: 0;
    box-shadow: 0 15px 40px rgba(233,30,99,0.2);
    overflow: hidden;
    border-radius: 8px;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-info {
    padding-top: 0.25rem;
}

.book-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: rgba(233,30,99,0.15);
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.book-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.book-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.book-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--pink-dark);
}

/* ===== EVENTS SECTION ===== */
.events-grid {
    display: grid;
    gap: 1.5rem;
}

.event-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: var(--pink-primary);
}

.event-date {
    text-align: center;
    padding: 1.5rem;
    background: rgba(233,30,99,0.08);
}

.event-day {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pink-primary);
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.event-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.event-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.event-btn {
    padding: 1rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--pink-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: var(--pink-dark);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-color: rgba(233,30,99,0.3);
}

.blog-image {
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, #1A1A1A, rgba(233,30,99,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.blog-excerpt {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--pink-primary);
}


/* === components/transformations.css === */
/* ===== TRANSFORMATIONS ===== */
.transformations-section {
    background: #0A0A0A;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.transformation-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A1A;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233,30,99,0.2);
}

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

.transformations-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.transformations-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.transformations-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.transformations-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

/* Legacy transformations grid (alternative layout) */
.transformations-grid-alt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
}

.transformation-card-alt {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(145deg, rgba(233,30,99,0.15), var(--pink-primary));
}

.transformation-card-alt:nth-child(1) { grid-row: span 2; }
.transformation-card-alt:nth-child(4) { grid-row: span 2; }
.transformation-card-alt:nth-child(6) { grid-column: span 2; }

.transformation-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.transformation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transformation-card:hover .transformation-overlay { opacity: 1; }

.transformation-result {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.transformation-time {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* === components/faq.css === */
/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(180deg, #0A0A0A 0%, var(--black) 100%);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-intro {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-intro-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.faq-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.faq-intro p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.faq-cta:hover {
    background: var(--pink-dark);
    transform: translateX(10px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item:hover {
    border-color: var(--pink-primary);
    box-shadow: 0 10px 40px rgba(233,30,99,0.1);
}

.faq-item.active {
    border-color: var(--pink-primary);
    box-shadow: 0 20px 60px rgba(233,30,99,0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(233,30,99,0.1);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pink-primary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--pink-primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}


/* === components/social.css === */
/* ===== SOCIAL SECTION ===== */
.social-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: 'FOLLOW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
}

.social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    position: relative;
    z-index: 10;
}

.social-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.social-header h2 span {
    color: var(--pink-primary);
}

.social-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.social-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-primary), var(--pink-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    border-color: var(--pink-primary);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.social-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.social-handle {
    font-size: 0.85rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.social-followers {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.social-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.social-btn:hover {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
}

/* Single Instagram Card */
.social-grid-single {
    display: flex;
    justify-content: center;
}

.social-card-featured {
    max-width: 400px;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, rgba(233,30,99,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border: 2px solid var(--pink-primary);
    border-radius: 16px;
}

.social-card-featured .social-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-card-featured .social-followers {
    font-size: 2.5rem;
}

.social-card-featured .social-btn {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    border-radius: 8px;
}

.social-card-featured .social-btn:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: scale(1.02);
}


/* === components/video.css === */
/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233,30,99,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    position: relative;
    z-index: 10;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    border-radius: 10px;
    z-index: -1;
}

.video-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-placeholder:hover {
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--pink-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    animation: pulse-video 2s infinite;
}

@keyframes pulse-video {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233,30,99,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(233,30,99,0); }
}

.video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-placeholder span {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-content {
    color: var(--white);
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(233,30,99,0.2);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1.5rem;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.video-title span {
    color: var(--pink-primary);
}

.video-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    gap: 3rem;
}

.video-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink-primary);
}

.video-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}


/* === components/press.css === */
/* ===== PRESS SECTION ===== */
.press-section {
    background: var(--black);
    overflow: hidden;
}

.press-header {
    text-align: center;
    margin-bottom: 4rem;
}

.press-logos-scroll {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.press-logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.press-logo-item {
    flex-shrink: 0;
    padding: 1.5rem 3rem;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: all 0.4s ease;
}

.press-logo-item:hover {
    background: rgba(233,30,99,0.08);
    transform: scale(1.05);
}

.press-logo-item span {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.press-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.press-card {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--pink-primary);
    transition: height 0.4s ease;
}

.press-card:hover::before {
    height: 100%;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-color: rgba(233,30,99,0.3);
}

.press-card-source {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.press-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--white);
}

.press-card-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.press-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.press-card-link:hover {
    color: var(--pink-primary);
    gap: 1rem;
}


/* === components/footer.css === */
/* ===== FOOTER ===== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 5rem 4rem 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--pink-primary);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--black);
    padding: 9rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-title span {
    color: var(--pink-primary);
    font-style: italic;
}

.cta-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 1.4rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-btn:hover {
    background: var(--pink-light);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(233,30,99,0.4);
}


/* === components/modal.css === */
/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--pink-primary);
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 2000;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-modal.active {
    transform: translateY(0);
}

.gallery-modal-header {
    position: sticky;
    top: 0;
    background: var(--black);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.gallery-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.gallery-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: var(--pink-primary);
    color: var(--white);
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.02);
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--pink-primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--pink-primary);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ===== PROTOTYPE BADGE ===== */
.prototype-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 9999;
}


/* === components/pages.css === */
/* ===== PAGE SPECIFIC STYLES ===== */

/* ===== PAGE HERO WRAPPER (image spans hero + first section) ===== */
.page-hero-wrapper {
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.page-hero-wrapper > .page-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

.page-hero-wrapper > .page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

/* ===== PAGE HERO GALLERY (scrolling testimonials) ===== */
.page-hero-gallery {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    display: flex;
    gap: 0.75rem;
    overflow: hidden;
    padding: 0 0.75rem;
}

.page-hero-gallery-col {
    flex: 1;
    overflow: hidden;
}

.page-hero-gallery-scroll {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: gallery-up 60s linear infinite;
}

.page-hero-gallery-col:nth-child(2) .page-hero-gallery-scroll {
    animation: gallery-down 55s linear infinite;
}

.page-hero-gallery-col:nth-child(3) .page-hero-gallery-scroll {
    animation-duration: 50s;
}

.page-hero-gallery-scroll img {
    width: 100%;
    border-radius: 0.5rem;
    display: block;
}

@keyframes gallery-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes gallery-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    position: relative;
    z-index: 3;
}

.page-hero-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10rem 4rem 4rem;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 2rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(233,30,99,0.3);
    background: rgba(233,30,99,0.05);
}

.page-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 600px;
}

.page-hero-title .highlight em,
.page-hero-title .accent {
    color: var(--pink-primary);
    font-style: italic;
    font-weight: 600;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    line-height: 1.9;
}

/* ===== SECTION INSIDE WRAPPER (dark overlay treatment) ===== */
.page-hero-wrapper > .section {
    position: relative;
    z-index: 3;
    background: transparent !important;
}

.page-hero-wrapper > .section h2,
.page-hero-wrapper > .section h3,
.page-hero-wrapper > .section h4,
.page-hero-wrapper > .section label {
    color: var(--white);
}

.page-hero-wrapper > .section p,
.page-hero-wrapper > .section li,
.page-hero-wrapper > .section span {
    color: rgba(255,255,255,0.7);
}

.page-hero-wrapper > .section .highlight {
    color: var(--pink-primary);
}

.page-hero-wrapper > .section a:not(.btn-primary):not(.nav-cta) {
    color: var(--pink-primary);
}

/* ===== NAV LIGHT (for internal pages) ===== */
.nav.nav-light {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav.nav-light .nav-logo {
    color: var(--white);
}

.nav.nav-light .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.nav.nav-light .nav-link:hover,
.nav.nav-light .nav-link.active {
    color: var(--pink-primary);
}

.nav.nav-light .nav-hamburger span {
    background: var(--white);
}

/* ===== STORY SECTION (Chi Sono) ===== */
.story-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.story-image {
    position: sticky;
    top: 6rem;
}

.story-image-box {
    background: #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.story-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.story-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.story-content {
    padding-top: 1rem;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== MISSION SECTION ===== */
.mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2rem;
}

.mission-signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mission-name {
    font-weight: 700;
    font-size: 1.25rem;
}

.mission-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--pink-primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--pink-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--black);
    box-shadow: 0 0 0 3px var(--pink-primary);
}

.timeline-content {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    display: inline-block;
    background: rgba(233, 30, 99, 0.08);
    color: var(--pink-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== METHOD PAGE ===== */
.method-intro {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.method-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.method-intro-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.method-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(233, 30, 99, 0.08);
    padding: 2rem;
    border-radius: 16px;
}

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

.method-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.method-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== PILLARS GRID ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.pillar-letter {
    width: 60px;
    height: 60px;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pillar-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pillar-subtitle {
    color: var(--pink-primary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pillar-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.pillar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-primary);
    font-weight: 700;
}

/* ===== DAY TIMELINE ===== */
.day-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.day-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-item:last-child {
    border-bottom: none;
}

.day-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pink-primary);
}

.day-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.day-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== SCHEDULE GRID ===== */
.schedule-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-card {
    flex: 0 0 calc(25% - 0.75rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.schedule-day {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.schedule-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.schedule-sessions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-sessions li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.schedule-time {
    font-weight: 600;
    color: var(--pink-primary);
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

.schedule-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-top: 0.5rem;
}

.schedule-special {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 500;
}


/* ===== VS COMPARISON DUO ===== */
.vs-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.vs-card {
    border-radius: 20px;
    overflow: hidden;
}

.vs-card-header {
    padding: 1.5rem 2rem;
    text-align: center;
}

.vs-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Hero card - X-Fit Academy */
.vs-card-hero {
    background: var(--black);
    border: 2px solid var(--pink-primary);
}

.vs-card-hero .vs-card-header {
    background: var(--pink-primary);
}

.vs-card-hero .vs-card-title {
    color: var(--white);
}

.vs-card-hero .vs-card-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vs-card-hero .vs-card-list li:last-child {
    border-bottom: none;
}

.vs-card-hero .vs-card-list strong {
    color: var(--white);
}

.vs-card-hero .vs-card-list span {
    color: rgba(255, 255, 255, 0.4);
}

/* Other card */
.vs-card-other {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vs-card-other .vs-card-header {
    background: rgba(255, 255, 255, 0.06);
}

.vs-card-other .vs-card-title {
    color: rgba(255, 255, 255, 0.5);
}

.vs-card-other .vs-card-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vs-card-other .vs-card-list li:last-child {
    border-bottom: none;
}

.vs-card-other .vs-card-list strong {
    color: rgba(255, 255, 255, 0.5);
}

.vs-card-other .vs-card-list span {
    color: rgba(255, 255, 255, 0.3);
}

/* Shared list styles */
.vs-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 2rem;
}

.vs-card-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vs-card-list strong {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.vs-card-list span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Check / X icons */
.vs-check,
.vs-x {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.vs-check svg,
.vs-x svg {
    width: 0.85rem;
    height: 0.85rem;
}

.vs-check {
    background: rgba(233, 30, 99, 0.15);
    color: var(--pink-primary);
}

.vs-x {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

/* ===== TESTIMONIAL METHOD ===== */
.method-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #1A1A1A;
    border-radius: 20px;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #2A2A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-detail {
    color: var(--pink-primary);
    font-size: 0.9rem;
}

/* ===== TEAM PAGE ===== */
.team-page-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-page-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-page-intro p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-page-highlight {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(233, 30, 99, 0.08);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.team-page-highlight-icon {
    font-size: 2rem;
}

.team-page-highlight-text {
    text-align: left;
}

.team-page-highlight-text strong {
    display: block;
    color: var(--pink-primary);
}

.team-page-highlight-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SPECIALIST PROFILE ===== */
.specialist-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specialist-profile:last-child {
    border-bottom: none;
}

.specialist-profile-reverse {
    direction: rtl;
}

.specialist-profile-reverse > * {
    direction: ltr;
}

.specialist-profile-image {
    border-radius: 20px;
    overflow: hidden;
}

.specialist-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-profile-role {
    display: inline-block;
    background: rgba(233, 30, 99, 0.08);
    color: var(--pink-primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.specialist-profile-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.specialist-profile-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--pink-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.specialist-profile-bio p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.specialist-profile-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.expertise-tag {
    background: #1A1A1A;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== ELENA LEADER ===== */
.elena-leader {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 24px;
    padding: 3rem;
}

.elena-leader-image {
    aspect-ratio: 1;
    background: #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
}

.elena-leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elena-leader-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.elena-leader-badge {
    display: inline-block;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.elena-leader-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.elena-leader-title {
    color: var(--pink-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.elena-leader-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== RESULTS PAGE ===== */
.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.results-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.results-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.transformations-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #1A1A1A;
    border-radius: 16px;
    padding: 2rem;
}

.testimonial-card-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card-avatar {
    width: 50px;
    height: 50px;
    background: #2A2A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.65rem;
}

.testimonial-card-name {
    font-weight: 600;
}

.testimonial-card-result {
    color: var(--pink-primary);
    font-size: 0.85rem;
}

/* ===== SCROLLING IMAGE ROWS ===== */
.scroll-rows-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.scroll-row {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 0.25rem 0;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-row.grabbing {
    cursor: grabbing;
}

.scroll-row .scroll-item {
    flex-shrink: 0;
    width: 13rem;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--gray-softer);
}

.scroll-row .scroll-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.scroll-row .scroll-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dark section variant */
.section-black .scroll-row .scroll-item {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.section-black .scroll-row .scroll-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ===== HORIZONTAL MASONRY SCROLL (variable-width items) ===== */
.scroll-rows-masonry {
    gap: 0.75rem;
}

.scroll-rows-masonry .scroll-item {
    width: auto;
    height: 10rem;
}

.scroll-rows-masonry .scroll-item img {
    height: 100%;
    width: auto;
}

@media (max-width: 768px) {
    .scroll-row {
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .scroll-row .scroll-item {
        width: 10rem;
    }
    .scroll-rows-masonry .scroll-item {
        width: auto;
        height: 10rem;
    }
}

@media (max-width: 480px) {
    .scroll-rows-masonry .scroll-item {
        width: auto;
        height: 8rem;
    }
}

/* ===== MASONRY TESTIMONIAL GRID ===== */
.testimonial-masonry {
    columns: 3;
    column-gap: 1.25rem;
}

.testimonial-masonry .masonry-card {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--gray-softer);
}

.testimonial-masonry .masonry-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.testimonial-masonry .masonry-card img {
    width: 100%;
    display: block;
}

/* Dark section variant */
.section-black .testimonial-masonry .masonry-card {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.section-black .testimonial-masonry .masonry-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .testimonial-masonry {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .testimonial-masonry {
        columns: 2;
        column-gap: 0.75rem;
    }
    .testimonial-masonry .masonry-card {
        margin-bottom: 0.75rem;
        border-radius: 0.75rem;
    }
}

/* WA Lightbox */
.wa-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wa-lightbox.active {
    display: flex;
}

.wa-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 1.25rem;
    object-fit: contain;
}

.wa-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== VIDEO TESTIMONIAL ===== */
.video-testimonial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-testimonial-player {
    aspect-ratio: 16/9;
    background: var(--black);
    border-radius: 16px;
    overflow: hidden;
}

.video-testimonial-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-testimonial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-testimonial-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===== EVENTS PAGE ===== */
.main-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.main-event-image {
    position: relative;
    aspect-ratio: 4/3;
    background: #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
}

.main-event-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.main-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.main-event-date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.main-event-day {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.main-event-month {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.main-event-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.main-event-location {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.main-event-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.main-event-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.main-event-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1A1A1A;
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
}

/* ===== EVENTS LIST ===== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-list-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-list-date {
    text-align: center;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 12px;
}

.event-list-day {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.event-list-month {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.event-list-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.event-list-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-list-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.event-list-action {
    text-align: center;
}

.event-list-status {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--pink-primary);
    font-weight: 600;
}

.event-list-status.coming-soon {
    color: rgba(255, 255, 255, 0.6);
}

.btn-outline-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: var(--pink-primary);
    color: var(--white);
}

/* ===== PAST EVENTS ===== */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.past-event-card {
    border-radius: 16px;
    overflow: hidden;
    background: #1A1A1A;
}

.past-event-image {
    aspect-ratio: 16/9;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.past-event-content {
    padding: 1.5rem;
}

.past-event-date {
    font-size: 0.85rem;
    color: var(--pink-primary);
    font-weight: 600;
}

.past-event-content h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.past-event-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== BOOKS PAGE ===== */
.book-detail {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.book-detail-reverse {
    direction: rtl;
}

.book-detail-reverse > * {
    direction: ltr;
}

.book-detail-cover {
    position: relative;
}

.book-cover-placeholder {
    aspect-ratio: 2/3;
    background: #1A1A1A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.book-cover-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: block;
}

.book-badge-new {
    position: absolute;
    top: 1rem;
    right: -1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(5deg);
}

.book-detail-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.08);
    color: var(--pink-primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.book-detail-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.book-detail-subtitle {
    font-size: 1.1rem;
    color: var(--pink-primary);
    margin-bottom: 1.5rem;
}

.book-detail-desc p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.book-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.book-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.book-feature-icon {
    font-size: 1.5rem;
}

/* ===== BOOK REVIEWS ===== */
.book-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.book-review {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 16px;
}

.book-review-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.book-review-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.book-review-name {
    font-weight: 600;
    display: block;
}

.book-review-verified {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== PRESS PAGE ===== */
.press-page-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.press-page-logo {
    padding: 1.25rem 2rem;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: all 0.3s ease;
}

.press-page-logo:hover {
    background: rgba(233,30,99,0.08);
    border-color: rgba(233,30,99,0.2);
}

.press-page-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.press-page-logo:hover img {
    filter: none;
    opacity: 1;
}

.press-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.press-featured-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
}

.press-featured-source {
    display: inline-block;
    background: rgba(233, 30, 99, 0.08);
    color: var(--pink-primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.press-featured-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.press-featured-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===== PRESS PAGE GRID ===== */
.press-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.press-page-card {
    border-left: 3px solid var(--pink-primary);
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.press-page-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.press-page-card-content {
    flex: 1;
}

.press-page-card-source {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    display: block;
    margin-bottom: 0.4rem;
}

.press-page-card-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.press-page-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.press-page-card-type {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.press-page-card-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.press-page-card-meta .press-page-card-type::after {
    content: '·';
    margin-left: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

.press-page-card-arrow {
    color: var(--pink-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-4px);
}

.press-page-card:hover .press-page-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== PRESS CONTACT ===== */
.press-contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.press-contact h2 {
    margin-bottom: 1rem;
}

.press-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.press-contact-info {
    margin-bottom: 1.5rem;
}

.press-contact-item {
    padding: 1rem;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border-radius: 8px;
    display: inline-block;
}

/* ===== RESOURCES PAGE ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    background: #1A1A1A;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card-image {
    position: relative;
    aspect-ratio: 16/10;
    background: #2A2A2A;
}

.resource-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.resource-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.resource-card-content {
    padding: 1.5rem;
}

.resource-card-category {
    font-size: 0.85rem;
    color: var(--pink-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.resource-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.resource-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.resource-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.resource-card-btn:hover {
    gap: 0.75rem;
}

/* ===== SOCIAL CTA ===== */
.social-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border-radius: 24px;
}

.social-cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.social-cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

.social-cta-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-cta-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #1A1A1A;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: background 0.3s ease;
}

.social-cta-link:hover {
    background: rgba(233, 30, 99, 0.08);
}

.social-cta-icon {
    font-size: 1.75rem;
}

.social-cta-name {
    font-weight: 600;
    display: block;
}

.social-cta-handle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== NEWSLETTER ===== */
.newsletter-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 24px;
}

.newsletter-content h2 {
    margin-bottom: 0.75rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--pink-primary);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--pink-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--pink-dark);
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SHOP COMING SOON ===== */
.coming-soon-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.coming-soon-content {
    max-width: 700px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--pink-primary);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.coming-soon-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.coming-soon-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.coming-soon-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 100px;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink-primary);
}

.timer-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== SHOP PREVIEW ===== */
.shop-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.shop-preview-card {
    text-align: center;
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 16px;
}

.shop-preview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shop-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.shop-preview-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== NOTIFY BOX ===== */
.notify-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.notify-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.notify-box > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notify-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
}

.notify-btn {
    padding: 1rem 2rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.notify-disclaimer {
    font-size: 0.9rem;
    color: var(--white);
}

/* ===== BACK CTA ===== */
.back-cta {
    text-align: center;
    padding: 3rem;
    background: #1A1A1A;
    border-radius: 24px;
}

.back-cta h3 {
    margin-bottom: 0.5rem;
}

.back-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.back-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ===== CONTACT PAGE ===== */
.selection-intro {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.selection-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.selection-intro-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.selection-intro-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selection-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 12px;
}

.selection-step-number {
    width: 40px;
    height: 40px;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.selection-step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.selection-step-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== FORM CONTAINER ===== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
}

.form-embed-placeholder {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border-radius: 16px;
    padding: 2rem;
    min-height: 600px;
}

.form-embed-message {
    text-align: center;
    padding: 2rem;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.form-embed-message a {
    color: var(--pink-primary);
}

.form-iframe {
    border: none;
    border-radius: 12px;
    width: 100%;
}

/* ===== ALTERNATIVE CONTACT ===== */
.alternative-contact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.alternative-contact h3 {
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #1A1A1A;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-option:hover {
    background: rgba(233, 30, 99, 0.08);
    transform: translateY(-3px);
}

.contact-option-icon {
    font-size: 2rem;
}

.contact-option-icon svg {
    fill: currentColor;
}

.contact-option-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-option-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== FAQ MINI ===== */
.faq-mini {
    text-align: center;
}

.faq-mini h3 {
    margin-bottom: 2rem;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.faq-mini-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border-radius: 12px;
}

.faq-mini-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-mini-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE FOR PAGES ===== */
@media (max-width: 1200px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .method-intro {
        grid-template-columns: 1fr;
    }

    .method-intro-stats {
        flex-direction: row;
        justify-content: center;
    }

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

    .specialist-profile,
    .specialist-profile-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .elena-leader {
        grid-template-columns: 1fr;
    }

    .main-event,
    .book-detail,
    .book-detail-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .selection-intro {
        grid-template-columns: 1fr;
    }

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

    .results-stats,
    .transformations-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .press-page-grid,
    .resources-grid,
    .book-reviews-grid,
    .past-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .press-featured,
    .social-cta,
    .video-testimonial {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

@media (max-width: 768px) {
    .page-hero-wrapper > .page-hero-bg {
        width: 100%;
        left: 0;
        right: auto;
    }

    .page-hero-gallery {
        width: 100%;
        opacity: 0.45;
    }

    .page-hero-gallery-col:nth-child(3) {
        display: none;
    }

    .page-hero-wrapper > .page-hero-gradient {
        background: rgba(0,0,0,0.6);
    }

    .page-hero-content {
        text-align: center;
        padding: 6rem 1.5rem 2rem;
    }

    .page-hero-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .page-hero-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    .values-grid,
    .shop-preview-grid,
    .testimonials-grid,
    .press-page-grid,
    .resources-grid,
    .book-reviews-grid,
    .past-events-grid,
    .results-stats {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        flex: 0 0 100%;
    }
    .schedule-grid {
        gap: 0.75rem;
    }



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

    .story-stats {
        flex-direction: column;
        align-items: center;
    }

    .vs-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 28rem;
    }

    .vs-card-list li {
        padding: 1rem 2rem;
    }
    .vs-card-header {
        padding: 1.5rem 2rem;
    }

    .event-list-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-list-date {
        max-width: 120px;
        margin: 0 auto;
    }

    .coming-soon-timer {
        flex-wrap: wrap;
    }

    .timer-item {
        min-width: 80px;
        padding: 1rem;
    }

    .timer-number {
        font-size: 1.75rem;
    }

    .newsletter-form,
    .notify-form {
        flex-direction: column;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .faq-mini-grid {
        grid-template-columns: 1fr;
    }

    .back-cta-buttons {
        flex-direction: column;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2rem;
    }

    .book-detail-features {
        grid-template-columns: 1fr;
    }
}


/* === components/react-mobile-header.css === */
/* React Mobile Header - Only visible on mobile */
@media (min-width: 769px) {
    .react-mobile-header {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Hide original nav on mobile when React header is active */
    .nav {
        display: none !important;
    }

    .react-mobile-header {
        display: block;
    }

    /* Header Bar */
    .rmh-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        background: transparent;
    }

    .rmh-bar.scrolled {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .rmh-bar.menu-open {
        background: transparent;
    }

    /* Logo */
    .rmh-logo {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: opacity 0.3s ease;
    }

    .rmh-logo:hover {
        opacity: 0.8;
    }

    /* Hamburger */
    .rmh-hamburger {
        width: 32px;
        height: 24px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
    }

    .rmh-hamburger-line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .rmh-hamburger-line:nth-child(1) {
        top: 0;
    }

    .rmh-hamburger-line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .rmh-hamburger-line:nth-child(3) {
        bottom: 0;
    }

    /* Hamburger Active State - X Animation */
    .rmh-hamburger.active .rmh-hamburger-line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .rmh-hamburger.active .rmh-hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    .rmh-hamburger.active .rmh-hamburger-line:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* Fullscreen Menu */
    .rmh-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
    }

    .rmh-menu.active {
        pointer-events: all;
        opacity: 1;
        visibility: visible;
    }

    /* Menu Background with Blur Effect */
    .rmh-menu-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .rmh-menu.active .rmh-menu-bg {
        transform: translateY(0);
    }

    /* Menu Content */
    .rmh-menu-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 5rem 2rem;
        gap: 0.5rem;
    }

    /* Menu Links */
    .rmh-link,
    .rmh-dropdown-toggle {
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        padding: 0.75rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        transition-delay: var(--delay, 0s);
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .rmh-menu.active .rmh-link,
    .rmh-menu.active .rmh-dropdown-toggle {
        opacity: 1;
        transform: translateY(0);
    }

    .rmh-link:hover,
    .rmh-dropdown-toggle:hover {
        color: #e91e63;
    }

    /* Dropdown Arrow */
    .rmh-dropdown-arrow {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .rmh-dropdown.active .rmh-dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Dropdown */
    .rmh-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        transition-delay: var(--delay, 0s);
    }

    .rmh-menu.active .rmh-dropdown {
        opacity: 1;
        transform: translateY(0);
    }

    /* Dropdown Menu */
    .rmh-dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .rmh-dropdown.active .rmh-dropdown-menu {
        max-height: 300px;
    }

    .rmh-dropdown-menu a {
        font-size: 1rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        padding: 0.5rem 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        transition-delay: var(--sub-delay, 0s);
    }

    .rmh-dropdown.active .rmh-dropdown-menu a {
        opacity: 1;
        transform: translateY(0);
    }

    .rmh-dropdown-menu a:hover {
        color: #e91e63;
    }

    /* CTA Button */
    .rmh-cta {
        margin-top: 2rem;
        padding: 1rem 2.5rem;
        background: #e91e63;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        transition-delay: var(--delay, 0s);
    }

    .rmh-menu.active .rmh-cta {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .rmh-cta:hover {
        background: #c2185b;
        transform: scale(1.05);
    }
}


/* === components/react-mobile-hero.css === */
/* React Mobile Hero - Only visible on mobile */
@media (min-width: 769px) {
    #react-mobile-hero-root {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #react-mobile-hero-root {
        display: block;
    }

    /* Hide original hero content on mobile to prevent FOUC */
    .hero .hero-content {
        display: none;
    }

    .rmh-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5rem 1.25rem 2rem;
        position: relative;
        z-index: 3;
        min-height: 100vh;
        min-height: 100dvh;
    }

    /* Animation keyframes - run once */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUpScale {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Badge */
    .rmh-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.25rem;
        background: rgba(233, 30, 99, 0.15);
        border: 1px solid rgba(233, 30, 99, 0.4);
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #e91e63;
        margin-bottom: 1.25rem;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-badge {
        animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--delay);
    }

    .rmh-hero-badge-dot {
        width: 8px;
        height: 8px;
        background: #e91e63;
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.3); }
    }

    /* Title */
    .rmh-hero-title {
        margin-bottom: 1rem;
    }

    .rmh-hero-title-line {
        display: block;
        font-weight: 800;
        line-height: 1.1;
        color: #fff;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-title-line {
        animation: fadeInUp 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--delay);
    }

    .rmh-hero-title-line:nth-child(1) {
        font-size: 1.75rem;
    }

    .rmh-hero-title-line:nth-child(2) {
        font-size: 2rem;
    }

    .rmh-hero-title-line.accent {
        font-size: 2.25rem;
        font-style: italic;
        font-weight: 600;
        color: #e91e63;
        text-shadow: 0 0 40px rgba(233, 30, 99, 0.5);
    }

    /* Subtitle */
    .rmh-hero-subtitle {
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 1.25rem;
        max-width: 340px;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-subtitle {
        animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--delay);
    }

    /* Video */
    .rmh-hero-video {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1.25rem;
        position: relative;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-video {
        animation: fadeInUpScale 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--delay);
    }

    .rmh-hero-video-glow {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(233, 30, 99, 0.1));
        border-radius: 8px;
        filter: blur(20px);
        opacity: 0.6;
        z-index: -1;
    }

    .rmh-hero-video video {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* CTA Buttons */
    .rmh-hero-cta {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-cta {
        animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--delay);
    }

    .rmh-hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .rmh-hero-btn.primary {
        background: #e91e63;
        color: #fff;
        box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    }

    .rmh-hero-btn.primary:hover {
        background: #c2185b;
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
    }

    .rmh-hero-btn-arrow {
        transition: transform 0.3s ease;
    }

    .rmh-hero-btn.primary:hover .rmh-hero-btn-arrow {
        transform: translateX(3px);
    }

    .rmh-hero-btn.secondary {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .rmh-hero-btn.secondary:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Stats */
    .rmh-hero-stats {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-stats {
        animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--delay);
    }

    .rmh-hero-stat {
        text-align: center;
        opacity: 0;
    }

    .rmh-hero.loaded .rmh-hero-stat {
        animation: fadeInUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: var(--stat-delay);
    }

    .rmh-hero-stat-number {
        font-size: 1.75rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .rmh-hero-stat-number span:last-child {
        color: #e91e63;
    }

    .rmh-hero-stat-label {
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 0.25rem;
    }

    /* Once animations complete, force visible state */
    .rmh-hero.animation-done .rmh-hero-badge,
    .rmh-hero.animation-done .rmh-hero-title-line,
    .rmh-hero.animation-done .rmh-hero-subtitle,
    .rmh-hero.animation-done .rmh-hero-video,
    .rmh-hero.animation-done .rmh-hero-cta,
    .rmh-hero.animation-done .rmh-hero-stats,
    .rmh-hero.animation-done .rmh-hero-stat {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .rmh-hero.animation-done .rmh-hero-video {
        transform: scale(1) !important;
    }
}


/* === components/dark-immersive.css === */
/* ===== DARK IMMERSIVE DESIGN SYSTEM ===== */
/* Shared styles for dark cinematic sections (evento-maggio, home page, etc.) */

/* ===== EMOTION PARALLAX BREAKS ===== */
.ev-emotion {
    position: relative;
    height: 65vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-emotion-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

.ev-emotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.ev-emotion-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.ev-emotion-text p {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    font-style: italic;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin: 0;
}

.ev-emotion-text p strong {
    font-weight: 700;
    color: var(--pink-light);
}

/* ===== BACKGROUND SECTION & REVEALS ===== */
.ev-bg-section {
    position: relative;
    overflow: hidden;
}

.ev-bg-reveal {
    position: absolute;
    top: 0;
    width: 45%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ev-bg-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    filter: grayscale(0.2);
    transition: opacity 1.5s ease;
}

.ev-bg-reveal.visible img {
    opacity: 0.2;
}

.ev-bg-reveal.ev-right {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.ev-bg-reveal.ev-left {
    left: 0;
    -webkit-mask-image: linear-gradient(to right, black 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.ev-bg-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233,30,99,0.08), transparent);
    pointer-events: none;
}

.ev-bg-section .container,
.ev-bg-section .container-academy,
.ev-bg-section .container-page,
.ev-bg-section .container-workouts {
    position: relative;
    z-index: 1;
}

/* ===== COMMUNITY TEXT ===== */
.ev-community {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ev-community p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.ev-community .ev-emphasis {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 2.5rem 0;
}

/* ===== BENTO GRID ===== */
.ev-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ev-bento-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ev-bento-card:hover {
    border-color: rgba(233,30,99,0.25);
    transform: translateY(-4px);
}

.ev-bento-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(233,30,99,0.08), transparent 70%);
    pointer-events: none;
}

.ev-bento-card.ev-bento-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 2.75rem;
}

.ev-bento-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--pink-primary);
    flex-shrink: 0;
}

.ev-bento-wide .ev-bento-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0;
}

.ev-bento-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.ev-bento-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.7;
}

.ev-bento-number {
    position: absolute;
    bottom: -0.5rem;
    right: 1.25rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    user-select: none;
}

/* Bento letter variant (for E.A.S.Y. pillars) */
.ev-bento-letter {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--pink-primary);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.ev-bento-wide .ev-bento-letter {
    font-size: 5.5rem;
    margin-bottom: 0;
}

.ev-bento-card .ev-pillar-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.ev-bento-card .ev-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.ev-bento-card .ev-pillar-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.ev-bento-card .ev-pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--pink-primary);
    border-radius: 50%;
}

/* ===== TIMELINE ===== */
.ev-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.ev-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--pink-primary), var(--pink-primary), transparent);
    transform: translateX(-50%);
}

.ev-timeline-day {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 4rem;
    position: relative;
}

.ev-timeline-day:last-child {
    margin-bottom: 0;
}

.ev-timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--pink-primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(233,30,99,0.5);
    justify-self: center;
    margin-top: 2rem;
}

.ev-timeline-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.ev-timeline-card:hover {
    border-color: rgba(233,30,99,0.2);
}

.ev-timeline-day:nth-child(odd) .ev-timeline-card { grid-column: 1; }
.ev-timeline-day:nth-child(odd) .ev-timeline-dot { grid-column: 2; }
.ev-timeline-day:nth-child(odd) .ev-timeline-number { grid-column: 3; }
.ev-timeline-day:nth-child(even) .ev-timeline-number { grid-column: 1; text-align: right; }
.ev-timeline-day:nth-child(even) .ev-timeline-dot { grid-column: 2; }
.ev-timeline-day:nth-child(even) .ev-timeline-card { grid-column: 3; }

.ev-timeline-number {
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 900;
    color: rgba(233,30,99,0.08);
    line-height: 0.85;
    padding: 0 1.5rem;
    user-select: none;
}

.ev-timeline-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.ev-timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.ev-timeline-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.ev-timeline-subtitle {
    font-size: 1.05rem;
    color: var(--pink-primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.ev-timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ev-timeline-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ev-timeline-list li:last-child {
    border-bottom: none;
}

.ev-timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--pink-primary);
    border-radius: 50%;
}

.ev-program-note {
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== DARK COMPARISON TABLE ===== */
.ev-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.ev-comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ev-comparison-row:last-child {
    border-bottom: none;
}

.ev-comparison-header {
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.ev-comparison-cell {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.ev-comparison-header .ev-comparison-cell {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 1rem 1.5rem;
}

.ev-comparison-cell.ev-label {
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.ev-comparison-cell.ev-highlight {
    color: var(--white);
    font-weight: 600;
    background: rgba(233,30,99,0.06);
    border-left: 2px solid var(--pink-primary);
}

.ev-comparison-header .ev-comparison-cell.ev-highlight {
    color: var(--pink-primary);
    background: rgba(233,30,99,0.06);
}

.ev-comparison-cell.ev-other {
    color: rgba(255,255,255,0.35);
}

/* ===== FAQ ACCORDION (DARK) ===== */
.ev-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ev-faq-item {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.ev-faq-question {
    padding: 1.5rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    gap: 1rem;
}

.ev-faq-question:hover {
    background: rgba(233,30,99,0.1);
}

.ev-faq-toggle {
    font-size: 1.5rem;
    color: var(--pink-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ev-faq-item.open .ev-faq-toggle {
    transform: rotate(45deg);
}

.ev-faq-answer {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ev-faq-item.open .ev-faq-answer {
    padding: 0 1.75rem 1.5rem;
    max-height: 500px;
}

.ev-faq-answer p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.7;
}

/* ===== FINAL CTA (PINK) ===== */
.ev-final-cta {
    background: var(--pink-primary);
    text-align: center;
    padding: 7rem 2rem;
}

.ev-final-cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.ev-final-cta h2 {
    color: var(--white);
    margin-bottom: 1.75rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
}

.ev-final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.ev-final-cta .ev-question {
    font-size: 1.85rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin: 2.5rem 0;
}

.ev-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--pink-primary);
    padding: 1.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ev-btn-white:hover {
    background: #0A0A0A;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== DARK SECTION STAT STYLES ===== */
.ev-stats-row {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2.5rem;
}

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

.ev-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink-primary);
    letter-spacing: -0.03em;
}

.ev-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .ev-bg-reveal { width: 35%; }
}

@media (max-width: 768px) {
    .ev-emotion { height: 50vh; min-height: 300px; }
    .ev-bg-reveal { display: none; }

    .ev-bento { grid-template-columns: 1fr; }
    .ev-bento-card.ev-bento-wide { grid-column: span 1; grid-template-columns: auto 1fr; }

    .ev-timeline::before { left: 20px; }
    .ev-timeline-day { grid-template-columns: auto 1fr; position: relative; }
    .ev-timeline-dot { grid-column: 1 !important; margin-left: 10px; margin-right: 1.5rem; }
    .ev-timeline-card { grid-column: 2 !important; padding: 1.75rem; position: relative; z-index: 1; }
    .ev-timeline-number {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: clamp(4rem, 15vw, 6rem);
        padding: 0;
        z-index: 0;
        text-align: right;
    }

    .ev-comparison-row { grid-template-columns: 1fr; gap: 0; }
    .ev-comparison-header { display: none; }
    .ev-comparison-cell { padding: 0.75rem 1.25rem; }
    .ev-comparison-cell.ev-label {
        padding-top: 1.25rem;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--pink-primary);
    }
    .ev-comparison-cell.ev-highlight { border-left: none; border-left: 3px solid var(--pink-primary); }

    .ev-stats-row { gap: 2rem; flex-wrap: wrap; }
}


/* === components/landing.css === */

/* ============================================================
   LANDING PAGE - Elena Academy Info Page
   /info-academy
   Design aligned with evento-maggio dark immersive style
   ============================================================ */

/* ------------------------------------------------------------
   1. SHARED CLASSES (defined once, used across sections)
   ------------------------------------------------------------ */

.container-academy {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight-gradient {
  color: var(--pink-primary);
}

/* Glass card shared pseudo-elements */
.stat-box::before,
.comparison-bad::before,
.comparison-good::before,
.phase-card::before,
.workout-card::before,
.method-section .pillar-card::before,
.why-it-works::before,
.annual-column::before,
.team-card::before,
.pricing-point::before,
.philosophy-quote::before,
.method-hero::before,
.method-quote::before,
.team-quote::before,
.pricing-why-box::before,
.pricing-truth-box::before,
.all-loaded-message::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.08), transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.stat-box:hover::before,
.comparison-bad:hover::before,
.comparison-good:hover::before,
.phase-card:hover::before,
.workout-card:hover::before,
.method-section .pillar-card:hover::before,
.why-it-works:hover::before,
.annual-column:hover::before,
.team-card:hover::before,
.pricing-point:hover::before,
.philosophy-quote:hover::before,
.method-hero:hover::before,
.method-quote:hover::before,
.team-quote:hover::before,
.pricing-why-box:hover::before,
.pricing-truth-box:hover::before,
.all-loaded-message:hover::before {
  opacity: 1.5;
}

.stat-box::after,
.comparison-bad::after,
.comparison-good::after,
.phase-card::after,
.workout-card::after,
.method-section .pillar-card::after,
.why-it-works::after,
.annual-column::after,
.team-card::after,
.pricing-point::after,
.philosophy-quote::after,
.method-hero::after,
.method-quote::after,
.team-quote::after,
.pricing-why-box::after,
.pricing-truth-box::after,
.all-loaded-message::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}

.section-title-academy {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-title-academy strong {
  color: var(--pink-primary);
}

.section-subtitle-academy {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}


/* ------------------------------------------------------------
   2. MEDIA TRUST SECTION (scrolling logos)
   ------------------------------------------------------------ */

.media-trust-section {
  background: #000;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.media-trust-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
}

.media-logos-wrapper {
  overflow-x: hidden;
  position: relative;
}

.media-logos-track {
  display: flex;
  gap: 3.75rem;
  animation: scroll-logos 40s linear infinite;
  will-change: transform;
}

.media-logos-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1.875rem)); }
}

.media-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  filter: grayscale(100%) opacity(0.4) brightness(2);
  transition: all 0.3s ease;
}

.media-logo-item:hover {
  filter: grayscale(0%) opacity(1) brightness(1);
}

.media-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  max-width: 12.5rem;
}

.media-logo-text {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.media-logo-text:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* ------------------------------------------------------------
   3. PRESS SECTION (Il Sole 24 Ore)
   ------------------------------------------------------------ */

.section-press {
  padding: 7rem 4rem;
  background: var(--black);
  position: relative;
}

.container-press {
  max-width: 1000px;
  margin: 0 auto;
}

.press-logo-container {
  text-align: center;
  margin-bottom: 2.5rem;
}

.press-badge {
  display: inline-block;
  background: var(--pink-primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.press-header {
  text-align: center;
  margin-bottom: 4rem;
}

.press-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.press-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.section-press .video-section {
  position: relative;
  margin-bottom: 4rem;
}

.section-press .video-frame {
  position: relative;
  background: #1A1A1A;
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-press .video-container {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: normal;
  max-width: none;
  margin: 0;
  padding: 0;
  padding-bottom: 56.25%;
  z-index: auto;
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.section-press .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.press-quote-section {
  background: #1A1A1A;
  border-left: 4px solid var(--pink-primary);
  padding: 2.5rem 3rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--pink-primary);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--pink-primary);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.press-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.press-quote-author {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

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

.stat-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 99, 0.35);
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.12), 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}


/* ------------------------------------------------------------
   4. COMPARISON SECTION (problem-section)
   ------------------------------------------------------------ */

.problem-section {
  padding: 7rem 4rem;
  background: #0A0A0A;
}

.problem-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.comparison-card {
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-bad {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.comparison-bad:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.comparison-good {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(233, 30, 99, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.comparison-good:hover {
  border-color: var(--pink-primary);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.comparison-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.comparison-icon-bad {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-icon-good {
  background: rgba(233, 30, 99, 0.15);
}

.comparison-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.icon-bad,
.icon-good {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.comparison-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.comparison-list p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.philosophy-quote {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(233, 30, 99, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.quote-icon-big {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
}

.quote-text-big {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote-text-big strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}


/* ------------------------------------------------------------
   5. HOW IT WORKS (3 phases)
   ------------------------------------------------------------ */

.how-it-works {
  padding: 7rem 4rem;
  background: var(--black);
}

.section-title-center-academy {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle-center-academy {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.section-subtitle-center-academy strong {
  font-weight: 700;
  color: var(--pink-primary);
}

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

.phase-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.phase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.phase-card-highlight {
  border: 2px solid rgba(233, 30, 99, 0.4);
}

.phase-card-highlight:hover {
  border-color: var(--pink-primary);
}

.phase-number {
  display: inline-block;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.phase-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.phase-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.phase-features {
  list-style: none;
  padding: 0;
}

.phase-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.phase-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--pink-primary);
  font-weight: 700;
}

.phase-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--pink-primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ------------------------------------------------------------
   6. ELENA MESSAGE (video)
   ------------------------------------------------------------ */

.elena-message {
  padding: 7rem 4rem;
  background: #0A0A0A;
}

.elena-message-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.elena-message-text {
  margin-bottom: 3rem;
}

.elena-message-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.elena-message-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink-primary);
  font-style: italic;
}

.elena-message-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-style: italic;
}

.elena-video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(233, 30, 99, 0.4);
}

.elena-video-player {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}


/* ------------------------------------------------------------
   7. WORKOUTS SECTION
   ------------------------------------------------------------ */

.section-workouts {
  padding: 7rem 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.container-workouts {
  max-width: 1400px;
  margin: 0 auto;
}

.workouts-header {
  text-align: center;
  margin-bottom: 4rem;
}

.workouts-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.workouts-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.workouts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.workouts-grid .workout-card {
  flex: 0 1 calc(33.333% - 1rem);
}

.workout-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--pink-primary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.workout-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
  border-left-color: var(--pink-primary);
  background: linear-gradient(135deg, #1F1F1F, #141414);
}

.workout-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.workout-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.workout-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

.workouts-cta-box {
  background: var(--pink-primary);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-box-content {
  position: relative;
}

.cta-box-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-box-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.cta-box-highlight {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  padding: 1.25rem 2rem;
  border-radius: 4px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ------------------------------------------------------------
   8. TRANSFORMATIONS SECTION
   ------------------------------------------------------------ */

.section-transformations {
  padding: 7rem 4rem;
  background: #0A0A0A;
}

.transformations-header {
  text-align: center;
  margin-bottom: 4rem;
}

.transformations-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.transformations-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.transformations-mashup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  min-height: 200px;
}

.transformation-card-mashup {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #1A1A1A;
  transition: all 0.3s ease;
}

.transformation-card-mashup:nth-child(3n+1) { grid-row: span 2; }
.transformation-card-mashup:nth-child(5n+2) { grid-row: span 1; }
.transformation-card-mashup:nth-child(7n+3) { grid-row: span 2; }
.transformation-card-mashup:nth-child(11n+4) { grid-row: span 1; }

.transformation-card-mashup:hover {
  transform: translateY(-5px);
}

.transformation-card-mashup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.transformation-card-mashup:hover img {
  transform: scale(1.05);
}

.transformation-badge-static {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--pink-primary);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(233, 30, 99, 0.3);
}

.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

.photos-counter {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.photos-counter strong {
  color: var(--pink-primary);
  font-weight: 700;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-load-more:hover:not(:disabled) {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.load-more-subtext {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-weight: 300;
}

.mobile-cta-container {
  display: none;
  text-align: center;
  margin-top: 2.5rem;
}

.btn-mobile-external {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-mobile-external:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

.mobile-cta-subtext {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-weight: 300;
}

.all-loaded-message {
  text-align: center;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(233, 30, 99, 0.4);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.all-loaded-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.all-loaded-message p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}


/* ------------------------------------------------------------
   9. METHOD E.A.S.Y. SECTION
   ------------------------------------------------------------ */

.method-section {
  padding: 7rem 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.container-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.method-section .method-intro {
  display: block;
  grid-template-columns: none;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.method-tag {
  display: inline-block;
  background: transparent;
  color: var(--pink-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 2px solid var(--pink-primary);
}

.method-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.method-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.method-hero {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 4rem 3rem;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.method-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink-primary);
}

.method-hero-content {
  text-align: center;
}

.easy-letters {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.easy-letter {
  width: 5rem;
  height: 5rem;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.easy-letter:hover {
  transform: translateY(-5px);
  background: var(--pink-dark);
}

.method-hero-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

.method-hero-text strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.method-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.method-section .pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.method-section .pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.pillar-icon-wrap {
  width: 3.75rem;
  height: 3.75rem;
  background: var(--pink-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.method-section .pillar-letter {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillar-description {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pillar-description strong {
  font-weight: 700;
  color: var(--white);
}

.method-section .pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.method-section .pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.why-it-works {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(233, 30, 99, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.why-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

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

.why-number {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.method-quote {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(233, 30, 99, 0.4);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.quote-icon-method {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
}

.quote-text-method {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-text-method strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.quote-author-method {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}


/* ------------------------------------------------------------
   10. ANNUAL SECTION
   ------------------------------------------------------------ */

.section-academy-annual {
  min-height: auto;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}

.annual-shapes {
  display: none;
}

.annual-shape {
  display: none;
}

.annual-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.annual-header {
  text-align: center;
  margin-bottom: 4rem;
}

.annual-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1rem;
}

.annual-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.annual-headline-underline {
  text-decoration: underline;
  text-decoration-color: var(--pink-primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.annual-subheadline {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
}

.annual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.annual-column {
  background: rgba(255, 255, 255, 0.04);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.annual-column:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--pink-primary);
}

.column-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-primary);
  color: var(--white);
  border-radius: 4px;
  font-size: 1.25rem;
}

.column-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.annual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.annual-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 2rem;
  font-weight: 300;
}

.annual-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.annual-list li:before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 1.25rem;
  color: var(--pink-primary);
  font-weight: 700;
}

.annual-list li strong {
  font-weight: 700;
  color: var(--white);
}

.annual-bottom {
  background: var(--pink-primary);
  color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  margin-top: 3rem;
  text-align: center;
}

.annual-bottom-text {
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

.annual-bottom-text strong {
  font-weight: 700;
}


/* ------------------------------------------------------------
   11. TEAM MEDICO SECTION
   ------------------------------------------------------------ */

.team-medico-section {
  padding: 7rem 4rem;
  background: var(--black);
}

.team-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.team-photo {
  width: 100%;
  height: 18rem;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 1.5rem 0;
  position: relative;
  background: #1A1A1A;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: all 0.3s ease;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.team-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.team-icon {
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 99, 0.15);
  border-radius: 50%;
}

.team-badge {
  background: var(--pink-primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.team-expertise {
  background: rgba(233, 30, 99, 0.1);
  border-left: 4px solid var(--pink-primary);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.team-expertise p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 300;
}

.team-expertise strong {
  color: var(--pink-primary);
  font-weight: 700;
}

.team-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.team-credentials li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.team-credentials li:last-child {
  margin-bottom: 0;
}

.team-focus {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}

.team-focus strong {
  color: var(--pink-primary);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.team-quote {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(233, 30, 99, 0.4);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.quote-icon-team {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
}

.quote-text-team {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote-text-team strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.quote-author-team {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}


/* ------------------------------------------------------------
   12. PRICING SECTION
   ------------------------------------------------------------ */

.pricing-info {
  padding: 7rem 4rem;
  background: #0A0A0A;
}

.pricing-info-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-intro-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.pricing-explanation {
  margin-bottom: 3rem;
}

.pricing-why-box {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(233, 30, 99, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: rgba(233, 30, 99, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.pricing-icon {
  width: 2rem;
  height: 2rem;
}

.pricing-why-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-why-box p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.pricing-why-box strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.pricing-grid-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-point {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--pink-primary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-point:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
  border-left-color: var(--pink-primary);
  background: linear-gradient(135deg, #1F1F1F, #141414);
}

.pricing-point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.pricing-point h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pricing-point p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.pricing-truth-box {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(233, 30, 99, 0.4);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.truth-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.truth-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.truth-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.truth-content strong {
  font-weight: 700;
  color: var(--pink-primary);
}


/* ------------------------------------------------------------
   13. CTA FINAL SECTION
   ------------------------------------------------------------ */

.cta-final {
  padding: 7rem 4rem;
  background: var(--pink-primary);
}

.cta-final .cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-final .cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta-final .cta-text {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
}

.cta-final .cta-text strong {
  color: var(--white);
  font-weight: 700;
}

.cta-box {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
}

.cta-box-title-final {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.cta-box-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-box-text strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
}

.cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.cta-button-wrapper {
  text-align: center;
  margin: 2.5rem 0;
}

.btn-cta-form {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1.25rem 3rem;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-cta-form:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

.btn-icon-form,
.btn-arrow-form {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-cta-form:hover .btn-arrow-form {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

.pulse-animation {
  /* removed */
}

.cta-note {
  margin-top: 1.5rem;
  background: rgba(233, 30, 99, 0.1);
  border-left: 4px solid var(--pink-primary);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.7;
}

.cta-note strong {
  font-weight: 700;
  color: var(--pink-primary);
}

.cta-final-quote {
  margin-top: 3rem;
  text-align: center;
}

.cta-final-quote p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-style: italic;
}

.cta-final-quote strong {
  font-weight: 700;
  color: var(--white);
}


/* ============================================================
   14. RESPONSIVE RULES (grouped by breakpoint)
   ============================================================ */

/* ------------------------------------------------------------
   Tablet - max-width: 1024px
   ------------------------------------------------------------ */

@media (max-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .phases-grid {
    grid-template-columns: 1fr;
  }
  .workouts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .transformations-mashup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .method-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid-points {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   Mobile - max-width: 768px
   ------------------------------------------------------------ */

@media (max-width: 768px) {

  /* --- Media Trust --- */
  .media-trust-section {
    padding: 1.25rem 0;
  }
  .media-trust-label {
    font-size: 0.65rem;
  }
  .media-logos-wrapper {
    overflow-x: hidden;
  }
  .media-logos-track {
    animation: scroll-logos 30s linear infinite;
    gap: 2.5rem;
    padding: 0 1.25rem;
  }
  .media-logo-item {
    height: 2.5rem;
  }
  .media-logo-item img {
    max-width: 10rem;
  }

  /* --- Press --- */
  .section-press {
    padding: 4rem 1rem;
  }
  .press-quote-section {
    padding: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* --- Comparison --- */
  .problem-section {
    padding: 4rem 1rem;
  }
  .container-academy {
    padding: 0 0.5rem;
  }
  .section-title-academy {
    font-size: 1.75rem;
  }
  .comparison-card {
    padding: 2rem;
  }
  .comparison-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
  .comparison-header h3 {
    font-size: 1.1rem;
  }
  .comparison-header {
    margin-bottom: 1.5rem;
  }
  .comparison-list strong {
    font-size: 0.9rem;
  }
  .comparison-list p {
    font-size: 0.85rem;
  }
  .comparison-list li {
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .philosophy-quote {
    padding: 2rem;
  }

  /* --- Phases --- */
  .how-it-works {
    padding: 4rem 1rem;
  }
  .phases-grid {
    grid-template-columns: 1fr;
  }
  .phase-card {
    padding: 2rem;
  }

  /* --- Elena Message --- */
  .elena-message {
    padding: 4rem 1rem;
  }
  .elena-video-container {
    max-width: 100%;
  }

  /* --- Workouts --- */
  .section-workouts {
    padding: 4rem 1rem;
  }
  .workouts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .workout-card {
    padding: 2rem;
  }
  .workouts-cta-box {
    padding: 2rem;
  }

  /* --- Transformations --- */
  .section-transformations {
    padding: 4rem 1rem;
  }
  .transformations-mashup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .load-more-container {
    display: none !important;
  }
  .mobile-cta-container {
    display: block !important;
  }
  .transformation-card-mashup:nth-child(3n+1) {
    grid-row: span 1;
  }
  .transformation-card-mashup:nth-child(7n+3) {
    grid-row: span 1;
  }

  /* --- Method E.A.S.Y. --- */
  .method-section {
    padding: 4rem 1rem;
  }
  .method-hero {
    padding: 2rem;
  }
  .easy-letters {
    gap: 0.75rem;
  }
  .easy-letter {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
  .method-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .method-section .pillar-card {
    padding: 2rem;
  }
  .why-it-works {
    padding: 2rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .method-quote {
    padding: 2rem;
  }

  /* --- Annual --- */
  .section-academy-annual {
    padding: 4rem 1rem;
  }
  .annual-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .annual-column {
    padding: 2rem;
  }
  .annual-bottom {
    padding: 2rem;
  }

  /* --- Team --- */
  .team-medico-section {
    padding: 4rem 1rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-card {
    padding: 2rem;
  }
  .team-photo {
    height: 16rem;
    margin: 0 0 1.25rem 0;
  }
  .team-quote {
    padding: 2rem;
  }

  /* --- Pricing --- */
  .pricing-info {
    padding: 4rem 1rem;
  }
  .pricing-truth-box {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  .pricing-grid-points {
    grid-template-columns: 1fr;
  }
  .pricing-point {
    padding: 2rem;
  }
  .pricing-why-box {
    padding: 2rem;
  }
  .stat-box {
    padding: 2rem;
  }

  /* --- CTA Final --- */
  .cta-final {
    padding: 4rem 1rem;
  }
  .cta-box {
    padding: 2rem;
  }
  .btn-cta-form {
    width: 100%;
    justify-content: center;
  }
}


/* ------------------------------------------------------------
   Small Mobile - max-width: 480px
   ------------------------------------------------------------ */

@media (max-width: 480px) {

  .media-logos-track {
    gap: 2rem;
  }
  .media-logo-item {
    height: 2rem;
  }
  .media-logo-item img {
    max-width: 8.75rem;
  }
  .press-quote-section {
    padding: 1.5rem 1.25rem;
  }
  .stat-box {
    padding: 1.5rem;
  }
  .problem-section {
    padding: 3rem 0.75rem;
  }
  .container-academy {
    padding: 0 0.25rem;
  }
  .section-title-academy {
    font-size: 1.5rem;
  }
  .comparison-card {
    padding: 1.5rem;
  }
  .comparison-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .comparison-header h3 {
    font-size: 1rem;
  }
  .comparison-header {
    margin-bottom: 1.25rem;
  }
  .comparison-list strong {
    font-size: 0.85rem;
  }
  .comparison-list p {
    font-size: 0.8rem;
  }
  .comparison-list li {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .icon-bad,
  .icon-good {
    font-size: 1rem;
  }
  .philosophy-quote {
    padding: 1.5rem;
  }
  .phase-card {
    padding: 1.5rem;
  }
  .phase-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .elena-message {
    padding: 3rem 1.25rem;
  }
  .workout-card {
    padding: 1.5rem;
  }
  .section-transformations {
    padding: 3rem 1rem;
  }
  .transformations-mashup-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .transformation-card-mashup {
    grid-row: span 1 !important;
    aspect-ratio: 3/4;
  }
  .easy-letters {
    gap: 0.5rem;
  }
  .easy-letter {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
  .section-academy-annual {
    padding: 3rem 1rem;
  }
  .annual-column {
    padding: 1.5rem;
  }
  .annual-bottom {
    padding: 2rem;
  }
  .team-card {
    padding: 1.5rem;
  }
  .team-photo {
    height: 15rem;
  }
  .team-quote {
    padding: 1.5rem;
  }
  .pricing-why-box {
    padding: 1.5rem;
  }
  .pricing-truth-box {
    padding: 1.5rem;
  }
  .pricing-point {
    padding: 1.5rem;
  }
  .method-section .pillar-card {
    padding: 1.5rem;
  }
  .why-it-works {
    padding: 1.5rem;
  }
  .method-quote {
    padding: 1.5rem;
  }
  .cta-final {
    padding: 3rem 1rem;
  }
  .cta-box {
    padding: 1.5rem 1rem;
  }
  .btn-cta-form {
    padding: 1rem 2rem;
  }
}
/* === components/shop.css === */
/* ===== SHOP / PRODUCT PAGE ===== */

/* --- Stats Row --- */
.shop-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.shop-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.shop-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

/* --- Modules Grid --- */
.shop-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shop-module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pink-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-module-card:hover::before {
    width: 100%;
}

.shop-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.shop-module-number {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.shop-module-date {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.shop-module-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.shop-module-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.shop-module-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-primary);
    background: rgba(233,30,99,0.1);
    padding: 0.35rem 0.75rem;
    margin-top: 1rem;
}

/* --- Target Section --- */
.shop-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shop-target-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.shop-target-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.shop-target-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.shop-target-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* --- Timer Section --- */
.shop-timer-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-timer-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.shop-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.shop-timer-item {
    text-align: center;
}

.shop-timer-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    min-width: 3.5rem;
    display: block;
}

.shop-timer-unit {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 0.35rem;
}

.shop-timer-expired {
    display: none;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-bottom: 2rem;
}

.shop-timer-expired.visible {
    display: block;
}

/* --- Pricing Grid --- */
.shop-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.shop-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--pink-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-pricing-card:hover::before {
    width: 100%;
}

.shop-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.shop-pricing-featured {
    border: 1px solid rgba(233,30,99,0.3);
}

.shop-pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-primary);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1.25rem;
    white-space: nowrap;
}

.shop-pricing-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.shop-pricing-price {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.shop-pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

.shop-pricing-original {
    font-size: 1rem;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
    margin-bottom: 0.75rem;
    display: none;
}

.shop-pricing-original.visible {
    display: block;
}

.shop-pricing-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.shop-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.shop-pricing-features li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-left: 1.5rem;
    position: relative;
}

.shop-pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pink-primary);
    font-weight: 700;
}

.shop-pricing-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.shop-pricing-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
}

.shop-pricing-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.shop-pricing-trust {
    margin-top: 1.25rem;
}

.shop-pricing-trust span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

/* --- Bio Grid --- */
.shop-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.shop-bio-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.shop-bio-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.shop-bio-credentials {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.shop-bio-credentials li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.shop-bio-credentials li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pink-primary);
    font-weight: 700;
}

.shop-bio-quote {
    border-left: 3px solid var(--pink-primary);
    padding: 1rem 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- FAQ override for white background --- */
.shop-faq .faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
}

.shop-faq .faq-item:hover {
    border-color: var(--pink-primary);
    box-shadow: 0 10px 40px rgba(233,30,99,0.08);
}

.shop-faq .faq-item.active {
    border-color: var(--pink-primary);
    box-shadow: 0 20px 60px rgba(233,30,99,0.1);
}

.shop-faq .faq-question h3 {
    color: var(--black);
}

.shop-faq .faq-item.active .faq-question {
    background: rgba(233,30,99,0.05);
}

.shop-faq .faq-icon {
    background: rgba(0,0,0,0.05);
    color: var(--pink-primary);
}

.shop-faq .faq-item.active .faq-icon {
    background: var(--pink-primary);
    color: var(--white);
}

.shop-faq .faq-answer-content {
    color: var(--gray-light);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .shop-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 28rem;
        margin: 0 auto;
    }

    .shop-bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shop-bio-image img {
        max-width: 24rem;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .shop-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .shop-modules-grid {
        grid-template-columns: 1fr;
    }

    .shop-target-grid {
        grid-template-columns: 1fr;
    }

    .shop-module-card {
        padding: 2rem 1.5rem;
    }

    .shop-pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .shop-timer {
        gap: 1rem;
    }
}


/* === components/webinar-coach.css === */
/* ===== WEBINAR COACH - LANDING PAGE ===== */
/* Page-specific styles for webinar-coach.html */
/* Uses ev-* classes from dark-immersive.css */
/* Uses shop-faq white overrides from shop.css */

/* Hero - Coach variant with form */
.wc-hero {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 7rem 4rem;
    overflow: hidden;
}

.wc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.wc-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.5) 100%
    );
}

.wc-hero::before {
    content: '';
    position: absolute;
    top: -12.5rem;
    right: -12.5rem;
    width: 37.5rem;
    height: 37.5rem;
    background: radial-gradient(circle, rgba(233,30,99,0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.wc-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.wc-hero-content {
    max-width: 35rem;
}

.wc-pre-headline {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wc-pre-headline::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--pink-primary);
}

.wc-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.wc-hero-title em {
    color: var(--pink-primary);
    font-style: normal;
}

.wc-hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.wc-hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

/* Short subtitle visible only on mobile */
.wc-hero-subtitle-short {
    display: none;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.wc-hero-subtitle-short strong {
    color: var(--white);
    font-weight: 600;
}

.wc-event-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.wc-event-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.wc-event-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--pink-primary);
    flex-shrink: 0;
}

.wc-scarcity {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Registration Form */
.wc-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.wc-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pink-primary);
    border-radius: 20px 20px 0 0;
}

.wc-form-badge {
    display: inline-block;
    background: rgba(233,30,99,0.1);
    border: 1px solid rgba(233,30,99,0.25);
    color: var(--pink-primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.wc-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.wc-form-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
}

.wc-form-group {
    margin-bottom: 1rem;
}

.wc-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.wc-form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.wc-form-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.wc-form-input:focus {
    outline: none;
    border-color: var(--pink-primary);
    background: rgba(233,30,99,0.05);
}

.wc-form-submit {
    width: 100%;
    padding: 1.15rem 2rem;
    background: var(--pink-primary);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 0.5rem;
}

.wc-form-submit:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233,30,99,0.4);
}

.wc-form-privacy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* Pain Points Section */
.wc-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.wc-pain-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.wc-pain-item:hover {
    border-color: rgba(233,30,99,0.2);
}

.wc-pain-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    color: var(--pink-primary);
    margin-top: 0.1rem;
}

.wc-pain-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.wc-pain-close {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    font-style: italic;
}

/* Insight Section */
.wc-insight {
    max-width: 750px;
    margin: 0 auto;
}

.wc-insight-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.wc-insight p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.wc-insight .wc-result-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.wc-insight .wc-result-list li {
    padding: 0.5rem 0;
    position: relative;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.wc-insight .wc-result-list li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    background: var(--pink-primary);
    border-radius: 50%;
}

.wc-insight .wc-insight-emphasis {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
}

.wc-insight .wc-insight-cta {
    font-size: 1.1rem;
    color: var(--pink-primary);
    font-weight: 600;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Learn Section - numbered items */
.wc-learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.wc-learn-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.wc-learn-card:hover {
    border-color: rgba(233,30,99,0.25);
    transform: translateY(-4px);
}

.wc-learn-card::before {
    content: '';
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, rgba(233,30,99,0.08), transparent 70%);
    pointer-events: none;
}

.wc-learn-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(233,30,99,0.1);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.wc-learn-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.wc-learn-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

/* Elena Bio Section */
.wc-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.wc-bio-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.wc-bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-bio-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.wc-bio-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.wc-bio-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.wc-bio-credentials {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.wc-bio-credentials li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wc-bio-credentials li:last-child {
    border-bottom: none;
}

.wc-bio-credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--pink-primary);
    border-radius: 50%;
}

.wc-bio-quote {
    border-left: 3px solid var(--pink-primary);
    padding: 1.25rem 1.5rem;
    background: rgba(233,30,99,0.06);
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--white);
    font-weight: 500;
}

/* Target Section - White variant */
.wc-target-section {
    background: var(--white);
    padding: 7rem 4rem;
}

.wc-target {
    max-width: 800px;
    margin: 0 auto;
}

.wc-target .section-title {
    color: var(--black) !important;
}

.wc-target-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 2rem;
}

.wc-target-list li {
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-weight: 400;
}

.wc-target-list li:last-child {
    border-bottom: none;
}

.wc-target-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--pink-primary);
    border-radius: 50%;
}

.wc-target-list li::after {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 1.85rem;
    width: 0.75rem;
    height: 0.4rem;
    border-left: 2.5px solid var(--white);
    border-bottom: 2.5px solid var(--white);
    transform: rotate(-45deg);
}

.wc-target-exclusion {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.4);
    font-style: italic;
    margin-top: 1.5rem;
}

/* Final CTA with form */
.wc-cta-final {
    background: var(--pink-primary);
    text-align: center;
    padding: 7rem 2rem;
}

.wc-cta-final-content {
    max-width: 600px;
    margin: 0 auto;
}

.wc-cta-final h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.wc-cta-final p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.wc-cta-final .wc-event-details {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 2rem 0;
    font-weight: 500;
}

.wc-cta-final .ev-btn-white {
    margin-top: 0.5rem;
}

.wc-cta-final-trust {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* FAQ White variant */
.wc-faq-white {
    background: var(--white);
    padding: 7rem 4rem;
}

.wc-faq-white .section-number {
    color: var(--pink-primary);
}

.wc-faq-white .section-title {
    color: var(--black) !important;
}

/* OPES Certification Banner - Prominent */
.wc-opes-banner {
    background: var(--white);
    padding: 5rem 4rem;
    border-top: 4px solid var(--pink-primary);
}

.wc-opes-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wc-opes-logo {
    width: 16rem;
    margin: 0 auto 2rem;
}

.wc-opes-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.wc-opes-cert-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.wc-opes-cert-name em {
    color: var(--pink-primary);
    font-style: normal;
}

.wc-opes-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.wc-opes-disclaimer {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.wc-opes-sub {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(0,0,0,0.6);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.wc-opes-pathway {
    margin-top: 2.5rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wc-opes-pathway-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.wc-opes-pathway-note {
    background: rgba(233,30,99,0.06);
    border-left: 3px solid var(--pink-primary);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.wc-opes-pathway-note p {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
}

.wc-opes-pathway-note strong {
    font-weight: 600;
}

.wc-opes-where-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.wc-opes-where-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.wc-opes-where-list li {
    padding: 0.6rem 1rem 0.6rem 2rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.5;
}

.wc-opes-where-list li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    background: var(--pink-primary);
    border-radius: 50%;
}

.wc-opes-extras {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.wc-opes-extras strong {
    color: var(--black);
    font-weight: 600;
}

.wc-opes-opportunity {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--black);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wc-opes-opportunity p {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.wc-opes-opportunity em {
    color: var(--pink-primary);
    font-style: normal;
}

.wc-opes-webinar-cta {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pink-primary);
    font-style: italic;
    text-align: center;
}

/* Press Logos Strip */
.wc-press {
    background: var(--white);
    padding: 3.5rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.wc-press-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    margin-bottom: 2rem;
}

.wc-press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.wc-press-logo {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.wc-press-logo:hover {
    opacity: 0.85;
}

.wc-press-logo img {
    height: 1.75rem;
    width: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.wc-press-logo:hover img {
    filter: grayscale(0%);
}

.wc-press-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
}

/* Sticky CTA */
.wc-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 0.75rem 1.25rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    border-top: 1px solid rgba(233,30,99,0.3);
}

.wc-sticky-cta .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .wc-hero-bg::after {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.8) 0%,
            rgba(0,0,0,0.7) 50%,
            rgba(0,0,0,0.85) 100%
        );
    }

    .wc-hero {
        padding: 5rem 2rem;
    }

    .wc-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    /* Form first on mobile */
    #iscriviti {
        order: 1;
    }

    .wc-hero-content {
        order: 2;
        max-width: 100%;
        text-align: center;
    }

    /* Short subtitle on mobile */
    .wc-hero-subtitle {
        display: none;
    }

    .wc-hero-subtitle-short {
        display: block;
    }

    .wc-pre-headline {
        justify-content: center;
    }

    .wc-event-info {
        justify-content: center;
    }

    .wc-scarcity {
        display: block;
        text-align: center;
    }

    .wc-form-card {
        max-width: 28rem;
        margin: 0 auto;
    }

    .wc-bio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wc-bio-image {
        max-width: 20rem;
        margin: 0 auto;
    }

    .wc-bio-content {
        text-align: center;
    }

    .wc-bio-quote {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .wc-hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .wc-pain-grid {
        grid-template-columns: 1fr;
    }

    .wc-learn-grid {
        grid-template-columns: 1fr;
    }

    .wc-sticky-cta {
        display: block;
    }

    .wc-cta-final {
        padding: 4rem 1.5rem 7rem;
    }

    .wc-event-info {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .wc-target-section {
        padding: 4rem 1.5rem;
    }

    .wc-opes-where-list {
        grid-template-columns: 1fr;
    }

    .wc-opes-banner {
        padding: 4rem 1.5rem;
    }

    .wc-opes-logo {
        width: 12rem;
    }

    .wc-press {
        padding: 2.5rem 1.5rem;
    }

    .wc-press-logos {
        gap: 2rem;
    }

    .wc-press-logo img {
        height: 1.25rem;
    }

    .wc-faq-white {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .wc-form-card {
        padding: 2rem 1.5rem;
    }
}


/* === responsive.css === */
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-bg-image {
        width: 100%;
        opacity: 0.85;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-video-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-stats { justify-content: center; }
    .hero-cta-group { justify-content: center; }

    .letter-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .letter-image {
        max-width: 350px;
        margin: 0 auto;
    }

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

    .letter-text {
        text-align: left;
    }

    .team-intro {
        grid-template-columns: 1fr;
    }

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

    .specialist-hero {
        grid-template-columns: 1fr;
    }

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

    .book-card {
        max-width: 550px;
        margin: 0 auto;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .program-card.featured { transform: none; }

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

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

    .how-timeline::before {
        left: 40px;
    }

    .how-step {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .how-step-content {
        text-align: left !important;
    }

    .how-step-visual {
        display: none;
    }

    .how-step:nth-child(even) .how-step-content {
        grid-column: 2;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-date {
        max-width: 140px;
        margin: 0 auto;
    }

    .video-container {
        grid-template-columns: 1fr;
    }

    .press-articles {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: relative;
        top: 0;
    }

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

@media (max-width: 768px) {
    /* Hero background image - mobile */
    .hero-bg-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.6;
        object-position: 85% top;
        top: 0;
        left: 0;
    }

    .hero-gradient {
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
    }

    /* Hero mobile layout: everything in first viewport */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 4.5rem 1rem 1rem !important;
        gap: 0;
    }

    .hero-text {
        display: contents;
    }

    .hero-badge { order: 1; margin-bottom: 0.5rem; }
    .hero-title { order: 2; margin-bottom: 0.5rem; }
    .hero-subtitle { order: 3; margin-bottom: 1rem; font-size: 0.85rem !important; }
    .hero-video-container { order: 4; margin-bottom: 1rem; width: 100%; }
    .hero-cta-group { order: 5; margin-top: 0; gap: 0.5rem; }
    .hero-stats { order: 6; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); gap: 1rem; width: 100%; justify-content: center; }

    .hero-video-box {
        max-width: 100%;
    }

    .nav {
        padding: 1rem 1.5rem;
        background: #000 !important;
        transition: background 0.3s ease;
        z-index: 9999 !important;
    }

    .nav.dark {
        background: transparent !important;
    }

    .nav-hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #000000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1001;
        padding: 100px 2rem 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link,
    .nav.dark .nav-menu .nav-link,
    .nav-menu.active .nav-link {
        font-size: 1.3rem;
        color: #ffffff !important;
        font-weight: 600;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-cta,
    .nav.dark .nav-menu .nav-cta {
        margin-top: 1.5rem;
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
        width: auto;
        color: #ffffff !important;
        background: #e91e63;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-toggle,
    .nav.dark .nav-dropdown-toggle,
    .nav-menu.active .nav-dropdown-toggle {
        justify-content: center;
        font-size: 1.3rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #ffffff !important;
        font-weight: 600;
        padding: 0.75rem 0;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        background: #1A1A1A;
        border-radius: 12px;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 2px solid #e91e63;
    }

    .nav-dropdown-menu::before {
        display: none !important;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.75rem;
        margin: 0.5rem 0;
    }

    .nav-dropdown-menu a {
        padding: 0.875rem 1rem;
        font-size: 1.1rem;
        text-align: center;
        display: block;
        color: rgba(255,255,255,0.8) !important;
        font-weight: 500;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: background 0.2s ease;
        text-decoration: none;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:active {
        background: #e91e63;
        color: #fff !important;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
        color: #e91e63;
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Hamburger styling when active */
    .nav-hamburger.active span {
        background: #ffffff !important;
    }

    /* Fix hover issue on mobile */
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown.open:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.75rem;
    }

    .section {
        padding: 4rem 1rem;
    }
    .container-page {
        padding: 0 0.5rem;
    }

    .hero-video-box {
        border-radius: 12px;
    }

    .hero-video-play {
        width: 50px;
        height: 50px;
    }

    .hero-title {
        font-size: 2rem;
        text-shadow: 0 2px 20px rgba(0,0,0,0.5);
        line-height: 1.15;
    }

    .hero-title span:first-child {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .hero-title span:nth-child(2) {
        font-size: 2.1rem;
        font-weight: 800;
    }

    .hero-title .accent {
        font-size: 2.4rem;
        text-shadow: 0 2px 30px rgba(233, 30, 99, 0.4);
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-cta-group {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .btn-primary, .btn-outline {
        padding: 0.65rem 1rem;
        font-size: 0.75rem;
    }

    .letter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .letter-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .letter-image-badge {
        right: 0;
        bottom: -1rem;
    }

    .letter-title {
        font-size: 2rem;
    }

    .letter-text {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }

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

    .specialist-hero-content {
        padding: 3rem 1.5rem;
    }

    .specialist-name {
        font-size: 2rem;
    }

    .specialist-expertise {
        grid-template-columns: 1fr;
    }

    .method-card {
        flex: 0 0 280px;
    }

    .book-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-cover {
        max-width: 160px;
        margin: 0 auto;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

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

    .footer-brand p { max-width: none; }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .video-container {
        padding: 4rem 1.5rem;
    }

    .video-title {
        font-size: 1.75rem;
    }

    .video-stats {
        gap: 2rem;
    }

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

    .social-header h2 {
        font-size: 2rem;
    }

    .faq-intro h2 {
        font-size: 1.75rem;
    }

    .press-articles {
        padding: 0 1.5rem;
    }

    .transformations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .transformations-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 1rem;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    /* How Section Mobile - Vertical Timeline */
    .how-container {
        padding: 0;
    }

    .how-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .how-timeline {
        position: relative;
        padding: 0 0 0 2.5rem;
    }

    .how-timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #e91e63 0%, #c2185b 100%);
        border-radius: 3px;
    }

    .how-step {
        display: block;
        position: relative;
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }

    .how-step:last-child {
        margin-bottom: 0;
    }

    .how-step-number {
        position: absolute;
        left: -2.5rem;
        top: 0;
        width: 44px;
        height: 44px;
        background: #1A1A1A;
        border: 3px solid #e91e63;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 800;
        color: #e91e63;
        z-index: 2;
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    }

    .how-step-visual {
        display: none;
    }

    .how-step-content {
        background: #1A1A1A;
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .how-step:nth-child(odd) .how-step-content,
    .how-step:nth-child(even) .how-step-content {
        text-align: left;
        grid-column: auto;
        padding: 1.25rem;
    }

    .how-step-badge {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #e91e63;
        background: rgba(233, 30, 99, 0.1);
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        margin-bottom: 0.75rem;
    }

    .how-step-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--white);
    }

    .how-step-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.6);
        margin: 0;
    }

    .how-cta-box {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 12px;
    }

    .how-cta-box h3 {
        font-size: 1.1rem;
    }

    .how-cta-box p {
        font-size: 0.9rem;
    }

    /* Additional Mobile Fixes */
    .prototype-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 1rem;
        bottom: 1rem;
    }

    .marquee-item {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-bg-text {
        font-size: 15vw;
    }

    .method-section {
        padding: 4rem 1rem;
    }

    .method-header {
        padding: 0 1rem;
    }

    .method-scroll {
        padding: 2rem 1rem;
        gap: 1rem;
    }

}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .section {
        padding: 3rem 0.75rem;
    }
    .container-page {
        padding: 0 0.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .letter-title {
        font-size: 1.6rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-outline {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .timer-item {
        min-width: 65px;
        padding: 0.75rem;
    }

    .timer-number {
        font-size: 1.5rem;
    }

    .timer-label {
        font-size: 0.7rem;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ===== SVG ICON SYSTEM ===== */
.workout-icon svg,
.value-icon svg,
.audience-icon svg,
.partnership-icon svg,
.book-feature-icon svg,
.highlight-icon svg,
.sector-icon svg,
.truth-icon svg,
.shop-target-icon svg,
.team-page-highlight-icon svg,
.social-cta-icon svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.team-icon svg,
.column-icon svg,
.comparison-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-bad svg,
.icon-good svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.team-credentials svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: var(--pink-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.1em;
    margin-right: 0.15rem;
}

.contact-option-icon svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-list-location svg {
    width: 0.9em;
    height: 0.9em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.1em;
}

