/* ==============================================
   CCSystems — Production Stylesheet
   ============================================== */

/* --- Custom Properties --- */
:root {
    --brand-950: #001a30;
    --brand-900: #002948;
    --brand-800: #003f5d;
    --brand-700: #436b81;
    --brand-600: #4753aa;
    --brand-500: #5965b3;
    --brand-400: #7e87c5;
    --brand-300: #8f98cd;
    --brand-200: #c7cce6;
    --brand-100: #e8eaf5;
    --brand-50: #f2f3fa;
    --accent-700: #8948a4;
    --accent-600: #965cad;
    --accent-500: #af80c0;
    --accent-400: #b993c9;
    --accent-300: #d4c1de;
    --font-display: 'Bodoni Moda', 'Bodoni 72', Georgia, serif;
    --font-body: 'Bodoni Moda', 'Bodoni 72 Book', Georgia, serif;
}

/* --- Reset / Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--brand-900);
    overflow-x: hidden;
    background-color: var(--brand-50);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input { font: inherit; }

/* --- Font Classes --- */
.font-display {
    font-family: var(--font-display);
    -webkit-text-stroke: 0.5px currentColor;
    paint-order: stroke fill;
    font-weight: 700;
}
.font-body { font-family: var(--font-body); }

/* --- Layout --- */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* --- Sizing --- */
.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333%; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.w-44 { width: 11rem; }
.w-48 { width: 12rem; }
.w-72 { width: 18rem; }

.h-0\.5 { height: 0.125rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-44 { height: 11rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-7xl { max-width: 80rem; }

/* --- Spacing --- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }

.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

.mr-1\.5 { margin-right: 0.375rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

.space-x-2 > :not(:last-child) { margin-right: 0.5rem; }
.space-x-3 > :not(:last-child) { margin-right: 0.75rem; }
.space-x-8 > :not(:last-child) { margin-right: 2rem; }
.space-y-1 > :not(:last-child) { margin-bottom: 0.25rem; }
.space-y-3 > :not(:last-child) { margin-bottom: 0.75rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-5 { gap: 1.25rem; }
.gap-10 { gap: 2.5rem; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.05em; }

.heading-tight { letter-spacing: -0.03em; }
.body-relaxed { line-height: 1.7; }
.leading-\[1\.1\] { line-height: 1.1; }

/* --- Text Colors --- */
.text-white { color: #ffffff; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-brand-300 { color: var(--brand-300); }
.text-brand-400 { color: var(--brand-400); }
.text-brand-600 { color: var(--brand-600); }
.text-brand-700 { color: var(--brand-700); }
.text-brand-900 { color: var(--brand-900); }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }

/* --- Background Colors --- */
.bg-white { background-color: #ffffff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-brand-50 { background-color: var(--brand-50); }
.bg-brand-100 { background-color: var(--brand-100); }
.bg-brand-600 { background-color: var(--brand-600); }
.bg-brand-800 { background-color: var(--brand-800); }
.bg-brand-900 { background-color: var(--brand-900); }
.bg-brand-950\/60 { background-color: rgba(0, 26, 48, 0.6); }
.bg-brand-950\/70 { background-color: rgba(0, 26, 48, 0.7); }
.bg-green-400 { background-color: #4ade80; }
.bg-accent-700 { background-color: var(--accent-700); }
.bg-red-50 { background-color: #fef2f2; }

/* --- Borders --- */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }

.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-brand-100 { border-color: var(--brand-100); }
.border-brand-200 { border-color: var(--brand-200); }
.border-brand-400\/40 { border-color: rgba(71, 83, 170, 0.4); }

.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* --- Effects --- */
.opacity-0 { opacity: 0; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.pointer-events-none { pointer-events: none; }

/* --- Gradients --- */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-600\/20 { --tw-gradient-from: rgba(71, 83, 170, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-accent-700\/10 { --tw-gradient-from: rgba(137, 72, 164, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-50 { --tw-gradient-from: var(--brand-50); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-transparent { --tw-gradient-to: transparent; }

/* --- Transitions --- */
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* --- Animations --- */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.fa-spin { animation: spin 1s linear infinite; }

/* --- Hover States --- */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-brand-900:hover { color: var(--brand-900); }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-brand-50:hover { background-color: var(--brand-50); }
.hover\:bg-brand-500:hover { background-color: var(--brand-500); }
.hover\:bg-brand-800:hover { background-color: var(--brand-800); }
.hover\:bg-red-50:hover { background-color: #fef2f2; }
.hover\:border-brand-600:hover { border-color: var(--brand-600); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* --- Group Hover --- */
.group:hover .group-hover\:border-brand-600 { border-color: var(--brand-600); }
.group:hover .group-hover\:text-brand-600 { color: var(--brand-600); }
.group:hover .group-hover\:bg-brand-500 { background-color: var(--brand-500); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* --- Focus States --- */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--brand-500);
    outline-offset: 3px;
    border-radius: 4px;
}
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--brand-500); }
.focus\:ring-brand-500:focus { box-shadow: 0 0 0 2px var(--brand-500); }
.focus\:border-brand-500:focus { border-color: var(--brand-500); }
.focus\:outline-none:focus { outline: none; }

/* --- Active State --- */
.btn-primary:active { transform: scale(0.97); }

/* --- Custom Shadows --- */
.shadow-brand {
    box-shadow:
        0 1px 2px rgba(0, 41, 72, 0.05),
        0 4px 8px rgba(0, 41, 72, 0.07),
        0 12px 24px rgba(71, 83, 170, 0.05);
}
.shadow-brand-hover {
    box-shadow:
        0 2px 4px rgba(0, 41, 72, 0.07),
        0 12px 24px rgba(0, 41, 72, 0.1),
        0 32px 64px rgba(71, 83, 170, 0.1);
}
.hover\:shadow-brand-hover:hover {
    box-shadow:
        0 2px 4px rgba(0, 41, 72, 0.07),
        0 12px 24px rgba(0, 41, 72, 0.1),
        0 32px 64px rgba(71, 83, 170, 0.1);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--brand-50); }
::-webkit-scrollbar-thumb { background: var(--brand-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-400); }

/* ==============================================
   COMPONENT STYLES
   ============================================== */

/* --- Hero --- */
.hero-section {
    background-image:
        linear-gradient(135deg, rgba(0, 41, 72, 0.94), rgba(71, 83, 170, 0.88), rgba(137, 72, 164, 0.78)),
        url('brand_assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
}

/* --- Carousel --- */
.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
    overflow: hidden;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 1rem;
    box-shadow:
        0 20px 40px -10px rgba(0, 41, 72, 0.25),
        0 8px 16px -8px rgba(71, 83, 170, 0.15);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 41, 72, 0.95), rgba(0, 41, 72, 0.5) 70%, transparent);
    color: white;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.swiper-slide-active .carousel-caption {
    opacity: 1;
    transform: translateY(0);
}
.swiper-pagination-bullet-active {
    background: var(--brand-600) !important;
}

/* --- Custom Composed Slides --- */
.slide-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}
.slide-custom .icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    position: relative;
    z-index: 2;
}
.slide-custom .deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

/* --- Notification Slide Blur --- */
.slide-notification {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
.slide-notification .bg-blur {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    transform: scale(1.1);
}
.slide-notification .bg-focus {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    mask-image: radial-gradient(ellipse 55% 65% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 55% 65% at 50% 50%, black 40%, transparent 100%);
    z-index: 1;
}
.slide-notification .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 41, 72, 0.4) 100%);
    z-index: 2;
}

/* --- Dashboard Slide --- */
.slide-dashboard {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: linear-gradient(135deg, #e8eaf5 0%, #f2f3fa 100%);
    padding: 20px 16px;
    overflow: hidden;
}
.slide-dashboard .dash-header { font-size: 14px; font-weight: 700; color: var(--brand-900); margin-bottom: 12px; }
.slide-dashboard .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.slide-dashboard .stat-card { background: white; border-radius: 10px; padding: 10px 12px; box-shadow: 0 1px 4px rgba(0, 41, 72, 0.08); }
.slide-dashboard .stat-label { font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-700); margin-bottom: 2px; }
.slide-dashboard .stat-value { font-size: 22px; font-weight: 800; color: var(--brand-900); line-height: 1.1; }
.slide-dashboard .stat-sub { font-size: 8px; color: #22c55e; font-weight: 600; }
.slide-dashboard .chart-area { flex: 1; background: white; border-radius: 10px; padding: 12px; box-shadow: 0 1px 4px rgba(0, 41, 72, 0.08); position: relative; overflow: hidden; }
.slide-dashboard .chart-title { font-size: 10px; font-weight: 700; color: var(--brand-900); margin-bottom: 8px; }

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 400ms; }

/* --- Mobile Menu --- */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* --- Stats Section --- */
.stat-highlight {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-600);
    font-family: var(--font-display);
    -webkit-text-stroke: 0.5px currentColor;
    paint-order: stroke fill;
}
.stat-highlight-accent {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-700);
    font-family: var(--font-display);
    -webkit-text-stroke: 0.5px currentColor;
    paint-order: stroke fill;
}
.stat-highlight-dark {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-900);
    font-family: var(--font-display);
    -webkit-text-stroke: 0.5px currentColor;
    paint-order: stroke fill;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:col-span-2 { grid-column: span 2 / span 2; }
    .swiper-slide { width: 320px; height: 420px; }
    .slide-custom .icon-img { width: 160px; height: 160px; }
    .stat-highlight, .stat-highlight-accent, .stat-highlight-dark { font-size: 4.5rem; }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:col-span-1 { grid-column: span 1 / span 1; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-left { text-align: left; }
    .md\:h-10 { height: 2.5rem; }
    .md\:h-48 { height: 12rem; }
    .md\:w-48 { width: 12rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .md\:p-16 { padding: 4rem; }
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-12 { gap: 3rem; }
    .md\:block { display: block; }
    .stat-highlight, .stat-highlight-accent, .stat-highlight-dark { font-size: 5rem; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .lg\:gap-12 { gap: 3rem; }
}
