/* Styles shared by pricing/comparison/case-studies/video marketing pages. */

.page-hero {
    padding: 110px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: 42px;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto;
}

/* ===== Pricing ===== */
.pricing-grid-section { padding: 60px 0 30px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
}
.price-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card-featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}
.price-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 999px;
}
.price-tier {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
    margin-bottom: 6px;
}
.price-amount {
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}
.price-num {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.price-unit { color: var(--text-muted); }
.price-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 18px;
    min-height: 44px;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.price-features li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.price-features li:last-child { border-bottom: none; }

.price-note {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    border: 1px dashed var(--border);
    border-radius: 12px;
}

/* ===== Pricing FAQ ===== */
.faq { padding: 80px 0; background: var(--bg-elevated); }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.faq-item h3 {
    font-size: 16px;
    margin: 0 0 8px;
}
.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Comparison table ===== */
.compare-section { padding: 60px 0; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}
.compare-table th, .compare-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.compare-table th {
    background: var(--bg);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.compare-table th.col-us {
    color: var(--primary);
}
.compare-table td.col-us {
    background: var(--primary-glow);
    color: var(--text);
    font-weight: 500;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-note {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    margin-top: 24px;
}
.compare-note a { color: var(--primary); }

.compare-callout { padding: 60px 0 100px; background: var(--bg-elevated); }
.callout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.callout {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.callout h3 { font-size: 16px; margin: 0 0 12px; }
.callout ul { padding-left: 18px; color: var(--text-muted); margin: 0; }
.callout li { margin-bottom: 8px; line-height: 1.5; font-size: 14px; }

/* ===== Case studies ===== */
.case-list-section { padding: 60px 0 100px; }
.case-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
.case-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
}
.case-industry {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.case-card h2 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.4;
}
.case-summary {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.case-metrics {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.case-metrics li { font-size: 13px; color: var(--text-muted); }
.case-metrics li strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
}
.case-quote {
    background: var(--bg);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    padding: 14px 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text);
}
.case-empty-note {
    text-align: center;
    color: var(--text-muted);
    padding: 28px;
    margin-top: 32px;
    border: 1px dashed var(--border);
    border-radius: 12px;
}
.case-empty-note a { color: var(--primary); }

/* ===== Video ===== */
.video-section { padding: 50px 0 70px; }
.video-frame {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    color: var(--text-muted);
}
.video-placeholder .play-icon {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 14px;
}
.video-placeholder small {
    margin-top: 14px;
    color: var(--text-muted);
    max-width: 480px;
    padding: 0 16px;
    font-size: 12px;
}
.video-chapters, .video-transcript {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 18px;
}
.video-chapters h2, .video-transcript h2 {
    font-size: 17px;
    margin: 0 0 14px;
}
.video-chapters ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.video-chapters li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}
.video-chapters li strong {
    color: var(--primary);
    font-family: ui-monospace, monospace;
    margin-right: 10px;
}
.video-chapters li:last-child { border-bottom: none; }
.video-transcript p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
}

.contact-cta {
    text-align: center;
    padding: 80px 0;
    background: var(--bg-elevated);
}
.contact-cta h2 {
    margin: 0 0 12px;
}
.contact-cta p {
    color: var(--text-muted);
    margin: 0 0 24px;
}
