/* ==============================================================
   audit.css — стили SEO-лендинга /audit
   ============================================================== */

/* ===== HERO ===== */
.audit-hero {
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}
.audit-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(255, 92, 0, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.audit-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.audit-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.audit-hero .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
}
.audit-hero .kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.audit-hero h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 20px;
}
.audit-hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
.audit-hero p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 32px;
    letter-spacing: -0.005em;
}
.audit-hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.audit-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
}
.audit-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.audit-hero-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}
.audit-hero-meta span:nth-child(2)::before { background: var(--success); }
.audit-hero-meta span:nth-child(3)::before { background: var(--muted-3); }

/* ===== WHEN (когда нужен аудит) ===== */
.audit-when {
    padding: 80px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.audit-when-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.when-card {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}
.when-card:hover { border-color: var(--muted-3); }
.when-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}
.when-card h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 10px;
}
.when-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .audit-when-grid { grid-template-columns: 1fr; }
}

/* ===== CHECKLIST ===== */
.audit-checklist { padding: 80px 0; }
.checklist-intro {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.check-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
}
.check-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.check-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border: 1px solid var(--accent-soft);
    background: var(--accent-soft);
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}
.check-card h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}
.check-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .checklist-grid { grid-template-columns: 1fr; }
}

/* ===== DELIVERABLE ===== */
.audit-deliverable {
    padding: 80px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.deliv-card {
    padding: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}
.deliv-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
    width: 40px;
}
.deliv-body h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
}
.deliv-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
@media (max-width: 720px) {
    .deliverable-grid { grid-template-columns: 1fr; }
    .deliv-card { padding: 24px; }
}

/* ===== CTA-BLOCK (середина страницы) ===== */
.audit-cta {
    padding: 80px 0;
}
.audit-cta-card {
    background: var(--ink);
    color: var(--bg);
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.audit-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}
.audit-cta-card::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 360px;
    background: radial-gradient(ellipse at center, rgba(255, 92, 0, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.audit-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}
.audit-cta-card .section-label {
    color: var(--accent);
    justify-content: center;
    display: flex;
    margin-bottom: 16px;
}
.audit-cta-card h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
}
.audit-cta-card h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
.audit-cta-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    line-height: 1.55;
}
.audit-cta-card .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}
.audit-cta-card .btn-primary:hover {
    background: #FF6F1F;
}
@media (max-width: 720px) {
    .audit-cta-card { padding: 40px 28px; }
}

/* ===== FAQ — переиспользуем стили из faq.css, но контейнер другой ===== */
.audit-faq { padding: 80px 0; }
.audit-faq .faq-wrap {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
    gap: 40px;
}
.audit-faq .section-head {
    margin: 0 0 12px;
    text-align: center;
    max-width: 100%;
}
.audit-faq .section-label {
    justify-content: center;
    display: flex;
}

/* ===== FINAL CTA — компактнее ===== */
.audit-final {
    padding: 64px 0 96px;
    text-align: center;
}
.audit-final h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.audit-final p {
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
