@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM --- */
:root {
    /* Brand Colors */
    --blue-primary: #4989fd;
    --blue-dark: #0c117b;
    --pink-cta: #f74371;
    --pink-cta-hover: #ea3664;
    --green-accent: #15c68f;
    --orange-accent: #EE9C32;
    --gray-text: #adadc1;
    --gray-body: #626262;
    --dark-bg: #0a0e1a;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --card-bg: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(73, 137, 253, 0.15);

    /* Typography */
    --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1150px;
    --gap: 2rem;

    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(73, 137, 253, 0.12);
    --shadow-lg: 0 20px 60px rgba(73, 137, 253, 0.18);
    --shadow-glow: 0 0 40px rgba(73, 137, 253, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 50px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-body);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--blue-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 300; }
h4 { font-size: 1.3rem; font-weight: 500; }

.text-blue { color: var(--blue-primary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.lead {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--pink-cta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(247, 67, 113, 0.35);
}

.btn-primary:hover {
    background: var(--pink-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 67, 113, 0.45);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--blue-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- HEADER / NAVBAR --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 37px;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--blue-dark);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-dark);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pink-cta);
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 50%;
}

.nav-links a:hover {
    color: var(--blue-primary);
}

.nav-links a.active {
    color: var(--blue-primary);
}

.nav-cta {
    margin-left: 10px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f8f9fc 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(248,249,252,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease both;
}

.hero-content h1 .highlight {
    color: var(--blue-primary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-desc {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-phone {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-phone p {
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 700;
}

.hero-phone a {
    color: var(--blue-primary);
    font-size: 17px;
    font-weight: 700;
}

.hero-phone a:hover {
    color: var(--pink-cta);
}

.hero-scroll {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    z-index: 2;
    color: var(--blue-primary);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    animation: floatY 4s ease-in-out infinite;
}

/* --- SECTION STYLES --- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.8;
}

/* --- ABOUT / "Sizin için neler yapıyoruz" --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--glass-border);
    pointer-events: none;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-body);
    line-height: 1.8;
}

.check-list {
    margin-bottom: 32px;
}

.check-list li {
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
    font-size: 14px;
    color: var(--gray-body);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--blue-primary), var(--green-accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* --- SERVICE CARDS (Bulut Hizmet Section) --- */
.services-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #151a2e 100%);
    position: relative;
    overflow: hidden;
}

.services-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(73, 137, 253, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-banner .section-header h2 {
    color: var(--white);
}

.services-banner .section-header p {
    color: rgba(255,255,255,0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(73, 137, 253, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(73, 137, 253, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(78, 87, 155, 1);
    font-size: 13px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stats-image img {
    width: 100%;
    object-fit: cover;
}

.stats-content h2 {
    margin-bottom: 20px;
}

.stats-content > p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: left;
    padding: 10px;
}

.stat-item .stat-icon {
    color: var(--blue-primary);
    font-size: 14px;
    margin-bottom: 10px;
}

.stat-item .stat-number {
    font-family: var(--font-primary);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item:nth-child(1) .stat-number { color: var(--green-accent); }
.stat-item:nth-child(2) .stat-number { color: var(--orange-accent); }
.stat-item:nth-child(3) .stat-number { color: var(--blue-dark); }

.stat-item .stat-label {
    font-size: 14px;
    color: var(--blue-dark);
}

/* --- NEWSLETTER SECTION --- */
.newsletter {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 12px;
}

.newsletter > .container > p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 14px;
    background: var(--white);
    color: var(--gray-body);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(73, 137, 253, 0.15);
}

.newsletter-form button {
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--pink-cta);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--pink-cta-hover);
    transform: translateY(-1px);
}

.newsletter-disclaimer {
    font-size: 12px;
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

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

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--blue-primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col ul li a:hover {
    color: var(--blue-primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 14px;
}

.footer-contact li i {
    color: var(--blue-primary);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-bottom a {
    color: var(--blue-primary);
}

/* --- PAGE HEADER (Sub-pages) --- */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f8f9fc 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(73, 137, 253, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.page-header .breadcrumb {
    font-size: 14px;
    color: var(--gray-text);
}

.page-header .breadcrumb a {
    color: var(--blue-primary);
}

/* --- CONTENT SECTIONS (Sub-pages) --- */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    object-fit: cover;
}

.content-text h2 {
    margin-bottom: 20px;
}

.content-text h3 {
    margin-bottom: 16px;
    color: var(--blue-primary);
}

.content-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(73, 137, 253, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-primary);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(73, 137, 253, 0.1), rgba(21, 198, 143, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--blue-primary);
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: var(--gray-body);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(-50%) rotate(90deg) translateX(0); }
    50% { transform: translateY(-50%) rotate(90deg) translateX(-10px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-grid,
    .stats-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.12);
        transition: var(--transition);
        z-index: 1000;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-phone,
    .hero-scroll {
        display: none;
    }

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

    .stats-numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

    .stat-item .stat-number {
        font-size: 2rem;
    }
}
