/* ========================================
   RESET & БАЗА
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   СКРЫТЫЙ ЗАГОЛОВОК ДЛЯ SEO
   ======================================== */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* ========================================
   КНОПКИ
   ======================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #e63946;
    color: #fff;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

.btn-primary:hover {
    background: #c62836;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.6), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: #1e293b;
    color: #fff;
}
.btn-secondary:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 500px;
}

/* ========================================
   HEADER
   ======================================== */
header {
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: #e63946;
    letter-spacing: -0.5px;
}

header nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

header nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
header nav a:hover {
    color: #e63946;
}

/* ========================================
   СЕКЦИЯ 1 — HERO
   ======================================== */
#hero {
    padding: 60px 0 70px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f4f9 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 40px;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0b1a2e;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 28px;
    max-width: 600px;
}

.hero-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-features li {
    font-size: 1.05rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features li strong {
    color: #0b1a2e;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-decor {
    font-size: 10rem;
    line-height: 1;
    opacity: 0.08;
    user-select: none;
    pointer-events: none;
}

/* ========================================
   СЕКЦИЯ 2 — КОНТЕКСТ
   ======================================== */
#context {
    padding: 60px 0 70px;
    background: #ffffff;
}

#context h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0b1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.1rem;
    color: #475569;
    max-width: 780px;
    margin-bottom: 48px;
}

#context h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 48px 0 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #e63946;
    display: inline-block;
}

/* сетка карточек */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #f8fafc;
    padding: 24px 22px;
    border-radius: 16px;
    border: 1px solid #e9e9ef;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.news-source {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #64748b;
    display: block;
    margin-bottom: 10px;
}

.card blockquote {
    font-style: italic;
    color: #1e293b;
    line-height: 1.6;
    quotes: "«" "»" "„" "“";
}

.card blockquote::before {
    content: "«";
}
.card blockquote::after {
    content: "»";
}

.seller-card cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
}

/* Стили для карточек новостей */
.news-card {
    background: #f8fafc;
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid #e9e9ef;
    transition: box-shadow 0.2s;
}
.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Заголовок-источник (бывший span) */
.news-source {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #e63946;          /* Красный, как брендовый цвет */
    margin-bottom: 8px;
    display: block;
}

/* Ссылки-заголовки источников */
.news-source a {
    color: #e63946;
    text-decoration: none;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
}

.news-source a:hover {
    color: #c62836;
    border-bottom: 2px solid #e63946;
}




/* Цитата внутри карточки */
.news-card blockquote {
    font-style: italic;
    color: #1e293b;
    line-height: 1.6;
    quotes: "«" "»" "„" "“";
    margin: 0;
}

.news-card blockquote::before {
    content: "«";
}
.news-card blockquote::after {
    content: "»";
}


/* видео-ссылки */
.video-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f1f5f9;
    border-radius: 40px;
    text-decoration: none;
    color: #0b1a2e;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
    border: 1px solid #e2e8f0;
}
.video-link:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9e9ef;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1a1a1a;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.video-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
}

.video-title {
    padding: 12px 14px 6px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-badge {
    padding: 0 14px 12px;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 400px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* вывод-дожималка */
.context-outro {
    margin-top: 48px;
    padding: 32px 28px;
    background: #f1f5f9;
    border-radius: 20px;
    text-align: center;
    border-left: 6px solid #e63946;
}

.context-outro p {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 12px;
}
.context-outro p:last-of-type {
    margin-bottom: 20px;
}

/* ========================================
   СЕКЦИЯ 3 — ПРОДАЖА / ПРИЗЫВ
   ======================================== */
#order {
    padding: 60px 0 80px;
    background: linear-gradient(145deg, #0b1a2e 0%, #1e293b 100%);
    color: #ffffff;
}

.order-box {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

#order h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.order-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.price {
    color: #facc15;
    font-weight: 700;
}

.order-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.order-list li {
    font-size: 1.1rem;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.order-cta-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 28px;
    line-height: 1.6;
}
.order-cta-text strong {
    color: #facc15;
}

.order-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 28px 0;
    border-top: 1px solid #1e293b;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-inner a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-inner a:hover {
    color: #facc15;
}

/* ========================================
   АДАПТИВ (МОБИЛЬНЫЕ)
   ======================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features {
        align-items: center;
    }
    .hero-features li {
        text-align: left;
        max-width: 400px;
    }
    .hero-decor {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    /* шапка */
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    header nav {
        justify-content: center;
        gap: 14px;
    }
    header nav a {
        font-size: 0.9rem;
    }

    /* hero */
    #hero {
        padding: 40px 0 50px;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-features li {
        font-size: 0.95rem;
    }
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    .btn-large {
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    /* контекст */
    #context {
        padding: 40px 0 50px;
    }
    #context h3 {
        font-size: 1.3rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .video-links {
        flex-direction: column;
        align-items: stretch;
    }
    .video-link {
        justify-content: center;
        border-radius: 12px;
    }

    /* продажа */
    #order {
        padding: 40px 0 60px;
    }
    .order-list {
        padding: 24px 18px;
    }
    .order-list li {
        font-size: 1rem;
    }
    .order-cta-text {
        font-size: 1.05rem;
    }

    /* футер */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-decor {
        font-size: 4rem;
    }
    .btn-large {
        font-size: 1rem;
        padding: 14px 16px;
    }
    .context-outro {
        padding: 22px 16px;
    }
    .context-outro p {
        font-size: 1rem;
    }
}