/* Importing premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #d32f2f;
    --primary-red-hover: #b71c1c;
    --bg-dark-blue: #0f172a;
    --bg-dark-indigo: #1e1b4b;
    --text-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* TOP RED HEADER BANNER */
.top-banner {
    background-color: var(--primary-red);
    color: var(--text-white);
    text-align: center;
    padding: 15px 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark-blue) 0%, var(--bg-dark-indigo) 100%);
    color: var(--text-white);
    padding: 80px 5% 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.6;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Left - Image Cover */
.hero-left {
    width: 100%;
}

.hero-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.comparison-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 3 / 4;
    transition: all 0.3s ease;
}

.comparison-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
}

.comparison-card:hover img {
    transform: scale(1.03);
}

.card-tag {
    position: absolute;
    bottom: 15px;
    left: 12px;
    right: 12px;
    background-color: var(--primary-red);
    color: white;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 30px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Right - Copywriting */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
}

.hero-heading span {
    color: #fca5a5;
}

.hero-subheading {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: #e2e8f0;
    border-left: 4px solid var(--primary-red);
    padding-left: 15px;
    margin: 10px 0;
}

.hero-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.hero-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #f1f5f9;
}

.info-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: #fca5a5;
    flex-shrink: 0;
}

/* Red CTA Capsule Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

.cta-button:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(211, 47, 47, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* SECTION 2 - CONTENT AND GRID */
.content-section {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Content Left - Text & List */
.content-left {
    display: flex;
    flex-direction: column;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    text-transform: uppercase;
}

.section-title-highlight {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.content-sublabel {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Syllabus / Step list */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-red);
}

.step-item:hover {
    transform: translateX(5px);
    background-color: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.2;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
}

/* Content Right - Image Gallery Layout */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 15px;
    width: 100%;
}

.gallery-left-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gallery-img-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-horiz {
    aspect-ratio: 4 / 3;
}

.img-vert {
    height: 100%;
    min-height: 380px;
    aspect-ratio: 2 / 3;
}

/* BIOGRAPHY SECTION (QUÂN DC STORY) */
.bio-section {
    background-color: var(--bg-light);
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.bio-container {
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bio-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.bio-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.bio-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #e2e8f0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--primary-red);
    border: 4px solid white;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

.left-item {
    left: 0;
}

.right-item {
    left: 50%;
}

.right-item::after {
    left: -8px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--bg-light);
    position: relative;
    border-radius: 12px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-red);
    margin-bottom: 8px;
}

/* REGISTRATION FORM SECTION */
.form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--bg-dark-blue) 0%, var(--bg-dark-indigo) 100%);
    color: var(--text-white);
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.form-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.form-sub {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 8px;
}

.input-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

textarea.form-input {
    border-radius: 15px;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.submit-btn {
    margin-top: 15px;
}

/* FLOAT SCROLL TO TOP */
.float-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
}

.float-btn:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.float-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* FOOTER */
.footer-section {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 40px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
    margin-bottom: 15px;
}

/* Timeline Images */
.timeline-content img {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-content img:hover {
    transform: scale(1.02);
}

.timeline-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.timeline-img-grid img {
    margin-top: 0;
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.12);
    transform: translateY(-10px);
}

.pricing-card.featured::before {
    content: 'ƯU ĐÃI LỚN NHẤT / KHUYÊN DÙNG';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: white;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 30px;
    letter-spacing: 1px;
    white-space: nowrap;
    border: 2px solid white;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
    line-height: 1.2;
}

.pricing-price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-value-strike {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.4;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li.bonus {
    font-weight: 700;
    color: #b91c1c;
}

.pricing-features li.bonus svg {
    color: var(--primary-red);
}

.pricing-features li.bonus span {
    color: #64748b;
    font-weight: 400;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0 auto;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: translateY(0);
    }
    
    .hero-comparison {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-subheading {
        border-left: none;
        border-top: 2px solid var(--primary-red);
        border-bottom: 2px solid var(--primary-red);
        padding: 10px 0;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-right {
        order: -1; /* Place image grid above text on tablet/mobile */
        max-width: 600px;
        margin: 0 auto;
    }
    
    .bio-timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 23px;
        right: auto;
    }
    
    .right-item {
        left: 0;
    }
}

@media (max-width: 576px) {
    .top-banner {
        font-size: 1.1rem;
        padding: 12px 5px;
    }
    
    .hero-comparison {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-heading {
        font-size: 1.7rem;
    }
    
    .section-label {
        font-size: 1.8rem;
    }
    
    .section-title-highlight {
        font-size: 2.2rem;
    }
    
    .bio-container {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 40px 20px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   UPDATED LONG-FORM SALES SECTIONS STYLING
   ========================================================================== */

/* PAIN POINTS SECTION */
.pain-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0b0f19 0%, #111827 100%);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pain-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-label-light {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.section-title-highlight-light {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    display: block;
}

.section-desc-light {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    text-align: left;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
}

.pain-icon {
    width: 50px;
    height: 50px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pain-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-red);
}

.pain-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.pain-card-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* SOLUTION SECTION */
.solution-section {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
}

.solution-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

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

.solution-card {
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background: white;
    border-color: #cbd5e1;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(211, 47, 47, 0.15);
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-num {
    color: var(--primary-red);
}

.solution-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.solution-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SCARCITY WARNING BOX */
.scarcity-warning-box {
    background: rgba(211, 47, 47, 0.04);
    border: 2px dashed var(--primary-red);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 20px auto 40px auto;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.05);
}

.warning-icon {
    font-size: 2rem;
    animation: warningPulse 1.5s infinite alternate;
}

@keyframes warningPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.25); }
}

.warning-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.warning-text strong {
    color: var(--primary-red);
}

.warning-text .orig-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 700;
}

.progress-bar-container {
    width: 100%;
    height: 25px;
    background: #e2e8f0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #b91c1c 100%);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
    animation: progressStripes 2s linear infinite;
    background-size: 40px 40px;
    background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
}

@keyframes progressStripes {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.progress-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 25px;
    background-color: #fafafa;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 20px;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .section-title-highlight-light {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
    .scarcity-warning-box {
        padding: 20px;
    }
    .warning-text {
        font-size: 0.95rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 18px 20px;
    }
}

/* PAYMENT MODAL STYLING */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #ffffff;
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 40px;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dark);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--primary-red);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.3;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.payment-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding-right: 20px;
}

.qr-container img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 5px;
    background: white;
}

.qr-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.4;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px dashed #f1f5f9;
    padding-bottom: 8px;
}

.bank-label {
    color: var(--text-muted);
    font-weight: 500;
}

.bank-value {
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.bank-value.highlight {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.bank-value.copy-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #0f172a;
}

.confirm-pay-btn {
    margin-top: 0;
    font-size: 1rem;
    padding: 15px 20px;
}

@media (max-width: 576px) {
    .payment-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .qr-container {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .modal-content {
        padding: 30px 20px;
    }
}
