:root {
    --background: #fbf7ef;
    --background-soft: #f4eadc;
    --text: #182333;
    --muted: #5f6c7b;
    --accent: #b65324;
    --accent-dark: #873918;
    --accent-soft: #fff1e5;
    --card: #fffdf9;
    --border: #e5d8c8;
    --shadow: 0 18px 45px rgba(45, 32, 20, 0.11);
    --shadow-soft: 0 10px 28px rgba(45, 32, 20, 0.08);
    --max-width: 1180px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(182, 83, 36, 0.13), transparent 32rem),
        linear-gradient(180deg, #fffaf4 0%, var(--background) 38%, #fffdf9 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 244, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 216, 200, 0.85);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    background: var(--text);
    color: #fff7ed;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 10px 15px;
    color: #fffdf9 !important;
    background: var(--accent);
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(182, 83, 36, 0.2);
}

.hero {
    min-height: calc(100vh - 74px);
    display: grid;
    align-items: center;
    padding: 72px 0 84px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -9rem;
    top: 9rem;
    width: 34rem;
    height: 34rem;
    background: linear-gradient(135deg, rgba(182, 83, 36, 0.15), rgba(24, 35, 51, 0.08));
    border-radius: 38% 62% 46% 54%;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 64px;
    align-items: center;
}

.hero-copy,
.workflow-panel {
    min-width: 0;
}

.section-tag {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 7px 11px;
    border: 1px solid rgba(182, 83, 36, 0.22);
    border-radius: 999px;
    background: rgba(255, 241, 229, 0.72);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    overflow-wrap: anywhere;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3.05rem, 7vw, 5.85rem);
    line-height: 0.95;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.25;
}

.hero-text {
    max-width: 670px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    line-height: 1.65;
}

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

.hero-actions {
    margin-bottom: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 19px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
    color: #fffdf9;
    background: var(--accent);
    box-shadow: 0 13px 25px rgba(182, 83, 36, 0.24);
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 253, 249, 0.8);
    border-color: var(--border);
}

.button-light {
    color: var(--text);
    background: #fffdf9;
}

.trust-row {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-row span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--accent);
}

.workflow-panel {
    padding: 24px;
    border: 1px solid rgba(229, 216, 200, 0.95);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 247, 237, 0.94)),
        var(--card);
    box-shadow: var(--shadow);
}

.panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
}

.panel-top strong {
    min-width: 0;
    color: var(--text);
    text-align: right;
}

.workflow-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.workflow-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(229, 216, 200, 0.86);
    border-radius: 7px;
    background: #fffdf9;
    box-shadow: 0 7px 18px rgba(45, 32, 20, 0.06);
    position: relative;
    min-width: 0;
}

.workflow-list li + li::before {
    content: "";
    position: absolute;
    left: 34px;
    top: -13px;
    width: 2px;
    height: 13px;
    background: var(--border);
}

.step-number {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 900;
}

.workflow-list p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.section {
    padding: 86px 0;
}

.split-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 253, 249, 0.55);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 58px;
    align-items: start;
}

.text-block {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.card-grid {
    display: grid;
    gap: 18px;
}

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

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

.info-card.compact {
    min-height: 180px;
}

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

.card-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 34px;
    margin-bottom: 22px;
    border-radius: 7px;
    background: var(--text);
    color: #fffdf9;
    font-size: 0.78rem;
    font-weight: 900;
}

.offer-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--text), #263247);
}

.offer-card {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    background: #111a27;
    color: #fffdf9;
    box-shadow: var(--shadow);
}

.offer-main,
.offer-details {
    padding: clamp(28px, 5vw, 54px);
}

.offer-main {
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 177, 99, 0.22), transparent 18rem),
        #111a27;
}

.offer-details {
    background: rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 241, 229, 0.13);
    color: #ffd0ad;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.offer-card h2,
.offer-card h3 {
    color: #fffdf9;
}

.offer-card p {
    color: rgba(255, 253, 249, 0.76);
}

.price {
    display: block;
    margin: 22px 0;
    color: #ffc18f;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: 0;
}

.promise {
    max-width: 620px;
}

.check-list {
    display: grid;
    gap: 16px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    color: rgba(255, 253, 249, 0.86);
}

.check-list li::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.9) 46% 54%, transparent 55%),
        var(--accent);
}

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

.compare-card {
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.compare-card.before {
    background: #fff8f3;
}

.compare-card.after {
    background: #f4fbf3;
}

.compare-card h3 {
    font-size: 1.5rem;
}

.compare-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.compare-card li {
    padding: 13px 14px;
    border-radius: 7px;
    background: rgba(255, 253, 249, 0.78);
    border: 1px solid rgba(229, 216, 200, 0.78);
}

.guardrail {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.process-section {
    background: rgba(255, 253, 249, 0.58);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.timeline article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

.timeline span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.about-section {
    background: #fffdf9;
}

.cta-band {
    padding: 72px 0;
    background: var(--accent);
    color: #fffdf9;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-inner h2 {
    max-width: 700px;
    margin-bottom: 12px;
    color: #fffdf9;
}

.cta-inner p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 253, 249, 0.84);
    font-size: 1.08rem;
}

.site-footer {
    padding: 42px 0;
    background: #111a27;
    color: #fffdf9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 0.8fr;
    gap: 28px;
}

.site-footer p,
.site-footer a {
    margin: 8px 0 0;
    color: rgba(255, 253, 249, 0.72);
    text-decoration: none;
}

.site-footer span {
    display: block;
    color: rgba(255, 253, 249, 0.48);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

@media (max-width: 980px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 70px;
    }

    .hero-grid,
    .split-grid,
    .offer-card,
    .compare-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
    }

    .offer-details {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .card-grid.three,
    .card-grid.four,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    .header-inner {
        min-height: 68px;
    }

    .nav-links {
        display: none;
    }

    .brand span:last-child {
        max-width: 220px;
        line-height: 1.15;
    }

    .hero {
        padding-top: 48px;
    }

    h1 {
        font-size: clamp(2.3rem, 11.5vw, 3rem);
        overflow-wrap: normal;
    }

    h2 {
        font-size: clamp(1.9rem, 10vw, 2.6rem);
    }

    .section {
        padding: 62px 0;
    }

    .hero-actions .button,
    .cta-inner .button {
        width: 100%;
    }

    .trust-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .workflow-panel,
    .info-card,
    .compare-card,
    .timeline article {
        padding: 20px;
    }

    .panel-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .panel-top strong {
        text-align: left;
    }

    .workflow-list li {
        grid-template-columns: 34px 1fr;
        padding: 15px;
    }

    .workflow-list strong,
    .workflow-list p,
    .hero-text {
        overflow-wrap: anywhere;
    }

    .card-grid.three,
    .card-grid.four,
    .timeline {
        grid-template-columns: 1fr;
    }

    .info-card,
    .timeline article {
        min-height: auto;
    }

    .price {
        font-size: 4rem;
    }
}
