:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #f77f00;
    --accent-hover: #fcbf49;
    --text-dark: #1b263b;
    --text-light: #e0e1dd;
    --bg-light: #ffffff;
    --bg-offwhite: #f8f9fa;
    --bg-gray: #f1f3f5;
    --success: #2b9348;
    --success-light: #d8f3dc;
    --error: #d90429;
    --error-light: #ffccd5;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

.mt-20 {
    margin-top: 20px;
}

.bg-dark {
    background-color: var(--primary-color);
    color: white;
}

.bg-gray {
    background-color: var(--bg-gray);
}

/* Buttons Utilities */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--success);
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    /* Finexus Pill Shape */
    box-shadow: 0 8px 15px rgba(43, 147, 72, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #1f6e35;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(43, 147, 72, 0.4);
}

.secondary-cta {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    color: white;
}

.pulse {
    animation: colorPulse 2s infinite;
}

@keyframes colorPulse {
    0% {
        background-color: var(--success);
        box-shadow: 0 0 0 0 rgba(43, 147, 72, 0.6);
    }

    50% {
        background-color: #3fe962;
        /* Bright vibrant green */
        box-shadow: 0 0 0 15px rgba(43, 147, 72, 0);
    }

    100% {
        background-color: var(--success);
        box-shadow: 0 0 0 0 rgba(43, 147, 72, 0);
    }
}

/* Header & Alerts */
.header {
    background-color: var(--error);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper .main-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.alert-banner {
    background-color: var(--error-light);
    color: var(--error);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .alert-banner {
        font-size: 0.75rem;
    }
}

/* Section Header Base */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pre-title {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.bg-dark .section-header h2 {
    color: white;
}

.section-header h2 span {
    color: var(--accent-color);
}

.section-header p {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-dark .section-header p {
    color: var(--text-light);
}

.badge {
    display: inline-block;
    background-color: var(--success-light);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.red-badge {
    background-color: var(--error-light);
    color: var(--error);
}


/* 1. Hero Section */
.hero {
    background: linear-gradient(180deg, var(--bg-offwhite) 0%, var(--bg-light) 100%);
    padding: 60px 0 80px;
    text-align: center;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.main-headline span {
    color: var(--accent-color);
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.vsl-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-color);
    position: relative;
    background: #000;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vsl-wrapper.is-playing {
    max-width: 450px;
    /* Vertical aspect */
}


.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 initially */
    transition: padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vsl-wrapper.is-playing .video-container {
    padding-top: 177.77%;
    /* 9:16 vertical */
}


.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.vsl-wrapper.is-playing video {
    display: block;
}

.vsl-wrapper.is-playing #vsl-poster,
.vsl-wrapper.is-playing .video-overlay {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s ease;
}


.video-overlay:hover+img {
    opacity: 0.5;
}

.play-button {
    font-size: 4rem;
    color: var(--accent-color);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 16px;
    transition: transform 0.2s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

.video-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.trust-indicators-lite {
    display: none;
}

.authority-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 30px auto 0;
    max-width: 420px;
    background: #f4f6f8;
    padding: 24px 30px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
}

.auth-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
}

.auth-item i {
    color: var(--success);
    font-size: 1.2rem;
}


/* 2. Histórias Reais (Continuous Carousel & Finexus Title) */
.social-proof-slider {
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.real-stories-header {
    text-align: center;
    margin-bottom: 50px;
}

.real-stories-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
}

.real-stories-header h2 span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

/* Sublinhado estilo Finexus no título */
.real-stories-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.continuous-carousel {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding-bottom: 20px;
}

.continuous-track {
    display: inline-flex;
    gap: 20px;
    animation: scrollContinuous 20s linear infinite;
    padding: 0 20px;
    cursor: grab;
}

.continuous-track:hover {
    animation-play-state: paused;
}

.continuous-track.dragging {
    animation-play-state: paused;
    cursor: grabbing;
}

.continuous-track img {
    height: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: contain;
    flex-shrink: 0;
    pointer-events: none;
    /* Prevents image dragging ghost */
}

@keyframes scrollContinuous {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}


/* 3. Dor Section */
.pain-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pain-card {
    background: var(--bg-offwhite);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border-top: 4px solid var(--error);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 2.5rem;
    color: var(--error);
    margin-bottom: 20px;
}

.pain-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
}


/* 4. Método */
.method-section {
    padding: 80px 0;
}

.solution-box {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.solution-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-hover);
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: var(--success);
    font-size: 1.2rem;
}

.solution-image {
    flex: 1;
    min-height: 100%;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 5. Deliverables Section (Vertical Cards) */
.deliverables-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.del-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.del-card {
    background: var(--bg-offwhite);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border-top: 4px solid var(--success);
    transition: transform 0.3s ease;
}

.del-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.del-icon {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 20px;
}

.del-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.del-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
}


/* 7. Segredo Revelado Audience Section */
.target-audience-section {
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.audience-box {
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: white;
}

.is-for {
    border-top: 5px solid var(--success);
}

.not-for {
    border-top: 5px solid var(--error);
}

.audience-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.audience-title i {
    font-size: 2rem;
}

.is-for .audience-title i {
    color: var(--success);
}

.not-for .audience-title i {
    color: var(--error);
}

.audience-title h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.is-for .audience-list i {
    color: var(--success);
    margin-top: 4px;
}

.not-for .audience-list i {
    color: var(--error);
    margin-top: 4px;
}


/* 8. VS Section */
.vs-section {
    padding: 80px 0;
}

.vs-table-container {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.vs-column {
    flex: 1;
    padding: 40px;
}

.bad-column {
    background: var(--error-light);
}

.good-column {
    background: var(--success-light);
}

.vs-header {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bad-header {
    color: var(--error);
}

.good-header {
    color: var(--success);
}

.vs-list {
    list-style: none;
}

.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 500;
}

.bad-column .vs-list i {
    color: var(--error);
    margin-top: 3px;
    font-size: 1.2rem;
}

.good-column .vs-list i {
    color: var(--success);
    margin-top: 3px;
    font-size: 1.2rem;
}

.vs-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* 9. Como Funciona */
.how-it-works-section {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}


/* 10. Bónus */
.bonus-section {
    padding: 80px 0;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bonus-item {
    display: flex;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
}

.bonus-img {
    width: 40%;
    object-fit: cover;
}

.bonus-text {
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    align-self: flex-start;
}

.bonus-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.bonus-text p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.value {
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
}

.value s {
    color: #adb5bd;
    font-weight: 500;
    margin-left: 5px;
    margin-right: 5px;
}


/* 11. Oferta Section (Estilo Finexus, Mas Manter Identidade visual) */
.offer-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
}

.offer-section .section-header h2 {
    color: var(--primary-color);
}

.offer-section .section-header h2 span {
    color: var(--accent-color);
}

.pricing-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    /* Using dark text like Finexus */
    margin-bottom: 5px;
}

.pricing-header p {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.pricing-box {
    background: #f9fafb;
    border-radius: var(--radius-md);
    padding: 25px 20px;
    margin-bottom: 25px;
}

.old-price {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    align-self: flex-end;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 0.9;
    letter-spacing: -1px;
}

.period {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: left;
    line-height: 1.2;
    margin-left: 5px;
}

.price-note {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-value.strikethrough {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.85rem;
    white-space: nowrap;
}

.feature-value.highlight {
    color: var(--success);
    font-weight: 800;
    font-size: 0.85rem;
    white-space: nowrap;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.4rem;
}


/* 12. Histórias de Sucesso */
.success-stories-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.bg-blue {
    background: #3a86ff;
}

.bg-orange {
    background: #ffbe0b;
}

.bg-green {
    background: #38b000;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.user-info span {
    font-size: 0.8rem;
    color: #6c757d;
}

.stars {
    color: #facc15;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.t-text {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.t-date {
    font-size: 0.75rem;
    color: #adb5bd;
    text-align: right;
    margin: 0;
}


/* 13. Guarantee Section */
.guarantee-section {
    padding: 60px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(43, 147, 72, 0.05);
    border: 2px dashed var(--success);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--success);
}

.guarantee-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.guarantee-text p {
    font-size: 1.05rem;
    color: var(--text-dark);
}


/* 14. FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}


/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}



.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 800px;
    margin: 20px auto 0;
}


/* Responisveness */
@media (max-width: 1024px) {
    .vs-table-container {
        flex-direction: column;
    }

    .vs-divider {
        display: none;
    }

    .vs-column {
        padding: 30px;
    }
}

@media (max-width: 900px) {

    .pain-grid,
    .mockup-grid,
    .audience-grid,
    .steps-grid,
    .testimonials-grid,
    .del-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-box {
        flex-direction: column;
    }

    .solution-content {
        padding: 30px;
    }

    .bonus-item,
    .bonus-item.reverse {
        flex-direction: column;
    }

    .bonus-img,
    .bonus-text {
        width: 100%;
    }

    .bonus-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        font-size: 1.1rem;
        padding: 18px 20px;
        box-sizing: border-box;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .sp-grid {
        flex-direction: column;
        gap: 15px;
    }
}