:root {
    --bg-color: #050510;
    --text-color: #e0e0e0;
    --accent-primary: #D90429;
    --accent-secondary: #EF233C;
    --accent-glow: rgba(217, 4, 41, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- Background Effects --- */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite alternate;
}

.bg-top-right {
    top: -200px;
    right: -200px;
}

.bg-bottom-left {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(239, 35, 60, 0.2) 0%, transparent 70%);
    animation-delay: -5s;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-primary), #8d001e);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px var(--accent-glow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px var(--accent-glow);
}



/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    padding: 20px;
    border-radius: 20px;
}

.floating-logo {
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--glass-border);
    margin-bottom: 24px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.subheadline {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-sub {
    font-size: 0.9rem;
    color: #888;
    margin-top: 12px;
}

/* --- Context Section --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-block h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-box {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(90deg, rgba(217, 4, 41, 0.1), transparent);
    border-left: 4px solid var(--accent-primary);
    border-radius: 4px;
}

.visual-block {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-speed);
}

.stat-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-secondary);
}

.stat-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-secondary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* --- Target Audience / Cards --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* --- Learn Section --- */
.learn-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.learn-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.learn-item:hover {
    border-color: var(--accent-secondary);
    background: rgba(239, 35, 60, 0.05);
}

.check-icon {
    color: var(--accent-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- Modules --- */
.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
}

.module-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-primary);
}

.module-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-primary);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.bonus-section {
    margin-top: 80px;
}

.bonus-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent-secondary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: rgba(239, 35, 60, 0.05);
    border: 1px solid rgba(239, 35, 60, 0.2);
    padding: 25px;
    border-radius: 12px;
}

.bonus-card h4 {
    color: var(--accent-secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* --- Results & Difference --- */
.results-list ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 60px;
}

.results-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.difference-box {
    text-align: center;
    background: linear-gradient(45deg, #2b0505, #1a0505);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

/* --- Pricing --- */
.price-card {
    background: rgba(255, 255, 255, 0.03);
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 50px rgba(217, 4, 41, 0.2);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
}

.price-header {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
    display: block;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.price-installments {
    color: #888;
    margin-bottom: 30px;
}

.price-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.large-btn {
    width: 100%;
    font-size: 1.4rem;
}

.guarantee-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.8;
}

.shield-icon {
    font-size: 2rem;
}

/* --- Footer --- */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
    color: #666;
    font-size: 0.9rem;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--accent-secondary);
}

/* --- Animations & Responsive --- */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(217, 4, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll Animations */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    transform: scale(0.9);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.testimonial-card {
    min-width: 280px;
    width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* More subtle initially */
    padding: 25px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(20px);
    user-select: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-secondary);
    background: linear-gradient(180deg, rgba(239, 35, 60, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 40px rgba(217, 4, 41, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    /* Softer border */
    box-shadow: none;
}

.testimonial-info h4 {
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-heading);
    margin-bottom: 0;
    font-weight: 600;
}

.stars {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #FFD700;
    /* Gold for stars */
    opacity: 0.9;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}





/* --- Testimonials wrapper and Navigation --- */
.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: absolute;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

@media (max-width: 900px) {
    .nav-btn {
        display: none;
    }
}

/* --- Author Section --- */
.author-section {
    background: linear-gradient(to bottom, var(--bg-color), #0a0505);
}

.author-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-primary);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

.author-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
    transition: 0.5s;
}

.author-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.author-content h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.author-content p {
    margin-bottom: 15px;
    color: #ccc;
}

.author-list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.author-list li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--accent-secondary) !important;
    font-weight: 500;
    border-left: 3px solid var(--accent-secondary);
    padding-left: 15px;
    margin: 20px 0 !important;
}

.author-details {
    margin-top: 30px;
}

.author-details h3 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: #fff;
}

.check-list-small {
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list-small li {
    font-size: 0.95rem;
    color: #bbb;
}

.why-created-box {
    margin-top: 30px;
    background: rgba(239, 35, 60, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(239, 35, 60, 0.15);
}

.why-created-box h3 {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-created-box p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.why-created-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .learn-list {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 140px;
    }
}

/* --- Updates --- */
.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
    font-family: var(--font-heading);
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--bg-color);
    position: relative;
    padding-bottom: 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-secondary);
}

.faq-item.faq-open {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-heading);
}

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.faq-open .faq-answer {
    padding-bottom: 25px;
}

.limited-time-badge {
    display: inline-block;
    background: rgba(239, 35, 60, 0.1);
    color: var(--accent-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 35, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-btn-container {
    text-align: center;
    margin-top: 50px;
}