:root {
    --navy-950: #0B1B33;
    --navy-900: #10254A;
    --navy-800: #16315E;
    --accent-500: #3B82F6;
    --accent-600: #2563EB;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --surface-alt: #EEF2F7;
    --ink: #0F172A;
    --muted: #475569;
    --line: #E2E8F0;
    --radius: 10px;
    --shadow: 0 24px 60px rgba(11, 27, 51, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(11, 27, 51, 0.96);
    color: #F1F5F9;
    border-bottom: 1px solid rgba(59, 130, 246, 0.28);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}

.brand img {
    display: block;
    width: 40px;
    height: 40px;
}

.wordmark {
    display: grid;
    line-height: 1.1;
}

.wordmark strong {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.wordmark small {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(241, 245, 249, 0.62);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(241, 245, 249, 0.78);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a,
.footer-links a,
.lang-link {
    transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.lang-link:hover {
    color: var(--accent-500);
}

.site-nav a[aria-current="page"] {
    color: #FFFFFF;
    border-bottom: 2px solid var(--accent-500);
    padding-bottom: 2px;
}

.lang-link {
    min-width: 40px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 999px;
    color: #F1F5F9;
    font-size: 0.78rem;
    font-weight: 800;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
    background: var(--accent-500);
    color: #FFFFFF;
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    color: #F1F5F9;
    background:
        radial-gradient(1100px 480px at 85% -10%, rgba(59, 130, 246, 0.32), transparent 60%),
        radial-gradient(800px 420px at 8% 110%, rgba(37, 99, 235, 0.22), transparent 60%),
        linear-gradient(180deg, var(--navy-950), var(--navy-900));
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(900px 520px at 50% 20%, #000 30%, transparent 75%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 780px);
    align-items: center;
    padding: 120px 0 96px;
}

.hero-copy {
    animation: fadeUp 700ms ease both;
}

.eyebrow {
    margin: 0 0 14px;
    color: #93C5FD;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.08;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--navy-950);
}

h3 {
    margin-bottom: 12px;
    color: var(--navy-950);
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 800;
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 32px;
    color: rgba(241, 245, 249, 0.82);
    font-size: 1.12rem;
}

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

.btn-primary {
    background: var(--accent-500);
    color: #FFFFFF;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
    background: var(--accent-600);
}

.btn-secondary {
    border-color: rgba(241, 245, 249, 0.35);
    color: #F1F5F9;
}

.btn-secondary:hover {
    background: rgba(241, 245, 249, 0.1);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--navy-950);
    background: var(--surface);
}

.page-hero {
    padding: 84px 0 60px;
    color: #F1F5F9;
    background:
        radial-gradient(900px 380px at 85% 0%, rgba(59, 130, 246, 0.3), transparent 60%),
        linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
}

.page-hero p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(241, 245, 249, 0.8);
    font-size: 1.06rem;
}

.facts-band {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.facts-grid div {
    padding: 30px 26px;
    border-left: 1px solid var(--line);
}

.facts-grid div:last-child {
    border-right: 1px solid var(--line);
}

.facts-grid strong {
    display: block;
    color: var(--navy-950);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
}

.facts-grid span {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.focus-section {
    padding: 84px 0;
    background: var(--navy-950);
    color: #F1F5F9;
}

.focus-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.focus-copy h2 {
    margin-bottom: 0;
    color: #F1F5F9;
}

.focus-copy p {
    margin-top: 16px;
    margin-bottom: 0;
    color: rgba(241, 245, 249, 0.72);
}

.focus-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.focus-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius);
    background: rgba(241, 245, 249, 0.06);
    color: rgba(241, 245, 249, 0.92);
    font-weight: 700;
}

.focus-item span {
    width: 28px;
    height: 28px;
    display: inline-grid;
    flex: 0 0 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-500);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 800;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--surface-alt);
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading p:not(.eyebrow),
.method-intro p:not(.eyebrow),
.contact-copy p {
    color: var(--muted);
    font-size: 1.02rem;
}

.align-left {
    margin: 0;
    text-align: left;
}

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

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

.card,
.product-card,
.step,
.contact-form {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
}

.card {
    position: relative;
    min-height: 280px;
    padding: 28px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 24px 50px rgba(11, 27, 51, 0.14);
}

.card-number,
.step span,
.product-card .kicker {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--accent-600);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.note-box {
    padding: 26px 28px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-left: 4px solid var(--accent-500);
    border-radius: var(--radius);
    background: #FFFFFF;
}

.note-box h3 {
    margin-bottom: 10px;
}

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

.note-box p + p {
    margin-top: 10px;
}

.product-card {
    padding: 30px;
}

.product-card h3 {
    font-size: 1.3rem;
}

.product-card ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.product-card li {
    margin-bottom: 8px;
}

.method {
    background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
    color: #F1F5F9;
}

.method-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
}

.method-intro h2 {
    color: #F1F5F9;
}

.method-intro p:not(.eyebrow) {
    color: rgba(241, 245, 249, 0.72);
}

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

.step {
    padding: 26px;
    background: rgba(241, 245, 249, 0.06);
    border-color: rgba(241, 245, 249, 0.16);
}

.step h3 {
    color: #F1F5F9;
}

.step p {
    color: rgba(241, 245, 249, 0.7);
}

.contact {
    padding: 96px 0;
    background: var(--surface-alt);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
}

.contact h2 {
    color: var(--navy-950);
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: var(--navy-950);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--navy-950);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--ink);
    background: #FFFFFF;
    font: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(59, 130, 246, 0.4);
    border-color: var(--accent-500);
}

.contact-form .btn {
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.site-footer {
    padding: 54px 0 26px;
    color: rgba(241, 245, 249, 0.72);
    background: var(--navy-950);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) minmax(180px, 0.7fr);
    gap: 44px;
    align-items: start;
}

.footer-brand {
    margin-bottom: 16px;
    color: #F1F5F9;
}

.footer-inner p {
    max-width: 440px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-contact {
    display: grid;
    gap: 6px;
    color: rgba(241, 245, 249, 0.75);
    font-style: normal;
    line-height: 1.55;
}

.footer-contact strong {
    color: #F1F5F9;
    font-weight: 800;
}

.footer-links {
    display: grid;
    justify-items: start;
    gap: 10px;
    color: #F1F5F9;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(241, 245, 249, 0.12);
    font-size: 0.88rem;
    display: grid;
    gap: 6px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.product-card,
.step,
.focus-item,
.facts-grid div,
.contact-form {
    animation: fadeUp 700ms ease both;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 980px) {
    .focus-layout {
        grid-template-columns: 1fr;
    }

    .header-cta {
        display: none;
    }

    .method-layout,
    .contact-layout,
    .content-grid {
        grid-template-columns: 1fr;
    }

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

    .cards-grid.two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .focus-list {
        grid-template-columns: 1fr;
    }

    .focus-section {
        padding: 66px 0;
    }

    .container {
        width: min(100% - 28px, 1120px);
    }

    .header-inner {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px 16px;
        justify-content: flex-start;
        font-size: 0.84rem;
    }

    .hero-grid {
        gap: 34px;
        padding: 64px 0 56px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .facts-grid,
    .cards-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .facts-grid div,
    .facts-grid div:last-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .section,
    .contact {
        padding: 72px 0;
    }

    .card {
        min-height: auto;
    }

    .contact-form {
        padding: 22px;
    }
}

.thanks-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: #F1F5F9;
}

.thanks-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

.thanks-brand {
    position: absolute;
    top: 28px;
    left: 28px;
}

.thanks-card {
    width: min(680px, 100%);
    padding: 46px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius);
    background: rgba(16, 37, 74, 0.85);
    box-shadow: var(--shadow);
}

.thanks-card h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #FFFFFF;
}

.thanks-card p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 28px;
    color: rgba(241, 245, 249, 0.78);
}
