:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.4);
    --success: #10b981;
    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #8b5cf6;
    bottom: -150px;
    right: -100px;
}

/* Layout Utilities */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #fff;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    box-shadow: 0 10px 25px var(--accent-glow);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px var(--accent-glow);
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px var(--accent-glow); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px var(--accent-glow); }
    100% { transform: scale(1); box-shadow: 0 10px 25px var(--accent-glow); }
}

.pulse-anim {
    animation: pulse 3s infinite;
}

/* Lists */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list .icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.centered-list {
    align-items: center;
    margin: 30px 0;
}

/* 1. Hero Section */
.hero-section {
    padding: 40px 0 80px;
    position: relative;
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.21284314407739235.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.8) 50%, rgba(11, 15, 25, 0.4) 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    grid-template-areas: 
        "header video"
        "body video";
    align-items: center;
    gap: 0 40px;
    width: 100%;
}

.hero-header {
    grid-area: header;
    max-width: 580px;
}

.hero-body {
    grid-area: body;
    max-width: 580px;
}

.hero-video-wrapper {
    grid-area: video;
    width: 100%;
    max-width: 750px;
    justify-self: end;
}

.badge-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #FFC107;
    color: #FFC107;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.badge-alert .icon {
    width: 16px;
    height: 16px;
}

.headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.highlight-yellow {
    color: #FFC107;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.subheadline strong {
    color: #FFC107;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.feature-icon {
    color: #FFC107;
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-size: 0.75rem;
    line-height: 1.2;
    color: #cbd5e1;
}

.custom-video {
    position: relative;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    background: #000;
    margin: 0;
    width: 100%;
    aspect-ratio: 16/9;
}

.custom-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.vsl-overlay:hover .play-button-overlay {
    transform: scale(1.1);
    background: #ffcd38;
}

.play-button-overlay {
    width: 90px;
    height: 90px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.play-button-overlay svg {
    width: 45px;
    height: 45px;
    color: #000;
    margin-left: 6px;
}

.vsl-overlay p {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}

.hero-cta-wrapper {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yellow-btn {
    background: #FFC107;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.yellow-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    background: #ffcd38;
}

.lock-icon, .arrow-icon {
    width: 24px;
    height: 24px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    width: 100%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge .badge-icon {
    color: #FFC107;
    width: 24px;
    height: 24px;
}

.trust-badge span {
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "video"
            "body";
        gap: 30px;
    }
    
    .hero-header {
        text-align: center;
        margin: 0 auto;
    }

    .hero-body {
        text-align: center;
        margin: 0 auto;
    }

    .hero-video-wrapper {
        justify-self: center;
    }
    
    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .badge-alert {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .headline {
        font-size: 2rem;
    }
}

/* 2. Section 2 */
.section-two {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.7425555192884317.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.section-two::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 7, 13, 0.88); /* Escurece o fundo para destacar o texto */
    z-index: 1;
}

.section-two .container {
    position: relative;
    z-index: 2;
}

.section-two-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFC107;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-badge .dots {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #FFC107;
    position: relative;
}

.section-badge .dots::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 193, 7, 0.5);
}

.section-badge .dots:first-child::before { right: 12px; }
.section-badge .dots:last-child::before { left: 12px; }

.section-two-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-two-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.section-two-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.s2-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.s2-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-5px);
}

.s2-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: #FFC107;
}

.s2-icon svg {
    width: 100%;
    height: 100%;
}

.s2-text h3 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.s2-text p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

.s2-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s2-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.s2-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.s2-trust-badge .badge-icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.s2-trust-badge span {
    font-size: 0.9rem;
    color: #e2e8f0;
}

.dot-separator {
    color: #FFC107;
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .section-two-grid { grid-template-columns: repeat(2, 1fr); }
    .section-two-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .section-two-grid { grid-template-columns: 1fr; }
    .s2-trust-badges { flex-direction: column; gap: 10px; }
    .dot-separator { display: none; }
}

/* 3. Section 3 */
.section-three {
    position: relative;
    padding: 80px 0;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.6874740530571878.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.section-three::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 7, 13, 0.88); /* Dark overlay */
    z-index: 1;
}

.section-three .container {
    position: relative;
    z-index: 2;
}

.s3-header {
    text-align: center;
    margin-bottom: 50px;
}

.s3-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #FFC107;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: rgba(255, 193, 7, 0.05);
}

.s3-badge svg {
    width: 16px;
    height: 16px;
}

.s3-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.s3-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.s3-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* S3 List items */
.s3-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s3-list-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.s3-list-item:hover {
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(15, 23, 42, 0.7);
    transform: translateX(5px);
}

.s3-list-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    color: #FFC107;
}

.s3-list-icon svg {
    width: 100%;
    height: 100%;
}

.s3-list-text h3 {
    font-size: 1.05rem;
    color: #FFC107;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.s3-list-text p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* S3 Right Panel */
.s3-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.3);
    padding: 30px;
    border-radius: 12px;
}

.panel-title {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.software-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-bottom: 30px;
}

.software-logos span {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 1px;
}

.s3-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.panel-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.panel-card:hover .panel-img {
    transform: scale(1.05);
}

/* Images from user for sketch areas */
.panel-bg-1 { background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.8746380939975462.png'); }
.panel-bg-2 { background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.310243656392331.png'); }
.panel-bg-3 { background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.5247189878524502.png'); }
.panel-bg-4 { background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.6984675820412064.png'); }
.panel-bg-5 { background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.05079953194388043.png'); }
.panel-bg-6 { background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.2289366112169512.png'); }

.panel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    text-align: center;
}

.panel-card-overlay span {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

/* S3 Footer */
.s3-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.s3-cta-btn {
    margin-bottom: 30px;
}

.s3-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.s3-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.s3-badge-item svg {
    width: 30px;
    height: 30px;
    color: #FFC107;
    flex-shrink: 0;
}

.s3-badge-item div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.s3-badge-item strong {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
}

.s3-badge-item span {
    font-size: 0.75rem;
    color: #94a3b8;
}

@media (max-width: 1200px) {
    .s3-layout { grid-template-columns: 1fr; }
    .s3-panel-grid { grid-template-columns: repeat(2, 1fr); }
    .s3-badges-row { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 768px) {
    .s3-title { font-size: 2.2rem; }
    .s3-panel-grid { grid-template-columns: 1fr; }
    .s3-badges-row { grid-template-columns: 1fr; }
}

/* 4. Oferta Combo (Bonus + Preço + Steps) */
.offer-combo-section {
    position: relative;
    padding: 80px 0;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.21284314407739235.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}

.offer-combo-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 7, 13, 0.90);
    z-index: 1;
}

.offer-combo-section .container {
    position: relative;
    z-index: 2;
}

.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.line-left, .line-right {
    height: 1px;
    background: rgba(255, 193, 7, 0.4);
    flex: 1;
    max-width: 150px;
    position: relative;
}
.line-left::after {
    content:''; position:absolute; right: -5px; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: #FFC107;
}
.line-right::before {
    content:''; position:absolute; left: -5px; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: #FFC107;
}

.title-with-lines h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

.title-with-lines.small-lines h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.bonus-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bonus-new-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-new-card:hover {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    color: #FFC107;
    margin: 0 auto 15px;
}

.bonus-icon svg { width: 100%; height: 100%; }

.bonus-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFC107;
    margin-bottom: 10px;
}

.bonus-name {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.3;
}

.bonus-total-text {
    text-align: center;
    font-size: 1.4rem;
    color: #cbd5e1;
    margin-bottom: 50px;
}

.bonus-total-text strong {
    color: #fff;
    text-decoration: line-through;
    margin: 0 10px;
}

.gratis-green {
    color: #22c55e;
    font-weight: 800;
}

/* Main Offer Card */
.main-offer-box {
    max-width: 900px;
    margin: 0 auto 60px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.15);
    backdrop-filter: blur(10px);
}

.offer-box-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.offer-price-col {
    flex: 1;
    text-align: center;
}

.offer-price-col h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-big {
    font-size: 4.5rem;
    font-weight: 900;
    color: #FFC107;
    line-height: 1;
    margin-bottom: 5px;
}

.price-small {
    color: #22c55e;
    font-weight: 600;
    font-size: 1rem;
}

.offer-divider {
    width: 1px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
}

.offer-features-col {
    flex: 1;
}

.offer-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.offer-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.offer-check-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.offer-cta-container {
    text-align: center;
    margin-top: 30px;
}

.offer-btn {
    font-size: 1.5rem;
    padding: 22px 50px;
}

/* Steps */
.offer-steps {
    margin-top: 60px;
}

.steps-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-new-item {
    text-align: center;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFC107;
    color: #FFC107;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon {
    width: 40px;
    height: 40px;
    color: #FFC107;
    margin: 0 auto 15px;
}

.step-icon svg { width: 100%; height: 100%; }

.step-new-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .bonus-new-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-box-layout { flex-direction: column; gap: 30px; }
    .offer-divider { width: 100%; height: 1px; }
    .offer-check-list { grid-template-columns: 1fr; }
    .steps-new-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 576px) {
    .bonus-new-grid { grid-template-columns: 1fr; }
    .steps-new-grid { grid-template-columns: 1fr; }
    .title-with-lines h2 { font-size: 1.8rem; }
    .price-big { font-size: 3.5rem; }
    .line-left, .line-right { display: none; }
}

/* 7. FAQ */
.faq-section {
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover, .faq-item.active {
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(15, 23, 42, 0.7);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: var(--font-main);
}

.faq-question:hover {
    color: #FFC107;
}

.faq-item.active .faq-question {
    color: #FFC107;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    color: #cbd5e1;
    padding-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 10px;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #FFC107;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
}

/* Media Queries */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .module-card-full {
        grid-column: span 1;
    }
    
    .glass-card {
        padding: 30px 20px;
    }
}
