﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0f18;
    --bg-soft: #0d1624;
    --panel: #122134;
    --text: #f0fdf4;
    --muted: #b5c4d8;
    --line: rgba(0, 210, 255, 0.16);
    --accent: #00d2ff;
    --accent-2: #7dd3fc;
    --accent-3: #86efac;
}

html {
    scroll-behavior: smooth;
}

body.vp-body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0a0f18 0%, #0d1624 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

.vp-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.vp-wrap--narrow {
    max-width: 980px;
}

.vp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 24, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 210, 255, 0.08);
}

.vp-header__inner {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vp-logo {
    text-decoration: none;
    color: var(--accent);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vp-disclaimer {
    padding: 8px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--accent-3);
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.vp-nav {
    position: relative;
}

.vp-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.vp-nav__list a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.vp-nav__list a:hover {
    color: var(--accent);
}

.vp-nav__toggle,
.vp-nav__button {
    display: none;
}

.vp-section {
    padding: 88px 24px;
}

.vp-section--soft {
    background: rgba(13, 22, 36, 0.7);
}

.vp-hero__grid,
.vp-story,
.vp-contact {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.vp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.22);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vp-hero h1,
.vp-head h2,
.vp-story h2,
.vp-contact h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.04;
    margin-bottom: 18px;
}

.vp-head h2,
.vp-story h2,
.vp-contact h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.vp-lead,
.vp-hero p,
.vp-card p,
.vp-story p,
.vp-faq__item p,
.vp-contact p,
.vp-list li,
.vp-footer {
    color: var(--muted);
    font-size: 18px;
}

.vp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.vp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: none;
    cursor: pointer;
}

.vp-btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #04111b;
}

.vp-btn--ghost,
.vp-btn--secondary {
    border: 1px solid rgba(0, 210, 255, 0.22);
    color: var(--text);
    background: transparent;
}

.vp-frame,
.vp-card,
.vp-faq__item,
.vp-form {
    background: linear-gradient(180deg, rgba(18, 33, 52, 0.96), rgba(10, 15, 24, 0.98));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.vp-frame,
.vp-card,
.vp-form {
    padding: 24px;
}

.vp-frame img,
.vp-story__visual img {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.vp-head {
    margin-bottom: 36px;
}

.vp-grid {
    display: grid;
    gap: 20px;
}

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

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

.vp-card h3,
.vp-plan h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.vp-list {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.vp-list li {
    position: relative;
    padding-left: 18px;
}

.vp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.vp-plan {
    display: flex;
    flex-direction: column;
}

.vp-plan--accent {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.28);
}

.vp-price {
    color: var(--accent);
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 18px;
}

.vp-plan .vp-btn {
    margin-top: auto;
}

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

.vp-faq__item {
    padding: 22px 24px;
}

.vp-faq__item summary {
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
}

.vp-faq__item summary::-webkit-details-marker {
    display: none;
}

.vp-faq__item p {
    margin-top: 14px;
}

.vp-form {
    display: grid;
    gap: 14px;
}

.vp-form input,
.vp-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 16px 18px;
    font: inherit;
}

.vp-form textarea {
    resize: vertical;
    min-height: 120px;
}

.vp-footer {
    padding: 28px 24px 42px;
    border-top: 1px solid rgba(0, 210, 255, 0.08);
}

.vp-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.vp-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.vp-footer nav a {
    color: var(--muted);
    text-decoration: none;
}

@media (max-width: 980px) {
    .vp-hero__grid,
    .vp-story,
    .vp-contact,
    .vp-grid--4,
    .vp-grid--3 {
        grid-template-columns: 1fr;
    }

    .vp-plan--accent {
        transform: none;
    }

    .vp-header__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .vp-nav__button {
        width: 48px;
        height: 48px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .vp-nav__button span {
        display: block;
        height: 2px;
        border-radius: 99px;
        background: var(--text);
    }

    .vp-nav__list {
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        min-width: 240px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(10, 15, 24, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-nav__toggle:checked ~ .vp-nav__list {
        display: flex;
    }
}

@media (max-width: 720px) {
    .vp-section,
    .vp-header__inner,
    .vp-disclaimer,
    .vp-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .vp-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .vp-logo {
        font-size: 26px;
    }

    .vp-hero h1,
    .vp-head h2,
    .vp-story h2,
    .vp-contact h2 {
        font-size: 34px;
    }

    .vp-lead,
    .vp-hero p,
    .vp-card p,
    .vp-story p,
    .vp-faq__item p,
    .vp-contact p,
    .vp-list li,
    .vp-footer {
        font-size: 16px;
    }

    .vp-frame,
    .vp-card,
    .vp-faq__item,
    .vp-form {
        border-radius: 22px;
    }

    .vp-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
