/* Modern Design System */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #818cf8;
    --accent-color: #c7d2fe;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #f6f8fb;
    line-height: 1.7;
    font-size: 1.08rem;
}

/* Modern Navigation */
.navbar {
    padding: 1.1rem 0;
    box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.04);
    background: rgba(255,255,255,0.95) !important;
    z-index: 1050;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Navbar CTA Button */
.cta-btn {
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: 2rem;
    padding: 0.7rem 2rem;
    font-size: 1.08rem;
    box-shadow: 0 4px 16px 0 rgba(99, 102, 241, 0.13);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    display: inline-block;
    white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #10b981 0%, #6366f1 100%);
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px 0 rgba(79, 70, 229, 0.18);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    padding-top: 140px; /* increased from 100px */
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-color) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-section h1 {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Modern Cards */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 2rem;
}

/* Problem Section */
.problem-section {
    background: var(--light-bg);
    position: relative;
}

.problem-section .card {
    overflow: hidden;
}

.problem-section i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
}

/* How It Works Section */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

/* Features Section - Enhanced Padding and Visuals */
.features-section {
    background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%);
    border-radius: 2rem;
    margin-bottom: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.features-section .badge {
    background: #e0e7ff;
    color: #4f46e5;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 1.25rem;
    padding: 0.65rem 1.5rem;
    letter-spacing: 0.7px;
    box-shadow: 0 4px 16px 0 rgba(79, 70, 229, 0.10);
    margin-bottom: 1.5rem;
}

.features-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 3.5rem;
    letter-spacing: -1px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 3rem;
    margin: 0 auto;
    max-width: 950px;
    align-items: stretch;
    justify-items: center;
    padding: 0 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    position: relative;
    min-width: 240px;
    transition: background 0.3s;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #6366f1;
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 6px 24px 0 rgba(99, 102, 241, 0.13);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.feature-item:hover .feature-icon-circle {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #fff;
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 12px 32px 0 rgba(79, 70, 229, 0.18);
}

.feature-item .fw-bold {
    color: #1f2937;
    font-weight: 800 !important;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.feature-item .text-muted {
    color: #6b7280 !important;
    font-size: 1.08rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .features-list {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2.5rem 0;
        padding: 0 0.5rem;
    }
    .feature-item {
        padding: 2rem 0.5rem 2rem 0.5rem;
    }
    .hero-section {
        padding-top: 120px; /* increased from 80px */
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 115px !important;
        border-radius: 1.2rem;
        box-shadow: 0 4px 24px 0 rgba(37,99,235,0.07);
    }
    /* Hide both floating hero icons and their backgrounds on mobile */
    .hero-section .position-relative .position-absolute {
        display: none !important;
    }
    /* More spacing between hero buttons */
    .hero-section .d-flex.gap-3 {
        gap: 1.2rem !important;
        margin-bottom: 0.7rem;
    }
    .hero-section::before {
        display: none !important;
        content: none !important;
    }
    .features-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        border-radius: 1rem;
    }
    .features-section h2 {
        font-size: 2rem;
    }
    .feature-icon-circle {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
        margin-bottom: 1.1rem;
    }
    .features-list {
        gap: 1.5rem 0.5rem;
    }
    .feature-item {
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    }
    .hero-section {
        padding-top: 104px; /* increased from 64px */
    }
    /* Hide floating bell icon on mobile */
    .fa-bell {
        display: none !important;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-section .card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-section .fa-quote-left {
    opacity: 0.2;
}

/* Modern Waitlist Section */
.waitlist-section::before {
    pointer-events: none;
    z-index: -1;
}

.waitlist-section {
    background: linear-gradient(90deg, #4f46e5 0%, #10b981 100%);
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.waitlist-section h2, .waitlist-section .lead, .waitlist-section p, .waitlist-section label, .waitlist-section .text-white, .waitlist-section .text-white-50 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(31,38,135,0.10);
    opacity: 1 !important;
}

.waitlist-section i, .waitlist-section .fa-rocket, .waitlist-section .fa-comments, .waitlist-section .fa-piggy-bank {
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(31,38,135,0.10);
}

.waitlist-section .form-control {
    background: #fff;
    color: #222;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(31,38,135,0.08);
}

.waitlist-section .btn-primary {
    background: #fff;
    color: #4f46e5;
    font-weight: 700;
    border-radius: 2rem;
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 6px 24px 0 rgba(99, 102, 241, 0.13);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.waitlist-section .btn-primary:hover {
    background: #4f46e5;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.waitlist-section .badge {
    background: #fff;
    color: #4f46e5;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 1.25rem;
    padding: 0.65rem 1.5rem;
    letter-spacing: 0.7px;
    box-shadow: 0 4px 16px 0 rgba(79, 70, 229, 0.10);
    margin-bottom: 1.5rem;
}

/* Modern FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.75rem !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
}

/* Modern Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bg-primary-soft {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .waitlist-section .form-control,
    .waitlist-section .btn-primary {
        padding: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

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

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

/* ========== GLOBAL STYLES ========== */
section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    position: relative;
    border-radius: 1.2rem;
    background: #fff;
}

@media (max-width: 767px) {
    section {
        padding-top: 2.2rem !important;
        padding-bottom: 2.2rem !important;
        border-radius: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .problem-section .card {
        box-shadow: 0 4px 18px 0 rgba(37,99,235,0.10);
        border-radius: 1.2rem !important;
    }
    .stats-section {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 1.2rem;
    }
    .waitlist-section .btn-primary {
        width: 100%;
        display: block;
        font-size: 1.1rem;
        padding: 1.1rem 0;
    }
    .faq-section .accordion-item {
        padding: 0.7rem 0.5rem;
        border-radius: 1.2rem !important;
    }
    .faq-section .accordion-body {
        padding: 1.2rem 1rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1f2937;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Accent line for section headers */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}
.section-header .accent-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    margin-bottom: 1.2rem;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero .hero-bg-shape {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #6366f1 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero .lead {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 2.2rem;
}
.hero .btn-primary {
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    box-shadow: 0 6px 24px 0 rgba(99, 102, 241, 0.13);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.hero .btn-primary:hover {
    background: linear-gradient(90deg, #10b981 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px 0 rgba(79, 70, 229, 0.18);
}

/* ========== PROBLEM, FEATURES, BENEFITS ========== */
.section-band {
    background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%);
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 0;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
@media (max-width: 767px) {
    .section-band {
        border-radius: 0 0 1rem 1rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

/* Icon in soft circle */
.icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #6366f1;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 24px 0 rgba(99, 102, 241, 0.13);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.icon-circle:hover {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #fff;
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 12px 32px 0 rgba(79, 70, 229, 0.18);
}

/* ========== HOW IT WORKS ========== */
.how-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px;
    position: relative;
}
.how-step .icon-circle {
    margin-bottom: 1rem;
}
.how-step .step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #6366f1;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(99, 102, 241, 0.13);
}
.how-step-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.how-step-desc {
    color: #6b7280;
    font-size: 1.05rem;
}

/* ========== FAQ ========== */
.faq-section {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 4px 24px 0 rgba(79, 70, 229, 0.07);
    padding: 4rem 0;
    margin-bottom: 3rem;
}
.faq-section .accordion-item {
    border: none;
    border-radius: 1.25rem !important;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px 0 rgba(99, 102, 241, 0.07);
    overflow: hidden;
}
.faq-section .accordion-button {
    border-radius: 1.25rem !important;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.5rem 2rem;
    transition: background 0.3s, color 0.3s;
}
.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    color: #fff;
}
.faq-section .accordion-body {
    padding: 1.5rem 2rem;
    color: #4b5563;
    font-size: 1.08rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer .footer-brand {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #fff 0%, #d1fae5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer .social-links {
    margin: 1.5rem 0;
}
.footer .social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.footer .social-links a:hover {
    background: #fff;
    color: #6366f1;
    transform: translateY(-3px) scale(1.08);
}
.footer .copyright {
    color: #d1fae5;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.7s cubic-bezier(.4,2,.3,1) forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .features-list, .how-steps {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 2.5rem 0 !important;
        max-width: 500px !important;
        padding: 0 0.5rem !important;
    }
    .feature-item, .how-step {
        padding: 2rem 0.5rem 2rem 0.5rem !important;
    }
}
@media (max-width: 767px) {
    .footer {
        padding: 2rem 0 1rem 0;
        border-radius: 1rem 1rem 0 0;
    }
    .footer .footer-brand {
        font-size: 1.1rem;
    }
    .footer .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Section and container spacing refinement */
.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (max-width: 991px) {
    section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar {
        padding: 0.7rem 0;
    }
    .cta-btn {
        width: 100%;
        margin-top: 1rem;
        padding: 0.9rem 0;
        font-size: 1.1rem;
    }
}

/* Section Divider SVG */
.section-divider-bottom {
    position: relative;
    width: 100%;
    margin-top: -2px;
    line-height: 0;
    z-index: 2;
}

/* Section Bands and Alternating Backgrounds */
.bg-white {
    background: #fff !important;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 0;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

@media (max-width: 767px) {
    .section-band, .bg-white {
        border-radius: 0 0 1rem 1rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .section-divider-bottom svg {
        height: 50px !important;
    }
}

/* Remove extra margin between sections */
section + section {
    margin-top: 0 !important;
}

/* Footer high-contrast text fix */
.footer, .footer * {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.footer .copyright, .footer .text-muted {
    color: #e0e7ff !important;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.10);
}

@media (max-width: 767px) {
    .waitlist-section {
        min-height: 320px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .waitlist-section form {
        margin-top: 1.2rem;
    }
}

/* Inbox Reality Stats Section */
.stats-section {
    background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 2rem;
    margin: 2.5rem 0 2.5rem 0;
    box-shadow: 0 4px 24px 0 rgba(99, 102, 241, 0.07);
}
.stats-section .stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px 0 rgba(99, 102, 241, 0.13);
}
.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
.stats-section .stat-desc {
    color: #374151;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
    .stats-section {
        border-radius: 1rem;
        padding: 2rem 0;
    }
    .stats-section .stat-number {
        font-size: 2rem;
    }
    .stats-section .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    .stats-section .stat-desc {
        font-size: 1rem;
    }
}

/* Responsive Enhancements for iPad and Mobile */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .hero-section h1 {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
    }
    .hero-section .lead {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    .hero-section .btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .hero-section .img-fluid {
        margin-top: 2rem;
        margin-bottom: 1rem;
        max-width: 90%;
        height: auto;
    }
    .hero-section .position-absolute.top-0.start-0,
    .hero-section .position-absolute.bottom-0.end-0 {
        width: 48px;
        height: 48px;
    }
    .hero-section .bg-white.rounded-circle.p-3.shadow-lg {
        padding: 0.7rem !important;
    }
    .section-band {
        padding: 3rem 0;
    }
    .stats-section .stat-number {
        font-size: 2rem;
    }
    .stats-section .stat-desc {
        font-size: 1rem;
    }
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-section .card {
        margin-bottom: 1rem;
    }
    .waitlist-section .lead {
        font-size: 1.1rem;
    }
    .faq-section .accordion-button {
        font-size: 1rem;
    }
    .faq-section .accordion-body {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .hero-section h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    .hero-section .lead {
        font-size: 0.98rem;
        margin-bottom: 1.1rem;
    }
    .hero-section .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    .hero-section .img-fluid {
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
        max-width: 98%;
        height: auto;
    }
    /* Hide left floating icon on mobile for clarity */
    .hero-section .position-absolute.top-0.start-0 {
        display: none !important;
    }
    .hero-section .position-absolute.bottom-0.end-0 {
        right: 10px !important;
        bottom: 10px !important;
        width: 40px;
        height: 40px;
    }
    .hero-section .bg-white.rounded-circle.p-3.shadow-lg {
        padding: 0.5rem !important;
    }
    .hero-section .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.7rem !important;
        align-items: stretch;
    }
    .section-band {
        padding: 2rem 0;
    }
    .stats-section .stat-number {
        font-size: 1.75rem;
    }
    .stats-section .stat-desc {
        font-size: 0.9rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .testimonials-section .card {
        margin-bottom: 1rem;
    }
    .waitlist-section .lead {
        font-size: 1rem;
    }
    .faq-section .accordion-button {
        font-size: 0.95rem;
    }
    .faq-section .accordion-body {
        font-size: 0.9rem;
    }
    /* Hide floating bell icon on mobile */
    .fa-bell {
        display: none !important;
    }
} 