:root {
    --color-dark: #0f172a;
    --color-mid: #1f2937;
    --color-light: #ffffff;
    --color-muted: #475569;
    --color-surface: #f8fafc;
    --color-accent: #004378;
    --color-accent-dark: #1d4ed8;
    --color-secondary: #0ea5e9;
    --color-border: #e2e8f0;
    --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --container-width: 1100px;
}

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

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-mid);
    background-color: var(--color-light);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.text-link {
    color: var(--color-accent);
    font-weight: 600;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: min(92vw, var(--container-width));
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid.two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.btn--accent {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn--ghost {
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--color-mid);
    background: transparent;
}

.btn--full {
    width: 100%;
    background: var(--color-accent);
    color: #fff;
}

.btn:hover {
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.brand img {
    width: 165px;
    height: auto;
}

.site-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.site-nav a {
    color: var(--color-mid);
    font-weight: 500;
}

.site-nav .btn {
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-mid);
}

.hero {
    position: relative;
    background: #e0f2ff;
    color: #fff;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero__video,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__video {
    z-index: 0;
    pointer-events: none;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 67, 120, 0.7) 0%, rgba(0, 67, 120, 0.85) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
}

.hero__stats li {
    list-style: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
    color: #fff;
}

.hero__stats span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.hero__card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1.25rem;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.hero__card ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
}

.hero .btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn--accent {
    background: #fff;
    color: #004378;
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(0, 67, 120, 0.25);
}

.logo-slider {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.logo-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, transparent 15%, transparent 85%, rgba(255, 255, 255, 1) 100%);
}

.logo-slider__track {
    display: flex;
    gap: 3rem;
    animation: marquee 16s linear infinite;
}

.logo-slider img {
    max-height: 48px;
    filter: none;
    opacity: 0.8;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section {
    padding: 4rem 0;
}

.section--light {
    background: #fff;
}

.section--light#impact {
    padding: 6rem 0;
}

.section--light#impact .impact__grid {
    gap: 2.5rem;
}

.section--light#impact .impact__stat {
    padding: 2rem;
    min-height: 220px;
}

.section--dark {
    background: #f1f5f9;
    color: var(--color-mid);
}

.section--highlight {
    background: #f8fafc;
    color: var(--color-mid);
}

.section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.translation__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.card--link a {
    color: var(--color-accent);
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: #fff;
    color: var(--color-mid);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.feature__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.impact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.impact__stat {
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    background: #fff;
}

.impact__stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
    gap: 0;
    padding: 1.5rem;
    /*background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    width: 100%;
    box-sizing: border-box;*/
}

.testimonial {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.25rem;
    box-sizing: border-box;
    color: var(--color-mid);
    position: relative;
    z-index: 1;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
}

.posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.post-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.post-date {
    font-size: 0.85rem;
    color: #475569;
}

.article {
    max-width: 760px;
}

.article img {
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.article-meta {
    color: #475569;
    font-size: 0.9rem;
}

.cta {
    background: linear-gradient(120deg, #dbeafe, #eff6ff);
    color: var(--color-mid);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #bfdbfe;
}

.contact-form,
.contact-panel {
    display: grid;
    gap: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 2.25rem;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field--hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.contact-form label {
    font-weight: 600;
    color: var(--color-mid);
}

.contact-form input,
.contact-form textarea {
    border-radius: 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.85rem 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 67, 120, 0.15);
}

.contact-form button {
    border-radius: 999px;
    font-size: 1rem;
    padding: 0.95rem 1.75rem;
    background: linear-gradient(120deg, var(--color-accent), var(--color-secondary));
    color: #fff;
    border: none;
    box-shadow: 0 20px 35px rgba(0, 67, 120, 0.25);
}

.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer__logo {
    width: 180px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.contact-list li {
    margin-bottom: 0.4rem;
}

.footer__meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.9rem;
}

.footer__links {
    display: flex;
    gap: 1rem;
}

.site-footer .btn {
    background: #fff;
    color: #004378;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 67, 120, 0.15);
}

.site-footer .btn:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 16px rgba(0, 67, 120, 0.2);
}

@media (max-width: 900px) {
    .site-nav {
        position: absolute;
        top: 100%;
        right: 1rem;
        flex-direction: column;
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid rgba(15, 23, 42, 0.1);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .header__inner {
        padding-inline: 1rem;
    }
}

