/* DESIGN SYSTEM */
:root {
    /* Colors */
    --primary-color: #006D77;
    /* Deep Teal - Trust, Medical */
    --primary-dark: #004E56;
    --secondary-color: #EDF6F9;
    /* Soft Ice Blue - Backgrounds */
    --accent-color: #E63946;
    /* Urgent Red - Alerts, CTA */
    --accent-hover: #D62839;
    --text-color: #2B2D42;
    /* Dark Slate - Readability */
    --text-light: #8D99AE;
    --white: #FFFFFF;
    --success: #2A9D8F;
    --warning: #F4A261;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Merriweather', serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* SECTION STYLES */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: -20px auto var(--spacing-lg);
    color: var(--text-light);
}

/* HERO SECTION */
.hero-section {
    padding: var(--spacing-xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: #F8F9FA;
    /* Off-white background from image */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* Increased gap */
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 550px;
    /* Constrain width for better rag */
}



.hero-title {
    font-size: 3.2rem;
    /* Larger title */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1A1A1A;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(90deg, #FF9F43 0%, #FFBCA0 100%);
    /* Softer gradient */
    color: white;
    font-size: 1rem;
    font-weight: 800;
    padding: 20px 30px;
    border-radius: 8px;
    /* Slightly more rounded */
    border: none;
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
    /* Softer, spread out shadow */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    width: auto;
    /* Allow auto width */
    min-width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 159, 67, 0.4);
}

.hero-price-text {
    font-size: 0.9rem;
    color: #6C757D;
    margin-top: 0;
}

.orange-text {
    color: #FF9F43;
    font-weight: 800;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    /* Removed box-shadow for cleaner look compatible with image */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Applied shadow to image directly */
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background-color: #2ECC71;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.badge-count {
    font-size: 1.2rem;
    font-weight: 800;
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-media {
        order: 1;
    }

    .hero-logo-placeholder {
        align-items: center;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* PROBLEM SECTION */
.problem-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.bad-badge {
    background-color: #FFF0F0;
    color: #FF5A5F;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.problem-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.problem-section .section-title {
    color: #1A1A1A;
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
}

.problem-story p {
    color: #6C757D;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.panic-text {
    color: #1A1A1A !important;
    font-weight: 800;
    font-size: 1.1rem !important;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.problem-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pain-point {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.pain-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.pain-text p {
    font-size: 0.9rem;
    color: #6C757D;
    line-height: 1.5;
    margin-bottom: 0;
}

.clock-icon,
.heart-icon {
    font-size: 1.5rem;
    color: #FF5A5F;
    background-color: #FFF0F0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgency-box {
    background-color: #FCF2F2;
    border-left: 4px solid #FF5A5F;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 30px;
}

.urgency-box p {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* QUESTIONS SECTION */
.questions-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.question-card {
    background-color: var(--white);
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.blue-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #2B7DE9;
}

.question-card p {
    margin-bottom: 0;
    color: #495057;
    font-size: 0.95rem;
    margin-left: 10px;
}

.questions-footer {
    font-size: 1.1rem;
    color: #2B7DE9;
    font-weight: 700;
}

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

.questions-conclusion {
    text-align: center;
    font-size: 1.5rem;
    margin-top: var(--spacing-lg);
    color: var(--primary-dark);
}

/* SOLUTION SECTION */
.solution-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.solution-header {
    margin-bottom: var(--spacing-lg);
}

.solution-section .section-title {
    color: #1A1A1A;
    margin-bottom: var(--spacing-xs);
}

.solution-section .section-subtitle {
    color: #6C757D;
    max-width: 800px;
    margin: 0 auto;
}

/* Presentamos Box */
.presentamos-box {
    background-color: #F0F6FF;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid #D6E4FF;
}

.blue-pill {
    background-color: #2B7DE9;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.course-name-display {
    color: #2B7DE9;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.course-tagline {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-weight: 500;
}

.course-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #495057;
}

/* Instructor Grid */
/* Instructor Grid */
.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.instructor-media {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instructor-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #2B7DE9;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(43, 125, 233, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
}

.instructor-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.instructor-bio {
    color: #6C757D;
    margin-bottom: 30px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cred-icon {
    font-size: 1.2rem;
    color: #2ECC71;
    background-color: #E9F7EF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cred-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1A1A1A;
}

.cred-details p {
    font-size: 0.9rem;
    color: #6C757D;
    margin-bottom: 0;
}

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

    .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -20px;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        justify-content: center;
    }
}

/* BENEFITS SECTION */
.benefits-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.benefits-header {
    margin-bottom: 50px;
}

.transformation-badge {
    background-color: #E9F7EF;
    color: #2ECC71;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.benefits-section .section-title {
    max-width: 900px;
    margin: 0 auto var(--spacing-sm);
    color: #1A1A1A;
}

.benefits-section .section-subtitle {
    color: #6C757D;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.list-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
    border-color: #D6F5E3;
}

.check-icon-wrapper {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #E9F7EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon {
    color: #2ECC71;
    font-size: 0.8rem;
    font-weight: 800;
}

.benefit-card p {
    margin-bottom: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
}

.transformation-box {
    background-color: #EEF4FA;
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-box p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0;
}

.blue-bold {
    color: #2B7DE9;
}

.green-bold {
    color: #2ECC71;
}

/* OFFER STACK SECTION */
.offer-section {
    background-color: var(--white);
    color: var(--text-color);
    text-align: center;
    padding-top: var(--spacing-xl);
}

.offer-section .section-title {
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.offer-section .section-subtitle {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.special-offer-badge {
    background-color: #FFF5EB;
    color: #F58634;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.stack-container {
    background-color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stack-item {
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: transform 0.2s ease;
}

.stack-item:hover {
    transform: translateY(-2px);
}

/* Main Item Styles */
.main-item {
    background-color: #F8FBFF;
    border: 1px solid #DCE9F9;
}

.main-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2B2D42;
    margin-bottom: 4px;
}

.main-item p {
    font-size: 0.9rem;
    color: #6C757D;
    margin-bottom: 0;
}

.main-item .value-amount {
    color: #2B7DE9;
}

/* Bonus Item Styles */
.bonus-item {
    background-color: #F7FFF9;
    border: 1px solid #D6F5E3;
}

.bonus-pill {
    background-color: #2ECC71;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.bonus-item h3 {
    font-size: 1.0rem;
    font-weight: 700;
    color: #2B2D42;
    margin-bottom: 4px;
}

.bonus-item p {
    font-size: 0.85rem;
    color: #6C757D;
    margin-bottom: 0;
}

.bonus-item .value-amount {
    color: #2ECC71;
}

/* Value Columns */
.item-content {
    flex: 1;
    padding-right: 20px;
}

.item-value {
    text-align: right;
    min-width: 100px;
}

.value-label {
    display: block;
    font-size: 0.75rem;
    color: #ADB5BD;
    margin-bottom: 2px;
}

.value-amount {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Footer & Totals */
.stack-footer {
    margin-top: 40px;
}

.total-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px dashed #E9ECEF;
    margin-bottom: 20px;
    font-weight: 700;
    color: #6C757D;
}

.total-amount {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #ADB5BD;
}

.final-price-box {
    background-color: #FFF5EB;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.final-price-text {
    color: #F58634;
    font-size: 2.5rem;
    font-weight: 800;
}

.discount-badge {
    background-color: #F58634;
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1rem;
}

/* New Button Style */
.btn-offer {
    display: block;
    width: 100%;
    background-color: #F58634;
    /* Fallback */
    background: linear-gradient(180deg, #F79C42 0%, #F58634 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(245, 134, 52, 0.2);
    transition: transform 0.2s;
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(245, 134, 52, 0.3);
}

/* Mobile Responsiveness for Offer Stack */
@media (max-width: 600px) {
    .stack-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-value {
        text-align: left;
        margin-top: 10px;
        width: 100%;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .final-price-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--white);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    text-align: center;
}

.testimonials-header {
    margin-bottom: var(--spacing-lg);
}

.testimonial-badge {
    background-color: #E9F7EF;
    color: #2ECC71;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.testimonials-section .section-title {
    color: #1A1A1A;
    font-weight: 800;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    border: 1px solid #F0F0F0;
    margin-top: 20px;
    /* Space for floating icon */
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    background-color: #2B7DE9;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    font-family: serif;
}

.stars {
    color: #2ECC71;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2B7DE9;
    margin-bottom: 15px;
    line-height: 1.4;
}

.testimonial-text {
    font-style: normal;
    color: #6C757D;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 800;
    font-size: 0.9rem;
    color: #1A1A1A;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2B7DE9;
    line-height: 1.2;
}

.green-text {
    color: #2ECC71;
}

.orange-text {
    color: #F58634;
}

.stat-label {
    color: #6C757D;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-row {
        gap: 30px;
        flex-direction: column;
    }
}

/* FINAL CTA SECTION */
.final-cta-section {
    text-align: center;
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.cta-badge {
    background-color: #FFF0F0;
    color: #FF5A5F;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.final-cta-section .section-title {
    color: #1A1A1A;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: var(--spacing-xs);
}

.final-cta-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.btn-final {
    display: inline-block;
    background-color: #F79C42;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(247, 156, 66, 0.3);
    transition: transform 0.2s;
    width: 100%;
    max-width: 500px;
    margin-bottom: var(--spacing-sm);
}

.btn-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(247, 156, 66, 0.4);
    background-color: #F58634;
}

.payment-info {
    font-size: 0.85rem;
    color: #8D99AE;
    margin-bottom: var(--spacing-xl);
}

/* Guarantee Card */
.guarantee-card {
    background-color: var(--white);
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.guarantee-icon-wrapper {
    flex-shrink: 0;
}

.shield-icon {
    font-size: 4rem;
    background-color: #2ECC71;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    /* Creating the shield look with border-radius if needed, or just circle */
}

.guarantee-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.guarantee-content p {
    font-size: 0.95rem;
    color: #6C757D;
    margin-bottom: 10px;
}

.green-highlight {
    color: #2ECC71;
}

.guarantee-bold {
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0;
}

/* Trust Grid */
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.trust-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1A1A1A;
}

.trust-item p {
    font-size: 0.85rem;
    color: #6C757D;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .trust-grid {
        flex-direction: column;
    }
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.faq-section .section-title {
    margin-bottom: var(--spacing-xs);
    color: #1A1A1A;
}

.faq-section .section-subtitle {
    text-align: center;
    color: #8D99AE;
    margin-bottom: 50px;
    font-size: 0.95rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    background-color: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #2B2D42;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item .arrow {
    color: #ADB5BD;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .arrow {
    transform: rotate(180deg);
    color: #2B7DE9;
}

.faq-content {
    padding: 0 25px 25px;
    border-top: 1px solid #F8F9FA;
    padding-top: 15px;
}

.faq-content p {
    margin-bottom: 0;
    color: #495057;
    font-size: 0.95rem;
}

/* FAQ Contact Box */
.faq-contact-box {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.faq-contact-box p {
    font-size: 0.9rem;
    color: #6C757D;
    margin-bottom: 10px;
}

.contact-email {
    color: #8D99AE;
    margin-top: 15px;
    display: block;
}

/* FOOTER */
.site-footer {
    background-color: var(--white);
    /* Changed to white */
    border-top: 1px solid #E9ECEF;
    color: #6C757D;
    padding: 60px 0 40px;
    font-size: 0.85rem;
    text-align: center;
}

.warning-icon-wrapper {
    margin-bottom: 15px;
}

.warning-icon {
    font-size: 2rem;
    opacity: 0.5;
}

.site-footer h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #343A40;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.disclaimer {
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
}

.copyright {
    color: #ADB5BD;
    margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .image-placeholder {
        order: -1;
        height: 300px;
    }

    .btn-lg {
        font-size: 1.2rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}