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

:root {
    --blue: #079ed8;
    --blue-dark: #073b63;
    --red: #ed1018;
    --text: #20242a;
    --muted: #68717c;
    --light: #f5f8fb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e7ebef;
    backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1180px, 92%);
    margin: auto;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 175px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
    font-size: .96rem;
}

.navigation a {
    position: relative;
    padding: 8px 0;
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width .25s ease;
}

.navigation a:hover::after,
.navigation a.active::after {
    width: 100%;
}

.hero {
    min-height: 570px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 30%, rgba(7,158,216,.16), transparent 32%),
        linear-gradient(135deg, #f7fafc 0%, #edf5fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 45px solid rgba(237,16,24,.08);
    right: -130px;
    bottom: -180px;
}

.hero-content {
    width: min(1180px, 92%);
    margin: auto;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 800;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .98;
    letter-spacing: -3px;
    margin: 15px 0 25px;
    color: var(--blue-dark);
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.button {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 14px 27px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(237,16,24,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(237,16,24,.25);
}

.section {
    width: min(1180px, 92%);
    margin: auto;
    padding: 100px 0;
}

.section-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

h2 {
    color: var(--blue-dark);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    margin-top: 10px;
    letter-spacing: -1.5px;
}

.about-text {
    font-size: 1.08rem;
    color: #4d5660;
}

.about-text p + p {
    margin-top: 20px;
}

.values {
    background: var(--blue-dark);
    color: white;
    padding: 70px max(4%, calc((100% - 1180px) / 2));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.05);
}

.icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.value-card p {
    color: rgba(255,255,255,.75);
}

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.center-heading p {
    color: var(--muted);
    margin-top: 15px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category {
    min-height: 100px;
    padding: 25px;
    border-radius: 18px;
    background: var(--light);
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 800;
    color: var(--blue-dark);
    transition: transform .2s ease, background .2s ease;
}

.category:hover {
    transform: translateY(-4px);
    background: #eaf6fc;
}

.category:first-child {
    border-top: 4px solid var(--red);
}

.visit {
    background: linear-gradient(135deg, var(--blue), #087bb2);
    color: white;
    padding: 85px 4%;
}

.visit-inner {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 70px;
    align-items: center;
}

.visit h2 {
    color: white;
    margin-bottom: 20px;
}

.visit .section-label {
    color: white;
}

.visit p {
    max-width: 700px;
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
}

.address {
    background: white;
    color: var(--blue-dark);
    border-radius: 22px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.address strong {
    font-size: 1.5rem;
    color: var(--red);
}

.address span:nth-child(2) {
    margin-bottom: 12px;
    color: var(--muted);
}

.address a {
    margin-top: 12px;
    color: var(--blue);
    font-weight: 800;
}

.footer {
    min-height: 90px;
    width: min(1180px, 92%);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .9rem;
    color: var(--muted);
}

.footer strong {
    color: var(--blue-dark);
}

.footer div:last-child {
    display: flex;
    gap: 20px;
}

.footer a:hover {
    color: var(--red);
}

@media (max-width: 800px) {
    .header-inner {
        min-height: auto;
        padding: 12px 0;
        flex-direction: column;
        gap: 5px;
    }

    .logo {
        width: 155px;
        height: 55px;
    }

    .navigation {
        width: 100%;
        justify-content: center;
        gap: 17px;
        flex-wrap: wrap;
        font-size: .82rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .values {
        grid-template-columns: 1fr;
        padding: 55px 4%;
    }

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

    .visit-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
        padding: 25px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .categories {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .navigation {
        gap: 11px;
    }
}
