/**
 * ============================================================
 * QUIZER PLATFORM - PREMIUM LANDING PAGE STYLESHEET
 * Dark Cyberpunk/SaaS Aesthetic - Fully Responsive
 * ============================================================
 */

:root {
    --bg-darker: #070913;
    --bg-dark: #0c0f1d;
    --bg-main: #0c0f1d;
    --bg-card: rgba(17, 22, 43, 0.7);
    --bg-card-hover: rgba(22, 29, 57, 0.9);
    
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.25);
    
    --accent: #d946ef;
    --accent-dark: #c026d3;
    --accent-glow: rgba(217, 70, 239, 0.2);
    
    --cyan: #06b6d4;
    --green: #10b981;
    --green-glow: rgba(16, 185, 129, 0.15);
    
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-stack: 'Outfit', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── BASE RESET & INITIALIZATION ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--border-hover) var(--bg-darker);
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── AMBIENT BACKGROUND GLOWS ── */
.hero::before, .hero::after, .screenshots-section::before {
    content: '';
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    pointer-events: none;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    z-index: 0;
    opacity: 0.25;
}

.hero::before {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.hero::after {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
}

/* ── GLASS GLOWING HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(7, 9, 19, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

header .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    transition: var(--transition);
}

header.scrolled .nav-wrapper {
    height: 75px;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 850;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #a5b4fc 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .logo i {
    color: var(--primary);
    -webkit-text-fill-color: initial;
    -webkit-filter: drop-shadow(0 0 10px var(--primary-glow));
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

header nav a {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
}

header nav a:hover {
    color: var(--text-white);
}

header nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.header-btn:hover::before {
    transform: translateX(100%);
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
}

.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-white);
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

/* ── HERO SECTION ── */
.hero {
    padding-top: 200px;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 120%, rgba(15, 22, 42, 0.5) 0%, var(--bg-darker) 100%);
}

.hero .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #818cf8 0%, #f472b6 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.25));
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.25));
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.75rem;
    max-width: 580px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 25px rgba(99, 102, 241, 0.35);
    position: relative;
    z-index: 1;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(217, 70, 239, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 1rem 2.25rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
}

.stat-item .stat-num {
    font-size: 2.25rem;
    font-weight: 850;
    color: var(--text-white);
    letter-spacing: -1px;
}

.stat-item .stat-num span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ── FLOATING PHONE HERO MOCKUP ── */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.mockup-container {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    padding: 0;
    background: #090d16;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 
                0 0 50px rgba(99, 102, 241, 0.15);
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    align-self: flex-start;
}

.mockup-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #cbd5e1;
    border-radius: 16px;
    pointer-events: none;
    z-index: 10;
    box-sizing: border-box;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.mockup-container img {
    border-radius: 16px;
    display: block;
    width: 100%;
}

/* ── FEATURE CARDS ── */
.features {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 5.5rem;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 850;
    letter-spacing: -1px;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, rgba(217,70,239,0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(99, 102, 241, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.feature-card.purple-theme .icon-wrap {
    background: rgba(217, 70, 239, 0.15);
    color: #e879f9;
    border-color: rgba(217, 70, 239, 0.25);
    box-shadow: 0 8px 20px rgba(217, 70, 239, 0.15);
}

.feature-card.green-theme .icon-wrap {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 750;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ── SCREENSHOTS SHOWCASE ── */
.screenshots-section {
    padding: 120px 0;
    background: var(--bg-darker);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
}

.screenshots-section::before {
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    top: 30%;
    left: 45%;
    opacity: 0.15;
}

.screenshots-slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 2.5rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--border-hover) transparent;
}

.screenshots-slider-container::-webkit-scrollbar {
    height: 6px;
}
.screenshots-slider-container::-webkit-scrollbar-track {
    background: transparent;
}
.screenshots-slider-container::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 10px;
}
.screenshots-slider-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.screenshots-track {
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
    width: max-content;
    margin: 0 auto;
}

.screenshot-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    text-align: center;
    transition: var(--transition-bounce);
}

.screenshot-card:hover {
    transform: translateY(-12px) scale(1.04);
}

.screenshot-card h4 {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: var(--transition);
}

.screenshot-card:hover h4 {
    color: var(--accent);
    -webkit-filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.3));
    filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.3));
}

.phone-frame {
    position: relative;
    border-radius: 16px;
    padding: 0;
    background: #090d16;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(99, 102, 241, 0.1);
    overflow: hidden;
}

.phone-frame img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #cbd5e1;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    border-radius: 16px;
    z-index: 10;
    box-sizing: border-box;
}

/* ── ABOUT SECTION LAYOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: center;
}

.about-mockup {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.about-mockup::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 20%;
    left: 20%;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    z-index: 1;
    opacity: 0.2;
}

.about-mockup .mockup-container {
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Checklist custom styling */
.hero-content ul li {
    font-size: 1.05rem;
    color: var(--text-gray) !important;
}

.hero-content ul li i {
    -webkit-filter: drop-shadow(0 0 6px var(--primary-glow));
    filter: drop-shadow(0 0 6px var(--primary-glow));
}

/* ── GLOWING CTA AREA ── */
.cta-banner {
    padding: 100px 0;
    background: radial-gradient(circle at top right, var(--bg-dark), var(--bg-darker));
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    opacity: 0.15;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4.5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 850;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 580px;
}

.btn-white-cta {
    background: var(--text-white);
    color: var(--bg-darker);
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 750;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-white-cta:hover {
    transform: translateY(-3px);
    background: #e2e8f0;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}

/* ── PREMIUM DARK FOOTER ── */
footer {
    background: var(--bg-darker);
    color: #64748b;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 850;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand .brand i {
    color: var(--primary);
    -webkit-text-fill-color: initial;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
    color: var(--text-gray);
}

.footer-links h4 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── RESPONSIVE DESIGN BREAKPOINTS ── */
@media (max-width: 1024px) {
    .hero {
        padding-top: 170px;
        padding-bottom: 80px;
    }

    .hero .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-mockup {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 3.5rem 2rem;
    }
    
    .cta-content p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    header nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(7, 9, 19, 0.98);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 3rem 1.5rem;
        transition: var(--transition);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        z-index: 999;
        border-bottom: 1px solid var(--border);
    }
    
    header nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 2.25rem;
        align-items: center;
    }
    
    header nav a {
        font-size: 1.3rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .container {
        padding: 0 1.25rem;
    }

    header .nav-wrapper {
        height: 80px;
    }

    header .logo {
        font-size: 1.4rem;
    }

    .header-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
        width: 100%;
        padding-bottom: 1.25rem;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-wrapper {
        padding: 2.5rem 1.25rem;
    }
    
    .btn-white-cta {
        width: 100%;
        justify-content: center;
    }
}
