/* ── Landing Page Styles ── */

.landing-page {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #1f2937;
    background: #fff;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.landing-header {
    background: #1e1b4b;
    padding: 1rem 0;
}

.landing-header .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.landing-header-brand img {
    height: 28px;
}

.landing-header-nav {
    display: flex;
    gap: 1.5rem;
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.landing-link:hover {
    color: #fff;
}

.landing-btn-primary {
    display: inline-block;
    background: #6366f1;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.landing-btn-primary:hover {
    background: #4f46e5;
    color: #fff;
}

.landing-btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Hero */
.landing-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #fff;
}

.landing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.landing-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Hero two-column layout with video */
.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.landing-hero-grid .landing-hero-subtitle {
    margin: 0 0 2rem;
    max-width: none;
}

.landing-hero-copy {
    text-align: left;
}

.landing-hero-media {
    display: flex;
    justify-content: center;
}

.landing-hero-video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-hero-copy {
        text-align: center;
    }

    .landing-hero-grid .landing-hero-subtitle {
        margin: 0 auto 2rem;
        max-width: 600px;
    }
}

.landing-lead-form {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .landing-lead-form {
        justify-content: center;
    }
}

.landing-lead-form input {
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    min-width: 200px;
}

.landing-lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Sections */
.landing-section {
    padding: 5rem 0;
}

.landing-section-alt {
    background: #f9fafb;
}

.landing-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Feature Grid */
.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.landing-feature-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.landing-feature-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.landing-feature-card i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.landing-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.landing-feature-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Feature Detail */
.landing-feature-detail {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.landing-feature-detail-icon {
    flex-shrink: 0;
    width: 80px;
    color: #6366f1;
    text-align: center;
    padding-top: 0.5rem;
}

.landing-feature-detail h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.landing-feature-detail p {
    color: #4b5563;
    line-height: 1.7;
}

/* Steps */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.landing-step {
    text-align: center;
    padding: 2rem;
}

.landing-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6366f1;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing */
.landing-pricing-card {
    display: inline-block;
    padding: 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    max-width: 500px;
}

.landing-pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #6366f1;
    margin: 0.5rem 0;
}

.landing-pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.landing-pricing-features li {
    padding: 0.4rem 0;
    color: #4b5563;
}

.landing-pricing-features i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Comparison Table */
.landing-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.landing-comparison-table th,
.landing-comparison-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.landing-comparison-table thead th {
    background: #f9fafb;
    font-weight: 600;
}

/* Learn */
.landing-learn-list {
    list-style: none;
    padding: 0;
}

.landing-learn-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.landing-learn-list a {
    color: #6366f1;
    font-weight: 500;
    text-decoration: none;
}

.landing-learn-list a:hover {
    text-decoration: underline;
}

/* Footer */
.landing-footer {
    background: #1e1b4b;
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
}

.landing-footer .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.landing-footer-links {
    display: flex;
    gap: 1.5rem;
}

.landing-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.landing-footer-links a:hover {
    color: #fff;
}

/* Code blocks on Learn pages */
pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
}

code {
    font-family: 'Cascadia Code', 'Consolas', monospace;
}

/* Video styling — shared by hero and "See It In Action" */
.landing-video-frame {
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
    background: #000;
}

.landing-hero-video.landing-video-frame {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* "See It In Action" section */
.landing-video-section h2 {
    margin-bottom: 0.75rem;
}

.landing-video-subtitle {
    color: #6b7280 !important;
    max-width: 700px;
    margin: 0 auto 2.5rem !important;
}
