:root {
    color-scheme: light only;
}
:root {
    --primary: #0284c7;
    --primary-hover: #0369a1;
    --primary-rgb: 2, 132, 199;
    --secondary: #f97316;
    --secondary-hover: #ea580c;
    --dark: #0f172a;
    --dark-hover: #1e293b;
    --bg-main: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(226, 232, 240, 0.8);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --glass-shadow: 0 10px 30px -10px rgba(2, 132, 199, 0.12), 0 1px 3px rgba(0, 0, 0, 0.02);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism utility card - Premium Light Mode version */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px -15px rgba(var(--primary-rgb), 0.2);
    transform: translateY(-5px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02e;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #22c55e;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
    background-color: #16a34a;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
    transform: translateY(-2px);
}

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

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

.btn-light {
    background-color: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-light:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

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

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

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

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: #f1f5f9;
}

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

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.ml-3 { margin-left: 1rem; }
.w-100 { width: 100%; }

/* Top Bar */
.top-bar {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info i {
    color: var(--primary);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: rgba(255, 255, 255, 0.7);
}

.top-social a:hover {
    color: var(--primary);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
    margin-top: 0px;
    max-height: 450px;
    overflow-y: auto;
    border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-main);
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    padding-left: 20px;
}

.dropdown-menu .view-all-link {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    display: flex;
    align-items: center;
    min-height: 75vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.glow-1 {
    top: -250px;
    right: -100px;
    background-color: var(--primary);
}

.glow-2 {
    bottom: -250px;
    left: -100px;
    background-color: var(--secondary);
}

.hero-content {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections Title */
.section-title {
    margin-bottom: 70px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Dynamic Image Galleries (The 2-images requirement) */
.page-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.gallery-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--border-color);
    aspect-ratio: 16/10;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
    color: var(--white);
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    padding: 45px 35px;
    text-align: center;
}

.feature-box .icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(2, 132, 199, 0.08);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    line-height: 80px;
    text-align: center;
}

.feature-box h3 {
    font-size: 1.45rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .btn-link {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-card:hover .btn-link {
    color: var(--primary-hover);
}

/* How It Works Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.25);
}

.step h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

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

/* Service Detail Layout */
.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.main-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.main-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.main-content h3 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.main-content ul {
    margin-bottom: 30px;
}

.main-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.main-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.cta-banner {
    padding: 45px;
    text-align: center;
}

/* Sidebar Widgets */
.sidebar-widget {
    padding: 35px;
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 12px;
    position: relative;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-muted);
}

.contact-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links li a {
    color: var(--text-muted);
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
    font-weight: 600;
}

.sidebar-links li a:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

/* FAQ Accordion */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.faq-question {
    width: 100%;
    padding: 22px;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Contact Page Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 35px;
    display: flex;
    gap: 20px;
}

.info-card .icon {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(2, 132, 199, 0.08);
    width: 65px;
    height: 65px;
    border-radius: 15px;
    line-height: 65px;
    text-align: center;
    flex-shrink: 0;
}

.info-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-muted);
}

.contact-form {
    padding: 45px;
}

.contact-form h3 {
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--dark);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
}

select.form-control option {
    background-color: var(--white);
    color: var(--dark);
}

/* Call to Action Banner */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-hover) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(2, 132, 199, 0.15);
    border-radius: 50%;
    top: -225px;
    right: -225px;
    filter: blur(90px);
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-top: 12px;
    color: var(--text-light);
}

/* About Page Detail Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-image {
    position: relative;
    padding: 10px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #f97316 100%);
    color: var(--white);
    padding: 22px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.experience-badge .num {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    font-weight: 900;
}

.experience-badge .text {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Footer styling */
.footer {
    background-color: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 90px 0 35px;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    text-align: center;
    font-size: 0.95rem;
}

/* Floating Actions Buttons (Call / WhatsApp) */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition);
}

.float-phone {
    background-color: var(--primary);
}

.float-phone:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #22c55e;
}

.float-whatsapp:hover {
    background-color: #16a34a;
    transform: scale(1.1);
}

.float-btn .tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Animations support */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.show {
    opacity: 1 !important;
    transform: none !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

.contact-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .features-grid, .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: var(--transition);
        padding: 40px;
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .nav-list a {
        font-size: 1.25rem;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        display: none;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        max-height: 250px;
        margin-top: 10px;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid, .process-steps, .about-grid, .contact-grid, .contact-grid-custom, .service-content-grid, .page-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar-inner {
        justify-content: center;
    }
    
    .top-social {
        display: none;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .stats-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid-home {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
