/* Landing / Pricing page — extends styles.css, scoped to pages that opt in */

body.landing {
    display: block;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background-color: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 10;
}

.landing-nav .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.landing-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.landing-nav .nav-links a {
    color: #cfd2dc;
    text-decoration: none;
    font-size: 14px;
}

.landing-nav .nav-links a:hover {
    color: #ffffff;
}

.landing-nav .btn-cta {
    background-color: #2f6fed;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.landing-nav .btn-cta:hover {
    background-color: #2459c4;
    color: #ffffff;
}

.landing-hero {
    background-color: #f0f2f5;
    text-align: center;
    padding: 64px 24px;
}

.landing-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.landing-hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 640px;
    margin: 0 auto 28px;
}

.landing-hero .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-hero .btn-primary-cta {
    background-color: #2f6fed;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.landing-hero .btn-primary-cta:hover {
    background-color: #2459c4;
    color: #ffffff;
}

.landing-hero .btn-secondary-cta {
    background-color: #ffffff;
    color: #1a1a2e;
    border: 1px solid #d0d4dc;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.landing-hero .btn-secondary-cta:hover {
    background-color: #f0f2f5;
}

.landing-hero .hero-microcopy {
    margin: 16px auto 0;
    font-size: 13px;
    color: #6b7280;
}

.landing-section {
    padding: 56px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.landing-section h2 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.landing-section > p.section-sub {
    text-align: center;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto 36px;
}

.faq-cta {
    text-align: center;
    color: #6b7280;
    max-width: 560px;
    margin: 32px auto 0;
    font-size: 0.95rem;
}

.faq-cta a {
    color: #2f6fed;
    font-weight: 600;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Demo video is 9:16 (vertical/TikTok format). Sized by height so the whole
   frame fits without cropping; autoplays (muted) when scrolled into view and
   pauses when scrolled away, via js/landing.js. */
.demo-video-wrapper {
    aspect-ratio: 9 / 16;
    height: min(80vh, 800px);
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background-color: #000;
}

.demo-video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    object-fit: contain;
}

/* PAIN POINTS */
.pain-point-list {
    list-style: none;
    padding: 0;
    max-width: 640px;
    margin: 0 auto 28px;
}

.pain-point-list li {
    font-size: 1rem;
    color: #374151;
    padding: 12px 0 12px 28px;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.pain-point-list li:last-child {
    border-bottom: none;
}

.pain-point-list li::before {
    content: "\2715";
    position: absolute;
    left: 0;
    top: 12px;
    color: #d9534f;
    font-weight: 700;
}

.pain-point-closing {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #1a1a2e;
}

/* PRICING CARDS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pricing-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: #2f6fed;
    box-shadow: 0 4px 16px rgba(47, 111, 237, 0.15);
}

.pricing-card .badge-soon {
    position: absolute;
    top: -10px;
    right: 16px;
    background-color: #d9822b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
}

.pricing-card .badge-recommended {
    position: absolute;
    top: -10px;
    right: 16px;
    background-color: rgba(47, 111, 237, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .pricing-card .badge-recommended {
        background-color: #2f6fed;
    }
}

.pricing-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.pricing-card .plan-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.pricing-card .plan-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
}

.pricing-card .plan-blurb {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
    min-height: 36px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.pricing-card ul li {
    font-size: 13px;
    color: #374151;
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
}

.pricing-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #1e8449;
    font-weight: 700;
}

.pricing-card .plan-cta {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.pricing-card .plan-cta.primary {
    background-color: #2f6fed;
    color: #ffffff;
}

.pricing-card .plan-cta.primary:hover {
    background-color: #2459c4;
    color: #ffffff;
}

.pricing-card .plan-cta.disabled {
    background-color: #f0f2f5;
    color: #9ca3af;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-nav .nav-links {
        display: none;
    }

    .landing-hero h1 {
        font-size: 1.9rem;
    }

    .demo-video-wrapper {
        aspect-ratio: unset;
        height: min(70vh, 600px);
    }
}

/* COMPARISON TABLE */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead th {
    color: #1a1a2e;
    font-weight: 700;
    background-color: #f0f2f5;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #2f6fed;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: background-color 0.2s ease;
}

.whatsapp-float:hover {
    background-color: #2459c4;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* FOOTER */
.landing-footer {
    background-color: #1a1a2e;
    color: #cfd2dc;
    text-align: center;
    padding: 28px 24px;
    font-size: 13px;
}

.landing-footer a {
    color: #ffffff;
}
