
:root {
    --bg: #0A0A0F;
    --bg-2: #111118;
    --bg-3: #17171F;
    --surface: #1C1C26;
    --surface-2: #23232E;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --red: #2c0000;
    --red-bright: #460002;
    --red-light: #e3011b;
    --red-dark: #5C0D24;
    --red-glow: rgba(128, 126, 126, 0.35);
    --silver: #C8C8D0;
    --silver-light: #E8E8EE;
    --silver-dark: #8A8A95;
    --text: #F5F5F7;
    --text-muted: #9A9AA5;
    --text-dim: #6B6B75;
    --radius: 16px;
    --radius-lg: 24px;
    --ddd: #31eaff;
    --sss: #121116;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Фоновая сетка — серебристая, едва заметная */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(rgba(200, 200, 208, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 200, 208, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Мягкое серебристое свечение вместо красного */
body::after {
    content: '';
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(200, 200, 208, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    color: white;
    box-shadow: 0 4px 16px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--red-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    background: var(--surface);
    border-color: var(--silver-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

/* HERO */
.hero {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Бейдж — серебристый, спокойный */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 200, 208, 0.08);
    color: var(--silver-light);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(200, 200, 208, 0.18);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--silver-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

/* Градиент в заголовке — серебристо-белый, не красный */
.hero h1 .gradient {
    background: linear-gradient(135deg, #ff0140 0%, #d10000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 20px;
}

.hero-note::before {
    content: '💡';
    font-size: 16px;
}

/* Hero Visual - Telegram mockup */
.hero-visual {
    position: relative;
}

.tg-mockup {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
    overflow: hidden;
    position: relative;
}

/* Шапка Telegram — тёмно-красная, приглушённая */
.tg-header {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    padding: 16px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.tg-channel-name { font-weight: 600; }
.tg-channel-subs { font-size: 13px; opacity: 0.85; }

.tg-body { padding: 20px; background: var(--bg-2); }

.tg-post {
    background: var(--surface-2);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.tg-post-text {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
}

.tg-comments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.tg-comment {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: slideIn 0.5s ease backwards;
}

.tg-comment:nth-child(1) { animation-delay: 0.3s; }
.tg-comment:nth-child(2) { animation-delay: 0.6s; }
.tg-comment:nth-child(3) { animation-delay: 0.9s; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.tg-comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.tg-comment-body {
    background: var(--bg-3);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    flex: 1;
    border: 1px solid var(--border);
}

.tg-comment-name {
    font-weight: 600;
    font-size: 12px;
    color: var(--silver-light);
    margin-bottom: 2px;
}

.floating-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Одна карточка с красным акцентом — единственная яркая точка */
.fc-icon.red {
    background: rgba(139, 21, 56, 0.2);
    color: var(--red-bright);
    border: 1px solid rgba(139, 21, 56, 0.35);
}
.fc-icon.silver {
    background: rgba(200, 200, 208, 0.08);
    color: var(--silver-light);
    border: 1px solid rgba(200, 200, 208, 0.2);
}

.fc-text { font-size: 13px; }
.fc-text strong { display: block; color: var(--text); font-weight: 700; }
.fc-text span { color: var(--text-muted); font-size: 12px; }

/* AUDIENCE */
.audience {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.audience-title {
    text-align: center;
    font-size: 24px;
    color: var(--silver-light);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

/* Hover — тонкая серебристая рамка вместо красной */
.audience-item:hover {
    border-color: var(--silver-dark);
    transform: translateY(-2px);
}

.audience-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.audience-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.audience-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* SECTIONS */
section { padding: 110px 0; position: relative; z-index: 1; }

.section-header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 72px;
}

/* Section tag — серебристый */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(200, 200, 208, 0.08);
    color: var(--silver-light);
    border: 1px solid rgba(200, 200, 208, 0.18);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* PROBLEMS */
.problems { background: var(--bg-2); }

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

/* Hover — тонкая красная подсветка, очень деликатная */
.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 21, 56, 0.4);
}

.problem-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 200, 208, 0.06);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    border-color: var(--silver-dark);
}

/* Step-num — серебристый, без красного */
.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--surface-2), var(--bg-3));
    color: var(--silver-light);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 14px;
}

/* FEATURES */
.features { background: var(--bg-2); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver-dark), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-strong);
    background: linear-gradient(135deg, var(--surface-2), var(--bg-3));
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* SHOWCASE */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-content h3 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.showcase-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--silver);
}

/* Check-icon — серебристый */
.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--silver-dark), var(--silver));
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.showcase-visual {
    background: linear-gradient(135deg, rgba(200, 200, 208, 0.04), rgba(200, 200, 208, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(200, 200, 208, 0.06), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(200, 200, 208, 0.04), transparent 50%);
}

.mock-dashboard {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    position: relative;
    z-index: 1;
}

.mock-title {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Точка статуса — серебристая */
.mock-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--silver-light);
    border-radius: 50%;
}

.mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.mock-row:last-child { border-bottom: none; }

.mock-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mock-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

.mock-name { font-weight: 600; font-size: 14px; }
.mock-comment { font-size: 12px; color: var(--text-muted); }

.mock-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

/* Только статус "Новая" — красный акцент, остальные серебристые */
.status-hot { background: rgba(139, 21, 56, 0.15); color: var(--red-bright); border-color: rgba(139, 21, 56, 0.35); }
.status-warm { background: rgba(200, 200, 208, 0.08); color: var(--silver); border-color: rgba(200, 200, 208, 0.2); }
.status-new { background: rgba(200, 200, 208, 0.08); color: var(--silver-light); border-color: rgba(200, 200, 208, 0.2); }

/* HONESTY BLOCK */
.honesty {
    background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.honesty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.honesty-content h2 {
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Единственный красный акцент в заголовке — осмысленный */
.honesty-content h2 .accent {
    color: var(--red-light);
}

.honesty-content > p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 28px;
}

.honesty-visual {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.honesty-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--silver-dark), transparent 50%, var(--silver-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.roadmap-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.roadmap-item:last-child { border-bottom: none; }

.roadmap-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: 700;
}

/* Done — серебристый, не красный */
.roadmap-status.done {
    background: linear-gradient(135deg, var(--silver-dark), var(--silver));
    color: var(--bg);
}

.roadmap-status.soon {
    background: var(--bg-3);
    color: var(--silver-dark);
    border: 1px dashed var(--silver-dark);
}

.roadmap-text strong {
    display: block;
    color: var(--text);
    margin-bottom: 2px;
    font-size: 15px;
}

.roadmap-text span {
    color: var(--text-muted);
    font-size: 13px;
}

.roadmap-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tag live — серебристый */
.tag-live { background: rgba(200, 200, 208, 0.1); color: var(--silver-light); }
.tag-soon { background: rgba(200, 200, 208, 0.05); color: var(--silver-dark); }

/* PRICING - single */
.pricing { background: var(--bg-2); }

.price-single {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.price-single::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.08), transparent 50%);
    pointer-events: none;
}

.price-single-inner {
    position: relative;
    z-index: 1;
}

/* Price badge — красный, это CTA-элемент, ок */
.price-badge-top {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.price-badge-base {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--border), var(--silver-dark));
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.price-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.price-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.035em;
    background: linear-gradient(135deg, var(--text), var(--silver));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--silver-dark);
}

.price-period {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 18px;
    margin-left: 12px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.price-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--silver);
}

/* Bullets — серебристые */
.price-features li::before {
    content: '✓';
    color: var(--silver-light);
    font-weight: 800;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.price-single .btn { width: 100%; }

.price-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-dim);
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    align-items: start;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

/* Карточка PRO — с красной подсветкой, как главная */
.price-card.pro {
    border-color: rgba(139, 21, 56, 0.4);
    box-shadow: 0 0 60px rgba(139, 21, 56, 0.1);
}

.price-card.pro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.06), transparent 50%);
    pointer-events: none;
}

.price-card-inner {
    position: relative;
    z-index: 1;
}

.price-header {
    margin-bottom: 32px;
}

.price-plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.price-plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.price-amount-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.price-free-tag {
    font-size: 48px;
    font-weight: 800;
    color: var(--silver-light);
    letter-spacing: -0.025em;
}

.price-card .price-features {
    margin-bottom: 36px;
}

.price-card .btn {
    width: 100%;
}

/* На мобильных тарифы встают друг под друга */
@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.faq { background: var(--bg); }

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

/* Open state — тонкая серебристая рамка */
.faq-item[open] {
    border-color: var(--silver-dark);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--silver-light);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA FINAL */
.cta-final {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 90px 60px;
    margin: 0 40px 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

/* Фоновое свечение — серебристое, очень мягкое */
.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(200, 200, 208, 0.06), transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-final-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-final p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* FOOTER */
footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    margin-top: 16px;
    max-width: 360px;
    color: var(--text-muted);
}

.footer-col h4 {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

/* Hover — серебристый */
.footer-col a:hover { color: var(--silver-light); }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-grid, .honesty-grid { grid-template-columns: 1fr; gap: 50px; }
    .showcase-grid { gap: 50px; }
}

@media (max-width: 960px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .problems-grid, .features-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-final { padding: 60px 30px; margin: 0 24px 80px; }
    section { padding: 80px 0; }
    .hero { padding: 60px 0 80px; }
}

@media (max-width: 560px) {
    .steps, .audience-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .floating-card-1, .floating-card-2 { display: none; }
    .price-single { padding: 40px 24px; }
    .price-value { font-size: 56px; }
}

/* Сетка для 5 шагов (фиксим вываливание) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Карточка для доп. пакетов ИИ */
.ai-packs-card {
    background: var(--dark-bg, #121116);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}
.ai-packs-card h5 {
    color: var(--text);
    font-size: 20px;
    margin-bottom: 8px;
}
.ai-packs-card p {
    color: var(--text-dim);
    margin-bottom: 30px;
}
.ai-packs-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ai-pack-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 35px;
    text-align: center;
    min-width: 160px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.ai-pack-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.ai-pack-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}
.ai-pack-desc {
    font-size: 14px;
    color: var(--text-muted);
}
/* Равная высота колонок тарифов */
.price-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Прижимаем кнопку всегда к самому низу карточки */
.price-card-inner > a {
    margin-top: auto;
}
