* {
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .serif-font {
    font-family: "Source Serif 4", serif;
    font-weight: 600;
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.section-padding-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-shell {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.10), transparent 24rem),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.10), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.99));
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    border-radius: 999px;
    background: oklch(var(--p));
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.image-container {
    overflow: hidden;
    border-radius: var(--rounded-box, 1rem);
}

.image-container img {
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.icon-bg {
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-box, 1rem);
    background: color-mix(in srgb, oklch(var(--p)) 10%, transparent);
    color: oklch(var(--p));
    font-size: 1.5rem;
}

.stat-number {
    font-size: clamp(2.4rem, 4vw, 3.75rem);
    line-height: 1;
    font-weight: 700;
    color: oklch(var(--p));
}

.testimonial-card,
.testimonial-wall,
.csr-partner-card {
    backdrop-filter: blur(8px);
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: "Source Serif 4", serif;
    font-size: 4rem;
    line-height: 1;
    color: color-mix(in srgb, oklch(var(--p)) 18%, transparent);
}

@media (max-width: 1024px) {
    .section-padding {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .section-padding-sm {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        margin-bottom: 2rem;
        padding-bottom: 0.85rem;
    }

    .section-title::after {
        width: 3.25rem;
    }

    .icon-bg {
        height: 3rem;
        width: 3rem;
        font-size: 1.2rem;
    }

    .testimonial-card::before {
        top: 0.75rem;
        right: 1rem;
        font-size: 3rem;
    }

    .stats .stat-value {
        font-size: 2rem;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: oklch(var(--b2));
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: oklch(var(--p));
}
