/* Base Styles & Variables */
:root {
    /* Primary White/Neutral Clean Palette */
    --primary-color: #f7f9fc;
    --primary-dark: #1f2937;
    --primary-light: #ffffff;
    
    /* Brand Green Accents */
    --accent-color: #10b981;    /* Vibrant Emerald Green */
    --accent-hover: #059669;    /* Darker Emerald Green */
    --accent-light: #d1fae5;    /* Very Light Green for subtle backgrounds */
    --accent-text: #047857;     /* Dark Green for highlighted text */
    
    /* Text Colors */
    --text-main: #374151;       /* Dark Gray */
    --text-light: #6b7280;      /* Medium Gray */
    --white: #ffffff;
    
    /* Shadows and Borders */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(16, 185, 129, 0.05);
    --shadow-lg: 0 15px 35px rgba(16, 185, 129, 0.1);
    --shadow-green: 0 10px 25px rgba(16, 185, 129, 0.4);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass-bg {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-dark);
    line-height: 1.2;
    text-wrap: balance;
}

.highlight {
    color: var(--accent-text);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-light);
    z-index: -1;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
}

.btn-large {
    width: 100%;
    font-size: 1.25rem;
    padding: 22px 32px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--primary-light);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-light) 0%, transparent 60%);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--accent-text);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 36px;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-wrapper {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.security-stamp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    justify-content: center;
}

.security-stamp i {
    color: var(--accent-color);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 6px solid var(--accent-color);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
    text-transform: uppercase;
}

/* Marquee Section */
.marquee-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.pill {
    background: var(--white);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.03);
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.module-card-full {
    grid-column: 1 / -1;
    background: linear-gradient(to right, #ffffff, var(--accent-light));
    border: 1px solid var(--accent-light);
}

.module-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background-color: var(--accent-light);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.module-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.module-text {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Target Audience */
.audience-section {
    padding: 80px 0;
    background-color: var(--white);
}

.audience-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.audience-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.audience-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.audience-card {
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.audience-yes {
    background-color: var(--primary-light);
    border: 1px solid var(--accent-light);
    border-top: 6px solid var(--accent-color);
}

.audience-list {
    list-style: none;
}

.audience-list li {
    font-size: 1.15rem;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-main);
    font-weight: 500;
}

.audience-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 2px;
}

/* About Mentor Redesign */
.mentor-redesign {
    padding: 100px 0;
    background: linear-gradient(180deg, #10b981 0%, #064e3b 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.mentor-container {
    max-width: 900px;
}

.mentor-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--white);
}

/* Offset the mentor image so it breaks out of the section slightly, like in the reference */
.mentor-redesign .mentor-image-wrapper {
    margin-top: -150px; 
}

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

.mentor-name-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mentor-bio-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.mentor-bio-text p {
    margin-bottom: 20px;
}

.mentor-motto {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px !important;
}

.mentor-roles {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 30px 0 !important;
}

.mentor-images-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.mentor-network-img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.mentor-network-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Pricing Offer */
.offer-section {
    padding: 100px 0;
    background-color: var(--white);
    background-image: radial-gradient(var(--accent-light) 1px, transparent 1px);
    background-size: 30px 30px;
}

.offer-container {
    max-width: 800px;
}

.offer-card {
    background-color: var(--white);
    padding: 60px 50px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 2px solid var(--accent-color);
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    margin-top: 20px;
}

.price-box {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--primary-color);
    border-radius: 24px;
}

.price-old {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-size: 1.2rem;
    color: var(--text-main);
}

.price-highlight {
    font-size: 4rem;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
    margin-top: 10px;
    font-weight: 800;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    text-align: left;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--text-main);
}

/* FAQ Section Accordion */
.faq-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-accordion:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.faq-question {
    padding: 24px 30px;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide default triangle in WebKit */
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question i.fa-question-circle,
.faq-question i.fa-clock,
.faq-question i.fa-laptop,
.faq-question i.fa-headset {
    color: var(--accent-color);
}

.accordion-icon {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-accordion[open] .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-accordion[open] .faq-question {
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 30px 30px 30px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .audience-container,
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-wrapper,
    .audience-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .audience-list li,
    .mentor-bio p {
        text-align: left;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .module-card-full {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .offer-card {
        padding: 40px 24px;
    }
    
    .price-highlight {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
    
    .module-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* =========================================
   SALES LETTER SPECIFIC STYLES
   ========================================= */

.sales-letter-body {
    background-color: var(--white);
    color: var(--text-main);
    font-size: 1.15rem;
    line-height: 1.8;
}

.top-banner {
    background-color: #f1f5f9;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid #e2e8f0;
}

.sales-letter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 15px;
}

.sl-section {
    padding: 60px 50px;
    border-radius: 24px;
    margin-bottom: 60px;
    transition: var(--transition);
}

/* Background Variations */
.sl-bg-white {
    background-color: #ffffff;
}

.sl-bg-gray {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.sl-bg-green {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.module-shadow {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Pattern-breaking Images */
.sl-image-wrapper {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.sl-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Stats Cards Specific Adjustments */
.bg-white-card {
    background-color: #ffffff !important;
    border-color: #d1fae5 !important;
}

/* Typography & Text */
.sl-headline-section {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 90px;
    padding-bottom: 50px;
}

.sl-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.sl-subheadline {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.highlight-red {
    color: #e11d48; /* An attention-grabbing red */
}

.sl-text-content p {
    margin-bottom: 24px;
}

.sl-text-content strong {
    color: var(--primary-dark);
}

.sl-highlight-box {
    background-color: #fef9c3; /* Light yellow highlight */
    padding: 24px;
    border-left: 5px solid #eab308;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0;
    color: #854d0e;
}

.sl-big-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    text-align: center;
    margin: 40px 0;
}

.sl-highlight-green {
    background-color: #dcfce7;
    color: #166534;
    padding: 10px 15px;
    font-weight: 700;
    display: inline-block;
    border-radius: 4px;
}

/* Quotes / Recognition List */
.sl-quotes-box {
    background-color: transparent;
    padding: 20px 0;
    margin: 40px 0;
}

.sl-quotes-box p:first-child {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    color: #111;
}

.sl-recognition-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sl-recognition-list li {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

.sl-recognition-list li:hover {
    transform: translateY(-2px);
}

.sl-recognition-list li::before {
    content: "\f057"; /* FontAwesome Times Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: #e11d48;
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Titles */
.sl-section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

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

/* Stats Grid */
.sl-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.sl-stat-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.sl-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.sl-stat-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.sl-stats-caption {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    padding: 15px;
    border-left: 4px solid var(--accent-light);
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

/* Modules / What you will learn */
.sl-modules {
    margin: 60px 0;
}

.sl-module-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.sl-module-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.sl-module-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sl-module-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sl-module-text p {
    margin: 0;
    color: var(--text-light);
}

/* Testimonials */
.sl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sl-testimonial {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.sl-testimonial .stars {
    color: #eab308;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.sl-testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.sl-testimonial strong {
    display: block;
    color: var(--primary-dark);
}

.sl-testimonial span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Pricing Section */
.sl-pricing {
    background-image: radial-gradient(var(--accent-light) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 60px 30px;
    border-radius: 24px;
    border: 2px solid var(--accent-light);
    margin: 60px 0;
}

.sl-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.sl-price-old {
    font-size: 1.5rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.sl-price-current {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.sl-price-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 10px;
}

.sl-button-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Guarantee Section */
.sl-guarantee {
    background-color: #f0fdf4;
    border: 2px dashed #86efac;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.sl-guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.sl-guarantee-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #166534;
}

/* Decision Paths */
.sl-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.sl-path-card {
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background-color: var(--white);
}

.sl-path-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #64748b;
}

.sl-path-highlight {
    border: 2px solid var(--accent-color);
    background-color: #f0fdf4;
}

.sl-path-highlight h3 {
    color: var(--accent-color);
}

/* What You Get List */
.sl-check-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.sl-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.sl-check-list li:last-child {
    border-bottom: none;
}

.sl-check-list i {
    color: #10b981; /* Green checkmark from reference */
    font-size: 1.8rem;
    margin-top: 2px;
}

.sl-check-text-box {
    display: flex;
    flex-direction: column;
}

.sl-check-text-box strong {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.sl-check-text-box span {
    font-size: 1.1rem;
    color: #475569;
}

/* Bottom CTA wrapper */
.sl-bottom-cta {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 20px;
    margin-top: 0; /* REMOVED margin to pull it flush with the previous section */
}

.sl-bottom-cta h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.sl-bottom-cta .sl-price-old {
    color: rgba(255,255,255,0.6);
}

.sl-bottom-cta .sl-price-current {
    color: var(--white);
}

.sl-bottom-cta .sl-price-subtitle {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .sl-headline {
        font-size: 2rem;
    }
    
    .sl-headline-section {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0px;
    }

    .sl-section {
        padding: 50px 15px;
        border-radius: 0;
        margin-bottom: 0px; 
    }

    .sl-section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .sl-quotes-box {
        margin: 20px 0;
        padding: 10px 0;
    }

    .sl-recognition-list li {
        padding: 15px 15px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .sl-stats-grid,
    .sl-testimonials-grid,
    .sl-paths {
        grid-template-columns: 1fr;
        gap: 20px; /* Reduced gap */
    }
    
    .sl-module-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
        margin-bottom: 15px;
    }

    .sl-bottom-cta {
        padding: 5px 15px 40px 15px; /* Extremely small top padding to close the visual gap */
    }
    
    .sl-path-card {
        padding: 20px;
    }

    .site-footer {
        padding: 20px 10px;
    }

    .footer-text {
        font-size: 0.65rem;
        line-height: 1.15;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .footer-links, .footer-copy {
        font-size: 0.75rem;
        font-weight: normal;
    }
}
@media (max-width: 480px) {
    .sl-section {
        padding: 50px 15px;
        margin-bottom: 0px;
    }
    
    .sl-headline {
        font-size: 2rem;
    }

    .sl-subheadline {
        font-size: 1.1rem;
    }

    .sl-image {
        aspect-ratio: 4/3;
    }

    .footer-text {
        font-size: 0.6rem;
        line-height: 1.1;
        margin-bottom: 8px;
        font-weight: normal;
    }

    .footer-links {
        font-size: 0.7rem;
        margin-bottom: 8px;
        font-weight: normal;
    }

    .footer-copy {
        font-size: 0.65rem;
        line-height: 1.2;
        font-weight: normal;
    }
}

/* Base Footer typography rules */
.footer-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: normal;
}

.footer-links {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 1rem;
    font-weight: normal;
    color: #ffffff;
    margin: 0;
}