:root {
    --bg: #1f232b;
    --surface: #252932;
    --surface-strong: #2d323d;
    --text: #ffffff;
    --muted: #b6b8bd;
    --line: rgba(255, 255, 255, 0.09);
    --accent: #c89966;
    --accent-dark: #de9341;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    --radius: 0;
    --wrap: 1180px;
}

@font-face {
    font-family: RobotoRegular;
    src: url(/fonts/RobotoRegular/RobotoRegular.eot);
    src: url(/fonts/RobotoRegular/RobotoRegular.eot?#iefix) format("embedded-opentype"), url(/fonts/RobotoRegular/RobotoRegular.woff) format("woff"), url(/fonts/RobotoRegular/RobotoRegular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: RobotoCondensedRegular;
    src: url(/fonts/RobotoCondensedRegular/RobotoCondensedRegular.eot);
    src: url(/fonts/RobotoCondensedRegular/RobotoCondensedRegular.eot?#iefix) format("embedded-opentype"), url(/fonts/RobotoCondensedRegular/RobotoCondensedRegular.woff) format("woff"), url(/fonts/RobotoCondensedRegular/RobotoCondensedRegular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: RobotoCondensedBold;
    src: url(/fonts/RobotoCondensedBold/RobotoCondensedBold.eot);
    src: url(/fonts/RobotoCondensedBold/RobotoCondensedBold.eot?#iefix) format("embedded-opentype"), url(/fonts/RobotoCondensedBold/RobotoCondensedBold.woff) format("woff"), url(/fonts/RobotoCondensedBold/RobotoCondensedBold.ttf) format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: RobotoRegular, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(31, 35, 43, 0.78), rgba(31, 35, 43, 0.9)),
        url("/img/main.webp") center top / cover fixed no-repeat,
        var(--bg);
    line-height: 1.65;
}

a {
    color: inherit;
}

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

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

.wrap {
    width: min(calc(100% - 32px), var(--wrap));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(37, 41, 50, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.site-header__row,
.site-footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    flex-wrap: wrap;
}

.brand {
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-family: RobotoCondensedBold, Arial, sans-serif;
    line-height: 1.2;
}

.brand span {
    display: block;
    letter-spacing: normal;
    text-transform: none;
    font-size: 13px;
    color: #98999a;
    font-weight: 400;
    font-family: RobotoCondensedRegular, Arial, sans-serif;
    margin-top: 4px;
}

.top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.top-links a {
    padding: 10px 14px;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 153, 102, 0.34);
    transition: 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-family: RobotoRegular, Arial, sans-serif;
    min-height: 40px;
}

.top-links a:hover,
.top-links a:focus-visible {
    color: #fff;
    background: rgba(200, 153, 102, 0.14);
    border-color: rgba(200, 153, 102, 0.8);
}

.hero {
    padding: 34px 0 24px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero__content {
    padding: 40px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
        var(--surface);
}

.eyebrow {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-family: RobotoCondensedBold, Arial, sans-serif;
    text-transform: uppercase;
}

.hero p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 18px;
}

.hero strong,
.content-block strong,
.faq-item strong,
.table-wrap strong {
    color: #fff;
}

.hero__actions,
.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lead-form {
    margin-top: 28px;
}

.lead-form__row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.lead-form__input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(200, 153, 102, 0.34);
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    font-family: RobotoRegular, Arial, sans-serif;
    padding: 0 20px;
    transition: ease-out .25s;
    border-radius: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.lead-form__input::placeholder {
    color: #98999a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}

.lead-form__input:focus {
    outline: none;
    background: rgba(200, 153, 102, 0.08);
    border-color: rgba(200, 153, 102, 0.8);
}

.lead-form__button {
    min-width: 220px;
    cursor: pointer;
    flex: 0 0 auto;
}

.lead-form__small {
    margin: 14px 0 0;
    color: #b6b8bd;
    font-size: 13px;
    line-height: 1.5;
}

.lead-form__small a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 153, 102, 0.45);
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-family: RobotoRegular, Arial, sans-serif;
}

.button {
    background: transparent;
    border: 1px solid #c89966;
    color: #fff;
    box-shadow: none;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    background: rgba(200, 153, 102, 0.14);
}

.button-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.hero__visual {
    overflow: hidden;
    min-height: 360px;
    background: #1a1d23;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumbs {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.breadcrumbs a {
    text-decoration: none;
}

.section {
    padding: 18px 0 30px;
}

.section h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    font-family: RobotoCondensedBold, Arial, sans-serif;
    text-transform: uppercase;
}

.section p.lead {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 18px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.faq-item,
.cta,
.table-wrap,
.content-block {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        var(--surface);
}

.card h3,
.faq-item h3,
.content-block h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-family: RobotoCondensedBold, Arial, sans-serif;
    text-transform: uppercase;
    color: #fff;
}

.card p,
.content-block p,
.faq-item p {
    margin: 0;
    color: var(--muted);
}

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

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.list li + li {
    margin-top: 10px;
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrap th {
    color: #98999a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-family: RobotoRegular, Arial, sans-serif;
}

.table-wrap th,
.table-wrap td {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    color: #fff;
}

.table-wrap td:last-child,
.table-wrap th:last-child {
    text-align: right;
}

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

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background:
        linear-gradient(135deg, rgba(200, 153, 102, 0.14), rgba(255, 255, 255, 0.03)),
        var(--surface-strong);
}

.cta p {
    margin: 8px 0 0;
    color: var(--muted);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 153, 102, 0.26);
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}

.site-footer {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(37, 41, 50, 0.92);
}

.site-footer__meta {
    color: var(--muted);
    font-size: 14px;
}

.site-footer__legal {
    width: 100%;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 960px) {
    .hero__grid,
    .split,
    .card-grid,
    .cta {
        grid-template-columns: 1fr;
        display: grid;
    }

    .top-links {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .top-links a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .hero__content,
    .card,
    .faq-item,
    .cta,
    .table-wrap,
    .content-block {
        padding: 22px;
    }

    .lead-form__row {
        flex-direction: column;
    }

    .lead-form__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .brand {
        width: 100%;
    }

    .site-header__row,
    .site-footer__row {
        gap: 14px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero p,
    .section p.lead {
        font-size: 16px;
    }
}
