@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --red: #df171b;
    --red-dark: #9f0d10;
    --black: #070707;
    --ink: #161616;
    --white: #ffffff;
    --paper: #f7f4f2;
    --muted: #696969;
    --line: rgba(7, 7, 7, 0.12);
    --line-light: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--black);
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

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

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

.navbar {
    align-items: center;
    background: rgba(247, 244, 242, 0.9);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: 150px 1fr auto;
    left: 0;
    padding: 14px clamp(20px, 5vw, 72px);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.brand {
    align-items: center;
    display: flex;
    height: 58px;
}

.logo-brand {
    background: var(--red);
    border-radius: 6px;
    height: 54px;
    justify-content: center;
    overflow: hidden;
    width: 92px;
}

.logo-brand img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.18);
    width: 100%;
}

nav {
    display: flex;
    gap: clamp(18px, 3vw, 42px);
    justify-content: center;
}

nav a,
.nav-btn,
.btn,
.lang-switch {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

nav a {
    color: var(--muted);
    transition: color 180ms ease;
}

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

.nav-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-self: end;
}

.nav-btn,
.btn,
.lang-switch {
    align-items: center;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lang-switch {
    font-family: inherit;
    min-width: 52px;
    padding: 0 12px;
}

.nav-btn:hover,
.lang-switch:hover,
.btn.primary {
    background: var(--black);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.btn.ghost {
    background: transparent;
}

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

.hero {
    align-items: center;
    display: grid;
    gap: clamp(36px, 6vw, 90px);
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    min-height: 100vh;
    padding: 130px clamp(20px, 5vw, 72px) 72px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--black);
}

h1,
h2 {
    font-size: clamp(46px, 8vw, 104px);
    letter-spacing: 0;
    line-height: 0.95;
}

h1 {
    max-width: 820px;
}

h2 {
    max-width: 900px;
}

.lead,
.section-body > p,
.partner-copy > p,
.red-panel > p {
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
}

.lead {
    margin-top: 26px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-mark {
    align-items: center;
    aspect-ratio: 1;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    max-width: 540px;
    overflow: hidden;
    width: min(100%, 540px);
}

.hero-mark img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.section {
    padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.split {
    background: var(--white);
    border-top: 1px solid var(--line);
    display: grid;
    gap: clamp(36px, 6vw, 90px);
    grid-template-columns: 0.9fr 1.1fr;
}

.section-body {
    align-self: end;
}

.stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 46px;
}

.stats div {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 138px;
    padding: 26px 18px;
    text-align: center;
}

.stats strong {
    display: block;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1;
}

.stats span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 12px;
    text-transform: uppercase;
}

.feature-band {
    background: var(--black);
    color: var(--white);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: clamp(72px, 8vw, 110px);
    padding-top: clamp(72px, 8vw, 110px);
}

.feature {
    border-left: 1px solid var(--line-light);
    min-height: 290px;
    padding: 10px clamp(24px, 3vw, 44px);
}

.feature:first-child {
    border-left: 0;
}

.feature span {
    color: var(--red);
    display: block;
    font-weight: 900;
    margin-bottom: 76px;
}

.feature h3,
.benefit h3,
.partner-list h3 {
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.1;
}

.feature p,
.benefit p,
.partner-list li {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin-top: 18px;
}

.red-panel {
    align-items: end;
    background: var(--red);
    color: var(--black);
    display: grid;
    gap: clamp(32px, 6vw, 80px);
    grid-template-columns: 1.1fr 0.9fr;
}

.red-panel > p {
    color: rgba(0, 0, 0, 0.72);
}

.partners {
    background: var(--paper);
    display: grid;
    gap: clamp(40px, 6vw, 88px);
    grid-template-columns: 1fr minmax(300px, 460px);
}

.partner-copy p {
    margin-top: 24px;
    max-width: 650px;
}

.partner-copy .btn {
    margin-top: 34px;
}

.partner-list {
    align-self: center;
    background: var(--black);
    color: var(--white);
    padding: clamp(28px, 4vw, 44px);
}

.partner-list ul {
    list-style: none;
    margin-top: 18px;
}

.partner-list li {
    border-top: 1px solid var(--line-light);
    margin-top: 0;
    padding: 15px 0;
}

.benefits {
    background: var(--white);
}

.benefit-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
}

.benefit {
    border-top: 2px solid var(--black);
    padding: 28px 30px 10px 0;
}

.benefit p {
    color: var(--muted);
}

.contact {
    align-items: end;
    background: var(--red);
    color: var(--black);
    display: grid;
    gap: clamp(32px, 6vw, 80px);
    grid-template-columns: 1fr minmax(280px, 420px);
    padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.contact-card {
    background: var(--black);
    color: var(--white);
    display: grid;
    gap: 1px;
    padding: 10px 0;
}

.contact-card a,
.contact-card span {
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    display: block;
    font-weight: 800;
    padding: 18px 24px;
    word-break: break-word;
}

.contact-card span {
    border-bottom: 0;
}

.partner-page {
    min-height: 100vh;
}

.partner-hero {
    align-items: start;
    display: grid;
    gap: clamp(36px, 6vw, 88px);
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 540px);
    min-height: calc(100vh - 78px);
    padding: 150px clamp(20px, 5vw, 72px) clamp(72px, 8vw, 110px);
}

.partner-form {
    background: var(--white);
    border-top: 4px solid var(--red);
    display: grid;
    gap: 14px;
    padding: clamp(24px, 4vw, 42px);
}

.partner-form label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-top: 8px;
    text-transform: uppercase;
}

.partner-form input,
.partner-form select {
    appearance: none;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--black);
    font: inherit;
    min-height: 54px;
    padding: 0 16px;
    width: 100%;
}

.partner-form input:focus,
.partner-form select:focus {
    border-color: var(--red);
    outline: 2px solid rgba(223, 23, 27, 0.16);
}

.partner-form button {
    margin-top: 18px;
}

footer {
    align-items: center;
    background: var(--black);
    color: rgba(255, 255, 255, 0.64);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: space-between;
    padding: 28px clamp(20px, 5vw, 72px);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
    transition-delay: 120ms;
}

.delay-2 {
    transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .navbar {
        grid-template-columns: 120px 1fr auto;
    }

    nav {
        justify-content: flex-end;
    }

    .hero,
    .split,
    .red-panel,
    .partners,
    .contact,
    .partner-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 118px;
    }

    .hero-mark {
        justify-self: start;
        max-width: 380px;
    }

    .partner-hero {
        padding-top: 128px;
    }

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

    .feature {
        border-left: 0;
        border-top: 1px solid var(--line-light);
        min-height: 0;
        padding: 34px 0;
    }

    .feature:first-child {
        border-top: 0;
    }

    .feature span {
        margin-bottom: 32px;
    }
}

@media (max-width: 720px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 12px 18px;
    }

    .brand {
        height: 52px;
    }

    .logo-brand {
        height: 48px;
        width: 78px;
    }

    nav {
        display: none;
    }

    .lang-switch {
        min-height: 42px;
    }

    h1,
    h2 {
        font-size: clamp(40px, 14vw, 64px);
    }

    .hero {
        min-height: auto;
        padding-bottom: 54px;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

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

    .stats div {
        min-height: 116px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
