:root {
    --bg-dark: #0F0F0F;
    --bg-card: #1A1A1A;
    --bg-lighter: #252525;

    --text-main: #F0F0F0;
    --text-muted: #A0A0A0;

    --accent: #FF8C00;
    /* Deep Orange */
    --accent-glow: rgba(255, 140, 0, 0.4);
    --accent-hover: #E67E00;

    --success: #00E676;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius: 16px;
    --sidebar-width: 300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: white;
    font-weight: 700;
    line-height: 1.1;
}

.text-accent {
    color: var(--accent);
}

.text-gradient {
    background: linear-gradient(90deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Components */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 60px 0;
}

.section-darker {
    background-color: #080808;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px var(--accent-glow);
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.badge {
    background: rgba(255, 140, 0, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--accent);
}

/* Header */
.header {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Hero */
.hero {
    padding: 10px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.glow-1 {
    top: -200px;
    left: -100px;
}

.glow-2 {
    bottom: -200px;
    right: -100px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}



.image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transform: rotate(2deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-border {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Grid Layouts - Mobile First Responsive */
.grid-columns {
    display: grid;
    gap: 30px;
    /* Increased gap slightly */
    margin-top: 50px;
    /* Mobile: 1 column */
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-columns {
        /* Desktop/Notebook: Force 2 columns (2x2 layout for 4 items) */
        grid-template-columns: repeat(2, 1fr);
        /* Limit width so they don't stretch indefinitely, centered */
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    /* User request: Equal dimensions and centered */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Feature Section Redesign (Cards) */
.feature-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .feature-grid {
        /* Switch to Flexbox to center the last uneven row */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .feature-grid .feature-card {
        /* Calculate width for 3 columns: (100% - 2*gap) / 3 */
        width: calc((100% - 80px) / 3);
        /* Ensure all cards are EXACTLY equal height across rows */
        height: 860px;
    }
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-content-box {
    padding: 30px 50px;
    /* Aggressive side spacing as requested */
    flex: 1;
}

.feature-content-box h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    /* Big space from image */
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    /* Reset to flex-start to control vertical pos with margin */
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    /* Ensure consistent line height */
}

.check-list i {
    color: var(--success);
    /* Push icon down to align with text center */
    margin-top: 6px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    background: #151515;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.benefit-item h4 {
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #888;
}

/* Bonuses */
.bonuses-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    justify-items: center;
}

@media (min-width: 768px) {
    .bonuses-carousel {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    /* First 3 cards span 2 columns each (2+2+2 = 6 columns) */
    .bonuses-carousel .bonus-card-new:nth-child(1),
    .bonuses-carousel .bonus-card-new:nth-child(2),
    .bonuses-carousel .bonus-card-new:nth-child(3) {
        grid-column: span 2;
    }

    /* Last 2 cards: centered with offset */
    .bonuses-carousel .bonus-card-new:nth-child(4) {
        grid-column: 2 / 4;
    }

    .bonuses-carousel .bonus-card-new:nth-child(5) {
        grid-column: 4 / 6;
    }
}

.bonus-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.bonus-tag {
    background: var(--success);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.bonus-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.bonus-card p {
    font-size: 0.8rem;
    color: #777;
}

/* New Bonus Cards */
.bonus-card-new {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s;
    min-width: 280px;
    width: 100%;
}

.bonus-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.bonus-image-placeholder {
    width: 100%;
    height: 380px;
    background: #DADADE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.bonus-image-placeholder img {
    width: auto;
    height: 95%;
    max-width: 95%;
    object-fit: contain;
}

.bonus-image-placeholder.bg-sala-llena {
    background: #D6D5DA;
}

.bonus-image-placeholder.bg-ia-musical {
    background: #D4D2D7;
}

.bonus-content {
    padding: 25px;
}

.bonus-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.bonus-price-label {
    font-size: 1.02rem;
    color: #999;
    font-weight: 500;
}

.bonus-old-price {
    position: relative;
    font-size: 1.32rem;
    color: #DC2626;
    font-weight: 700;
    display: inline-block;
}

.price-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.price-x::before,
.price-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #DC2626;
    transform-origin: center;
}

.price-x::before {
    transform: translateY(-50%) rotate(20deg) scaleX(0);
    animation: drawLineLeft 3.6s ease-out infinite;
}

.price-x::after {
    transform: translateY(-50%) rotate(-20deg) scaleX(0);
    animation: drawLineRight 3.6s ease-out infinite;
}

.bonus-free {
    color: #00E676;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    animation: fadeInGlow 2s ease-in-out infinite;
}

.bonus-card-new h4 {
    font-size: 1.44rem;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.bonus-card-new p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.offer-card {
    background: #fff;
    color: #111;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-header h3 {
    color: #111;
    margin-bottom: 5px;
}

.warning-text {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-container {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.current-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.payment-type {
    color: var(--success);
    font-weight: 800;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.offer-card {
    background: #151515;
    /* Darker card background to match theme */
    color: #fff;
    max-width: 550px;
    /* Slightly wider */
    margin: 0 auto;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.offer-header h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.warning-text {
    color: #FFD700;
    /* Yellow warning */
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Price Area Styles */
.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.price-strike-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.price-strike-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #555;
}

.red-x-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.red-x-overlay::before,
.red-x-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 4px;
    /* Thicker X */
    background: #DC2626;
    border-radius: 2px;
}

.red-x-overlay::before {
    transform: rotate(15deg);
}

.red-x-overlay::after {
    transform: rotate(-15deg);
}

.final-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.small-label {
    font-size: 1rem;
    color: #AAA;
    font-weight: 600;
    margin-bottom: -5px;
    letter-spacing: 1px;
}

.big-price {
    font-size: 5rem;
    font-weight: 900;
    color: #00E676;
    /* Bright Green */
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.payment-note {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* List Styles */
.offer-details-list {
    text-align: left;
    margin-top: 30px;
    font-size: 1.1rem;
    margin-top: 5px;
    /* Visual alignment with text */
}

.detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

.detail-item p strong {
    color: #fff;
    font-weight: 700;
}

/* Bonus specific styling */
.bonus-item {
    background: rgba(255, 255, 255, 0.03);
    /* Slight highlight background */
}

.bonus-item i {
    color: #3b82f6;
    /* Blue for bonuses explicitly to match typical differentiation */
}

.guarantee-badge {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Currency Notice Styling */
.currency-notice {
    margin-top: 25px;
    background: rgba(0, 230, 118, 0.08);
    /* Very subtle green background */
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.globe-placeholder {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.globe-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.currency-notice p {
    font-size: 0.85rem;
    color: #d1fae5;
    /* Light green-white text */
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeInGlow {
    0% {
        opacity: 0.6;
        color: rgba(0, 230, 118, 0.6);
    }

    50% {
        opacity: 1;
        color: rgba(0, 230, 118, 1);
    }

    100% {
        opacity: 0.6;
        color: rgba(0, 230, 118, 0.6);
    }
}

@keyframes drawLineLeft {
    0% {
        transform: translateY(-50%) rotate(20deg) scaleX(0);
    }

    27.78% {
        transform: translateY(-50%) rotate(20deg) scaleX(1);
    }

    55.56% {
        transform: translateY(-50%) rotate(20deg) scaleX(1);
    }

    55.57%,
    100% {
        transform: translateY(-50%) rotate(20deg) scaleX(0);
    }
}

@keyframes drawLineRight {

    0%,
    27.78% {
        transform: translateY(-50%) rotate(-20deg) scaleX(0);
    }

    55.56% {
        transform: translateY(-50%) rotate(-20deg) scaleX(1);
    }

    55.57%,
    100% {
        transform: translateY(-50%) rotate(-20deg) scaleX(0);
    }
}

/* Utility for pulsing border/glow */
.pulse-border {
    animation: pulse 2s infinite;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .check-list li {
        justify-content: center;
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Mobile optimizations for Offer Card & Currency Notice */
    .offer-card {
        padding: 30px 20px;
    }

    .currency-notice {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px;
        text-align: left;
    }

    .globe-placeholder {
        width: 50px;
        height: 50px;
    }

    .currency-notice p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}


/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question span {
    padding-right: 15px;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease-out;
}

.faq-item.open .faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   LIST STYLES (Restored)
   ========================================= */
.offer-details-list {
    text-align: left;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item i {
    color: #FF8C00;
    /* Deep Orange for arrows */
    font-size: 1rem;
    margin-top: 5px;
    min-width: 20px;
}

.detail-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
    text-transform: uppercase;
}

.detail-item p strong {
    color: #fff;
    font-weight: 700;
}

/* Bonus specific styling */
.bonus-item {
    background: rgba(255, 255, 255, 0.05);
}

.bonus-item i {
    color: #3b82f6 !important;
    /* Force Blue for bonuses */
}

.guarantee-badge {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}



.globe-placeholder {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.globe-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.currency-notice p {
    font-size: 0.85rem;
    color: #d1fae5;
    /* Light green-white text */
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeInGlow {
    0% {
        opacity: 0.6;
        color: rgba(0, 230, 118, 0.6);
    }

    50% {
        opacity: 1;
        color: rgba(0, 230, 118, 1);
    }

    100% {
        opacity: 0.6;
        color: rgba(0, 230, 118, 0.6);
    }
}

@keyframes drawLineLeft {
    0% {
        transform: translateY(-50%) rotate(20deg) scaleX(0);
    }

    27.78% {
        transform: translateY(-50%) rotate(20deg) scaleX(1);
    }

    55.56% {
        transform: translateY(-50%) rotate(20deg) scaleX(1);
    }

    55.57%,
    100% {
        transform: translateY(-50%) rotate(20deg) scaleX(0);
    }
}

@keyframes drawLineRight {

    0%,
    27.78% {
        transform: translateY(-50%) rotate(-20deg) scaleX(0);
    }

    55.56% {
        transform: translateY(-50%) rotate(-20deg) scaleX(1);
    }

    55.57%,
    100% {
        transform: translateY(-50%) rotate(-20deg) scaleX(0);
    }
}

/* Utility for pulsing border/glow */
.pulse-border {
    animation: pulse 2s infinite;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .check-list li {
        justify-content: center;
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .currency-notice p {
        font-size: 0.8rem;
        /* Slightly smaller text to fit better */
        line-height: 1.35;
    }
}


/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    /* Dark card background */
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question span {
    padding-right: 15px;
    /* Prevent text touching icon */
    flex: 1;
    /* Allow text to take available space */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease-out;
    /* Smoother easing */
}

/* Open state handled by JS max-height injection */
.faq-item.open .faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;

    /* Padding moved here for fixed height calculation */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
        }
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    @keyframes fadeInGlow {
        0% {
            opacity: 0.6;
            color: rgba(0, 230, 118, 0.6);
        }

        50% {
            opacity: 1;
            color: rgba(0, 230, 118, 1);
        }

        100% {
            opacity: 0.6;
            color: rgba(0, 230, 118, 0.6);
        }
    }

    @keyframes drawLineLeft {
        0% {
            transform: translateY(-50%) rotate(20deg) scaleX(0);
        }

        27.78% {
            transform: translateY(-50%) rotate(20deg) scaleX(1);
        }

        55.56% {
            transform: translateY(-50%) rotate(20deg) scaleX(1);
        }

        55.57%,
        100% {
            transform: translateY(-50%) rotate(20deg) scaleX(0);
        }
    }

    @keyframes drawLineRight {

        0%,
        27.78% {
            transform: translateY(-50%) rotate(-20deg) scaleX(0);
        }

        55.56% {
            transform: translateY(-50%) rotate(-20deg) scaleX(1);
        }

        55.57%,
        100% {
            transform: translateY(-50%) rotate(-20deg) scaleX(0);
        }
    }

    /* Utility for pulsing border/glow */
    .pulse-border {
        animation: pulse 2s infinite;
    }

    /* Media Queries for Mobile */
    @media (max-width: 768px) {
        .container {
            padding: 0 15px;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-row,
        .feature-row.reverse {
            flex-direction: column;
            text-align: center;
        }

        .check-list li {
            justify-content: center;
            text-align: left;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        /* Slightly smaller text to fit better */
        line-height: 1.35;
    }
}


/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    /* Dark card background */
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question span {
    padding-right: 15px;
    /* Prevent text touching icon */
    flex: 1;
    /* Allow text to take available space */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease-out;
    /* Smoother easing */
}

/* Open state handled by JS max-height injection */
.faq-item.open .faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;
    /* Padding moved here for fixed height calculation */
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   RESTORED LIST STYLES (Clean)
   ========================================= */
/* List Styles */
.offer-details-list {
    text-align: left;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item i {
    color: #FF8C00;
    /* Deep Orange for arrows */
    font-size: 1rem;
    margin-top: 5px;
    min-width: 20px;
}

.detail-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
    text-transform: uppercase;
}

.detail-item p strong {
    color: #fff;
    font-weight: 700;
}

/* Bonus specific styling */
.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    /* Slight highlight */
}

.bonus-item i {
    color: #3b82f6 !important;
    /* Force Blue for bonuses */
}

.guarantee-badge {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}