/* ==========================================================================
   Kunjmart India Pvt. Ltd. — Light Corporate Theme
   Colors from brand reference: Navy, Blue, Orange, Green
   ========================================================================== */

:root {
    --navy: #001529;
    --navy-light: #002d62;
    --blue: #0056b3;
    --blue-bright: #1a6fd4;
    --blue-tint: #e8f2fc;
    --orange: #f58220;
    --orange-bright: #ff9a3c;
    --orange-tint: #fff4e8;
    --green: #00a65a;
    --green-bright: #00c46e;
    --green-tint: #e8f8ef;
    --purple: #7b4fd6;
    --purple-tint: #f0ebfc;
    --red: #e53935;
    --red-tint: #fdecea;

    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6ea;
    --text-dark: #1a2b42;
    --text-body: #3d4f66;
    --text-muted: #5c6f85;

    --shadow-sm: 0 2px 8px rgba(0, 21, 41, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 21, 41, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 21, 41, 0.12);

    --container-max: 1200px;
    --margin-mobile: 24px;
    --margin-desktop: 40px;
    --nav-height: 72px;
    --mobile-nav-height: calc(68px + env(safe-area-inset-bottom, 0px));
    --font-headline: "Montserrat", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    padding-bottom: var(--mobile-nav-height);
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--blue);
    color: var(--white);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--margin-mobile);
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .container { padding: 0 var(--margin-desktop); }
}

/* Color utilities */
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.data-glow-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-glow-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.top-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue) 55%, var(--orange) 55%);
    color: var(--white);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.25rem;
}

.brand__text {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--navy-light);
    letter-spacing: 0.02em;
    line-height: 1.2;
    max-width: 140px;
}

@media (min-width: 480px) {
    .brand__text {
        font-size: 0.9375rem;
        max-width: none;
    }
}

.brand--footer .brand__text {
    color: var(--white);
}

.brand--footer .brand__icon {
    width: 44px;
    height: 44px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-links__item {
    font-family: var(--font-headline);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-light);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links__item:hover,
.nav-links__item.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.nav-cta {
    display: none;
    padding: 10px 22px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--blue-bright);
}

.nav-call-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.nav-call-mobile .material-symbols-outlined {
    font-size: 22px;
}

.nav-call-mobile:hover {
    background: var(--blue-bright);
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; }
    .nav-call-mobile { display: none; }
}

/* Mobile bottom nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--mobile-nav-height);
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 21, 41, 0.08);
}

.mobile-bottom-nav__scroll {
    display: flex;
    height: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) var(--gray-100);
}

.mobile-bottom-nav__scroll::-webkit-scrollbar { height: 3px; }
.mobile-bottom-nav__scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

.mobile-bottom-nav__item {
    flex: 1 0 auto;
    min-width: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
}

.mobile-bottom-nav__item .material-symbols-outlined { font-size: 22px; }

.mobile-bottom-nav__item .nav-label {
    font-family: var(--font-headline);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item.active {
    color: var(--blue);
    background: var(--blue-tint);
}

.mobile-bottom-nav__item.active .material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media (min-width: 992px) {
    .mobile-bottom-nav { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: auto;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
}

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

.hero__bg-image {
    position: absolute;
    inset: 0;
    /*background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80");*/
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg,
            rgba(232, 242, 252, 0.97) 0%,
            rgba(210, 230, 248, 0.88) 35%,
            rgba(0, 86, 179, 0.45) 70%,
            rgba(0, 45, 98, 0.55) 100%
        );
}

@media (min-width: 992px) {
    .hero__gradient {
        background:
            linear-gradient(105deg,
                rgba(232, 242, 252, 0.96) 0%,
                rgba(200, 225, 245, 0.82) 42%,
                rgba(0, 86, 179, 0.25) 68%,
                rgba(0, 45, 98, 0.4) 100%
            );
    }

    .hero__bg-image {
        background-position: center right;
    }
}

.hero__map {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 20% 50%, var(--blue) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, var(--blue) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 36px 8px 52px;
    width: 100%;
}

@media (min-width: 480px) {
    .hero__grid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 768px) {
    .hero__grid {
        padding: 48px 0 64px;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 40px;
        padding: 64px 0 96px;
    }
}

.hero__content {
    text-align: center;
    padding: 0 25px;
}

@media (min-width: 992px) {
    .hero__content {
        text-align: left;
    }
}

.hero__title {
    font-family: var(--font-headline);
    font-size: clamp(1.625rem, 6.5vw, 2.75rem);
    font-weight: 800;
    color: var(--navy-light);
    line-height: 1.22;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero__title {
        margin-bottom: 20px;
        line-height: 1.2;
    }
}

.hero__subtitle {
    font-size: clamp(0.9375rem, 2.8vw, 1.125rem);
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero__subtitle {
        margin-bottom: 32px;
        margin-left: 0;
        margin-right: 0;
        line-height: 1.75;
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.hero__actions .btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 480px) {
    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .hero__actions .btn {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .hero__actions {
        justify-content: flex-start;
        gap: 14px;
    }

    .hero__actions .btn {
        flex: 0 1 auto;
        width: auto;
    }
}

.hero__visual {
    position: relative;
    width: 100%;
    padding: 4px 4px 0;
}

/* Hero platform showcase (replaces floating orbs) */
.hero-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    width: 100%;
}

.hero-showcase__badge {
    position: absolute;
    top: -10px;
    right: 8px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-headline);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--navy-light);
    border: 1px solid var(--gray-200);
}

.hero-showcase__badge .material-symbols-outlined {
    font-size: 1rem;
    color: var(--green);
}

.hero-showcase__card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 21, 41, 0.18);
}

.hero-showcase__card--main {
    grid-row: 1 / span 2;
    grid-column: 1;
}

.hero-showcase__card--sm {
    grid-column: 2;
}

.hero-showcase__card--blue { border-top: 4px solid var(--blue); }
.hero-showcase__card--orange { border-top: 4px solid var(--orange); }
.hero-showcase__card--green { border-top: 4px solid var(--green); }

.hero-showcase__img {
    overflow: hidden;
    background: var(--gray-100);
}

.hero-showcase__card--main .hero-showcase__img {
    height: clamp(160px, 38vw, 260px);
}

.hero-showcase__card--sm .hero-showcase__img {
    height: clamp(72px, 18vw, 110px);
}

.hero-showcase__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.hero-showcase__card:hover .hero-showcase__img img {
    transform: scale(1.06);
}

.hero-showcase__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--white);
}

.hero-showcase__card--sm .hero-showcase__meta {
    padding: 10px 12px;
}

.hero-showcase__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    text-align: center;
}

.hero-showcase__card--blue .hero-showcase__icon {
    background: var(--blue-tint);
    color: var(--blue);
}

.hero-showcase__card--orange .hero-showcase__icon {
    background: var(--orange-tint);
    color: var(--orange);
}

.hero-showcase__card--green .hero-showcase__icon {
    background: var(--green-tint);
    color: var(--green);
}

.hero-showcase__icon .material-symbols-outlined {
    font-size: 1.25rem;
}

.hero-showcase__meta strong {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--navy-light);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.hero-showcase__card--main .hero-showcase__meta strong {
    font-size: 0.75rem;
}

.hero-showcase__meta span {
    display: block;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .hero-showcase {
        gap: 14px;
        min-height: 380px;
    }

    .hero-showcase__card--main .hero-showcase__img {
        height: 305px;
    }

    .hero-showcase__card--sm .hero-showcase__img {
        height: 118px;
    }

    .hero-showcase__meta {
        padding: 14px 16px;
    }

    .hero-showcase__meta strong {
        font-size: 0.8125rem;
    }

    .hero-showcase__meta span {
        font-size: 0.6875rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-headline);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-sm {
    padding: 12px 22px;
    font-size: 0.875rem;
    width: 100%;
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.35);
}

.btn-blue:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
}

.btn-orange:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 166, 90, 0.35);
}

.btn-green:hover {
    background: var(--green-bright);
    transform: translateY(-2px);
}

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

.btn-outline-blue:hover {
    background: var(--blue-tint);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    padding: 72px 0;
}

@media (min-width: 768px) {
    .section { padding: 96px 0; }
}

.section--white { background: var(--white); }
.section--gray { background: var(--gray-50); }

.section--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--navy-light);
    margin-bottom: 0;
}

.section-text {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.8;
}

.divider {
    width: 64px;
    height: 4px;
    border-radius: 2px;
    margin: 20px auto 24px;
}

.divider--blue {
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

/* ==========================================================================
   Platform Cards
   ========================================================================== */

.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.platform-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.platform-card--blue { border-top: 4px solid var(--blue); }
.platform-card--orange { border-top: 4px solid var(--orange); }
.platform-card--green { border-top: 4px solid var(--green); }

.platform-card__visual {
    background: var(--gray-100);
    overflow: hidden;
}

.platform-card__browser {
    display: flex;
    flex-direction: column;
    background: var(--gray-100);
}

.platform-card__browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: #e8eaed;
    border-bottom: 1px solid var(--gray-200);
}

.platform-card__browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.platform-card__browser-bar span:nth-child(1) { background: #ff5f57; }
.platform-card__browser-bar span:nth-child(2) { background: #febc2e; }
.platform-card__browser-bar span:nth-child(3) { background: #28c840; }

.platform-card__browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 4px 12px;
    background: var(--white);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-card__scroll-view {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--white);
}

.platform-card__scroll-img {
    width: 100%;
    height: auto;
    min-height: 200%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transform: translateY(0);
    transition: transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.platform-card:hover .platform-card__scroll-img,
.platform-card:focus-within .platform-card__scroll-img,
.platform-card.is-scrolling .platform-card__scroll-img {
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .platform-card__scroll-view {
        height: 240px;
    }
}

.platform-card__body {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f2f2f2;
}

.platform-card__tag {
    font-family: var(--font-headline);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.platform-card--blue .platform-card__tag { color: var(--blue); }
.platform-card--orange .platform-card__tag { color: var(--orange); }
.platform-card--green .platform-card__tag { color: var(--green); }

.platform-card__title {
    font-family: var(--font-headline);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy-light);
    margin-bottom: 4px;
}

.platform-card__subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.platform-card__desc {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.why-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.why-card h4 {
    font-family: var(--font-headline);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy-light);
    line-height: 1.4;
    margin-top: 16px;
}

.why-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why-card__icon .material-symbols-outlined {
    font-size: 2rem;
}

.why-card__icon--blue { background: var(--blue-tint); color: var(--blue); }
.why-card__icon--orange { background: var(--orange-tint); color: var(--orange); }
.why-card__icon--green { background: var(--green-tint); color: var(--green); }
.why-card__icon--purple { background: var(--purple-tint); color: var(--purple); }
.why-card__icon--red { background: var(--red-tint); color: var(--red); }

/* ==========================================================================
   Stats Bar
   ========================================================================== */

.stats-bar {
    background: var(--navy);
    padding: 56px 0;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.stats-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stats-item__icon .material-symbols-outlined { font-size: 1.75rem; }

.stats-item__icon--blue { background: rgba(0, 86, 179, 0.25); color: #6db3ff; }
.stats-item__icon--orange { background: rgba(245, 130, 32, 0.25); color: #ffb366; }
.stats-item__icon--green { background: rgba(0, 166, 90, 0.25); color: #5ddea0; }
.stats-item__icon--purple { background: rgba(123, 79, 214, 0.25); color: #b794f6; }

.stats-item__value {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.stats-item__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Vision & Mission
   ========================================================================== */

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

.vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.vision-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-card__icon .material-symbols-outlined { font-size: 2.25rem; }
.vision-card__icon--blue { background: var(--blue-tint); color: var(--blue); }
.vision-card__icon--orange { background: var(--orange-tint); color: var(--orange); }

.vision-card__title {
    font-family: var(--font-headline);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vision-card__text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.75;
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */

.contact-cta {
    text-align: center;
    padding: 56px 32px;
    background: linear-gradient(135deg, var(--blue-tint) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-cta .section-title { margin-bottom: 16px; }
.contact-cta .section-text { margin-bottom: 32px; }
.contact-cta .hero__actions { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 64px;
    padding-bottom: calc(24px + var(--mobile-nav-height));
}

@media (min-width: 992px) {
    .site-footer { padding-bottom: 24px; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 32px;
    }
}

.footer-tagline {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--white);
    margin: 16px 0 8px;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
}

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

.footer-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.footer-links-list a:hover { color: var(--white); }
.footer-links-list .material-symbols-outlined { font-size: 1rem; }

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact-list .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--orange);
    flex-shrink: 0;
}

.footer-contact-list a:hover { color: var(--white); }

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links__item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.2s;
}

.social-links__item:hover { transform: scale(1.1); }
.social-links__item--facebook { background: #1877f2; }
.social-links__item--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links__item--linkedin { background: #0a66c2; }
.social-links__item--youtube { background: #ff0000; }

.theme-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-headline);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    transition: color 0.2s;
}

.theme-switcher:hover { color: var(--white); }
.theme-switcher .material-symbols-outlined { font-size: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}
