:root {
    /* Colors from original */
    --primary: #FFD11C;
    --primary-hover: #e6bc19;
    --text: #111111;
    --text-muted: #555555;
    --bg: #ffffff;
    --bg-soft: #f8f9fa;
    --border: #e9ecef;

    /* Layout */
    --container: 600px;
    /* Сайт довольно узкий в оригинале */
    --radius: 16px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: #f1f4f9;
    /* Более мягкий голубоватый фон как в оригинале */
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 40px;
}

.container {
    max-width: var(--container);
    margin: 20px auto;
    padding: 30px 24px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

header {
    padding: 32px 0 16px;
    text-align: center;
}

h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features {
    list-style: none;
    margin-bottom: 24px;
}

.features li {
    font-size: 1.05rem;
    margin-bottom: 8px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li::before {
    content: "•";
    color: var(--text-muted);
}

.main-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text);
}

.main-text span.bold {
    font-weight: 700;
}

.cta-wrap {
    margin: 32px 0;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--text);
    text-decoration: none;
    padding: 14px 48px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
    width: 100%;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.promo-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    aspect-ratio: 16 / 9;
}

.promo-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.promo-title span {
    display: block;
}

footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.badge-direkt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dddddd;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    align-self: flex-start;
    text-decoration: none;
}

/* Responsiveness / Rubber */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        text-align: left;
    }

    .promo-image-card {
        aspect-ratio: 4 / 5;
    }
}