/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    --color-dark: #342245;
    --color-gold: #c59d41;
    --color-lilac: #8d6895;
    --color-white: #ffffff;
    --color-light: #f9f5ff;
    --color-text: #342245;
    --color-border: #e0d5f0;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

/* Prevent the whole page from scrolling horizontally on small devices */
body {
    overflow-x: hidden;
    touch-action: pan-y;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 85px;
}

.navbar-logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-menu li a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
    color: var(--color-gold);
}

.navbar-toggle {
    display: none;
}

.navbar-hamburger {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
}

.navbar-hamburger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--color-dark);
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-hamburger span:nth-child(1) {
    top: 0;
}

.navbar-hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-hamburger span:nth-child(3) {
    bottom: 0;
}

.navbar-toggle:checked + .navbar-hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.navbar-toggle:checked + .navbar-hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle:checked + .navbar-hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--color-light);
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu li a {
        display: block;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(52, 34, 69, 0.08);
    }

    .navbar-toggle:checked ~ .navbar-menu {
        max-height: 400px;
    }

    .navbar-hamburger {
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-menu li a {
        padding: 0.9rem 1.5rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-lilac) 100%);
    color: var(--color-white);
    padding: 5rem 2rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.cta-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-primary:hover {
    background-color: #b38a2f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-micro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */

.pain-points {
    background-color: var(--color-light);
    padding: 5rem 2rem;
}

.pain-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pain-points h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pain-item {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.pain-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.pain-icon {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pain-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.pain-closure {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-lilac) 100%);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.pain-closure p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.pain-closure p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution {
    background-color: var(--color-white);
    padding: 5rem 2rem;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.solution-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.module-card {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.module-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
}

.module-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results {
    background-color: var(--color-light);
    padding: 5rem 2rem;
}

.results-container {
    max-width: 1000px;
    margin: 0 auto;
}

.results h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.results-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #666;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.result-item {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-top: 3px solid var(--color-gold);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.result-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.result-icon {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.result-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background-color: var(--color-white);
    padding: 3rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 0.8s ease;
}

.about-text {
    animation: fadeInRight 0.8s ease;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text em {
    color: var(--color-lilac);
    font-style: italic;
}

/* ============================================
   PROGRAM DETAILS SECTION
   ============================================ */

.program-details {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-lilac) 100%);
    color: var(--color-white);
    padding: 6rem 2rem 4rem;
}

.program-details h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.program-details .details-grid {
    gap: 1.8rem;
}

.program-details .detail-box {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1.8rem;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.96);
    text-align: left;
    min-height: 145px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.program-details .detail-box h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
}

.program-details .detail-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.8rem;
}

.program-details .program-note {
    background-color: rgba(255, 255, 255, 0.12);
    border-left-color: var(--color-gold);
    margin-top: 2.5rem;
}

.program-details .program-note p,
.program-details .program-note strong {
    color: rgba(255, 255, 255, 0.95);
}

.offer-section {
    background-color: #faf3ff;
    color: var(--color-text);
    padding: 5rem 2rem;
    margin-top: 3rem;
}

.offer-section {
    background-color: #fdf8ff;
    color: var(--color-text);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(141, 104, 149, 0.18);
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(197, 157, 65, 0.16);
    box-shadow: 0 20px 50px rgba(52, 34, 69, 0.06);
}

.offer-section h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-dark);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
}

.offer-section .detail-box {
    background-color: #f8f3ff;
    border: 1px solid rgba(141, 104, 149, 0.16);
    padding: 1.8rem;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 12px 24px rgba(52, 34, 69, 0.05);
    animation: fadeInUp 0.6s ease;
}

.offer-section .detail-box h3 {
    color: var(--color-dark);
}

.offer-section .detail-box p {
    color: #5a4b75;
}

.detail-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
    font-weight: 700;
}

.detail-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.program-note {
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.program-note p {
    margin-bottom: 0.5rem;
}

.program-note p:last-child {
    margin-bottom: 0;
}

/* ============================================
   WORK PLAN SECTION
   ============================================ */

.work-plan {
    background-color: #fff7f0;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(197, 157, 65, 0.18);
}

.work-plan-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(197, 157, 65, 0.18);
    box-shadow: 0 18px 45px rgba(52, 34, 69, 0.06);
}

.work-plan h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-dark);
}

.work-plan-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 auto 2.5rem;
    max-width: 540px;
    color: #5a4b6f;
}

.work-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 1rem;
}

.work-plan-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid rgba(141, 104, 149, 0.18);
    border-radius: 22px;
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: 0 20px 45px rgba(52, 34, 69, 0.08);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    border-top-left-radius: 22px;
    border-top-right-radius: 4px;
}

.work-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(52, 34, 69, 0.12);
}

.work-plan-card h3 {
    color: var(--color-dark);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.work-plan-card p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: #5a4b6e;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background-color: var(--color-light);
    padding: 3.5rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2.2rem;
    color: var(--color-dark);
}

.carousel-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
}

/* Improve touch behavior: allow horizontal pan inside the carousel only */
.carousel-track {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 240px;
    background-color: var(--color-white);
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    overflow: hidden;
    scroll-snap-align: start;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.carousel-button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(52, 34, 69, 0.15);
}

.carousel-button:hover {
    transform: translateY(-2px);
    background-color: #faf7ff;
}

@media (max-width: 900px) {
    /* Keep carousel buttons visible on mobile for easier navigation */
    .carousel-wrapper {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .carousel-button {
        display: inline-flex;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 650px) {
    .testimonial-card {
        flex: 0 0 200px;
    }
}

/* Stack work plan cards on smaller screens to avoid overflow */
@media (max-width: 768px) {
    .work-plan-grid {
        grid-template-columns: 1fr !important;
    }
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background-color: #f8f3ff;
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 12px 30px rgba(52, 34, 69, 0.08);
}

.faq-item h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-dark);
}

.faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(52, 34, 69, 0.16);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle:hover,
.faq-toggle:focus {
    background-color: rgba(198, 170, 94, 0.1);
}

.faq-toggle::before {
    content: '+';
}

.faq-toggle[aria-expanded='true']::before {
    content: '−';
}

.faq-answer {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #5a4b6e;
    opacity: 0.95;
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 1200px;
    opacity: 1;
}

@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.join-section,
.cta-final {
    text-align: center;
}

.join-section {
    background-color: #f8f3ff;
    padding: 2rem 2rem 1.5rem;
}

.join-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 1.8rem 1.8rem;
    border: 1px solid rgba(52, 34, 69, 0.08);
    box-shadow: 0 18px 45px rgba(52, 34, 69, 0.08);
}

.join-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.join-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #5a4b6f;
}

.join-section .cta-primary-large {
    background-color: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 30px;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.join-section .cta-primary-large:hover {
    background-color: #b38a2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-final {
    background: linear-gradient(135deg, #4f3864 0%, #7a5d99 100%);
    color: var(--color-white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-final-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary-large {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    margin: 0;
}

.cta-primary-large:hover {
    background-color: #b38a2f;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-micro-final {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1.2rem 1rem;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
    opacity: 0.9;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .pain-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo img {
        height: 35px;
    }

    .navbar-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .module-card h3 {
        font-size: 1.1rem;
    }

    .detail-box h3 {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .cta-primary,
    .cta-primary-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .pain-item,
    .result-item {
        padding: 1rem;
    }

    .modules-grid {
        gap: 1rem;
    }

    .module-card {
        padding: 1.5rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
