@font-face {
    font-family: "IbmPlex";
    src: url("../fonts/IBMPlexSans-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #fff5f1;
    --ink: #151317;
    --muted: #5c5664;
    --card: #ffffff;
    --accent: #ed1f24;
    --accent-dark: #a50f1a;
    --accent-soft: rgba(237, 31, 36, 0.12);
    --stroke: rgba(15, 15, 15, 0.08);
    --hero: linear-gradient(135deg, #ffd2c9 0%, #ffe5d6 50%, #fff2e9 100%);
    --glow: radial-gradient(circle at 20% 20%, rgba(237, 31, 36, 0.25), transparent 58%),
        radial-gradient(circle at 85% 10%, rgba(245, 120, 90, 0.32), transparent 52%),
        radial-gradient(circle at 10% 90%, rgba(255, 200, 160, 0.35), transparent 60%);
    --shadow: 0 24px 60px rgba(12, 12, 16, 0.15);
    --shadow-soft: 0 12px 30px rgba(12, 12, 16, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "IbmPlex", "Lexend", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 20% 0%, #fff0e9, transparent 45%),
        radial-gradient(circle at 80% 20%, #ffe2dc, transparent 50%),
        var(--bg);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

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

img {
    max-width: 100%;
    height: auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(255, 245, 241, 0.9);
    border-bottom: 1px solid rgba(237, 31, 36, 0.12);
}

.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.brand span {
    background: linear-gradient(120deg, #ed1f24 0%, #ff5a2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links,
.nav-lang {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.nav-links a,
.nav-lang a {
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-lang a:hover {
    background: var(--accent-soft);
}

.hero {
    background: var(--hero);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(237, 31, 36, 0.12);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: var(--glow);
    opacity: 0.9;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: 40px;
    background: radial-gradient(circle, rgba(237, 31, 36, 0.18), transparent 65%);
    filter: blur(10px);
    opacity: 0.9;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 110px 24px 90px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    position: relative;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.1rem);
    line-height: 1.05;
    margin: 0 0 16px;
    font-family: "Lexend", "IbmPlex", sans-serif;
    letter-spacing: -0.02em;
}

.hero p {
    color: var(--muted);
    margin: 0 0 24px;
    font-size: 1.08rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(237, 31, 36, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(12, 12, 16, 0.08);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
    background: linear-gradient(135deg, #ff2b30 0%, #d6111c 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(237, 31, 36, 0.35);
}

.button.secondary {
    border-color: rgba(237, 31, 36, 0.2);
    background: #fff;
}

.button:hover {
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-card h3 {
    margin-top: 0;
}

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 78px 24px;
}

.section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 36px;
    box-shadow: inset 0 0 0 1px rgba(237, 31, 36, 0.06);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-title span {
    width: 52px;
    height: 3px;
    background: var(--accent);
    border-radius: 999px;
}

.section-title h2 {
    font-family: "Lexend", "IbmPlex", sans-serif;
    letter-spacing: -0.01em;
}

.section p.lead {
    color: var(--muted);
    margin-top: 0;
    max-width: 720px;
}

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

.card {
    background: var(--card);
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(237, 31, 36, 0.12);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(237, 31, 36, 0.8), rgba(255, 122, 94, 0.6));
    opacity: 0.8;
}

.card h3 {
    margin-top: 0;
    font-size: 1.05rem;
}

.card p {
    margin-bottom: 0;
    color: var(--muted);
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(237, 31, 36, 0.12);
    display: grid;
    gap: 6px;
    box-shadow: var(--shadow-soft);
}

.timeline-item span {
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.callout {
    background: linear-gradient(135deg, #151317, #2a1b1e);
    color: #fff;
    border-radius: 28px;
    padding: 38px;
    display: grid;
    gap: 14px;
    box-shadow: 0 30px 60px rgba(12, 12, 16, 0.25);
}

.callout p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.faq {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(237, 31, 36, 0.12);
    box-shadow: var(--shadow-soft);
}

.footer {
    padding: 40px 24px 60px;
    border-top: 1px solid rgba(237, 31, 36, 0.12);
    background: #fff;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-inner {
        padding-top: 96px;
    }

    .section:nth-of-type(even) {
        border-radius: 24px;
    }

    .callout {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        animation: none;
    }

    .button {
        transition: none;
    }
}
