﻿:root {
    --dp-bg: #111318;
    --dp-bg-soft: #1a1f2a;
    --dp-panel: rgba(26, 31, 42, 0.9);
    --dp-line: rgba(255, 172, 90, 0.18);
    --dp-text: #fff7e8;
    --dp-muted: #d6c5b2;
    --dp-accent: #ffb15a;
    --dp-accent-strong: #ff8f47;
    --dp-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --dp-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.dp-body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dp-text);
    background:
        radial-gradient(circle at top left, rgba(255, 177, 90, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 143, 71, 0.12), transparent 24%),
        linear-gradient(180deg, #0f1116 0%, #151922 50%, #0f1219 100%);
    line-height: 1.6;
}

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

.dp-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.dp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(15, 17, 22, 0.84);
    border-bottom: 1px solid var(--dp-line);
}

.dp-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dp-logo {
    text-decoration: none;
    color: var(--dp-text);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 1rem;
}

.dp-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.dp-nav a,
.dp-footer__links a {
    text-decoration: none;
    color: var(--dp-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.dp-nav a:hover,
.dp-footer__links a:hover {
    color: var(--dp-accent);
    transform: translateY(-1px);
}

.dp-disclaimer {
    text-align: center;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #ffe8cb;
    background: linear-gradient(90deg, rgba(255, 177, 90, 0.12), rgba(255, 143, 71, 0.08));
    border-top: 1px solid rgba(255, 177, 90, 0.08);
}

.dp-menu-toggle {
    display: none;
}

.dp-burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--dp-line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.dp-burger span {
    width: 18px;
    height: 2px;
    background: var(--dp-text);
}

.dp-hero,
.dp-plans,
.dp-expert,
.dp-benefits,
.dp-faq,
.dp-audience,
.dp-contact {
    padding: 88px 0;
}

.dp-hero__grid,
.dp-benefits__grid,
.dp-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.dp-label {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    color: var(--dp-accent);
}

.dp-hero h1,
.dp-plans h2,
.dp-benefits h2,
.dp-faq h2,
.dp-audience h2,
.dp-contact h2 {
    margin: 0 0 18px;
    line-height: 1.08;
}

.dp-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.dp-plans h2,
.dp-benefits h2,
.dp-faq h2,
.dp-audience h2,
.dp-contact h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.dp-lead,
.dp-benefits p,
.dp-card p,
.dp-faq p,
.dp-tile p,
.dp-contact p,
.dp-footer p,
.dp-quote__card p {
    color: var(--dp-muted);
}

.dp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 34px;
}

.dp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

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

.dp-btn--primary {
    background: linear-gradient(135deg, var(--dp-accent), var(--dp-accent-strong));
    color: #17100b;
    box-shadow: 0 14px 34px rgba(255, 143, 71, 0.24);
}

.dp-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--dp-line);
    color: var(--dp-text);
}

.dp-metrics,
.dp-plan-grid,
.dp-benefits__cards,
.dp-faq__list,
.dp-audience__grid {
    display: grid;
    gap: 18px;
}

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

.dp-metrics article,
.dp-plan,
.dp-card,
.dp-faq details,
.dp-tile,
.dp-form,
.dp-quote__card {
    background: var(--dp-panel);
    border: 1px solid var(--dp-line);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
}

.dp-metrics article {
    padding: 18px;
}

.dp-metrics strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.dp-metrics span {
    font-size: 0.92rem;
    color: var(--dp-muted);
}

.dp-frame {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--dp-shadow);
    position: relative;
}

.dp-frame::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 177, 90, 0.22), transparent 70%);
    pointer-events: none;
}

.dp-frame img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.dp-frame--hero img {
    min-height: 560px;
    aspect-ratio: 5 / 6;
}

.dp-plan-grid,
.dp-audience__grid,
.dp-benefits__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.dp-plan,
.dp-card,
.dp-tile {
    padding: 24px;
}

.dp-plan h3,
.dp-card h3,
.dp-tile h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.dp-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 177, 90, 0.12);
    color: var(--dp-accent);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.dp-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.dp-plan ul,
.dp-list {
    margin: 0 0 24px;
    padding-left: 18px;
    color: var(--dp-muted);
}

.dp-plan li + li,
.dp-list li + li {
    margin-top: 8px;
}

.dp-plan--featured {
    border-color: rgba(255, 177, 90, 0.34);
    transform: translateY(-8px);
}

.dp-quote__card {
    padding: 34px;
    text-align: center;
}

.dp-quote__card p {
    margin: 0 0 14px;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.dp-quote__card span {
    color: var(--dp-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

.dp-faq__list {
    max-width: 920px;
}

.dp-faq details {
    padding: 22px 24px;
}

.dp-faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.dp-faq summary::-webkit-details-marker {
    display: none;
}

.dp-faq p {
    margin: 14px 0 0;
}

.dp-form {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.dp-form input,
.dp-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 19, 24, 0.92);
    color: var(--dp-text);
    font: inherit;
}

.dp-form textarea {
    resize: vertical;
    min-height: 130px;
}

.dp-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dp-muted);
    font-size: 0.95rem;
}

.dp-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.dp-footer {
    padding: 28px 0 44px;
    border-top: 1px solid var(--dp-line);
}

.dp-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
}

.dp-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1080px) {
    .dp-hero__grid,
    .dp-benefits__grid,
    .dp-contact__grid,
    .dp-metrics,
    .dp-plan-grid,
    .dp-benefits__cards,
    .dp-audience__grid {
        grid-template-columns: 1fr;
    }

    .dp-plan--featured {
        transform: none;
    }
}

@media (max-width: 840px) {
    .dp-shell {
        width: min(100% - 28px, 1180px);
    }

    .dp-burger {
        display: inline-flex;
    }

    .dp-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(15, 17, 22, 0.98);
        border: 1px solid var(--dp-line);
        box-shadow: var(--dp-shadow);
    }

    .dp-menu-toggle:checked ~ .dp-nav {
        display: flex;
    }

    .dp-header__inner {
        position: relative;
    }

    .dp-hero,
    .dp-plans,
    .dp-expert,
    .dp-benefits,
    .dp-faq,
    .dp-audience,
    .dp-contact {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .dp-header__inner {
        min-height: 76px;
    }

    .dp-logo {
        letter-spacing: 0.12em;
        font-size: 0.96rem;
    }

    .dp-footer__inner {
        flex-direction: column;
    }
}
