@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --color-primary: #ff5a5f;
    --color-primary-dark: #ff2e63;
    --color-secondary: #ffa751;
    --color-accent: #21d4fd;
    --color-text: #15111f;
    --color-text-muted: #5f5871;
    --color-muted: #f4f5fb;
    --color-surface: #ffffff;
    --color-border: rgba(53, 45, 70, 0.12);
    --color-background: #f8f7ff;
    --gradient-hero: radial-gradient(circle at 12% 20%, rgba(255, 90, 95, 0.35), transparent 55%),
        radial-gradient(circle at 88% 18%, rgba(33, 212, 253, 0.35), transparent 62%),
        linear-gradient(135deg, #1f1147 0%, #391a6d 55%, #0f0526 100%);
    --gradient-highlight: linear-gradient(135deg, rgba(255, 90, 95, 0.1), rgba(33, 212, 253, 0.08));
    --shadow-card: 0 25px 60px rgba(15, 5, 38, 0.12);
    --shadow-soft: 0 15px 35px rgba(15, 5, 38, 0.08);
    --font-base: 'Manrope', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --header-offset: clamp(104px, 18vh, 144px);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.price {
    font-weight: 700;
}

.price--discount {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price--discount .price__old {
    font-weight: 600;
    color: inherit;
    opacity: 0.65;
}

.price--discount .price__old s {
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
}

.price--discount .price__new {
    color: var(--color-secondary);
    font-weight: 800;
}

img,
iframe {
    max-width: 100%;
    border: 0;
    display: block;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    margin-top: 0;
    color: var(--color-text);
}

p {
    margin-top: 0;
    margin-bottom: 1.1em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-dark);
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(15, 5, 38, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    color: #fff;
    letter-spacing: 0.04em;
}

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

.nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus::after {
    transform: scaleX(1);
}

.hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: 120px 0 88px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 167, 81, 0.18), transparent 65%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 56px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(15, 5, 38, 0.35);
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.hero__media {
    display: flex;
    justify-content: center;
}

.hero__media-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 420px;
}

.hero__media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.hero__waveform {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(15, 5, 38, 0.68);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.hero__stats {
    position: relative;
    z-index: 1;
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.stat {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat span {
    font-size: 0.95rem;
}

.section {
    padding: 84px 0;
}

.section--accent {
    background-color: var(--color-surface);
}

.section--muted {
    background-color: var(--color-muted);
}

.section--highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f9f3ff 100%);
}

.section--cta {
    background: linear-gradient(120deg, rgba(255, 90, 95, 0.08), rgba(33, 212, 253, 0.12));
}

.section h2 {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    margin-bottom: 18px;
}

.section__lead {
    max-width: 720px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.longread {
    max-width: 840px;
}

.longread p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.longread ul {
    padding-left: 24px;
    margin: 20px 0 0;
    color: var(--color-text);
    font-weight: 600;
    display: grid;
    gap: 12px;
}

.longread li {
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.feature {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-highlight);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature:hover::after,
.feature:focus-within::after {
    opacity: 1;
}

.feature > * {
    position: relative;
    z-index: 1;
}

.feature__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 90, 95, 0.12);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.highlight-card {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 247, 255, 0.95));
    border-radius: 32px;
    padding: 48px;
    border: 1px solid rgba(33, 212, 253, 0.18);
    box-shadow: var(--shadow-soft);
}

.highlight-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.offer {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
    background: var(--color-surface);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.offer__content {
    display: grid;
    gap: 20px;
}

.offer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    color: var(--color-text);
    font-weight: 600;
}

.offer__details {
    display: grid;
    gap: 16px;
    align-content: start;
}

.offer__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 90, 95, 0.12), rgba(33, 212, 253, 0.18));
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    box-shadow: 0 12px 30px rgba(15, 5, 38, 0.12);
}

.offer__note {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    padding: 20px;
    border-radius: 20px;
    background: rgba(33, 212, 253, 0.08);
    border: 1px dashed rgba(33, 212, 253, 0.4);
}

.story-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.story-card {
    background-color: var(--color-surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.story-card__media {
    background: rgba(33, 212, 253, 0.08);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-bottom: 1px solid var(--color-border);
}

.story-card__media audio {
    display: block;
    width: 100%;
}

.story-card__placeholder {
    text-align: center;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.story-card__placeholder code {
    background: rgba(21, 17, 31, 0.06);
    padding: 2px 6px;
    border-radius: 6px;
}

.story-card__body {
    padding: 28px;
}

.story-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    font-size: 0.88rem;
    color: var(--color-primary);
}

.steps {
    display: grid;
    gap: 28px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.step {
    display: flex;
    gap: 18px;
    background: var(--color-surface);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.step__number {
    font-size: 1.9rem;
    font-family: var(--font-display);
    color: var(--color-primary);
    min-width: 48px;
}

.testimonials {
    display: grid;
    gap: 28px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

blockquote {
    margin: 0;
    padding: 28px;
    background: var(--color-surface);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '“';
    font-size: 3rem;
    line-height: 1;
    color: rgba(255, 90, 95, 0.25);
    position: absolute;
    top: 16px;
    left: 20px;
}

blockquote p {
    margin-left: 18px;
}

blockquote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    color: var(--color-text-muted);
    font-weight: 600;
}

.request {
    display: grid;
    gap: 40px;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.request__intro {
    background: linear-gradient(135deg, rgba(255, 90, 95, 0.12), rgba(33, 212, 253, 0.12));
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(255, 90, 95, 0.2);
    box-shadow: var(--shadow-soft);
}

.request__list {
    margin: 24px 0 0;
    padding-left: 20px;
    color: var(--color-text-muted);
}

.request__form {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 18px;
    scroll-margin-top: var(--header-offset);
}

.request__status-anchor {
    display: block;
    height: 0;
    margin: 0;
    scroll-margin-top: var(--header-offset);
}

label span {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form__hint {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.story-options {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 16px;
}

.story-options legend {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-text);
}

.story-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: #fff;
    cursor: pointer;
}

.story-option:hover,
.story-option:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(33, 33, 33, 0.08);
}

.story-option input[type='radio'] {
    width: 22px;
    height: 22px;
    margin: 2px 0 0;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    padding: 0;
    accent-color: var(--color-primary);
}

.story-option input[type='radio']:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.18);
}

.story-option span {
    display: block;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-text);
}

.story-option input[type='radio']:checked + span {
    color: var(--color-primary);
}

.story-option input[type='radio']:checked + span small {
    color: var(--color-text);
}

.story-option span small {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.story-option__details {
    margin: -4px 0 0;
    padding: 0 0 0 34px;
}

.story-option__details label {
    margin: 0;
}

.story-option__details[hidden] {
    display: none;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.18);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.button:hover::after,
.button:focus::after {
    opacity: 1;
}

.button--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    box-shadow: 0 18px 38px rgba(255, 90, 95, 0.35);
}

.button--contrast {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.button--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 10px 22px;
}

.alert {
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
}

.alert--success {
    background: rgba(63, 174, 120, 0.12);
    color: #2f7a57;
    border: 1px solid rgba(63, 174, 120, 0.3);
}

.alert--error {
    background: rgba(217, 83, 79, 0.12);
    color: #a94442;
    border: 1px solid rgba(217, 83, 79, 0.3);
}

.form__note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.faq {
    display: grid;
    gap: 20px;
    margin-top: 36px;
}

.faq__item {
    background: var(--color-surface);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.faq__item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.faq__content p {
    color: var(--color-text-muted);
    margin: 0;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--color-surface);
    border-radius: 28px;
    padding: 40px 48px;
    border: 1px solid rgba(255, 90, 95, 0.22);
    box-shadow: var(--shadow-card);
}

.promo-banner {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    background: #12082c;
    border-radius: 24px;
    padding: clamp(20px, 4vw, 36px);
    border: 1px solid rgba(33, 212, 253, 0.24);
    box-shadow: var(--shadow-card);
    color: #fff;
}

.promo-banner__media img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(15, 5, 38, 0.3);
}

.promo-banner__content h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.promo-banner__content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.promo-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 18px;
}

.promo-banner__button {
    align-self: flex-start;
}

.footer {
    background: #0f0526;
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 36px;
}

.footer__content {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
    margin-bottom: 28px;
}

.footer__links,
.footer__contacts {
    display: grid;
    gap: 12px;
}

.footer__links a,
.footer__contacts a {
    color: rgba(255, 255, 255, 0.75);
}

.footer__links a:hover,
.footer__contacts a:hover {
    color: #fff;
}

.footer__note {
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-button {
    position: fixed;
    right: clamp(16px, 4vw, 32px);
    bottom: clamp(16px, 4vw, 32px);
    z-index: 40;
    box-shadow: 0 20px 48px rgba(255, 90, 95, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button:hover,
.floating-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(255, 90, 95, 0.42);
}

@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 110px 0 72px;
    }

    .hero__content {
        gap: 48px;
    }

    .promo-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: static;
        background: #0f0526;
    }

    .site-header__inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 96px 0 64px;
    }

    .hero__media-card {
        max-width: 320px;
    }

    .section {
        padding: 64px 0;
    }

    .request__form,
    .request__intro,
    .highlight-card,
    .offer,
    .cta-banner,
    .promo-banner {
        padding: 28px;
    }

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

    .promo-banner__eyebrow {
        letter-spacing: 0.14em;
    }

    .floating-button {
        left: 16px;
        right: 16px;
        bottom: 16px;
        display: flex;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
}
