/* ─── Landing page ─── */

body.landing-page {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    background: var(--bg);
}

/* Shared section typography */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
    color: #fff;
}

.section-header--light .section-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.container-width {
    max-width: 1140px;
    margin: 0 auto;
    padding-inline: 24px;
}

.container-width-small {
    max-width: 720px;
    margin: 0 auto;
    padding-inline: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ─── Hero ─── */
.main-hero {
    padding: 48px 0 72px;
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(99, 102, 241, 0.12), transparent),
        var(--bg);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.main-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 18px;
}

.main-hero h1 span {
    color: var(--primary);
}

.hero-lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 0;
    margin: 0;
}

.hero-trust li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 0.75rem;
}

/* Mockup */
.preview-container {
    position: relative;
}

.preview-glow {
    position: absolute;
    inset: 10% 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.app-mockup {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #febc2e; }
.mockup-dot--green { background: #28c840; }

.mockup-url {
    margin-left: 8px;
    font-size: 0.72rem;
    color: var(--text-soft);
    background: var(--card-bg);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    flex: 1;
    text-align: center;
}

.mockup-body {
    display: grid;
    grid-template-columns: 38% 1fr;
    min-height: 340px;
}

.summary-panel {
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--card-bg) 100%);
    padding: 24px;
    border-right: 1px solid var(--border);
    text-align: left;
}

.transcript-panel {
    padding: 24px;
    text-align: left;
    background: var(--card-bg);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--card-bg);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.badge--muted {
    color: var(--text-muted);
    border-color: var(--border);
}

.mockup-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-main);
}

.summary-list {
    list-style: none;
    padding: 0;
}

.summary-list li {
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.summary-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 7px;
    flex-shrink: 0;
}

.transcript-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.timecode {
    flex-shrink: 0;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: ui-monospace, monospace;
    font-size: 0.72rem;
    font-weight: 600;
}

.msg strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.msg span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ─── How it works ─── */
.main-how-it-works {
    padding: 72px 0;
    background: var(--card-bg);
    border-block: 1px solid var(--border-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: var(--shadow-sm);
}

.step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Features ─── */
.main-features {
    padding: 72px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.feature-item-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.feature-item-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Use cases ─── */
.main-use-cases {
    padding: 72px 0;
    background: var(--bg-subtle);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.use-case-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    transition: box-shadow 0.2s ease;
}

.use-case-card:hover {
    box-shadow: var(--shadow-sm);
}

.uc-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.use-case-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.use-case-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ─── ROI band ─── */
.main-roi {
    padding: 64px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roi-card {
    text-align: center;
    padding: 8px 16px;
}

.roi-num {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.roi-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.roi-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin: 0;
}

/* ─── Pricing ─── */
.main-pricing {
    padding: 72px 0;
    background: var(--card-bg);
}

.pricing-container {
    max-width: 1140px;
    margin: 0 auto;
    padding-inline: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    background: var(--card-bg);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.price-card--free {
    border-color: rgba(22, 163, 74, 0.35);
}

.price-card .card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.price-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pack-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.pack-price-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.pack-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 2px;
}

.pack-price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-main);
}

.pack-volume {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pack-hourly-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-subtle);
    padding: 4px 12px;
    border-radius: 99px;
}

.pack-hourly-badge.highlight {
    color: var(--success);
    background: var(--success-soft);
}

.price-card .card-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.price-card .card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 20px;
}

.p-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.4;
}

.p-check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-main);
    background: var(--card-bg);
    transition: all 0.15s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-pricing.btn-featured {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.btn-pricing.btn-featured:hover {
    background: var(--primary-hover);
    color: #fff;
}

.pricing-footnote {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-soft);
    margin-top: 28px;
}

/* ─── FAQ ─── */
.main-faq {
    padding: 72px 0;
    background: var(--bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: var(--shadow-xs);
}

.faq-item summary {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 22px 18px;
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Contact ─── */
.main-contact {
    padding: 72px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border-light);
}

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-xs);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--card-bg);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.btn-submit {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-primary);
    transition: background 0.15s ease, transform 0.15s ease;
    margin-top: 4px;
}

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

/* ─── Final CTA ─── */
.main-final-cta {
    padding: 64px 0 80px;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(99, 102, 241, 0.1), transparent),
        var(--bg);
}

.final-cta-inner {
    text-align: center;
    max-width: 560px;
}

.final-cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 12px;
}

.final-cta-inner p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.55;
}

.final-cta-note {
    display: block;
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .main-hero,
    .main-how-it-works,
    .main-features,
    .main-use-cases,
    .main-roi,
    .main-pricing,
    .main-faq,
    .main-contact,
    .main-final-cta {
        padding-block: 56px;
    }

    .steps-grid,
    .use-cases-grid,
    .roi-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mockup-body {
        grid-template-columns: 1fr;
    }

    .summary-panel {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .contact-form {
        padding: 24px 20px;
    }
}

@media (max-width: 580px) {
    .container-width,
    .container-width-small,
    .pricing-container {
        padding-inline: 16px;
    }
}
