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

/* Force all headings and serif class to use Scholar */
h1,
h2,
h3,
h4,
h5,
h6,
.font-serif,
[class*="font-serif"] {
    font-family: 'Scholar', serif !important;
}

/* Force all body text to use Poppins */
body,
p,
span:not(.font-serif):not([class*="font-serif"]),
li:not(.font-serif):not([class*="font-serif"]),
a:not(.font-serif):not([class*="font-serif"]),
button:not(.font-serif):not([class*="font-serif"]),
input:not(.font-serif):not([class*="font-serif"]),
textarea:not(.font-serif):not([class*="font-serif"]),
.font-sans,
[class*="font-sans"] {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

:root {
    /* Core Colors */
    --bg-primary: #FDFBF7;
    --bg-secondary: #F7F3ED;
    --bg-tertiary: #EDE8E0;
    --bg-dark: #1A1915;
    --bg-dark-alt: #252420;

    /* Accent Colors */
    --accent-primary: #2D6A4F;
    --accent-primary-dark: #1B4332;
    --accent-primary-light: #40916C;
    --accent-warm: #8C7B6D;
    --accent-warm-light: #A89485;

    /* Text Colors */
    --text-primary: #1A1915;
    --text-secondary: #4A4640;
    --text-tertiary: #7A756D;
    --text-inverse: #FDFBF7;

    /* Borders & Shadows */
    --border-light: #E5E0D8;
    --border-medium: #D4CFC5;
    --shadow-sm: 0 2px 8px rgba(26, 25, 21, 0.04);
    --shadow-md: 0 8px 24px rgba(26, 25, 21, 0.08);
    --shadow-lg: 0 20px 50px rgba(26, 25, 21, 0.12);
    --shadow-xl: 0 32px 80px rgba(26, 25, 21, 0.16);

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Scholar', serif !important;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.2;
}

/* Ensure all body text uses Poppins */
body,
p,
span,
li,
a,
button,
input,
textarea,
div:not([class*="font-"]):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

p {
    line-height: 1.8;
}

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

img,
svg {
    display: block;
    max-width: 100%;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Hero Animations */
.hero-text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Hero title line height */
section[id="inicio"] h1 {
    line-height: 0.95 !important;
}

/* Hero CTA Button - Green with pulse animation */
.hero-cta-btn {
    background: var(--accent-primary);
    color: var(--text-inverse);
    animation: ctaPulse 2s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.35);
    will-change: transform, box-shadow;
}

.hero-cta-btn:hover {
    background: var(--accent-primary-dark);
    animation: none;
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.5);
}

/* ========================================
           TRUST BAR
        ======================================== */
.trust-bar {
    padding: 48px 0;
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-bar-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-warm);
}

.trust-bar-item span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
           SECTION COMMON STYLES
        ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-label svg {
    width: 18px;
    height: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 700px;
    margin: 0 auto;
}

.section-title em {
    font-style: italic;
    color: var(--accent-warm);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-tertiary);
    margin-top: 12px;
}

/* ========================================
           PROBLEM/SOLUTION SECTION
        ======================================== */
.problem-section {
    padding: var(--section-padding) 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.problem-card:hover {
    border-color: var(--accent-warm);
    box-shadow: var(--shadow-md);
}

.problem-card svg {
    width: 24px;
    height: 24px;
    color: var(--accent-warm);
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-dark);
    border-radius: 20px;
    text-align: center;
    color: var(--text-inverse);
}

.solution-box h3 {
    font-size: 1.6rem;
    color: var(--text-inverse);
    margin-bottom: 12px;
}

.solution-box p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
           VISUAL CHAPTERS SECTION (ImageSection0 style)
        ======================================== */
.visual-chapters-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.visual-chapters-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 60px;
}

.visual-chapters-title em {
    font-style: italic;
    color: var(--accent-warm);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.visual-chapter-card {
    flex: 0 0 calc((100% - 72px) / 4);
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.visual-chapter-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.visual-chapter-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, #D4CFC5 100%);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.carousel-nav:hover svg {
    color: var(--text-inverse);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.carousel-nav:disabled:hover svg {
    color: var(--text-primary);
}

/* ========================================
           SWIPER CHAPTERS SECTION
        ======================================== */
.chaptersSwiper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px !important;
    overflow: hidden;
}

.chaptersSwiper .swiper-slide {
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
}

.chaptersSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 50px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #2D2D2D;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #2D2D2D;
    opacity: 1;
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .chaptersSwiper {
        padding: 60px 20px !important;
    }
    
    .chaptersSwiper .swiper-slide {
        width: 280px;
        height: 380px;
    }
}

/* ========================================
           WATCH ANYWHERE SECTION (ImageSection1 style)
        ======================================== */
.watch-anywhere-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.watch-anywhere-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
}

.watch-anywhere-subtitle {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-bottom: 80px;
}

/* ========================================
           DEVICES SHOWCASE - Mockup Image Style
        ======================================== */
.devices-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mockup-container {
    text-align: center;
}

.mockup-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

/* Feature badge */
.devices-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.device-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: var(--transition-fast);
    padding-right: 0px !important;
    max-width: 420px;
}

.device-feature:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.device-feature svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .devices-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .mockup-container {
        order: 1;
    }

    .devices-features {
        order: 2;
        justify-self: center;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .device-feature {
        font-size: 0.9rem;
        padding: 16px;
    }

    .hero-cta-btn {
        width: 100% !important;
        font-size: 20px !important;
        padding: 16px 24px !important;
    }

    section[id="inicio"] .absolute.right-0 img {
        opacity: 0.3 !important;
    }
}

@media (max-width: 480px) {
    .device-feature {
        font-size: 0.85rem;
        padding: 14px;
    }

    .mockup-image {
        max-width: 100%;
    }
}

.watch-anywhere-cta {
    text-align: center;
    margin-top: 80px;
}

.watch-anywhere-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-fast);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.35);
}

.watch-anywhere-btn:hover {
    background: var(--accent-primary-dark);
    transform: translateY(-3px);
}

.watch-anywhere-btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
           FOR WHO SECTION
        ======================================== */
.for-who-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.for-who-card {
    padding: 36px;
    border-radius: 20px;
}

.for-who-card.positive {
    background: rgba(140, 123, 109, 0.06);
    border: 1px solid rgba(140, 123, 109, 0.15);
}

.for-who-card.negative {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
}

.for-who-card h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.for-who-card h4 svg {
    width: 28px;
    height: 28px;
}

.for-who-card.positive h4 svg {
    color: var(--text-primary);
}

.for-who-card.negative h4 svg {
    color: var(--accent-warm);
}

.for-who-card ul {
    list-style: none;
}

.for-who-card li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 1rem;
}

.for-who-card li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.for-who-card.positive li svg {
    color: var(--text-primary);
}

.for-who-card.negative li svg {
    color: var(--text-tertiary);
}

/* ========================================
           TESTIMONIALS SECTION
        ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.testimonials-section .section-label {
    color: var(--accent-warm-light);
}

.testimonials-section .section-title {
    color: var(--text-inverse);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-fast);
    animation: testimonialFloat 4s ease-in-out infinite;
    will-change: transform;
}

.testimonial-card:nth-child(2) {
    animation-delay: 1.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 2.6s;
}

.testimonial-card:hover {
    border-color: rgba(140, 123, 109, 0.4);
    transform: translateY(-12px) scale(1.02);
    animation-play-state: paused;
    box-shadow: 0 20px 50px rgba(140, 123, 109, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: #F5B942;
    color: #F5B942;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.9;
}

.testimonial-text .highlight {
    background: linear-gradient(180deg, transparent 50%, rgba(140, 123, 109, 0.3) 50%);
    color: var(--text-inverse);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--text-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--text-inverse);
}

.testimonial-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-inverse);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ========================================
           PRICING SECTION
        ======================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.pricing-features {
    padding-right: 40px;
}

.pricing-features-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.pricing-features-list {
    list-style: none;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.05rem;
}

.pricing-features-list li svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
    padding: 32px;
    text-align: center;
    color: var(--text-inverse);
}

.pricing-card-header h3 {
    color: var(--text-inverse);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pricing-card-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.pricing-card-body {
    padding: 40px;
}

.pricing-amount {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px dashed var(--border-light);
    margin-bottom: 32px;
}

.pricing-old {
    font-size: 1rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

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

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-value {
    font-family: 'Scholar', serif;
    font-size: 5rem;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-fast);
}

.pricing-cta:hover {
    background: var(--accent-primary-dark);
    transform: translateY(-2px);
}

.pricing-cta svg {
    width: 20px;
    height: 20px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.pricing-guarantee svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

/* ========================================
           ABOUT SECTION
        ======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 500px;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, #D4CFC5 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
    width: 120px;
    height: 120px;
    color: var(--accent-warm);
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
}

.about-badge strong {
    display: block;
    font-family: 'Scholar', serif;
    font-size: 1.6rem;
}

.about-badge span {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-badge-main {
    bottom: -16px;
    right: -16px;
}

.about-badge-secondary {
    top: -20px;
    left: -20px;
    background: var(--bg-dark);
}

/* Floating Animation */
.floating-card {
    animation: floatingCard 3s ease-in-out infinite;
    will-change: transform;
}

.floating-card-delayed {
    animation-delay: 1.5s;
}

.floating-card:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotateZ(3deg) scale(1.05);
}

.about-decoration {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-warm);
    border-radius: 50%;
    opacity: 0.2;
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 24px;
}

.about-title em {
    font-style: italic;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.9;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.about-signature svg {
    width: 24px;
    height: 24px;
    color: var(--accent-warm);
}

.about-signature span {
    font-family: 'Scholar', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-warm);
}

/* ========================================
           FAQ SECTION
        ======================================== */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-content .section-label {
    justify-content: flex-start;
}

.faq-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--accent-warm);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-warm);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-warm);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 1rem;
    color: var(--text-tertiary);
    line-height: 1.8;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 24px 24px;
}

.faq-item.active .faq-icon {
    background: var(--accent-warm);
    color: var(--text-inverse);
    transform: rotate(45deg);
}

/* ========================================
           FINAL CTA SECTION
        ======================================== */
.final-cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(140, 123, 109, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(140, 123, 109, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.final-cta-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-warm);
}

.final-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-inverse);
    margin-bottom: 20px;
}

.final-cta-title em {
    font-style: italic;
    color: var(--accent-warm-light);
}

.final-cta-subtitle {
    font-size: 1.15rem;
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-fast);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.4);
}

.final-cta-btn:hover {
    background: var(--accent-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(45, 106, 79, 0.5);
}

.final-cta-btn svg {
    width: 22px;
    height: 22px;
}

/* ========================================
           FOOTER
        ======================================== */
.footer {
    padding: 48px 0;
    background: var(--bg-dark);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-inverse);
}

.footer-brand span {
    font-family: 'Scholar', serif;
    font-size: 1rem;
    color: var(--text-inverse);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
}

.footer-copy a {
    color: var(--accent-warm-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(253, 251, 247, 0.6);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-warm);
    color: var(--text-inverse);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ========================================
           RESPONSIVE
        ======================================== */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-box {
        padding: 40px 30px;
    }

    .visual-chapter-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        justify-items: center;
    }

    .about-image {
        justify-self: center;
    }

    .about-content .section-label {
        justify-content: center;
    }

    .about-content {
        text-align: center;
    }

    .about-signature {
        justify-content: center;
    }

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

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-features {
        padding-right: 0;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-content {
        text-align: center;
    }

    .faq-content .section-label {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .solution-box {
        padding: 30px 20px;
    }

    .solution-box h3 {
        font-size: 1.5rem;
    }

    .solution-box p {
        font-size: 1rem !important;
    }

    .visual-chapter-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .trust-bar-inner {
        gap: 24px;
        flex-wrap: wrap;
    }

    .trust-bar-item {
        flex-basis: calc(50% - 12px);
        justify-content: center;
        font-size: 0.9rem;
    }

    .trust-bar-item svg {
        width: 20px;
        height: 20px;
    }

    .about-badge {
        position: absolute;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .about-badge strong {
        font-size: 1.2rem;
    }

    .about-badge span {
        font-size: 0.6rem;
    }

    .about-badge-main {
        bottom: 8px;
        right: 8px;
    }

    .about-badge-secondary {
        top: 8px;
        left: 8px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-bar-item {
        flex-basis: 100%;
        font-size: 0.85rem;
    }

    .solution-box {
        padding: 24px 16px;
    }

    .solution-box h3 {
        font-size: 1.3rem;
    }

    .visual-chapter-card {
        flex: 0 0 100%;
    }

    .carousel-wrapper {
        padding: 0 45px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .final-cta-icon {
        width: 80px;
        height: 80px;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(45, 106, 79, 0.35);
    }

    50% {
        box-shadow: 0 8px 40px rgba(45, 106, 79, 0.5), 0 0 20px rgba(45, 106, 79, 0.3);
    }
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0px) rotateZ(0deg);
    }

    50% {
        transform: translateY(-15px) rotateZ(2deg);
    }
}

@keyframes testimonialFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Override Tailwind font-serif to use Scholar */
.font-serif {
    font-family: 'Scholar', serif !important;
}

/* Override Tailwind font-sans to use Poppins */
.font-sans {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}