/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Dark Theme Colors */
    --bg-dark: #0a0e27;
    --bg-darker: #060916;
    --bg-card: #1a1f3a;
    --bg-card-hover: #1f2544;
    --border-color: #2d3250;
    --border-color-light: #424769;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e8eaf6;
    --text-muted: #9ca3af;
    --text-light-muted: #c7d2fe;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-hero: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    --gradient-cta: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --shadow-glow-lg: 0 0 50px rgba(99, 102, 241, 0.4);

    /* Spacing */
    --section-padding: 6rem 0;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: white;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-light-muted {
    color: var(--text-light-muted);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1.25rem 0;
    background-color: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 14, 39, 0.95);
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    transition: var(--transition);
}

.navbar-brand i {
    font-size: 1.75rem;
    color: var(--primary);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(99, 102, 241, 0.1);
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--text-secondary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: var(--bg-dark);
    background-image: var(--gradient-hero);
    position: relative;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

.info-box {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-lg);
    animation: float 3s ease-in-out infinite;
}

.phone-mockup i {
    font-size: 5rem;
    color: white;
}

.pulse-ring {
    position: absolute;
    border: 3px solid var(--primary);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Stat Cards */
.stat-card {
    position: absolute;
    background: var(--bg-card);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.stat-card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0.2s;
}

.stat-card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 0.4s;
}

.stat-card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 0.6s;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== ANIMATIONS ===== */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-in-up:nth-child(5) { animation-delay: 0.5s; }

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

/* ===== STATS BANNER ===== */
.stats-banner {
    padding: 4rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    font-size: 1.75rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-glow);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.stars i {
    font-size: 1rem;
}

.avatar {
    font-size: 3rem;
    color: var(--primary);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    margin: 1rem 0;
}

.plan-price .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.plan-price .period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-description {
    color: var(--text-muted);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2,
.cta-section p {
    color: white;
    position: relative;
    z-index: 2;
}

.trust-badges {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-brand i {
    color: var(--primary);
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer h6 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

/* ===== BADGES ===== */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.bg-primary-subtle {
    background-color: rgba(99, 102, 241, 0.2) !important;
}

.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.2) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }

    .stat-card {
        position: relative;
        margin: 1rem;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        display: inline-block;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin-top: 2rem;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .plan-price .price {
        font-size: 2.5rem;
    }

    .phone-mockup {
        width: 150px;
        height: 150px;
    }

    .phone-mockup i {
        font-size: 3.5rem;
    }
}

/* ===== UTILITIES ===== */
.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

/* ===== 311 LANDING PAGE ===== */
.page-311-hero {
    background: var(--bg-dark);
    background-image: var(--gradient-hero);
    padding: 64px 0 56px;
    position: relative;
}

.page-311-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.trust-strip {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    min-width: 140px;
}

.trust-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

.cta-arrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    animation: bounceRight 2s ease-in-out infinite;
}

.cta-arrow i {
    font-size: 2rem;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Lead Capture Form */
.lead-form-card {
    background: var(--bg-card);
    padding: 2rem;
    margin-top: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
}

.form-header h3 {
    color: var(--text-primary);
}

.lead-form .form-label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.lead-form .form-control,
.lead-form .form-select {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.lead-form .mb-3 {
    margin-bottom: 0.75rem !important;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
    background-color: var(--bg-darker);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.lead-form .form-control::placeholder {
    color: var(--text-muted);
}

.lead-form .form-select option {
    background-color: var(--bg-darker);
    color: var(--text-primary);
}

.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.2) !important;
}

.text-success {
    color: var(--success) !important;
}

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.stat-box {
    padding: 1.5rem;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: var(--text-light-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Features 311 Section */
.features-311-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

/* Mid CTA */
.mid-cta-section {
    padding: 3.5rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.mid-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.feature-card-311 {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.feature-card-311:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon-311 {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-section h2,
.final-cta-section p {
    color: white;
    position: relative;
    z-index: 2;
}

.final-cta-section .btn {
    position: relative;
    z-index: 2;
}

/* Responsive Design for 311 Page */
@media (max-width: 991px) {
    .lead-form-card {
        margin-top: 3rem;
    }

    .cta-arrow {
        justify-content: center;
        margin-top: 1rem;
    }

    .mid-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .lead-form-card {
        padding: 2rem 1.5rem;
    }

    .page-311-hero h1 {
        font-size: 2rem;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .trust-item {
        min-width: 120px;
    }
}

/* ===== CAREERS PAGE ===== */
.careers-hero {
    background: var(--bg-dark);
    background-image: var(--gradient-hero);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.openings-section {
    background: var(--bg-dark);
}

.no-openings-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    font-size: 1.75rem;
    color: white;
}

.stay-connected-section {
    background: var(--bg-dark);
}

.social-links-large a {
    display: inline-flex;
    align-items: center;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
