@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #F9FAFB;
    color: #111827;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Utility ────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 0.2rem 0.8rem;
    margin-bottom: 1rem;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
.l-navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.l-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1.5rem;
}

.l-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.l-logo-icon { font-size: 1.3rem; color: #2563eb; }

.l-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.l-nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.15s;
}

.l-nav-links a:hover { color: #2563eb; }
.l-nav-links a.l-nav-active { color: #2563eb; font-weight: 700; }

.l-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.4rem;
    font-size: 0.93rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover { background: #1d4ed8; box-shadow: 0 4px 14px rgba(37,99,235,0.35); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    padding: 0.62rem 1.3rem;
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-secondary:hover { background: #f1f5f9; border-color: #94a3b8; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
}

.btn-ghost:hover { color: #111827; background: #f1f5f9; }

.btn-large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 10px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-decoration: none;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ─── Hero ───────────────────────────────────────────────────── */
.l-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%, #f5f3ff 100%);
    padding: 5.5rem 0 4.5rem;
    overflow: hidden;
}

.l-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.l-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 1.2rem;
}

.l-hero-headline {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.1rem;
}

.l-hero-headline span { color: #2563eb; }

.l-hero-subheadline {
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    max-width: 520px;
}

.l-hero-support {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.l-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.l-hero-footnote {
    font-size: 0.83rem;
    color: #94a3b8;
}

/* App mockup card */
.l-hero-mockup {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.12), 0 4px 16px rgba(15,23,42,0.06);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mockup-topbar {
    background: #1e3a5f;
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-dots {
    display: flex;
    gap: 0.35rem;
}

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

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-topbar-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: 0.04em;
}

.mockup-body {
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mockup-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.mockup-input {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
    color: #111827;
    font-weight: 500;
}

.mockup-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.mockup-pill {
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    color: #2563eb;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.mockup-pill.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.mockup-generate-btn {
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    padding: 0.62rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.mockup-result {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.mockup-result-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1.5px solid #e2e8f0;
}

.mockup-result-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.4rem;
}

.mockup-result-line:last-child { margin-bottom: 0; }
.mockup-result-line.short { width: 70%; }
.mockup-result-line.shorter { width: 50%; }

/* ─── Trust Strip ────────────────────────────────────────────── */
.l-trust {
    background: #1e3a5f;
    padding: 1.8rem 0;
}

.l-trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.l-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.l-trust-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.l-trust-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* ─── Section Shared ─────────────────────────────────────────── */
.l-section {
    padding: 5rem 0;
}

.l-section-alt {
    background: #ffffff;
}

.l-section-center {
    text-align: center;
}

.l-section-heading {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
}

.l-section-body {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 620px;
}

.l-section-body-center {
    margin: 0 auto;
    text-align: center;
}

/* ─── Problem Section ────────────────────────────────────────── */
.l-problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.l-problem-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.l-problem-icon {
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
}

.l-problem-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.l-problem-text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
}

/* ─── Solution Section ───────────────────────────────────────── */
.l-solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.l-workflow-box {
    background: #1e3a5f;
    border-radius: 16px;
    padding: 2rem 2.25rem;
    color: #fff;
}

.l-workflow-box-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.l-workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.l-workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.l-step-num {
    width: 32px;
    height: 32px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.l-step-text {
    font-size: 0.97rem;
    color: #e2e8f0;
    line-height: 1.5;
    padding-top: 0.35rem;
}

/* ─── Features Section ───────────────────────────────────────── */
.l-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.l-feature-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.l-feature-card:hover {
    box-shadow: 0 8px 28px rgba(37,99,235,0.1);
    border-color: #bfdbfe;
    transform: translateY(-2px);
}

.l-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
}

.l-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.45rem;
}

.l-feature-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}

/* ─── How It Works ───────────────────────────────────────────── */
.l-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.l-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: #bfdbfe;
    z-index: 0;
}

.l-step-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.25rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.l-step-circle {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.l-step-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.45rem;
}

.l-step-text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}

/* ─── Who It's For ───────────────────────────────────────────── */
.l-audience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.l-audience-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.l-audience-icon { font-size: 2rem; margin-bottom: 0.65rem; }
.l-audience-title { font-size: 0.95rem; font-weight: 700; color: #111827; }

/* ─── Benefits Section ───────────────────────────────────────── */
.l-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 2rem;
    margin-top: 2.5rem;
    max-width: 640px;
}

.l-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: #334155;
}

.l-benefit-check {
    width: 22px;
    height: 22px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #2563eb;
    flex-shrink: 0;
}

/* ─── Conditions Section ─────────────────────────────────────── */
.l-conditions-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
    justify-content: center;
}

.l-condition-pill {
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: 0.42rem 1.1rem;
    font-size: 0.93rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: border-color 0.15s, color 0.15s;
}

.l-condition-pill:hover {
    border-color: #3b82f6;
    color: #1d4ed8;
}

/* ─── Pricing Section ────────────────────────────────────────── */
.l-pricing-value-stmt {
    font-size: 0.95rem;
    color: #2563eb;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
}

.l-pricing-plan-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 0.18rem 0.6rem;
    margin-bottom: 0.4rem;
}

.l-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    align-items: start;
}

.l-pricing-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.l-pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    position: relative;
}

.l-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.22rem 0.8rem;
    border-radius: 999px;
}

.l-pricing-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.4rem;
}

.l-pricing-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.l-pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
}

.l-pricing-desc {
    font-size: 0.83rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.l-pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.l-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.l-pricing-check {
    color: #2563eb;
    font-size: 0.85rem;
    margin-top: 0.05rem;
    flex-shrink: 0;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.l-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    padding: 5.5rem 0;
    text-align: center;
}

.l-cta-heading {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.l-cta-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.l-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    color: #111827;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.18s, transform 0.1s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    text-decoration: none;
}

.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ─── Footer ─────────────────────────────────────────────────── */
.l-footer {
    background: #0f172a;
    padding: 2.5rem 0;
}

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

.l-footer-tagline {
    font-size: 0.88rem;
    color: #64748b;
    font-style: italic;
}

.l-footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.l-footer-links a {
    font-size: 0.85rem;
    color: #64748b;
    transition: color 0.15s;
}

.l-footer-links a:hover { color: #94a3b8; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .l-features-grid { grid-template-columns: repeat(2, 1fr); }
    .l-steps { grid-template-columns: repeat(2, 1fr); }
    .l-steps::before { display: none; }
}

@media (max-width: 768px) {
    .l-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .l-hero { padding: 3.5rem 0 3rem; }
    .l-hero-subheadline { max-width: 100%; }
    .l-trust-inner { grid-template-columns: 1fr; gap: 1.25rem; }
    .l-trust-item { justify-content: flex-start; }
    .l-problem-cards { grid-template-columns: 1fr; }
    .l-solution-inner { grid-template-columns: 1fr; gap: 2rem; }
    .l-features-grid { grid-template-columns: 1fr; }
    .l-steps { grid-template-columns: 1fr 1fr; }
    .l-audience-cards { grid-template-columns: repeat(2, 1fr); }
    .l-benefits-list { grid-template-columns: 1fr; }
    .l-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .l-section { padding: 3.5rem 0; }

    .l-nav-links { display: none; }
    .l-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .l-steps { grid-template-columns: 1fr; }
    .l-audience-cards { grid-template-columns: 1fr 1fr; }
    .l-hero-actions { flex-direction: column; align-items: flex-start; }
    .l-cta-actions { flex-direction: column; }
    .l-pricing-grid { grid-template-columns: 1fr; }
}

/* ─── Pricing card enhancements ──────────────────────────────── */
.l-pricing-plan-header {
    margin-bottom: 1.35rem;
}

.l-pricing-btn {
    display: block;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.l-pricing-na {
    color: #94a3b8 !important;
}

.l-pricing-na-icon {
    color: #cbd5e1;
    font-size: 0.8rem;
    margin-right: 0.1rem;
    flex-shrink: 0;
}

.l-pricing-trial {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.65rem;
}

.l-pricing-no-contract {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

/* ─── Comparison table ───────────────────────────────────────── */
.l-center-tag {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.l-section-heading-center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.l-comp-wrap {
    overflow-x: auto;
    margin-top: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1.5px solid #e2e8f0;
}

.l-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.l-comp-table thead tr {
    background: #1e3a5f;
    color: #ffffff;
}

.l-comp-table thead th {
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    border: none;
    line-height: 1.35;
}

.l-comp-feature-col {
    text-align: left !important;
    width: 36%;
    color: #93c5fd;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.l-comp-plan-col { min-width: 100px; }

.l-comp-plan-featured {
    background: rgba(37,99,235,0.22) !important;
    position: relative;
}

.l-comp-plan-price {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: #93c5fd;
    margin-top: 2px;
}

.l-comp-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.12s;
}

.l-comp-table tbody tr:last-child {
    border-bottom: none;
}

.l-comp-row-alt {
    background: #f8fafc;
}

.l-comp-feature {
    padding: 0.9rem 1.1rem;
    font-weight: 500;
    color: #334155;
    text-align: left;
}

.l-comp-yes, .l-comp-no {
    text-align: center;
    padding: 0.9rem 0.5rem;
    font-size: 1.1rem;
}

.l-comp-yes {
    color: #16a34a;
    font-weight: 700;
}

.l-comp-no {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.l-comp-table tfoot tr {
    background: #f8fafc;
    border-top: 2px solid #e2e8f0;
}

.l-comp-table tfoot td {
    padding: 1.1rem 0.8rem;
    text-align: center;
}

.l-comp-table tfoot td:first-child {
    text-align: left;
    padding-left: 1.1rem;
}

.l-comp-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.55rem 0.9rem;
}

/* ─── FAQ Section ────────────────────────────────────────────── */
.l-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.l-faq-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.l-faq-q {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.55rem;
    line-height: 1.35;
}

.l-faq-q::before {
    content: 'Q\00A0 ';
    color: #2563eb;
    font-weight: 800;
}

.l-faq-a {
    font-size: 0.91rem;
    color: #64748b;
    line-height: 1.68;
}

@media (max-width: 768px) {
    .l-faq-grid { grid-template-columns: 1fr; }
    .l-comp-feature-col { width: auto; }
}

/* ─── Checkout form / button normalization ───────────────────── */
.l-checkout-form {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Make <button> look and behave like the <a> button classes */
.l-checkout-form button,
.l-checkout-form .btn-primary,
.l-checkout-form .btn-secondary {
    font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
    cursor: pointer;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.l-checkout-form button:disabled {
    cursor: not-allowed;
}

/* Comparison table form buttons fill their cell */
.l-comp-table .l-checkout-form {
    width: auto;
}

.l-comp-table .l-checkout-form button {
    width: 100%;
}
