:root {
    --brand-blue: #40a5dd;
    --brand-blue-dark: #1f74b7;
    --brand-green: #344282;
    --brand-ink: #183b56;
    --brand-gray: #5f6c7b;
    --brand-soft: #eef7fc;
    --brand-border: #d5e7f3;
    --brand-white: #ffffff;
    --brand-shadow: 0 18px 40px rgba(24, 59, 86, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--brand-ink);
    background: #f3f8fc;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.site-topbar {
    background: #ffffff;
    border-bottom: 1px solid #edf2f6;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    max-width: 1800px;
    padding: 0 120px;
}

.topbar-lang,
.topbar-social {
    font-size: 12px;
    font-weight: 700;
}

.topbar-lang a {
    color: #2f7fbe;
    text-decoration: none;
}

.topbar-lang a.is-active {
    color: #344282;
}

.topbar-lang span {
    margin: 0 4px;
    color: #30426f;
}

.topbar-social a {
    color: #30426f;
    text-decoration: none;
    font-size: 18px;
}

.site-header {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(24, 59, 86, 0.08);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
    max-width: 1800px;
    padding: 0 120px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
}

.btn-block {
    width: 100%;
}

.btn-link {
    color: var(--brand-blue-dark);
    background: transparent;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    color: var(--brand-ink);
}

.form-group {
    position: relative;
}

.alert {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
}

.alert-danger {
    color: #8a1f1c;
    background: #fdecec;
    border: 1px solid #f5c2c0;
}

a {
    color: var(--brand-blue-dark);
}

.brand img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a,
.footer-nav a {
    color: #344282;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.landing-shell {
    padding-top: 48px;
}

.landing-main {
    padding: 0 0 56px;
}

.hero {
    margin-bottom: 38px;
}

.hero-banner {
    display: grid;
    gap: 34px;
    align-items: center;
    padding: 44px 40px 36px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--brand-shadow);
}

.hero-copy,
.form-panel-inner,
.trust-item,
.thanks-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
}

.hero-copy {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.hero-lines {
    max-width: 700px;
    margin: 28px 0 28px;
}

.hero-lines span {
    display: block;
    height: 2px;
    background: rgba(52, 66, 130, 0.26);
}

.hero-lines span + span {
    margin-top: 86px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-cta {
    min-width: 280px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual-frame {
    width: min(100%, 430px);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(52, 66, 130, 0.12);
    color: #344282;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.thanks-card h1 {
    margin: 0 0 18px;
    color: var(--brand-ink);
    font-size: 36px;
    line-height: 1.12;
    font-weight: 700;
}

.lead {
    margin: 0 0 10px;
    color: var(--brand-gray);
    font-size: 18px;
    line-height: 1.7;
}

.hero-card {
    padding: 28px 26px;
    border: 1px solid var(--brand-border);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
    box-shadow: 0 12px 28px rgba(24, 59, 86, 0.08);
}

.hero-card h2,
.form-panel h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
}

.benefits {
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    color: var(--brand-ink);
    font-size: 18px;
    line-height: 1.55;
}

.benefits i {
    margin-top: 3px;
    color: #344282;
    font-size: 18px;
}

.contact-strip {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-strip a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(64, 165, 221, 0.18);
    background: #ffffff;
    color: var(--brand-ink);
    font-weight: 600;
    text-decoration: none;
}

.contact-strip a:hover,
.contact-strip a:focus {
    color: var(--brand-blue-dark);
    text-decoration: none;
}

.form-panel-inner {
    border-radius: 28px;
    padding: 30px 28px;
    box-shadow: var(--brand-shadow);
    background: #ffffff;
    border: 1px solid rgba(64, 165, 221, 0.12);
}

.info-grid {
    display: grid;
    gap: 30px;
    align-items: start;
}

.form-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-blue-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-panel h2 {
    font-size: 30px;
    line-height: 1.1;
}

.form-panel p {
    color: var(--brand-gray);
    font-size: 16px;
    line-height: 1.65;
}

.landing-form .form-group,
.landing-form fieldset {
    margin-bottom: 18px;
}

.landing-form label,
.landing-form legend {
    display: block;
    margin-bottom: 9px;
    border: 0;
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-form .form-control {
    height: 52px;
    border: 1px solid #d8e5f1;
    border-radius: 16px;
    box-shadow: none;
    font-size: 16px;
    padding: 14px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.landing-form .form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(64, 165, 221, 0.12);
    transform: translateY(-1px);
}

.choice-group {
    padding: 0;
}

.choice-option {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    padding: 15px 16px;
    border: 1px solid #d8e5f1;
    border-radius: 16px;
    background: #fbfdff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.choice-option input {
    margin: 0;
}

.choice-option span {
    font-weight: 600;
}

.choice-option:hover {
    border-color: #bfd8ea;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(24, 59, 86, 0.06);
}

.landing-form .has-error .form-control,
.landing-form .has-error .choice-option {
    border-color: #d9534f;
}

.help-block {
    margin: 8px 0 0;
    color: #c9302c;
    font-size: 13px;
}

.btn-cta {
    min-height: 56px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #344282, #4656a3);
    box-shadow: 0 12px 24px rgba(52, 66, 130, 0.24);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-cta:hover,
.btn-cta:focus {
    background: linear-gradient(135deg, #2b376f, #3b4b93);
}

.form-note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--brand-gray);
}

.trust-section {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.trust-item {
    padding: 22px 22px;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(24, 59, 86, 0.08);
    background: #ffffff;
}

.trust-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-ink);
    font-size: 16px;
}

.trust-item span,
.legal,
.footer-copy p {
    color: var(--brand-gray);
}

.landing-footer {
    padding: 36px 0 28px;
    background: #344282;
    color: #ffffff;
}

.footer-brand {
    margin-bottom: 18px;
    text-align: center;
}

.footer-brand img {
    width: 250px;
    max-width: 90%;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-nav a {
    color: #ffffff;
    font-size: 13px;
}

.footer-copy {
    padding: 0 4px;
    text-align: center;
}

.footer-copy p,
.footer-copy .legal {
    color: #ffffff;
}

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

.thanks-body {
    min-height: 100vh;
}

.thanks-main {
    width: 100%;
    padding: 46px 0;
}

.thanks-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 34px 24px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--brand-shadow);
}

.thanks-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.thanks-icon {
    display: inline-block;
    margin-bottom: 14px;
    color: #344282;
    font-size: 52px;
}

.thanks-highlight {
    color: var(--brand-blue-dark);
    font-weight: 700;
}

.thanks-actions .btn {
    margin: 8px 6px 0;
}

@media (min-width: 768px) {
    .hero-banner {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
        gap: 44px;
    }

    .info-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
        gap: 34px;
    }

    .hero-banner,
    .form-panel-inner {
        padding: 38px 34px;
    }

    .contact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-section {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container {
        width: auto;
    }

    .topbar-inner {
        min-height: auto;
        padding: 8px 18px;
        flex-direction: column;
        gap: 6px;
    }

    .site-header-inner {
        min-height: auto;
        padding: 14px 18px;
        flex-direction: column;
    }

    .brand img {
        width: 190px;
    }

    .site-nav {
        justify-content: center;
        gap: 12px;
    }

    .site-nav a,
    .footer-nav a {
        font-size: 14px;
    }

    .hero-banner {
        padding: 28px 20px 24px;
    }

    .hero-lines {
        margin: 18px 0 18px;
    }

    .hero-lines span + span {
        margin-top: 56px;
    }

    .hero-cta {
        min-width: 100%;
    }

    .hero h1,
    .thanks-card h1 {
        font-size: 30px;
    }

    .hero-card h2,
    .form-panel h2 {
        font-size: 20px;
    }

    .choice-option {
        padding: 12px 14px;
    }
}
