/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@300;400;500&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary-gold: #D4AF37;
    --primary-gold-hover: #B5952F;
    /* Updated Background Palette from Reference */
    --bg-dark: #040C16;
    /* Deep Blue Base */
    --bg-glow: #122A47;
    /* Blue Highlight */
    --bg-card: rgba(18, 42, 71, 0.3);
    /* Adjusted for blue tint */
    --text-main: #f0f0f0;
    --text-muted: #e0e0e0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --spacing-section: 150px;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    line-height: 1.2;
    margin-bottom: 1.15rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* Buttons */
/* Buttons */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #F9D976);
    color: #1a1a1a;
    padding: 14px 28px;
    /* Reduced padding */
    font-weight: 700;
    font-size: 0.9rem;
    /* Reduced font size */
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    /* Elegant shadow, not exaggerated */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-4px);
    /* Glow mais intenso no hover */
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

/* Animations using Intersection Observer */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Fix for mobile browsers */
    min-height: 600px;
    /* Reduced slightly for better mobile fit */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    /* Fallback color */
}

/* Background Image Layer - Fix for iOS */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Gradient Overlay Layer */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter overlay to show more of the background image on mobile */
    background: linear-gradient(rgba(4, 12, 22, 0.6), rgba(4, 12, 22, 0.5));
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}


.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: #eee;
    margin-bottom: 3rem;
}

/* Hero highlight text */
.gold-highlight {
    color: var(--primary-gold);
    font-weight: 700;
    /* Optional: ensures it pops */
}

/* Quote Section (Human Connection) */
.quote-section {
    padding: 6rem 0;
    /* Generous vertical spacing */
    background: radial-gradient(circle at center, rgba(201, 162, 77, 0.15) 0%, rgba(4, 12, 22, 1) 70%);
    /* Subtle Gold Radial Gradient - Boosted visibility */
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    /* Very subtle separation */
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: -0.5px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
}

/* Responsive adjustment for quote */
@media (max-width: 600px) {
    .quote-text {
        font-size: 1.15rem;
        /* Reduced (~25-30%) */
        font-weight: 400;
        /* Lighter weight */
        line-height: 1.6;
    }

    /* Hierarchy variation */
    .q-line {
        display: block;
        margin-bottom: 0.3rem;
    }

    .q-line:nth-child(2) {
        opacity: 0.85;
        /* Slight dim for rhythm */
    }

    .q-line:last-child {
        margin-bottom: 0;
        opacity: 1;
    }

    .quote-author {
        font-size: 0.75rem;
        /* Reduced by ~30% */
        letter-spacing: 3px;
        /* Increased spacing */
    }
}

/* Pain Points Section */
.pain-points {
    padding: var(--spacing-section) 0;
    /* Gradient from Deep Blue to slightly lighter Blue */
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-glow) 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    /* Degradê do Azul Escuro Profundo (#050A14) para a cor original (rgba 30,30,30, 0.6) */
    background: linear-gradient(180deg, #050A14 0%, rgba(30, 30, 30, 0.6) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer border */
    backdrop-filter: blur(10px);
    text-align: center;
    /* Centralize elements */
    transition: transform 0.3s ease, background 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    /* Gradiente levemente mais claro no hover para feedback visual */
    background: linear-gradient(180deg, #0a1426 0%, rgba(45, 45, 45, 0.7) 100%);
}

.pain-card h3 {
    font-size: 1.1rem;
    /* Smaller title */
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: var(--primary-gold);
}

.pain-card p {
    font-size: 0.9rem;
    /* Smaller text */
    line-height: 1.7;
    /* Better readability */
    color: var(--text-muted);
}

/* Ebook Presentation */
.ebook-presentation {
    padding: var(--spacing-section) 0;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ebook-img {
    flex: 1;
    text-align: center;
}

.ebook-img img {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    animation: float 6s ease-in-out infinite;
}

.ebook-text {
    flex: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Learning Points Redesign */
.learning {
    padding: var(--spacing-section) 0;
    background: url('assets/bg-learning.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    /* Prevent spillover */
}

.learning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay to make text and images pop */
    background: linear-gradient(135deg, rgba(4, 12, 22, 0.96), rgba(18, 42, 71, 0.94));
    z-index: 1;
}

.learning .container {
    position: relative;
    z-index: 2;
}

.learning-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    /* Very generous spacing between blocks */
    margin-top: 4rem;
    max-width: 1000px;
    /* Constrain width for better reading line length */
    margin-left: auto;
    margin-right: auto;
}

.learning-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.learning-block:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Alternating Layout */
.learning-block:nth-child(even) {
    flex-direction: row-reverse;
}

.learning-img-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.learning-img-wrapper img {
    width: 100%;
    /* Keep 4:3 ratio based on width */
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.learning-block:hover .learning-img-wrapper img {
    transform: scale(1.02);
    border-color: var(--primary-gold);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    /* Classic photo ratio */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px dashed rgba(212, 175, 55, 0.3);
    /* Gold dashed border */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.photo-placeholder span {
    color: rgba(212, 175, 55, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hover effect on placeholder to encourage action */
.learning-block:hover .photo-placeholder {
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.learning-content {
    flex: 1;
    position: relative;
}

/* Decorative line for each text block */
.learning-content::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.learning-text {
    font-size: 1.35rem;
    /* Larger, premium font size */
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    font-family: var(--font-heading);
    /* Use heading font for impact */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .learning-grid {
        gap: 6rem;
    }

    .learning-block {
        flex-direction: column !important;
        /* Stack constantly on smaller screens */
        gap: 2.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
        /* Slight background on mobile for separation */
        padding: 3rem 1.5rem;
        border-radius: 24px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .learning-content::before {
        margin: 0 auto 1.5rem auto;
        /* Center the accent line */
    }

    .learning-img-wrapper {
        width: 100%;
        max-width: 320px;
        /* Limit image width on mobile for cleaner look */
        margin: 0 auto;
        /* Center image */
    }

    .learning-text {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

/* Steps Section (Editorial Vertical Layout) */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    /* Generous spacing */
    max-width: 700px;
    margin: 5rem auto 2rem;
    text-align: center;
}

.step-card {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    height: auto;
    position: relative;
}

/* Remove hover effects from previous card design */
.step-card:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
}

/* Connective line effect (optional, subtle guide) */
.step-card::after {
    content: '';
    position: absolute;
    bottom: -3.5rem;
    /* Halfway through the gap */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: rgba(212, 175, 55, 0.3);
}

/* Remove line from last item */
.step-card:last-child::after {
    display: none;
}

.step-card h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.15rem;
    /* Larger for editorial feel */
    line-height: 1.8;
    font-weight: 300;
}

/* Offer Stack Card (Premium List Wrapper) */
.offer-stack-card {
    background: linear-gradient(180deg, #020509 0%, #0d1a2d 100%);
    /* Subtle vertical gradient for depth */
    border: 1px solid rgba(212, 175, 55, 0.4);
    /* Refined gold border */
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    /* Ensure list aligns nicely */
}

/* Ensure list items inside look great */
.offer-stack-card .bonus-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Separators */
    padding-bottom: 0.8rem;
    padding-top: 0.5rem;
}

.offer-stack-card .bonus-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Method Section (Concept Blocks) */
.concepts-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    /* Allow wrapping for responsiveness */
}

.concept-block {
    text-align: center;
    max-width: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    /* Optional: visual flair - subtle drop shadow */
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2));
}

.concept-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
}

.concept-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #e0e0e0;
    max-width: 280px;
    /* Constrain width for readability line length */
    margin: 0 auto;
}

/* Mobile Adjustments for Method Section */
@media (max-width: 768px) {
    .concepts-grid {
        flex-direction: column;
        gap: 3.5rem;
        align-items: center;
    }

    .concept-block {
        max-width: 100%;
    }

    .concept-title {
        font-size: 1.6rem;
    }



    .learning p.subtitle {
        font-size: 1rem !important;
        font-weight: 300 !important;
        opacity: 0.8 !important;
    }
}

/* Plan 21 Days Section (Bubble Layout) */
.plan-section {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-glow) 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-bubbles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    /* Constrain width to keep bubbles nice */
    margin-left: auto;
    margin-right: auto;
}

.plan-bubble {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
    /* Flex sizing to ensure they look like nice oval pills */
    flex: 1 1 auto;
    width: fit-content;
    min-width: 250px;
    /* Minimum width for consistency */
}

.plan-bubble:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.plan-quote {
    font-size: 1.2rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 2rem;
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Transformation */
.transformation {
    padding: var(--spacing-section) 0;
    /* Continuing the flow: Lighter Blue back to Dark */
    background: linear-gradient(180deg, var(--bg-glow) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    width: 280px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* About Author */
.about {
    padding: var(--spacing-section) 0;
    /* Degradê Invertido: Cinza original (#111) no topo, Azul Escuro em baixo */
    background: linear-gradient(180deg, #111111 0%, #050A14 100%);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Mobile Typography & Spacing Adjustments */
@media (max-width: 600px) {

    /* Increase lateral breathing by ~20% (20px -> 25px) */
    .container,
    .hero-content,
    .quote-content {
        padding-left: 25px;
        padding-right: 25px;
    }

    /* Ensure other specific containers follow suit if they override */
    .offer-card {
        padding-left: 2rem;
        /* 32px is roughly aligned with >25px */
        padding-right: 2rem;
    }
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
}

.about-text {
    flex: 2;
}

.author-family-img {
    margin-top: 2rem;
    text-align: center;
}

.author-family-img img {
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.author-family-img img:hover {
    transform: scale(1.03);
}

/* Offer Section Refined */
.offer {
    padding: var(--spacing-section) 0;
    /* Angled Gradient: Deep Blue to Glow */
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-glow) 100%);
    display: flex;
    /* Center card content */
    justify-content: center;
}

.offer-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
    /* Glow effect */
    position: relative;
    overflow: hidden;
}

/* Subtle glow at top of card */
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.7;
}

.price-container {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    margin: 0.5rem 0 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
    border-radius: 50px;
    /* Pill shape like reference */
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.payment-methods {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.payment-methods img {
    filter: brightness(0.85) grayscale(20%);
    /* Slightly muted until hover */
    transition: all 0.3s ease;
    width: 320px;
    /* Optimal size */
}

.payment-methods img:hover {
    filter: brightness(1) grayscale(0%);
}

.guarantee-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
    text-align: left;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.guarantee-text p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    color: var(--text-muted);
}

/* Guarantee Badge Placeholder removed/replaced */
.guarantee-badge {
    display: none;
}

/* Mobile Responsiveness for Card */
@media (max-width: 600px) {
    .offer-card {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .guarantee-compact {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Final CTA */
.final-cta {
    padding: 150px 0;
    background: url('assets/hero.png') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Final Blue Overlay */
    background: rgba(4, 12, 22, 0.9);
}

.final-cta .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Bonus Bundle Image */
.bonus-bundle-img {
    max-width: 100%;
    width: 600px;
    width: 600px;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    /* Soft glow */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.bonus-bundle-img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .ebook-presentation,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .ebook-img,
    .about-img {
        margin-bottom: 2rem;
    }

    /* Mobile Text Refinements */
    .ebook-text,
    .about-text {
        padding: 0 1.5rem;
    }

    .ebook-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .ebook-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Global Section Borders */
section,
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separation line */
}

/* Ensure Hero (header) doesn't get a top border if it matches generic rules, though it's a header */
header {
    border-top: none;
}

/* Decorative Golden Line above Centered Section Titles */
.text-center h2,
.offer h2,
.transformation h2,
.pain-points h2 {
    position: relative;
    padding-top: 2rem;
}

.text-center h2::before,
.offer h2::before,
.transformation h2::before,
.pain-points h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
    border-radius: 2px;
}

/* Testimonials Carousel */
.testimonials {
    padding: var(--spacing-section) 0;
    position: relative;
    background-color: var(--bg-dark);
    /* Solid dark blue base */
    color: var(--text-main);
    overflow: hidden;
    /* Prevent horizontal scroll */
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments for testimonial card */
@media (max-width: 600px) {
    .testimonial-card {
        padding: 2.5rem 2.5rem;
        /* Reduced height, increased lateral breathing */
    }
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    line-height: 1;
    height: 40px;
    margin-bottom: 1rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}


.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the block within the card */
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
    /* Ensure text aligns left relative to image */
}

.testimonial-avatar {
    width: 48px;
    /* Reduced for premium thumbnail feel */
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    /* Elegant fine border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    /* Prevent squishing */
}

/* Helper for the text container next to avatar */
.testimonial-author>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-name {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    /* Balanced size */
    font-family: var(--font-heading);
    line-height: 1.2;
}

.author-age {
    color: var(--primary-gold);
    font-size: 0.75rem;
    /* Discreet */
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-button:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}

.carousel-button--left {
    left: 0;
}

.carousel-button--right {
    right: 0;
}

.carousel-button.is-hidden {
    opacity: 0.3;
    pointer-events: none;
}

/* Carousel Dots */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 0;
    gap: 0.8rem;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .carousel-button {
        width: 35px;
        height: 35px;
    }

    .carousel-container {
        padding: 0 10px;
    }

    /* Slightly smaller text on mobile */
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    /* Reduced from 60px */
    height: 50px;
    /* Reduced from 60px */
    bottom: 25px;
    /* Slight adjustment */
    right: 25px;
    /* Slight adjustment */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 26px;
    /* Reduced from 32px */
    height: 26px;
    /* Reduced from 32px */
    fill: #ffffff;
}

/* Hero Hierarchy Base Styles */
.hero-line-main,
.hero-line-sub {
    display: inline;
}

.hero-desc-mobile {
    display: none;
}

.hero-desc-desktop {
    display: block;
}

/* Specific Mobile Hero Adjustments */
@media (max-width: 600px) {
    .hero {
        min-height: 100dvh;
        height: auto;
        padding: 60px 0 50px;
        /* Slight increase in bottom padding for general breathing */
    }

    .hero h1 {
        /* Resetting font-size to use REMs directly on children for precision */
        font-size: 1rem;
        margin-bottom: 1.5rem;
        /* Increased spacing to subheadline (+15% to 50% range) */
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        /* Space between headline parts */
    }

    .hero-line-main {
        font-size: 2.3rem;
        /* ~10-12% smaller than previous ~2.6rem */
        line-height: 1.2;
        max-width: 95%;
        /* Better wrapping/scannability */
        margin: 0 auto;
        display: block;
    }

    .hero-line-sub {
        font-size: 1.8rem;
        /* ~20% smaller than main line (2.3 * 0.8 ~= 1.84) */
        font-weight: 400;
        /* 100% hierarchy clear */
        opacity: 0.95;
        line-height: 1.3;
        display: block;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero p {
        margin-bottom: 2.5rem;
        /* Subheadline -> CTA spacing increased */
    }

    .hero-desc-desktop {
        display: none;
    }

    .hero-desc-mobile {
        display: block;
        font-size: 0.95rem;
        /* Reduced slightly for 'support' role */
        font-weight: 300;
        /* Lighter weight as requested (1 level down) */
        line-height: 1.6;
        color: #e0e0e0;
        max-width: 85%;
        /* Constrain width for readability */
        margin-left: auto;
        margin-right: auto;
    }

    /* Small button adjustment */
    .hero .btn-cta {
        padding: 11px 28px;
        /* Height reduced ~8% */
        font-size: 0.9rem;
    }
}