﻿:root {
    --teal: #00A8A8;
    --teal-light: #00CFCF;
    --teal-dark: #007A7A;
    --red: #EF3B3B;
    --red-light: #FF6060;
    --dark-blue: #0B1B3F;
    --dark-blue-mid: #112357;
    --white: #FFFFFF;
    --off-white: #F4F8FB;
    --light-gray: #E8EEF4;
    --text-muted: #6B7A99;
    --text-dark: #1A2340;
    --gradient-main: linear-gradient(135deg, #0B1B3F 0%, #00A8A8 100%);
    --gradient-hero: radial-gradient(circle at 10% 20%, #0B1B3F, #0e2a4e, #005f5f);
    --shadow-sm: 0 4px 16px rgba(11,27,63,0.08);
    --shadow-md: 0 8px 32px rgba(11,27,63,0.13);
    --shadow-lg: 0 16px 48px rgba(11,27,63,0.18);
    --shadow-teal: 0 8px 32px rgba(0,168,168,0.25);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Sora', 'Nunito', sans-serif;
    --font-body: 'DM Sans', 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--teal-dark);
    }

/* Utility Classes */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 40px;
    }
}

.section-title .badge-label {
    display: inline-block;
    background: rgba(0,168,168,0.12);
    color: var(--teal);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 14px;
    border: 1.5px solid rgba(0,168,168,0.25);
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary-grad {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary-grad:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 40px rgba(0,168,168,0.38);
        color: #fff;
    }

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 11px 28px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline-light:hover {
        background: white;
        color: var(--teal-dark);
        border-color: white;
        transform: translateY(-2px);
    }

.text-teal {
    color: var(--teal) !important;
}

/* Navbar */
#mainNavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

    #mainNavbar.scrolled {
        background: rgba(11,27,63,0.96);
        backdrop-filter: blur(18px);
        padding: 10px 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

.navbar-brand .logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: orangered;
    letter-spacing: -0.5px;
}

@media (max-width: 576px) {
    .navbar-brand .logo-text {
        font-size: 1.3rem;
    }
}

.navbar-brand .logo-text span {
    color: var(--teal);
}

/*.logo-pulse {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    animation: pulseGlow 2s infinite;
}*/

.logo-pulse {
    width: 150px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    animation: pulseGlow 2s infinite;
}

/*@media (max-width: 576px) {
    .logo-pulse {
        width: 32px;
        height: 32px;
    }
}*/
@media (max-width: 576px) {
    .logo-pulse {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

/* Hide any text next to logo */
.navbar-brand .logo-text {
    display: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0,168,168,0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0,168,168,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0,168,168,0);
    }
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 6px;
    padding: 8px 18px !important;
    border-radius: 40px;
    transition: all 0.3s ease !important;
    position: relative;
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        display: inline-block;
        width: fit-content;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--teal-light) !important;
    background: rgba(0,168,168,0.15) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--teal-light) !important;
    background: rgba(0,168,168,0.2) !important;
}

#mainNavbar.scrolled .navbar-nav .nav-link {
    color: rgba(255,255,255,0.95) !important;
}

    #mainNavbar.scrolled .navbar-nav .nav-link:hover {
        color: var(--teal-light) !important;
        background: rgba(0,168,168,0.2) !important;
    }

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.3rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
    animation: floatShape 12s infinite alternate;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: -100px;
    right: -50px;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: var(--red);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.shape3 {
    width: 200px;
    height: 200px;
    background: #2a5ce6;
    top: 40%;
    left: 20%;
    animation-duration: 18s;
}

.shape4 {
    width: 150px;
    height: 150px;
    background: var(--teal-light);
    bottom: 20%;
    right: 10%;
    animation-duration: 14s;
    animation-delay: 1s;
}

@media (max-width: 768px) {
    .floating-shape {
        display: none;
    }
}

@keyframes floatShape {
    0% {
        transform: translate(0,0) scale(1);
    }

    100% {
        transform: translate(40px, -40px) scale(1.2);
    }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.hero-highlight {
    background: linear-gradient(120deg, var(--teal-light), white);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-badge {
    background: rgba(0,168,168,0.2);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    color: var(--teal-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid rgba(0,168,168,0.5);
}

.hero-stat-box {
    text-align: center;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 20px;
    animation: floatCard 5s infinite ease-in-out;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot-red, .dot-yellow, .dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #FF5F57;
}

.dot-yellow {
    background: #FFBD2E;
}

.dot-green {
    background: #28CA41;
}

.mockup-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.mockup-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .mockup-stat i {
        font-size: 1.3rem;
        color: var(--teal);
    }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
}

.mockup-chart {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    border-radius: 4px;
    width: 0;
    animation: growBar 1s ease-out forwards;
}

@keyframes growBar {
    from {
        width: 0;
    }

    to {
        width: var(--width);
    }
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-12px) scale(1.01);
        box-shadow: 0 25px 40px rgba(0,0,0,0.12);
        border-color: var(--teal);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

    .feature-icon i {
        font-size: 2rem;
    }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--teal);
    font-weight: 600;
    margin-top: 15px;
}

    .feature-link:hover {
        gap: 10px;
    }

/* About Section */
.about-quote-card {
    background: linear-gradient(145deg, #112357, #0B1B3F);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    color: white;
}

@media (max-width: 768px) {
    .about-quote-card {
        padding: 25px;
    }
}

.stat-item {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    text-align: center;
}

    .stat-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }

.stat-item-small {
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.counter {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--teal);
    line-height: 1.2;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--teal-dark));
    padding: 60px 0;
}

.stats-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

    .stats-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.15);
    }

.stats-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-display);
    margin: 10px 0;
}

.stats-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Module Cards */
.module-card {
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    color: white;
    min-height: 220px;
    cursor: pointer;
}

    .module-card:hover {
        transform: scale(1.02) translateY(-8px);
    }

    .module-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
        opacity: 0;
        transition: 0.6s;
        pointer-events: none;
    }

    .module-card:hover::after {
        opacity: 1;
        transform: translate(10%, 10%);
    }

.mc-teal {
    background: linear-gradient(145deg, #007A7A, #00A8A8);
}

.mc-red {
    background: linear-gradient(145deg, #C42E2E, #EF3B3B);
}

.mc-blue {
    background: linear-gradient(145deg, #0B1B3F, #1A3A7A);
}

.mc-purple {
    background: linear-gradient(145deg, #5B30A0, #8B60D0);
}

.mc-green {
    background: linear-gradient(145deg, #1A7A3A, #28AA50);
}

.mc-orange {
    background: linear-gradient(145deg, #C06000, #FF8C00);
}

.mc-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.module-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.module-card p {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin: 10px;
    transition: var(--transition);
    height: 100%;
}

.swiper-slide-active .testimonial-card {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.stars {
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Contact Section */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 25px;
    }
}

.contact-info-card {
    background: var(--gradient-main);
    border-radius: 32px;
    padding: 40px;
    color: white;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 25px;
    }
}

.form-control, .form-select {
    border-radius: 60px;
    padding: 12px 20px;
    border: 1.5px solid #e0e7f0;
    transition: var(--transition);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(0,168,168,0.2);
        outline: none;
    }

textarea.form-control {
    border-radius: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.ci-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ci-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ci-val {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark-blue);
    padding-top: 60px;
    color: rgba(255,255,255,0.6);
}

.footer-brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: orangered;
}

    .footer-brand-text span {
        color: var(--teal);
    }

.footer-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 6px;
}

.footer-desc {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 14px;
    max-width: 280px;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.5);
        font-size: 0.88rem;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

        .footer-links a:hover {
            color: var(--teal-light);
            transform: translateX(4px);
        }

        .footer-links a::before {
            content: '›';
            font-weight: 700;
        }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    align-items: flex-start;
}

    .footer-contact-item i {
        color: var(--teal);
        margin-top: 2px;
        flex-shrink: 0;
    }

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

    .social-link:hover {
        background: var(--teal);
        color: #fff;
        transform: translateY(-3px);
    }

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 48px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-divider {
        flex-direction: column;
        text-align: center;
    }
}

.footer-divider .copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}

    .footer-divider .copy span {
        color: var(--teal);
    }

.footer-legal-link {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    transition: var(--transition);
}

    .footer-legal-link:hover {
        color: var(--teal-light);
    }

/* Responsive Media Queries - Enhanced for No Horizontal Scroll */
@media (max-width: 1200px) {
    .container {
        max-width: 96%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 70px 0;
    }

    .stats-card {
        padding: 20px;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 24px;
    }

    .module-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .contact-info-card {
        margin-top: 32px;
    }

    .mockup-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .mockup-stat {
        padding: 8px;
    }

        .mockup-stat i {
            font-size: 1rem;
        }

    .stat-value {
        font-size: 0.75rem;
    }

    .module-card {
        min-height: auto;
        padding: 20px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-6, .col-4, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-6 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    .g-5 {
        --bs-gutter-y: 1.5rem;
        --bs-gutter-x: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

        .feature-icon i {
            font-size: 1.5rem;
        }

    .testimonial-card {
        padding: 20px;
    }

    .stats-card {
        padding: 15px;
    }

    .stats-number {
        font-size: 1.5rem;
    }

    .stats-label {
        font-size: 0.7rem;
    }

    .mockup-stats-grid {
        display: none;
    }

    .hero-content .row .col-4 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero-stat-box .fs-2 {
        font-size: 1.5rem !important;
    }

    .hero-stat-box .small {
        font-size: 0.7rem;
    }

    .btn-primary-grad, .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .dashboard-mockup {
        padding: 12px;
    }

    .contact-form-wrap, .contact-info-card {
        padding: 20px;
    }

    .footer-divider {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .hero-content .d-flex {
        flex-direction: column;
        gap: 12px !important;
    }

        .hero-content .d-flex a {
            text-align: center;
            justify-content: center;
            width: 100%;
        }

    .hero-stat-box .fs-2 {
        font-size: 1.2rem !important;
    }

    .stats-number {
        font-size: 1.2rem;
    }

    .stats-label {
        font-size: 0.6rem;
    }

    .feature-card h4 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .section-title .badge-label {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
}
