/* ===== Font Face Declarations ===== */
@font-face {
    font-family: 'Bayshore';
    src: url('/fonts/Bayshore.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --pink-primary: #FF69B4;
    --pink-light: #FFB6C1;
    --pink-dark: #FF1493;
    --pink-50: #FDF2F8;
    --pink-100: #FCE7F3;
    --pink-500: #EC4899;
    --pink-600: #DB2777;
    --pink-700: #BE185D;
    --white: #FFFFFF;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --font-elegant: 'Instrument Serif', serif;
    --font-script: 'Bayshore', cursive;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    --container-width: 1200px;
    --section-padding: 5rem 0;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* All headings use Instrument Serif */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-elegant);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== Unified Mobile Menu (all pages) ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        grid-column: 2;
    }
    .hero__nav {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    .hero__cta--desktop {
        display: none !important;
    }
    .hero__cta--mobile {
        display: flex !important;
    }
    .about-header__nav,
    .booking-header__nav,
    .blog-header__nav,
    .blog-detail-header__nav,
    .courses-header__nav,
    .resources-header__nav {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .mobile-menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background-color: #FA77A0 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 5rem 1.5rem 2rem !important;
        gap: 0 !important;
        z-index: 1000 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        box-shadow: 4px 0 24px rgba(0,0,0,0.15) !important;
    }
    .mobile-menu.active {
        left: 0 !important;
    }
    .mobile-menu .hero__list,
    .mobile-menu .about-header__list,
    .mobile-menu .booking-header__list,
    .mobile-menu .blog-header__list,
    .mobile-menu .blog-detail-header__list,
    .mobile-menu .courses-header__list,
    .mobile-menu .resources-header__list {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        width: 100% !important;
    }
    .mobile-menu .hero__item,
    .mobile-menu .about-header__item,
    .mobile-menu .booking-header__item,
    .mobile-menu .blog-header__item,
    .mobile-menu .blog-detail-header__item,
    .mobile-menu .courses-header__item,
    .mobile-menu .resources-header__item {
        margin: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    }
    .mobile-menu .hero__link,
    .mobile-menu .about-header__link,
    .mobile-menu .booking-header__link,
    .mobile-menu .blog-header__link,
    .mobile-menu .blog-detail-header__link,
    .mobile-menu .courses-header__link,
    .mobile-menu .resources-header__link {
        display: block !important;
        padding: 1rem 0 !important;
        min-height: 44px !important;
        color: var(--white) !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        text-shadow: none !important;
    }
    .mobile-menu .hero__link:hover,
    .mobile-menu .about-header__link:hover,
    .mobile-menu .booking-header__link:hover,
    .mobile-menu .blog-header__link:hover,
    .mobile-menu .blog-detail-header__link:hover,
    .mobile-menu .courses-header__link:hover,
    .mobile-menu .resources-header__link:hover {
        opacity: 0.9 !important;
    }
    .mobile-menu .hero__cta--mobile,
    .mobile-menu .btn--bookings {
        margin-top: 1.5rem !important;
        justify-content: center !important;
    }
}

/* Fade-in animation for images and content on scroll */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background-color: var(--pink-600);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--pink-700);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.3);
}

.btn--secondary {
    background-color: var(--white);
    color: var(--pink-600);
}

.btn--secondary:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn--pink {
    background-color: #FA77A0;
    color: var(--white);
}

.btn--pink:hover {
    background-color: #e8658f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 119, 160, 0.3);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn__arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

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

.btn--bookings {
    background-color: var(--pink-primary);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn--bookings:hover {
    background-color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 105, 180, 0.4);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    background-image: url('https://ik.imagekit.io/primo/glendaalvarez/glenda-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Hero Navigation */
.hero__header {
    position: relative;
    z-index: 100;
    width: 100%;
    padding-top: 2rem;
}

.hero__nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 3rem;
    gap: 2rem;
}

.hero__brand {
    justify-self: start;
}

.hero__logo {
    display: inline-block;
    text-decoration: none;
}

.hero__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.hero__menu {
    justify-self: center;
    display: flex;
    align-items: center;
}

.hero__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero__cta {
    justify-self: end;
    display: flex;
    align-items: center;
}

.hero__cta--mobile {
    display: none;
}

.hero__link {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.hero__link:hover {
    opacity: 0.8;
}

.hero__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hero__toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0 4rem;
    color: var(--white);
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
    text-align: center;
}

.hero__title {
    font-family: var(--font-elegant);
    font-size: 7rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1px;
    text-align: center;
    padding-bottom: 0;
}

.hero__subtitle {
    font-family: var(--font-script);
    font-size: 7rem;
    font-weight: 400;
    color: var(--white);
    margin-top: 0.5rem;
    display: block;
    text-align: center;
}

.hero__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    width: 100%;
    max-width: 25rem;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero__accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--pink-light);
    z-index: 10;
}

/* ===== About Section ===== */
.about {
    padding: 12rem 0;
    background-color: #FFB8CE;
    position: relative;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: start;
    min-height: 600px;
    position: relative;
}

.about__text {
    grid-column: 1 / 3;
    grid-row: 1;
    align-self: start;
    z-index: 3;
    position: relative;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about__greeting {
    font-family: var(--font-elegant);
    font-size: 6.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about__title {
    font-family: var(--font-elegant);
    font-size: 6.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.about__image-left {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about__image-small {
    min-width: 13.4375rem;
    min-height: 17.25rem;
    width: 13.4375rem;
    height: 17.25rem;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about__image-center {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about__image-large {
    width: auto;
    height: auto;
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about__tagline {
    grid-column: 3 / 5;
    grid-row: 2;
    align-self: end;
    text-align: left;
    position: relative;
    z-index: 999;
    padding-bottom: 1rem;
    padding-left: 8rem;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about__tagline-line {
    font-family: var(--font-script);
    font-size: 4.75rem;
    color: var(--white);
    margin: 0;
    line-height: 1.05;
}

.about__gradient {
    grid-column: 4;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about__gradient-image {
    width: auto;
    height: auto;
    min-width: 15.625rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== Services Section ===== */
.services {
    position: relative;
    padding: 6rem 0 0 0;
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 0;
}

.services__top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--pink-light);
    z-index: 10;
}

.services__wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 5rem;
    min-height: 600px;
    position: relative;
    padding-right: 3rem;
}

.services__pink-section {
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.services__pink-block {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 8rem;
    height: 6rem;
    background-color: #FFC8DD;
    z-index: 1;
}

.services__white-section {
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding: 4rem 10rem 4rem 0;
    position: relative;
}

.services__content {
    z-index: 2;
}

.services__header {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.services__intro-title {
    font-family: var(--font-elegant);
    font-size: 5.5rem;
    font-weight: 400;
    color: #FA77A0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.services__intro-subtitle {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-style: italic;
    color: #4E4E4E;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.services__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-family: var(--font-sans);
}

.services__check {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.services__intro-image {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services__intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services__help {
    text-align: center;
    background-color: #FEF9F5;
    padding: 10rem 3rem;
    margin-bottom: 0;
}

.services__help-title {
    font-family: var(--font-elegant);
    font-size: 6rem;
    font-weight: 400;
    color: #FA77A0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.services__help-subtitle {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-style: italic;
    font-weight: 200;
    color: #4E4E4E;
    margin-bottom: 4rem;
}

.services__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.services__step-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.services__step:first-child .services__step-image-wrapper {
    order: 1;
}

.services__step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FA77A0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.services__step:first-child .services__step-image-wrapper:hover .services__step-overlay,
.services__step:nth-child(2) .services__step-image-wrapper:hover .services__step-overlay,
.services__step:last-child .services__step-image-wrapper:hover .services__step-overlay {
    opacity: 1;
}

.services__step-overlay-text {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

.services__step:first-child .services__step-number {
    order: 2;
    margin-top: 1rem;
}

.services__step:nth-child(2) .services__step-number {
    order: 1;
    margin-bottom: 1rem;
}

.services__step:nth-child(2) .services__step-image-wrapper {
    order: 2;
}

.services__step:last-child .services__step-image-wrapper {
    order: 1;
}

.services__step:last-child .services__step-number {
    order: 2;
    margin-top: 1rem;
}

.services__step-number {
    font-family: var(--font-elegant);
    font-size: 7rem;
    font-weight: 400;
    font-style: italic;
    color: #FA77A0;
    opacity: 1;
    line-height: 1;
}

.services__step-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.services__step:first-child .services__step-image-wrapper:hover .services__step-image,
.services__step:nth-child(2) .services__step-image-wrapper:hover .services__step-image,
.services__step:last-child .services__step-image-wrapper:hover .services__step-image {
    opacity: 0;
}

.services__cta {
    margin-top: 3rem;
}

.services__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid #FFB8CE;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-900);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services__cta-button:hover {
    background-color: #FA77A0;
    color: var(--white);
    border-color: transparent;
}

.services__cta-button:hover .services__cta-arrow {
    filter: brightness(0) invert(1);
}

.services__cta-arrow {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 10rem 0;
    background-image: url('https://ik.imagekit.io/primo/glendaalvarez/testiback.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.testimonials__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

.testimonials__slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    contain: layout style paint;
}

.testimonials__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonials__slide--active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: absolute;
    pointer-events: auto;
}

.testimonials__slide .testimonials__content,
.testimonials__slide .testimonials__image-wrapper {
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.testimonials__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    margin-top: 0;
    vertical-align: top;
}

.testimonials__quote-mark {
    display: none;
}

.testimonials__stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonials__quote {
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--white);
}

.testimonials__text {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.testimonials__author {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    opacity: 0.9;
}

.testimonials__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.testimonials__image {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

.testimonials__image img {
    width: 100%;
    max-width: 20rem;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    display: block;
}

.testimonials__arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    color: #FFB8CE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials__arrow:hover {
    background-color: #FFB8CE;
    color: var(--white);
    transform: scale(1.1);
}

.testimonials__arrow svg {
    width: 20px;
    height: 20px;
}

.testimonials__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== Book Section ===== */
.book {
    position: relative;
    padding: 12rem 0;
    background-color: #FFE5F0;
    overflow: visible;
}

.book__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.book__image {
    position: relative;
    z-index: 10;
    padding-left: 0;
    padding-right: 2rem;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    margin-right: -10rem;
    transform: translateX(2rem);
}

.book__image img {
    width: auto;
    height: auto;
    max-width: 85rem;
    max-height: 105rem;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transform: rotate(-8deg);
    transition: transform 0.3s ease;
    background: transparent;
}

.book__image img:hover {
    transform: rotate(-8deg) scale(1.05);
}

.book__content {
    background-color: var(--white);
    padding: 8rem 24rem 8rem 15rem;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 2;
    margin-left: -12rem;
    margin-right: 0;
    width: calc(50vw + 12rem);
    max-width: none;
}

.book__label {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-style: italic;
    color: #FA77A0;
    margin-bottom: 1rem;
    font-weight: 400;
}

.book__title {
    font-family: var(--font-elegant);
    font-size: 4.5rem;
    color: #FA77A0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.book__description {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #4E4E4E;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.book .btn--primary {
    background-color: #FA77A0;
}

.book .btn--primary:hover {
    background-color: #f85d8a;
    box-shadow: 0 10px 20px rgba(250, 119, 160, 0.3);
}

.book .btn--primary .btn__arrow--white {
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* Book section – mobile responsive */
@media (max-width: 1024px) {
    .book {
        padding: 6rem 0;
    }
    .book__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    .book__image {
        max-width: 100%;
        margin-right: 0;
        transform: none;
        padding: 0;
        justify-content: center;
        order: 1;
    }
    .book__image img {
        max-width: 100%;
        max-height: 28rem;
        width: auto;
        height: auto;
    }
    .book__content {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 4rem 2rem;
        order: 2;
        text-align: center;
    }
    .book__label {
        font-size: 1.75rem;
    }
    .book__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .book {
        padding: 4rem 0;
    }
    .book__grid {
        gap: 2rem;
        padding: 0 1.5rem;
    }
    .book__image img {
        max-height: 22rem;
    }
    .book__content {
        padding: 3rem 1.5rem;
        text-align: center;
    }
    .book__label {
        font-size: 1.5rem;
    }
    .book__title {
        font-size: 2rem;
    }
    .book__description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .book {
        padding: 3rem 0;
    }
    .book__grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    .book__image img {
        max-height: 18rem;
    }
    .book__content {
        padding: 2rem 1rem;
        text-align: center;
    }
    .book__label {
        font-size: 1.25rem;
    }
    .book__title {
        font-size: 1.5rem;
    }
    .book__description {
        font-size: 0.875rem;
    }
}

/* ===== Resources Section ===== */
.resources {
    padding: 8rem 0;
    background-color: var(--white);
}

.resources__title {
    font-family: var(--font-elegant);
    font-size: 4.5rem;
    color: #FA77A0;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

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

.resource {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.resource__image-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.resource__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.resource:hover .resource__image {
    transform: scale(1.02);
}

.resource__title {
    font-family: var(--font-elegant);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.resource__description {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #4E4E4E;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource__button {
    align-self: flex-start;
    margin-top: auto;
}

/* ===== Membership Section ===== */
.membership {
    padding: 0 0 3rem 0;
    background-color: #FA77A0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.membership__border-top,
.membership__border-bottom {
    height: 2.5rem;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 0;
}

.membership__border-bottom {
    overflow: visible;
}

.membership__border-bottom .membership__scroll-text {
    overflow: visible;
}

.membership__scroll-text {
    font-family: var(--font-elegant);
    font-size: 1.75rem;
    font-weight: 400;
    color: #FFB6C1;
    white-space: nowrap;
    animation: scroll-text 25s linear infinite;
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 0;
    width: max-content;
    will-change: transform;
    overflow: visible;
}

.membership__scroll-text-inner {
    display: inline-block;
    white-space: nowrap;
}

.membership__scroll-text--reverse {
    animation: scroll-text-reverse 25s linear infinite;
}

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

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

.membership .container {
    padding-top: 3rem;
}

.membership__content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.membership__laptop {
    margin-bottom: 1.5rem;
    background-image: url('https://ik.imagekit.io/primo/glendaalvarez/laptop.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 40rem;
    height: 26rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.membership__laptop-screen {
    width: 30rem;
    height: 17rem;
    object-fit: contain;
    object-position: center;
    border-radius: 0.25rem;
    position: relative;
    z-index: 1;
    background-color: #0f0f0f;
}

.membership__label {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.membership__title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.btn--membership {
    background-color: var(--white);
    color: #FFB6C1;
    border: 1px solid #FFB6C1;
    border-radius: 9999px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.btn--membership:hover {
    background-color: #FFF;
    color: #FA77A0;
    border-color: #FA77A0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn--membership .btn__arrow {
    object-fit: contain;
    flex-shrink: 0;
}

/* ===== Blog Section ===== */
.blog {
    padding: 8rem 0;
    background-color: var(--white);
}

.blog__title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 4.5rem;
}

.blog__title-main {
    font-family: var(--font-elegant);
    text-transform: uppercase;
    color: #FA77A0;
    font-weight: 400;
}

.blog__title-sub {
    font-family: var(--font-elegant);
    font-style: italic;
    color: #FA77A0;
    font-weight: 400;
}

.blog__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.blog__featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog__featured:hover {
    opacity: 0.85;
}

.blog__featured-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.5rem;
    background-color: var(--gray-200);
}

.blog__category {
    display: inline-block;
    text-transform: uppercase;
    color: #FA77A0;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.blog__post-title {
    font-family: var(--font-elegant);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.3;
}

.blog__post-excerpt {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog__post {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog__post:hover {
    opacity: 0.85;
}

.blog__post:last-child {
    border-bottom: none;
}

.blog__post-image {
    width: 120px;
    height: 120px;
    min-width: 120px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 0.25rem;
    background-color: var(--gray-200);
}

.blog__post-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

/* ===== Blog Listing Page ===== */
body.blog-page {
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

.blog-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background-color: transparent;
    padding: 1.5rem 0;
}

.blog-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
    gap: 2rem;
}

.blog-header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.blog-header__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-header__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.blog-header__link:hover {
    opacity: 0.8;
}

.blog-header__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.blog-header__toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.blog-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    max-width: 1200px;
}

.blog-hero__intro {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-hero__title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-hero__subtitle {
    font-family: var(--font-elegant);
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-listing {
    padding: 8rem 0;
    background-color: var(--white);
}

.blog-listing .container {
    max-width: 1400px;
}

.blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

.blog-listing__item {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-listing__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-listing__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-listing__image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--gray-200);
}

.blog-listing__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-listing__item:hover .blog-listing__image {
    transform: scale(1.05);
}

.blog-listing__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-listing__category {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: #FA77A0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-listing__title {
    font-family: var(--font-elegant);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.3;
    margin: 0;
}

.blog-listing__excerpt {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #4E4E4E;
    line-height: 1.6;
    margin: 0;
}

.blog-listing__date {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: auto;
}

.blog-listing__empty {
    text-align: center;
    padding: 4rem 2rem;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: var(--gray-600);
}

.blog-listing__loading {
    text-align: center;
    padding: 4rem 2rem;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: var(--gray-600);
    grid-column: 1 / -1;
}

/* ===== Blog Detail Page ===== */
body.blog-detail-page {
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

.blog-detail-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background-color: transparent;
    padding: 1.5rem 0;
}

.blog-detail-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
    gap: 2rem;
}

.blog-detail-header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.blog-detail-header__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-detail-header__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.blog-detail-header__link:hover {
    opacity: 0.8;
}

.blog-detail-header__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.blog-detail-header__toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.blog-detail-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.blog-detail-hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-detail-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.blog-detail-hero__content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: 4rem 2rem;
    max-width: 1200px;
    width: 100%;
}

.blog-detail-hero__category {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FA77A0;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-detail-hero__title {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-detail-hero__meta {
    display: flex;
    gap: 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-detail-hero__date,
.blog-detail-hero__author {
    color: var(--white);
}

.blog-detail-content {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.blog-detail-content__article {
    font-family: var(--font-sans);
}

.blog-detail-content__excerpt {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-detail-content__excerpt-text {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: #4E4E4E;
    line-height: 1.6;
    font-style: italic;
}

.blog-detail-content__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
}

.blog-detail-content__body h2 {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 400;
    color: #FA77A0;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content__body h3 {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-content__body p {
    margin-bottom: 1.5rem;
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-detail-sidebar__section {
    background-color: #FFFCF6;
    padding: 2rem;
    border-radius: 0.5rem;
}

.blog-detail-sidebar__title {
    font-family: var(--font-elegant);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.blog-detail-sidebar__posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-detail-sidebar__post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.blog-detail-sidebar__post:hover {
    transform: translateX(4px);
}

.blog-detail-sidebar__post-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    object-fit: cover;
    border-radius: 0.25rem;
    background-color: var(--gray-200);
}

.blog-detail-sidebar__post-content {
    flex: 1;
}

.blog-detail-sidebar__post-title {
    font-family: var(--font-elegant);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.3;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .blog-listing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-listing {
        padding: 6rem 0;
    }
    
    .blog-detail-content__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-hero__title {
        font-size: 3.5rem;
    }
    
    .blog-detail-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-header__menu,
    .blog-detail-header__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FA77A0;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .blog-header__menu.active,
    .blog-detail-header__menu.active {
        left: 0;
    }
    
    .blog-header__list,
    .blog-detail-header__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .blog-header__toggle,
    .blog-detail-header__toggle {
        display: flex;
    }
    
    .blog-listing__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-listing {
        padding: 4rem 0;
    }
    
    .blog-listing__content {
        padding: 1.5rem;
    }
    
    .blog-hero__title {
        font-size: 2.5rem;
    }
    
    .blog-hero__subtitle {
        font-size: 1.75rem;
    }
    
    .blog-detail-hero__title {
        font-size: 2.25rem;
    }
    
    .blog-detail-content__excerpt-text {
        font-size: 1.25rem;
    }
}

.blog__post-title--small {
    font-family: var(--font-elegant);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.3;
    margin: 0;
}

.blog__post-excerpt--small {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Lead Magnet Section ===== */
.lead-magnet {
    padding: var(--section-padding);
    background-color: #FA77A0;
    color: var(--white);
}

.lead-magnet__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    align-items: center;
}

.lead-magnet__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-magnet__image img {
    width: 20rem;
    height: 24rem;
    object-fit: cover;
    background-color: var(--gray-200);
    border-radius: 0.5rem;
    transform: rotate(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.lead-magnet__content {
    text-align: left;
}

.lead-magnet__title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-magnet__description {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
}

.lead-magnet__cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--lead-magnet {
    background-color: rgba(255, 255, 255, 0.95);
    color: #FA77A0;
    border: 1px solid var(--white);
    border-radius: 100px;
    padding: 1rem 3.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
}

.lead-magnet .btn--lead-magnet {
    padding: 0.75rem 2.5rem;
}

.lead-magnet .btn--lead-magnet .btn__arrow {
    width: 1.25rem;
    height: 1.25rem;
}

.btn--lead-magnet .btn__arrow {
    object-fit: contain;
    flex-shrink: 0;
}

.btn--lead-magnet:hover {
    background-color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== Navigation Header Section ===== */
.nav-header {
    padding: 4rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.nav-header__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Social Media Icons (Left) */
.nav-header__social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.nav-header__social-link {
    color: var(--gray-900);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-header__social-link:hover {
    color: #FA77A0;
    transform: translateY(-2px);
}

.nav-header__social-link svg {
    width: 24px;
    height: 24px;
}

/* Logo (Center) */
.nav-header__logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-header__logo-image {
    height: auto;
    max-width: 400px;
    width: 100%;
    display: block;
}

/* Navigation Links (Right) */
.nav-header__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.nav-header__link {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-header__link:hover {
    color: #FA77A0;
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .nav-header {
        padding: 3rem 0;
    }
    .nav-header__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem;
        text-align: center;
    }
    .nav-header__social {
        flex-direction: row;
        justify-content: center;
        order: 3;
    }
    .nav-header__logo {
        order: 1;
    }
    .nav-header__nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        order: 2;
    }
    .nav-header__link {
        font-size: 1.25rem;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 0 0 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    width: 100%;
    overflow: hidden;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__title {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    color: var(--pink-600);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer__subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.footer__contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.footer__contact p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer__contact p:hover {
    color: var(--pink-600);
}

/* Instagram Feed Section - Full Width */
.footer__instagram {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

.footer__instagram-feed {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0;
}

.footer__instagram-post {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--gray-200);
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer__instagram-post:hover {
    opacity: 0.8;
}

.footer__instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer__instagram-post-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

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

.footer__social-item {
    width: 100%;
    height: 4rem;
    background-color: var(--gray-200);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer__social-item:hover {
    background-color: var(--pink-100);
}

.footer__logo {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__logo-image {
    max-width: 300px;
    height: auto;
    display: block;
}

.footer__copyright {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 5rem;
    }
    
    .hero__subtitle {
        font-size: 5.5rem;
    }
    
    .hero__menu {
        gap: 1.5rem;
    }
    
    .hero__list {
        gap: 1.5rem;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .about__text {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }
    
    .about__image-left {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
    }
    
    .about__image-center {
        grid-column: 1;
        grid-row: 3;
    }
    
    .about__tagline {
        grid-column: 1;
        grid-row: 4;
        text-align: left;
    }
    
    .about__gradient {
        display: none;
    }
    
    .services__wrapper {
        grid-template-columns: 1fr;
    }
    
    .services__pink-section {
        min-height: 200px;
    }
    
    .services__white-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .services__intro-image {
        margin-left: 0;
        margin-top: 2rem;
        order: -1;
    }
    
    .services__intro-image img {
        width: 100%;
        height: auto;
        max-height: 30rem;
    }
    
    .services__steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .book__grid,
    .lead-magnet__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .resources__grid {
        grid-template-columns: 1fr;
    }
    
    .blog__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero__nav {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    
    .hero__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        justify-content: center;
        justify-self: stretch;
        gap: 2rem;
    }
    
    .hero__menu.active {
        left: 0;
    }
    
    .hero__list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .hero__cta--desktop {
        display: none;
    }
    
    .hero__cta--mobile {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .hero__toggle {
        display: flex;
        grid-column: 2;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__subtitle {
        font-size: 4.25rem;
    }
    
    .hero__image {
        max-width: 20rem;
    }
    
    .hero__header {
        padding-top: 1.5rem;
    }
    
    .hero__logo {
        font-size: 1.5rem;
    }
    
    .about__title,
    .services__intro-title {
        font-size: 2.5rem;
    }
    
    .services__help-title,
    .book__title,
    .resources__title,
    .membership__title,
    .blog__title,
    .lead-magnet__title {
        font-size: 2rem;
    }
    
    .services__wrapper {
        grid-template-columns: 1fr;
    }
    
    .services__white-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    .services__intro-image {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .services__intro-image img {
        width: 100%;
        height: auto;
        max-height: 25rem;
    }
    
    .membership__title {
        font-size: 2.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__social {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--pink-600);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-700);
}

/* ===== You Don't Want Section ===== */
.you-dont-want {
    padding: 8rem 0;
    background-color: var(--white);
    width: 100%;
    min-height: 800px;
}

.you-dont-want__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
}

.you-dont-want__image-left {
    width: 100%;
    margin-left: -3rem;
    padding-left: 0;
    max-width: 1100px;
    display: block;
    position: relative;
}

.you-dont-want__image-right {
    width: 100%;
}

.you-dont-want__image-right .you-dont-want__img {
    height: 500px;
    width: auto;
    object-fit: contain;
}

.you-dont-want__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
}

.you-dont-want__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.you-dont-want__intro {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 -0.5rem 0;
}

.you-dont-want__title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 400;
    color: #FA77A0;
    line-height: 1.2;
    margin: 0;
}

.you-dont-want__paragraph {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.6;
    margin: 0;
}

.you-dont-want__description {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for You Don't Want section */
@media (max-width: 968px) {
    .you-dont-want__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .you-dont-want__title {
        font-size: 2rem;
    }
}

/* ===== How I Got Here Timeline ===== */
.how-i-got-here {
    width: 100%;
    padding: 8rem 0;
    background-color: #FEF9F5;
    box-sizing: border-box;
}

.how-i-got-here__title {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    color: #FA77A0;
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    line-height: 1.2;
}

.how-i-got-here__wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    box-sizing: border-box;
}

.how-i-got-here__viewport {
    flex: 0 0 1112px;
    max-width: 100%;
    width: 1112px;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.how-i-got-here__line {
    position: absolute;
    left: 0;
    right: 4rem;
    top: 6.5rem;
    height: 1px;
    background-color: #FA77A0;
    z-index: 0;
}

.how-i-got-here__track {
    display: flex;
    gap: 1.5rem;
    padding: 0 0 2rem 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.how-i-got-here__event {
    flex: 0 0 260px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-i-got-here__img {
    width: 180px;
    height: 236px;
    background-color: #E5E7EB;
    border-radius: 0.25rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.how-i-got-here__primary {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: #374151;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.how-i-got-here__secondary {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.4;
    margin: 0;
}

.how-i-got-here__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.how-i-got-here__arrow:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.how-i-got-here__arrow img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.how-i-got-here__arrow--left,
.how-i-got-here__arrow--left:hover,
.how-i-got-here__arrow--left:focus,
.how-i-got-here__arrow--left:active {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.how-i-got-here__arrow--left img {
    transform: scaleX(-1);
    transition: none !important;
}

@media (max-width: 968px) {
    .how-i-got-here__title {
        font-size: 2.5rem;
    }
    .how-i-got-here__viewport {
        flex: 0 0 872px;
        width: 872px;
    }
    .how-i-got-here__event {
        flex: 0 0 200px;
    }
    .how-i-got-here__img {
        width: 145px;
        height: 190px;
    }
}

/* ===== My Favorites Section ===== */
.my-favorites {
    width: 100%;
    padding: 8rem 0;
    background-color: var(--white);
    box-sizing: border-box;
}

.my-favorites__header {
    text-align: center;
    margin-bottom: 6rem;
}

.my-favorites__title {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    color: #FA77A0;
    margin: 0;
    line-height: 1.2;
}

.my-favorites__title-italic {
    font-style: italic;
}

.my-favorites__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 6rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.my-favorites__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.my-favorites__item:nth-child(2) {
    margin-top: -4rem;
}

.my-favorites__item:nth-child(4) {
    margin-top: -4rem;
}

.my-favorites__number {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 700;
    color: #FA77A0;
    line-height: 1;
    z-index: 3;
    pointer-events: none;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.my-favorites__image-wrapper {
    width: 100%;
    max-width: 400px;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.my-favorites__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
    background-color: var(--gray-200);
}

.my-favorites__item-title {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-weight: 600;
    color: #FA77A0;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.my-favorites__item-description {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .my-favorites {
        padding: 6rem 0;
    }
    
    .my-favorites__title {
        font-size: 2.5rem;
    }
    
    .my-favorites__grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
    .my-favorites__item:nth-child(2),
    .my-favorites__item:nth-child(4) {
        margin-top: 0;
    }
    
    .my-favorites__image-wrapper {
        max-width: 100%;
    }
    
    .my-favorites__number {
        font-size: 4rem;
    }
    
    .my-favorites__item-title {
        font-size: 1.25rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://ik.imagekit.io/primo/glendaalvarez/testy.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    box-sizing: border-box;
}

.cta-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.cta-section__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.cta-section__subtitle {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 2.5rem 0;
    line-height: 1.3;
}

.cta-section__button {
    font-family: var(--font-sans);
    font-size: 1rem;
}

.cta-section__button .btn__arrow--white {
    filter: brightness(0) invert(1);
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .cta-section {
        min-height: 400px;
        padding: 4rem 2rem;
        background-attachment: scroll;
    }
    
    .cta-section__title {
        font-size: 2rem;
    }
    
    .cta-section__subtitle {
        font-size: 1.75rem;
    }
}

/* ===== About Page Header ===== */
.about-header {
    background-color: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #FA77A0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.about-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
}

.about-header__brand {
    flex-shrink: 0;
}

.about-header__logo {
    display: inline-block;
    text-decoration: none;
}

.about-header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
}

.about-header__menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-header__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.about-header__link {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: #FA77A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-header__link:hover {
    color: #FA77A0;
}


.about-header__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.about-header__toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gray-900);
    transition: all 0.3s ease;
}

/* ===== About Hero Section ===== */
.about-hero {
    padding: 8rem 0 12rem 0;
    background-color: var(--white);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-hero__intro {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.about-hero__title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 400;
    color: #FA77A0;
    line-height: 1.1;
    margin: 0;
}

.about-hero__subtitle {
    font-family: var(--font-elegant);
    font-size: 2.3rem;
    font-weight: 400;
    font-style: italic;
    color: #414141;
    line-height: 1.4;
    margin: 0;
}

.about-hero__quote {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-900);
    margin: 0;
}

.about-hero__text {
    margin-top: 1rem;
}

.about-hero__text p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
}

.about-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero__img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Responsive About Header */
@media (max-width: 968px) {
    .about-header__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 99;
    }
    
    .about-header__menu.active {
        left: 0;
    }
    
    .about-header__list {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .about-header__toggle {
        display: flex;
    }
    
    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero__title {
        font-size: 2.5rem;
    }
}

/* ===== About Page ===== */
.about-page {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-page__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-page__images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}

.about-page__image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
}

.about-page__image-left {
    max-width: 100%;
}

.about-page__image-center {
    max-width: 100%;
}

.about-page__image-right {
    max-width: 100%;
}

.about-page__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-page__header {
    margin-bottom: 2rem;
}

.about-page__greeting {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.about-page__title {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    color: var(--pink-600);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-page__tagline {
    font-family: var(--font-script);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.about-page__bio {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-page__section {
    margin-bottom: 2rem;
}

.about-page__section-title {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 400;
    color: var(--pink-600);
    margin-bottom: 1rem;
}

.about-page__text {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-page__cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn--secondary {
    background-color: transparent;
    color: var(--pink-600);
    border: 2px solid var(--pink-600);
}

.btn--secondary:hover {
    background-color: var(--pink-600);
    color: var(--white);
}

/* Responsive styles for about page */
@media (max-width: 968px) {
    .about-page__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-page__images {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
    }
    
    .about-page__image {
        min-width: 200px;
        max-width: 300px;
    }
    
    .about-page__title {
        font-size: 3rem;
    }
    
    .about-page__cta {
        flex-direction: column;
    }
    
    .about-page__cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== Courses Content Section ===== */
.courses-content {
    padding: 8rem 0;
    background-color: var(--white);
}

.courses-content .container {
    max-width: 1400px;
}

.courses-content__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.courses-content__title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 400;
    color: #FA77A0;
    margin-bottom: 3rem;
}

.courses-content__description {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.courses-content__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

/* Course Card Styles */
.course-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.course-card__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #f5f5f5;
}

.course-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.course-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-card__title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2d2d;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.course-card__description {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.course-card__button {
    align-self: flex-start;
    padding: 0.875rem 1.5rem;
    background-color: #FA77A0;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.course-card__button:hover {
    background-color: #e85d8f;
}

/* Products grid: 3 columns */
#products-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Product thumbnails: 9:16 aspect ratio, max-height 600px (products page only) */
#products-grid .course-card__image-wrapper {
    height: auto;
    max-width: 400px;
    max-height: 600px;
    aspect-ratio: 9 / 16;
}

#products-grid .course-card__image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#products-grid .course-card__content {
    max-width: 400px;
}

#products-grid .course-card__title {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

#products-grid .course-card__description {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media (max-width: 1024px) {
    .courses-content__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Join Our Community Section */
.join-community {
    padding: 8rem 0;
    background-color: #FFFCF6;
}

.join-community__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.join-community__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-community__image {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.join-community__laptop {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.join-community__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.join-community__intro {
    font-family: var(--font-elegant);
    font-size: 1.875rem;
    font-weight: 400;
    font-style: italic;
    color: #FA77A0;
    margin: 0 0 1rem 0;
}

.join-community__title {
    font-family: var(--font-elegant);
    font-size: 4.5rem;
    font-weight: 400;
    color: #FA77A0;
    line-height: 1.2;
    margin: 0 0 2rem 0;
}

.join-community__text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    max-width: 600px;
}

.join-community__button {
    padding: 1rem 2rem;
    background-color: #FA77A0;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.join-community__button:hover {
    background-color: #e85d8f;
}

@media (max-width: 1024px) {
    .join-community__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .join-community__image {
        justify-content: center;
    }
    
    .join-community__laptop {
        max-width: 100%;
    }
    
    .join-community__content {
        align-items: center;
        text-align: center;
    }
    
    .join-community__title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .join-community {
        padding: 6rem 0;
    }
    
    .join-community__title {
        font-size: 2.25rem;
    }
    
    .join-community__text {
        font-size: 1rem;
    }
    
    .join-community__intro {
        font-size: 1.5rem;
    }
}

/* ===== Latest Videos Section ===== */
.latest-videos {
    padding: 8rem 0;
    background-color: var(--white);
}

.latest-videos__title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 400;
    color: #FA77A0;
    text-align: center;
    margin-bottom: 4rem;
}

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

.latest-videos__item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.latest-videos__thumbnail {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #E5E7EB;
    overflow: hidden;
    border-radius: 0.5rem;
}

.latest-videos__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.latest-videos__item-title {
    font-family: var(--font-elegant);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.latest-videos__item-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .latest-videos__grid {
        gap: 3rem;
    }
    
    .latest-videos__title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .latest-videos {
        padding: 6rem 0;
    }
    
    .latest-videos__title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .latest-videos__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .latest-videos__item-title {
        font-size: 1.5rem;
    }
    
    .latest-videos__item-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .courses-content__title {
        font-size: 2rem;
    }
    
    .courses-content__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-card__image-wrapper {
        max-height: 340px;
    }
    
    .course-card__title {
        font-size: 1.125rem;
    }
    
    .course-card__description {
        font-size: 0.9375rem;
    }
}

/* ===== Courses Page Header ===== */
.courses-header {
    background-color: transparent;
    padding: 1.5rem 0;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.courses-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
}

.courses-header__brand {
    flex-shrink: 0;
}

.courses-header__logo {
    display: inline-block;
    text-decoration: none;
}

.courses-header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
}

.courses-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.courses-header__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.courses-header__item {
    margin: 0;
}

.courses-header__link {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.courses-header__link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.courses-header__toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.courses-header__toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ===== Courses Hero Section ===== */
.courses-hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

.courses-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

.courses-hero__image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.courses-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.courses-hero__image-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 2;
}

.courses-hero__name {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.courses-hero__content {
    background-color: #FA77A0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    text-align: center;
}

.courses-hero__intro {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.courses-hero__title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    max-width: 600px;
}

.courses-hero__subtitle {
    font-family: var(--font-elegant);
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
    max-width: 500px;
}

/* Grow Together Section */
.grow-together {
    background-color: #FFFCF6;
    padding: 8rem 0;
}

.grow-together__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grow-together__title {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    color: #FA77A0;
    text-align: center;
    margin: 0 0 4rem 0;
}

.grow-together__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
}

.grow-together__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grow-together__arrow {
    font-size: 3rem;
    color: #FA77A0;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.grow-together__text {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 400;
    color: #4E4E4E;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .courses-hero__grid {
        grid-template-columns: 1fr;
    }
    
    .courses-hero__image {
        height: 50vh;
    }
    
    .courses-hero__content {
        min-height: 50vh;
    }
    
    .grow-together__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grow-together__title {
        font-size: 3rem;
    }
    
    .courses-header__menu {
        display: none;
    }
    
    .courses-header__toggle {
        display: flex;
    }
    
    .courses-header__menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FA77A0;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .courses-hero__title {
        font-size: 2.5rem;
    }
    
    .courses-hero__subtitle {
        font-size: 1.25rem;
    }
    
    .courses-hero__content {
        padding: 2rem;
    }
    
    .grow-together {
        padding: 4rem 0;
    }
    
    .grow-together__title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .grow-together__text {
        font-size: 1.1rem;
    }
    
    .grow-together__arrow {
        font-size: 2.5rem;
    }
}

/* Courses page specific styles */
body.courses-page {
    background-color: #FA77A0;
    margin: 0;
    padding: 0;
}

body.courses-page .courses-header {
    background-color: transparent;
}

body.courses-page .courses-hero {
    margin-top: 0;
    padding-top: 0;
    min-height: 80vh;
}

body.courses-page .courses-hero__grid {
    min-height: 80vh;
}

body.courses-page .courses-hero__image {
    height: 80vh;
}

body.courses-page .btn--bookings {
    background-color: var(--white);
    color: var(--pink-primary);
}

body.courses-page .btn--bookings:hover {
    background-color: var(--pink-primary);
    color: var(--white);
}

/* Productos page – same layout as courses */
body.productos-page {
    background-color: #FA77A0;
    margin: 0;
    padding: 0;
}

body.productos-page .courses-header {
    background-color: transparent;
}

body.productos-page .courses-hero {
    margin-top: 0;
    padding-top: 0;
    min-height: 80vh;
}

body.productos-page .courses-hero__grid {
    min-height: 80vh;
}

body.productos-page .courses-hero__image {
    height: 80vh;
}

body.productos-page .btn--bookings {
    background-color: var(--white);
    color: var(--pink-primary);
}

body.productos-page .btn--bookings:hover {
    background-color: var(--pink-primary);
    color: var(--white);
}

/* ===== Resources Page Styles ===== */
body.resources-page {
    background-color: #000;
    margin: 0;
    padding: 0;
}

/* Resources Header */
.resources-header {
    background-color: transparent;
    padding: 1.5rem 0;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.resources-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
}

.resources-header__brand {
    flex-shrink: 0;
}

.resources-header__logo {
    display: inline-block;
    text-decoration: none;
}

.resources-header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.resources-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.resources-header__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.resources-header__item {
    margin: 0;
}

.resources-header__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.resources-header__link:hover {
    opacity: 0.8;
}

.resources-header__toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.resources-header__toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Resources Hero Section */
.resources-hero {
    position: relative;
    min-height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.resources-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.resources-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resources-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 8rem 2rem 12rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-hero__intro {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
}

.resources-hero__title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 2rem 0;
}

.resources-hero__subtitle {
    font-family: var(--font-elegant);
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

.resources-hero__banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background-color: #FFB8CE;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.resources-hero__scroll-text {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 0;
    width: max-content;
    will-change: transform;
}

.resources-hero__scroll-text-inner {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.15em;
}

.resources-hero__heart {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1rem;
    flex-shrink: 0;
}

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

@media (max-width: 1024px) {
    .resources-hero__title {
        font-size: 3.5rem;
    }
    
    .resources-hero__subtitle {
        font-size: 1.75rem;
    }
    
    .resources-header__menu {
        display: none;
    }
    
    .resources-header__toggle {
        display: flex;
    }
    
    .resources-header__menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FA77A0;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .resources-hero__title {
        font-size: 2.5rem;
    }
    
    .resources-hero__subtitle {
        font-size: 1.5rem;
    }
    
    .resources-hero__content {
        padding: 6rem 1.5rem 10rem 1.5rem;
    }
    
    .resources-header__nav {
        padding: 0 1.5rem;
    }
}

/* Resources page specific - wider and bigger grid */
body.resources-page .resources {
    padding: 8rem 4rem;
}

body.resources-page .resources__grid {
    max-width: 100%;
    gap: 4rem;
    padding: 0;
}

body.resources-page .resource__title {
    font-size: 2.75rem;
}

body.resources-page .resource__description {
    font-size: 1.125rem;
}

body.resources-page .resource__image-wrapper {
    margin-bottom: 2rem;
}

body.resources-page .resource__button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Booking page specific styles */
body.booking-page .booking-header {
    background-color: transparent;
}

body.booking-page .booking-hero {
    margin-top: 0;
    padding-top: 0;
}

/* ===== Booking Page Styles ===== */
.booking-header {
    background-color: transparent;
    padding: 1.5rem 0;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.booking-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
}

.booking-header__brand {
    flex-shrink: 0;
}

.booking-header__logo {
    display: inline-block;
    text-decoration: none;
}

.booking-header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.booking-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.booking-header__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-header__item {
    margin: 0;
}

.booking-header__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.booking-header__link:hover {
    opacity: 0.8;
}

.booking-header__toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.booking-header__toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Booking Hero Section */
.booking-hero {
    position: relative;
    min-height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.booking-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.booking-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 2rem 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-hero__intro {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
}

.booking-hero__title {
    font-family: var(--font-elegant);
    font-size: 5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

.booking-hero__subtitle {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

/* What I Am Booked For Section */
.booked-for {
    padding: 4rem 0;
    background-color: #FFB8CE;
}

.booked-for__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booked-for__title {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 3rem 0;
    letter-spacing: 0.1em;
}

.booked-for__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.booked-for__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.booked-for__arrow {
    width: 3.375rem;
    height: 3.375rem;
    flex-shrink: 0;
    display: block;
}

.booked-for__label {
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    text-align: center;
}

/* Booking Content Section */
.booking-content {
    padding: 6rem 0;
    background-color: var(--white);
}

.booking-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-content__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-content__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 400;
    color: #FA77A0;
    margin: 0;
}

.booking-content__text {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.booking-content__subtitle {
    font-family: var(--font-elegant);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-900);
    margin: 0;
}

.booking-content__list {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.booking-content__list li {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
}

.booking-content__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 20px;
    height: 20px;
    background-image: url('https://ik.imagekit.io/primo/glendaalvarez/pinkarrow.svg?updatedAt=1769380568281');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.booking-content__form-wrapper {
    background-color: #FFFCF6;
    padding: 3rem;
    border-radius: 0.5rem;
}

.booking-content__form-title {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 400;
    color: #FA77A0;
    margin: 0 0 2rem 0;
}

/* Booking Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-form__label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-form__input,
.booking-form__textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--gray-900);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

select.booking-form__input {
    min-height: 2.75rem;
    line-height: 1.5;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    display: block;
}

.booking-form__input:focus,
.booking-form__textarea:focus {
    outline: none;
    border-color: #FA77A0;
}

.booking-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form__submit {
    margin-top: 1rem;
    width: auto;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .booking-content__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-hero__title {
        font-size: 3.5rem;
    }
    
    .booking-hero__subtitle {
        font-size: 1.75rem;
    }
}

@media (max-width: 1024px) {
    .booking-hero__title {
        font-size: 3.5rem;
    }
    
    .booking-hero__subtitle {
        font-size: 1.5rem;
    }
    
    .booking-header__menu {
        display: none;
    }
    
    .booking-header__toggle {
        display: flex;
    }
    
    .booking-header__menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FA77A0;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .booking-hero__title {
        font-size: 2.5rem;
    }
    
    .booking-hero__subtitle {
        font-size: 1.25rem;
    }
    
    .booking-hero__content {
        padding: 6rem 1.5rem 10rem 1.5rem;
    }
    
    .booking-header__nav {
        padding: 0 1.5rem;
    }
    
    .booking-content {
        padding: 4rem 0;
    }
    
    .booking-content__form-wrapper {
        padding: 2rem;
    }
    
    .booking-content__title {
        font-size: 2.5rem;
    }
    
    .booking-content__form-title {
        font-size: 2rem;
    }
    
    .booked-for {
        padding: 3rem 0;
    }
    
    .booked-for__title {
        font-size: 0.8125rem;
        margin-bottom: 2rem;
    }
    
    .booked-for__grid {
        gap: 2rem;
    }
    
    .booked-for__label {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .booked-for {
        padding: 2.5rem 0;
    }
    
    .booked-for__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .booked-for__label {
        font-size: 2.5rem;
    }
}

/* ===== Product Landing Page Styles ===== */
body.product-landing-page {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background-color: var(--white);
}

/* Scarcity Bar */
.scarcity-bar {
    background-color: #FA77A0;
    color: var(--white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scarcity-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.scarcity-bar__text {
    font-size: 0.9rem;
    font-weight: 500;
}

.scarcity-bar__text strong {
    font-weight: 700;
}

.scarcity-bar__countdown {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
}

.scarcity-bar__countdown span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Product Landing Header */
.product-landing-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 999;
}

.product-landing-header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.product-landing-header__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.product-landing-header__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.product-landing-header__link:hover {
    color: #FA77A0;
}

.product-landing-header__toggle {
    display: none;
}

/* Hero Section */
.product-landing-hero {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--pink-50) 100%);
}

.product-landing-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.product-landing-hero__image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-landing-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-landing-hero__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-landing-hero__headline {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--gray-900);
}

.product-landing-hero__subheadline {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-700);
}

.product-landing-hero__trust {
    padding: 1rem;
    background-color: rgba(250, 119, 160, 0.1);
    border-left: 4px solid #FA77A0;
    border-radius: 4px;
}

.product-landing-hero__trust-text {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.product-landing-hero__trust-text strong {
    color: #FA77A0;
    font-weight: 600;
}

.product-landing-hero__cta {
    align-self: flex-start;
    margin-top: 1rem;
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Problem Section */
.product-problem {
    padding: 6rem 0;
    background-color: var(--white);
}

.product-problem__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-problem__content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.product-problem__content p {
    margin-bottom: 1.5rem;
}

/* Solution Section */
.product-solution {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--pink-50) 0%, var(--white) 100%);
}

.product-solution__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-solution__description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.product-solution__visual {
    max-width: 900px;
    margin: 0 auto;
}

.product-solution__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.product-features {
    padding: 6rem 0;
    background-color: var(--white);
}

.product-features__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-feature {
    padding: 2.5rem;
    background-color: var(--pink-50);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(250, 119, 160, 0.15);
}

.product-feature__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.product-feature__title {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.product-feature__benefit {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Bonus Section */
.product-bonus {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FA77A0 0%, rgba(250, 119, 160, 0.95) 100%);
    color: var(--white);
}

.product-bonus__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.product-bonus__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-bonus__value {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.product-bonus__description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-bonus__modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-bonus__module {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
}

/* Testimonials Section */
.product-testimonials {
    padding: 6rem 0;
    background-color: var(--white);
}

.product-testimonials__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-testimonial {
    padding: 2.5rem;
    background-color: var(--pink-50);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 119, 160, 0.15);
}

.product-testimonial__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.product-testimonial__quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.product-testimonial__author {
    font-weight: 600;
    color: var(--gray-900);
}

.product-testimonials__community {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-community__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* How It Works Section */
.product-how-it-works {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--pink-50) 100%);
}

.product-how-it-works__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    font-weight: 500;
}

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

.product-how-it-works__step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FA77A0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.product-how-it-works__step h3 {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.product-how-it-works__step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Value Stack Section */
.product-value {
    padding: 6rem 0;
    background-color: var(--white);
}

.product-value__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-value__stack {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--pink-50);
    padding: 3rem;
    border-radius: 8px;
}

.product-value__item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
}

.product-value__item:last-of-type {
    border-bottom: none;
}

.product-value__item-name {
    color: var(--gray-700);
}

.product-value__item-price {
    font-weight: 600;
    color: var(--gray-900);
}

.product-value__total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 2px solid #FA77A0;
    font-size: 1.5rem;
}

.product-value__total-label {
    font-weight: 600;
    color: var(--gray-900);
}

.product-value__total-price {
    font-weight: 700;
    color: var(--gray-900);
}

.product-value__investment {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 2px solid #FA77A0;
    font-size: 2rem;
}

.product-value__investment-label {
    font-weight: 600;
    color: var(--gray-900);
}

.product-value__investment-price {
    font-weight: 700;
    color: #FA77A0;
}

.product-value__savings {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    background-color: #FA77A0;
    color: var(--white);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Urgency Section */
.product-urgency {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FA77A0 0%, rgba(250, 119, 160, 0.95) 100%);
    color: var(--white);
}

.product-urgency__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.product-urgency__list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    font-size: 1.25rem;
    line-height: 2;
}

.product-urgency__list li {
    padding-left: 2rem;
    position: relative;
}

.product-urgency__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.product-urgency__list strong {
    font-weight: 700;
}

/* FAQ Section */
.product-faq {
    padding: 6rem 0;
    background-color: var(--white);
}

.product-faq__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    font-weight: 500;
}

.product-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.product-faq__item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-faq__item:hover {
    box-shadow: 0 4px 12px rgba(250, 119, 160, 0.1);
}

.product-faq__question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--pink-50);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.product-faq__question:hover {
    background-color: var(--pink-100);
}

.product-faq__toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FA77A0;
}

.product-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.product-faq__answer.open {
    max-height: 500px;
    padding: 1.5rem;
}

.product-faq__answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* Final CTA Section */
.product-final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FA77A0 0%, rgba(250, 119, 160, 0.95) 100%);
    color: var(--white);
    text-align: center;
}

.product-final-cta__headline {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-final-cta__subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.product-final-cta__button {
    margin-bottom: 2rem;
}

.product-final-cta__guarantee {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.product-final-cta__scarcity {
    font-size: 1.125rem;
    font-weight: 600;
}

.product-final-cta__scarcity strong {
    color: var(--white);
    font-size: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scarcity-bar__content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .product-landing-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-landing-hero__headline {
        font-size: 2rem;
    }
    
    .product-landing-hero__subheadline {
        font-size: 1.125rem;
    }
    
    .product-problem__title,
    .product-solution__title,
    .product-features__title,
    .product-testimonials__title,
    .product-how-it-works__title,
    .product-value__title,
    .product-urgency__title,
    .product-faq__title {
        font-size: 2rem;
    }
    
    .product-how-it-works__steps {
        grid-template-columns: 1fr;
    }
    
    .product-features__grid {
        grid-template-columns: 1fr;
    }
    
    .product-testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .product-final-cta__headline {
        font-size: 2rem;
    }
    
    .product-landing-header__menu {
        display: none;
    }
    
    .product-landing-header__toggle {
        display: block;
    }
}

/* ===== New Landing Page Wireframe Styles ===== */

/* FRAME 1: HERO */
.lp-hero {
    padding: 2rem 0 4rem;
    background: linear-gradient(to bottom, var(--white) 0%, var(--pink-50) 100%);
}

.lp-hero__nav {
    margin-bottom: 3rem;
}

.lp-hero__nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.lp-hero__logo-img {
    height: 2.5rem;
    width: auto;
}

.lp-hero__badge {
    background-color: #FA77A0;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-hero__headline {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--gray-900);
}

.lp-hero__subheadline {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-700);
}

.lp-hero__cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.lp-hero__urgency {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.lp-hero__urgency strong {
    color: #FA77A0;
    font-weight: 600;
}

.lp-hero__image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lp-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

/* FRAME 2: TRUST STRIP */
.lp-trust-strip {
    padding: 1rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.lp-trust-strip__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.lp-trust-strip__separator {
    color: var(--gray-400);
}

/* FRAME 3: PROBLEM */
.lp-problem {
    padding: 6rem 0;
    background-color: var(--white);
}

.lp-problem__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
    font-weight: 500;
}

.lp-problem__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-problem__text-wrapper {
    width: 100%;
}

.lp-problem__image-wrapper {
    width: 100%;
}

.lp-problem__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lp-problem__bullets {
    max-width: 100%;
    margin: 0 0 2rem 0;
    list-style: none;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.lp-problem__bullets li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    list-style: none;
}

.lp-problem__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #FA77A0;
    font-size: 1.5rem;
    line-height: 1.9;
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
}

.lp-problem__bridge {
    max-width: 100%;
    margin: 0;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* FRAME 4: SOLUTION */
.lp-solution {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--pink-50) 0%, var(--white) 100%);
}

.lp-solution__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
    font-weight: 500;
}

.lp-solution__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.lp-solution__image-wrapper {
    width: 100%;
}

.lp-solution__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lp-solution__description-wrapper {
    width: 100%;
}

.lp-solution__description {
    max-width: 100%;
    margin: 0;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.lp-solution__description p,
.lp-solution__description-text {
    max-width: 100%;
    margin: 0 0 1rem 0;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.lp-solution__description p:last-child,
.lp-solution__description-text:last-child {
    margin-bottom: 0;
}

.lp-solution__description h2,
.lp-solution__description h3,
.lp-solution__description-heading {
    max-width: 100%;
    margin: 0 0 1rem 0;
    text-align: left;
    font-family: var(--font-elegant);
    font-weight: 600;
    color: var(--gray-900);
}

.lp-solution__description h2,
.lp-solution__description-heading[class*="h2"] {
    font-size: 2rem;
}

.lp-solution__description h3,
.lp-solution__description-heading[class*="h3"] {
    font-size: 1.5rem;
}

.lp-solution__description-list {
    max-width: 100%;
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
    text-align: left;
}

.lp-solution__description-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.lp-solution__description-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #FA77A0;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
}

.lp-solution__tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.lp-solution__tile {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lp-solution__tile-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.lp-solution__tile-label {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
}

/* FRAME 5: WHAT'S INSIDE */
.lp-whats-inside {
    padding: 6rem 0;
    background-color: var(--white);
}

.lp-whats-inside__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    font-weight: 500;
}

.lp-whats-inside__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-whats-inside__feature {
    padding: 2rem;
    background-color: var(--pink-50);
    border-radius: 12px;
}

.lp-whats-inside__feature-title {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.lp-whats-inside__feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* FRAME 6: BONUS COURSE */
.lp-bonus {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FA77A0 0%, rgba(250, 119, 160, 0.95) 100%);
    color: var(--white);
}

.lp-bonus__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.lp-bonus__subheadline {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.lp-bonus__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-bonus__image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.lp-bonus__img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-bonus__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lp-bonus__description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

.lp-bonus__bullets {
    list-style: none;
    font-size: 1.125rem;
    line-height: 2;
}

.lp-bonus__bullets li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.lp-bonus__bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

/* FRAME 7: FOR YOU / NOT FOR YOU */
.lp-comparison {
    padding: 6rem 0;
    background-color: var(--white);
}

.lp-comparison__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-comparison__column {
    padding: 2.5rem;
    border-radius: 12px;
}

.lp-comparison__column--for {
    background-color: var(--pink-50);
}

.lp-comparison__column--not {
    background-color: var(--gray-200);
}

.lp-comparison__title {
    font-family: var(--font-elegant);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
    font-weight: 500;
}

.lp-comparison__bullets {
    list-style: none;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.lp-comparison__bullets li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.lp-comparison__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FA77A0;
    font-size: 1.5rem;
    line-height: 1;
}

.lp-comparison__column--not .lp-comparison__bullets li::before {
    color: var(--gray-600);
}

/* FRAME 8: SCARCITY */
.lp-scarcity {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FA77A0 0%, rgba(250, 119, 160, 0.95) 100%);
    color: var(--white);
    text-align: center;
}

.lp-scarcity__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.lp-scarcity__copy {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.lp-scarcity__inventory {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.lp-scarcity__countdown {
    display: flex;
    gap: 0.5rem;
    font-size: 1rem;
}

.lp-scarcity__countdown span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* FRAME 9: VALUE RECAP */
.lp-value {
    padding: 6rem 0;
    background-color: var(--white);
}

.lp-value__title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
    font-weight: 500;
}

.lp-value__checklist {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-value__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.lp-value__check {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* FRAME 10: FINAL CTA */
.lp-final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FA77A0 0%, rgba(250, 119, 160, 0.95) 100%);
    color: var(--white);
    text-align: center;
}

.lp-final-cta__headline {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lp-final-cta__subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lp-final-cta__button {
    margin-bottom: 1.5rem;
}

.lp-final-cta__reassurance {
    font-size: 1rem;
    opacity: 0.9;
}

/* FRAME 11: FOOTER */
.lp-footer {
    padding: 3rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
}

.lp-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.lp-footer__logo {
    height: 2rem;
    width: auto;
}

.lp-footer__copyright {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.lp-footer__links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.lp-footer__link {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lp-footer__link:hover {
    color: #FA77A0;
}

.lp-footer__separator {
    color: var(--gray-400);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lp-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-hero__headline {
        font-size: 2.5rem;
    }
    
    .lp-hero__subheadline {
        font-size: 1.125rem;
    }
    
    .lp-trust-strip__content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .lp-trust-strip__separator {
        display: none;
    }
    
    .lp-problem__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-problem__image-wrapper {
        order: 1;
    }
    
    .lp-problem__text-wrapper {
        order: 2;
    }
    
    .lp-problem__title,
    .lp-solution__title,
    .lp-whats-inside__title,
    .lp-bonus__title,
    .lp-scarcity__title,
    .lp-value__title,
    .lp-final-cta__headline {
        font-size: 2rem;
    }
    
    .lp-solution__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-solution__image-wrapper {
        order: 1;
    }
    
    .lp-solution__description-wrapper {
        order: 2;
    }
    
    .lp-solution__tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .lp-bonus__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-comparison__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-whats-inside__features {
        grid-template-columns: 1fr;
    }
}
