/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #059669;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #0f172a;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #047857 100%);
    --gradient-success: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --transition-base: all 0.3s ease;
}

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

section:not(.hero-section) {
    scroll-margin-top: 80px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.main-content {
    margin-top: 76px;
}

/* No extra margin needed - customer switcher is in document flow */

/* ===== PARTNER BANNERS ===== */
.partner-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.partner-banner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-base);
}

.partner-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.partner-banner img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.partner-banner-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
}

.navbar .container {
    max-width: 100%;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-base);
}

    .navbar-brand:hover {
        transform: scale(1.05);
    }

.navbar-brand.brand-limited {
    max-width: 40%;
    flex: 0 0 40%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.navbar-brand.brand-limited .brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand.brand-limited .brand-title {
    white-space: normal;
    line-height: 1.2;
    min-width: 0;
}

@media (max-width: 991.98px) {
    .navbar-brand.brand-limited {
        max-width: 70%;
        flex: 0 1 70%;
        flex-wrap: wrap;
    }

    .navbar-brand.brand-limited img {
        height: 56px;
        max-width: 100%;
    }

    .navbar-brand.brand-limited .brand-title {
        flex-basis: 100%;
        margin-top: 0.25rem;
    }
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: var(--transition-base);
        transform: translateX(-50%);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 80%;
    }

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition-base);
}

    .dropdown-item:hover {
        background: var(--gradient-primary);
        color: white;
    }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #064e3b 100%);
    color: white;
    overflow: hidden;
    padding-top: 76px;
}

.hero-section .min-vh-100 {
    min-height: 70vh !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2310b981" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

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

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

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

    .floating-card:nth-child(1) {
        top: 10%;
        left: 10%;
        width: 200px;
    }

    .floating-card:nth-child(2) {
        top: 26%;
        right: 10%;
        width: 220px;
    }

    .floating-card:nth-child(3) {
        bottom: 10%;
        left: 30%;
        width: 210px;
    }

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

    50% {
        transform: translateY(-20px);
    }
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-color);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-icon i {
    line-height: 1;
    width: 1em;
    text-align: center;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

/* ===== FEATURE LIST ===== */
.feature-list {
    max-width: 600px;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

    .stat-box h3 {
        color: var(--dark-color);
        margin: 0.5rem 0;
    }

/* ===== TECHNOLOGY LOGOS ===== */
.tech-logo {
    padding: 2rem;
    transition: var(--transition-base);
}

    .tech-logo:hover {
        transform: scale(1.1);
    }

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-success {
    background: var(--gradient-success) !important;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--dark-color);
    color: white;
    padding: 6rem 0 4rem;
    margin-bottom: 3rem;
}

/* ===== CONTACT PAGE ===== */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    border: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    transition: var(--transition-base);
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
    }

/* ===== INTERACTIVE ELEMENTS ===== */
.btn,
.nav-link,
.dropdown-item,
.service-card,
.article-card,
.case-study-card,
.social-link,
.tag-cloud-item,
.back-to-top {
    cursor: pointer;
}

/* ===== FOCUS STATES ===== */
.btn:focus-visible,
.nav-link:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

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

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        opacity: 0.9;
    }

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

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

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

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

/* ===== FOOTER ===== */
.footer {
    margin-top: 5rem;
}

    .footer a {
        color: #adb5bd;
        transition: var(--transition-base);
    }

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

.social-links a {
    transition: var(--transition-base);
}

    .social-links a:hover {
        transform: translateY(-3px);
        opacity: 0.8;
    }

.newsletter-form .input-group {
    border-radius: 0.5rem;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
}

.newsletter-form .btn {
    border: none;
}

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

.text-muted {
    color: #6c757d !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-header {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon-header {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid #e9ecef;
    height: 100%;
}

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

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
    height: 100%;
}

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

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.stats-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.stat-item-large h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.service-card-detailed {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.service-card-detailed .btn {
    margin-top: auto;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-list-small {
    list-style: none;
    padding: 0;
}

.feature-list-small li {
    padding: 0.5rem 0;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    position: relative;
    padding: 2rem;
}

.process-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;
}

/* ===== ABOUT PAGE ===== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid #e9ecef;
}

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

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid #e9ecef;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--primary-color);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    order: 1;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
    border: 1px solid #e9ecef;
}

.timeline-content {
    flex: 0 0 calc(50% - 100px);
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid #e9ecef;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===== TEAM SECTION ===== */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid #e9ecef;
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

/* ===== CONTACT PAGE ENHANCEMENTS ===== */
.contact-info-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== ARTICLE CARDS (Shared) ===== */
.article-card,
.case-study-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.article-card:hover,
.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.article-card-image,
.case-study-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-card-placeholder,
.case-study-image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-content,
.case-study-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-weight: 600;
    color: var(--text-dark);
}

.article-card-description {
    flex: 1;
}

.article-card-badge,
.case-study-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

/* ===== TAG CLOUD ===== */
.tag-cloud {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: var(--shadow-sm);
}

.tag-cloud-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.tag-cloud-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #e6e9f1;
    background: #f5f7fb;
    color: #1f2937;
    font-weight: 600;
    font-size: calc(0.75rem + (var(--tag-weight, 1) * 0.1rem));
    letter-spacing: 0.01em;
    text-decoration: none;
}

.tag-cloud-item:hover {
    background: #d1fae5;
    border-color: #a7f3d0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* ===== LOADING STATES ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== ALERTS & NOTIFICATIONS ===== */
.alert {
    border-radius: 0.5rem;
    border: none;
    box-shadow: var(--shadow-sm);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-color);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
    }

    .hero-section {
        text-align: center;
    }

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

    .floating-card {
        width: 150px !important;
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-header {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        flex: 1;
        margin-top: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .hero-section .row .col-4 {
        margin-bottom: 1rem;
    }

    .stats-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem;
    }
    
    .stat-item-large h2 {
        font-size: 2rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
}

/* ===== VERSION INFO ===== */
.version-info {
    color: #888;
    font-size: 0.85rem;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
}
