/* ===========================
   DOCUMENT FLOW SYSTEM
   Premium Landing Page Styles
   Inspired by Acquisition.com
   =========================== */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --navy-deep: #001A33;
    --purple-vivid: rgb(111, 0, 255);
    --purple-hover: rgb(90, 0, 210);
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --dark-text: #111111;
    --medium-gray: #4a4a4a;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 50px 20px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-cta: 0 8px 30px rgba(111, 0, 255, 0.3);
}

body {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Badge (Header) */
.top-badge {
    background: var(--navy-deep);
    padding: 8px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.badge-pill {
    display: inline-block;
    background: var(--purple-vivid);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-cta {
    padding: 6px 15px !important;
    font-size: 11px !important;
    white-space: nowrap;
    animation: pulse-glow 2s ease-in-out infinite;
}

.header-cta:hover {
    animation: none;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: var(--navy-deep);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(111, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(111, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
}

.hero-audience {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 60px;
    position: relative;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid var(--purple-vivid);
    border-radius: 12px;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(111, 0, 255, 0.4);
}

.play-button {
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.hero-cta {
    margin-top: 50px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-button {
    font-size: 20px !important;
    padding: 20px 40px !important;
}

.hero-cta-button.secondary {
    background: var(--white) !important;
    color: var(--purple-vivid) !important;
    animation: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

.hero-cta-button.secondary:hover {
    background: var(--off-white) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

.hero-cta .cta-subtext {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Hero Steps Grid */
.hero-steps-container {
    max-width: 1200px;
    margin: 60px auto 20px;
}

.hero-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .hero-steps-grid {
        grid-template-columns: 1fr;
    }
}

.hero-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hero-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-vivid);
    box-shadow: 0 10px 30px rgba(111, 0, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.step-image-wrapper {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.step-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.hero-step-card:hover .step-image {
    transform: scale(1.05);
}

.step-content {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-grow: 1;
    padding: 24px;
}

.step-content .step-number {
    background: var(--purple-vivid);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0;
    box-shadow: 0 4px 10px rgba(111, 0, 255, 0.3);
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    color: var(--white);
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
    position: relative;
}

.content-section.light {
    background: var(--white);
    color: var(--dark-text);
}

.content-section.dark {
    background: var(--navy-deep);
    color: var(--white);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.content-section p {
    margin-bottom: 20px;
}

.highlight-stat {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--purple-vivid);
    margin: 30px 0;
    line-height: 1.3;
}

.content-section.dark .highlight-stat {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(111, 0, 255, 0.5);
}

.highlight-center {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0;
    /* Reduced from 40px */
}

/* Lists */
.checkmark-list,
.benefits-list,
.demo-list {
    list-style: none;
    margin: 30px 0;
}

.checkmark-list li,
.benefits-list li,
.demo-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
}

.checkmark-list li::before,
.benefits-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 20px;
}

.cross-list {
    list-style: none;
    margin: 30px 0;
}

.cross-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
}

.cross-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Callout Box */
.callout-box {
    background: rgba(111, 0, 255, 0.1);
    border-left: 5px solid var(--purple-vivid);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.callout-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.before {
    border-color: rgba(255, 100, 100, 0.3);
}

.comparison-card.after {
    border-color: rgba(111, 0, 255, 0.5);
    background: rgba(111, 0, 255, 0.1);
}

.comparison-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Demo Box */
.demo-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    border: 2px solid var(--purple-vivid);
}

.demo-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.demo-list li {
    padding-left: 0;
    margin-bottom: 12px;
}

.demo-list li::before {
    content: '';
}

.badge-extracted {
    display: inline-block;
    background: var(--purple-vivid);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

/* Testimonial Box */
.testimonial-box {
    background: rgba(111, 0, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 16px;
    color: var(--medium-gray);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--purple-vivid);
    padding: 60px 20px;
    text-align: center;
}

.cta-section.final {
    padding: 100px 20px;
}

.cta-button {
    display: inline-block;
    background: var(--purple-vivid);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-cta);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Contrast CTA Section (The Purple Bar) */
.mid-page-cta {
    background: #6F00FF;
    /* Vivid Purple */
    padding: 60px 20px;
    text-align: center;
    color: #FFFFFF;
}

.mid-page-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mid-page-cta .cta-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mid-page-cta .cta-button {
    background: #FFFFFF;
    color: #6F00FF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mid-page-cta .cta-button:hover {
    background: #F8F9FA;
    transform: translateY(-3px);
}

.mid-page-cta .cta-subtext {
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}

.cta-button:hover {
    background: var(--purple-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(111, 0, 255, 0.4);
}

.cta-button.large {
    font-size: 24px;
    padding: 25px 60px;
}

.cta-subtext {
    color: var(--white);
    font-size: 18px;
    font-style: italic;
    margin-top: 20px;
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-vivid);
    box-shadow: 0 10px 30px rgba(111, 0, 255, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Excel Features */
.excel-features {
    display: grid;
    gap: 40px;
    margin: 40px 0;
}

.excel-feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.excel-feature ul {
    list-style: none;
    padding-left: 20px;
}

.excel-feature li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.excel-feature li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--purple-vivid);
    font-weight: bold;
    font-size: 20px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin: 40px 0;
}

.column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    /* Ensure column headings are centered if used */
}

/* FAQ List */
.faq-list {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.faq-item {
    background: rgba(111, 0, 255, 0.05);
    border-left: 4px solid var(--purple-vivid);
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.faq-item p {
    margin: 0;
    line-height: 1.8;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #002447 100%);
    color: var(--white);
    padding: 80px 20px;
    margin-bottom: 10px;
}

.guarantee-box {
    /* Box styling removed as requested */
    padding: 0;
    /* Removed padding */
    margin: 10px 0;
    /* Reduced margin */
    text-align: center;
    position: relative;
}

.guarantee-main {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
    /* Reduced margin */
}

/* Purple Dashed List for Guarantee */
.purple-dashed-list {
    list-style: none;
    padding: 0;
    margin: 10px auto;
    max-width: 600px;
    display: inline-block;
    /* Center the list block */
    text-align: left;
}

.purple-dashed-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    /* Tighter spacing */
    font-size: 20px;
    /* Detailed size */
    color: var(--purple-vivid);
    /* Purple text */
    font-weight: 700;
    /* Make it pop */
}

.purple-dashed-list li::before {
    content: '-';
    /* Dash */
    position: absolute;
    left: 0;
    color: var(--purple-vivid);
    font-weight: 800;
}

/* Updated List Checks */
.checkmark-list,
.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    /* Constrain width for better centered readability */
    margin: 0 auto;
    /* Center the list container */
}

.checkmark-list li,
.benefits-list li {
    display: flex;
    /* Use flexbox for alignment */
    align-items: flex-start;
    /* Align icon to top of text */
    gap: 15px;
    /* Space between check and text */
    margin-bottom: 20px;
    /* More spacing between items */
    text-align: left;
    /* Ensure text alignment is natural */
    font-size: 18px;
    /* Readable font size */
    line-height: 1.6;
}

.checkmark-list li::before,
.benefits-list li::before {
    content: '✅';
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    font-size: 24px;
    /* Slightly larger icon */
    margin-top: -2px;
    /* Fine-tune alignment with text line-height */
    position: static;
    /* Remove absolute positioning */
}

/* Ensure no double ticks if HTML has them removed, but user asked to remove distinct double green ticks.
   If I removed them from HTML, this CSS is fine. */

/* Process Steps */
.process-steps {
    display: grid;
    gap: 30px;
    margin: 50px 0;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    background: var(--purple-vivid);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(111, 0, 255, 0.5);
    animation: zoom-in 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--purple-vivid);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom-in {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.step p {
    margin: 0;
    color: var(--medium-gray);
}

/* Story Box */
.story-box {
    background: rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--purple-vivid);
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
}

/* Qualification Sections */
.qualification-for,
.qualification-not {
    background: rgba(111, 0, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

.qualification-for {
    border: 2px solid rgba(0, 200, 0, 0.3);
}

.qualification-not {
    border: 2px solid rgba(200, 0, 0, 0.3);
}

.qualification-for h3,
.qualification-not h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.qualification-for ul,
.qualification-not ul {
    list-style: none;
}

.qualification-for li,
.qualification-not li {
    padding-left: 0;
    margin-bottom: 12px;
}

/* PS Section */
.ps-section {
    padding: 60px 20px;
}

.ps-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.footer-regions {
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
}

.footer-cta {
    margin: 40px 0;
}

.footer-legal {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--medium-gray);
}

.footer-legal a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--purple-vivid);
}

.footer-contact {
    margin: 25px 0;
    font-size: 20px;
}

.email-link {
    color: var(--purple-vivid);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.email-link:hover {
    color: #8000ff;
    border-bottom: 2px solid #8000ff;
    text-shadow: 0 0 10px rgba(111, 0, 255, 0.5);
}

/* Pulse Glow Animation */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(111, 0, 255, 0.6), 0 0 40px rgba(111, 0, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(111, 0, 255, 0.8), 0 0 60px rgba(111, 0, 255, 0.6);
    }
}

/* Responsive Design */
/* Mobile Optimization */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px 15px;
        /* Smaller sections on mobile */
    }

    body {
        font-size: 16px;
        /* Slightly smaller text for better density */
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-headline {
        font-size: 28px;
        /* Force smaller headline */
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .highlight-stat {
        font-size: 22px;
        margin: 20px 0;
    }

    .comparison-grid,
    .two-column,
    .features-grid,
    .faq-list {
        gap: 20px;
        /* Tighter gaps */
    }

    /* Fixed mobile hero steps */
    .hero-steps-grid {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .hero-step-card {
        padding: 0;
        /* Reduced internal spacing */
    }

    .step-content {
        padding: 15px;
        gap: 10px;
    }

    .step-content .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .step-content p {
        font-size: 14px;
    }

    .comparison-card,
    .step-card,
    .feature-card,
    .faq-item {
        padding: 20px;
        /* Reduced internal spacing */
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        /* Full width buttons on mobile */
        max-width: 350px;
    }

    .header-cta {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    .checkmark-list li,
    .benefits-list li {
        font-size: 16px;
        gap: 10px;
        margin-bottom: 15px;
    }

    .video-placeholder {
        padding: 40px 20px;
    }

    .guarantee-box {
        padding: 10px 0;
        margin: 10px 0;
    }

    .badge-content {
        gap: 10px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Irresistible Offer Styles */
.total-value-box {
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
    transition: transform 0.3s ease;
}

.total-value-box:hover {
    transform: translateY(-5px);
}

.total-value-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.guarantee-box ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee-box ol li {
    padding-left: 10px;
}

.guarantee-box h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Case Study Styles */
.case-study-results {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--purple-vivid);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.result-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-vivid);
    margin-bottom: 5px;
}

.result-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--off-white);
    font-weight: 600;
}

.case-study-title {
    text-align: center;
    color: var(--white);
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Selection Styling */
::selection {
    background: var(--purple-vivid);
    color: var(--white);
}