
.landing { color: var(--text); }
.landing section { padding: 80px 0; }
.landing section[id] { scroll-margin-top: 80px; }
.section-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--primary); background: var(--primary-light);
    border-radius: 99px; padding: 4px 12px; margin-bottom: 16px;
}
.section-title {
    font-size: clamp(26px, 4vw, 38px); font-weight: 700;
    letter-spacing: -0.03em; line-height: 1.2; color: var(--text);
}
.section-sub {
    font-size: 16px; color: var(--text-secondary); line-height: 1.7;
    max-width: 600px;
}

.hero {
    padding: 100px 0 80px;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(99,102,241,0.18), transparent);
    text-align: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-light); border: 1px solid rgba(99,102,241,0.25);
    border-radius: 99px; padding: 5px 14px; font-size: 13px;
    color: var(--primary-hover); margin-bottom: 28px;
    animation: fadeInDown 0.5s ease;
}
.hero-title {
    font-size: clamp(32px, 5.6vw, 56px); font-weight: 800;
    letter-spacing: -0.04em; line-height: 1.1;
    color: var(--text); margin-bottom: 20px;
    max-width: 17ch; margin-left: auto; margin-right: auto;
    animation: fadeInUp 0.5s ease 0.1s both;
}
.hero-title span {
    background: var(--gradient-premium);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
    font-size: clamp(15px, 2vw, 18px); color: var(--text-secondary);
    line-height: 1.7; max-width: 600px; margin: 0 auto 36px;
    animation: fadeInUp 0.5s ease 0.2s both;
}
.hero-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.5s ease 0.3s both;
}
.btn-hero-primary {
    background: var(--primary); color: #fff; font-size: 15px; font-weight: 600;
    padding: 13px 28px; border-radius: var(--radius); border: none;
    transition: all var(--transition); text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px;
}
.btn-hero-primary:hover { background: var(--primary-hover); color: #fff; transform: translateY(-1px); }
.btn-hero-secondary {
    background: transparent; color: var(--text); font-size: 15px; font-weight: 500;
    padding: 13px 28px; border-radius: var(--radius);
    border: 1px solid var(--border-strong); transition: all var(--transition);
    text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px;
}
.btn-hero-secondary:hover { background: var(--bg-hover); color: var(--text); border-color: var(--primary); }
.hero-note {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--warning-bg); border: 1px solid var(--warning-border);
    border-radius: 99px; padding: 7px 16px; font-size: 13px;
    color: var(--warning-text); margin-top: 24px; text-align: left;
    animation: fadeInUp 0.5s ease 0.35s both;
}
.hero-note i { font-size: 15px; flex-shrink: 0; }
.hero-note strong { font-weight: 700; }
.hero-trust {
    display: flex; gap: 28px; justify-content: center; margin-top: 48px;
    padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap;
    animation: fadeInUp 0.5s ease 0.4s both;
}
.hero-trust-item {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13.5px; color: var(--text-secondary); text-align: left;
}
.hero-trust-item i { font-size: 17px; color: var(--success); flex-shrink: 0; }
.hero-trust-item strong { color: var(--text); font-weight: 600; }

.feature-card {
    position: relative; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; height: 100%;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
    background: var(--gradient-premium);
    opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
    border-color: rgba(99,102,241,0.3); transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .icon-chip { margin-bottom: 16px; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.feature-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 6px; }

.truth-card {
    background: var(--bg-base); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 26px; height: 100%;
    transition: border-color var(--transition), transform var(--transition);
}
.truth-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.truth-icon {
    width: 44px; height: 44px; border-radius: var(--radius);
    background: var(--bg-surface); color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}
.truth-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.truth-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.plan-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; position: relative;
    overflow: visible;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.plan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plan-card.popular {
    border-color: var(--primary);
    padding-top: 36px;
    background: linear-gradient(180deg, rgba(99,102,241,0.06), var(--bg-card) 60%);
    box-shadow: var(--shadow-glow);
}
.plan-badge-popular {
    position: absolute; top: 0; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-premium); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
    padding: 4px 14px; border-radius: 99px; white-space: nowrap;
    box-shadow: 0 4px 14px -4px var(--primary-glow);
    z-index: 2;
}
.plan-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.plan-price { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.plan-period { font-size: 13px; color: var(--text-secondary); }
.plan-feature {
    font-size: 13.5px; color: var(--text-secondary); line-height: 1.55;
    display: flex; align-items: flex-start; gap: 8px;
}
.plan-feature i { color: var(--success); font-size: 14px; flex-shrink: 0; margin-top: 3px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    background: none; border: none; width: 100%; text-align: left;
    padding: 16px 0; min-height: 44px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary-hover); }
.faq-question:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: var(--radius-sm); }
.faq-question i {
    color: var(--text-muted); font-size: 14px; flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    font-size: 14px; color: var(--text-secondary); line-height: 1.7;
    padding: 0 0 18px; display: none; max-width: 68ch;
}
.faq-answer.open { display: block; }
.faq-answer strong { color: var(--text); font-weight: 600; }
.faq-link { color: var(--primary); }

.cta-section {
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(99,102,241,0.04));
    border-radius: var(--radius-lg); padding: 64px 40px; text-align: center;
    border: 1px solid rgba(99,102,241,0.2);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Banded sections */
.section-banded {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* How-it-works step cards */
.hiw-step { text-align: center; }
.hiw-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}
.hiw-step-icon-primary { background: var(--primary-light); color: var(--primary); }
.hiw-step-icon-info { background: var(--info-bg); color: var(--info); }
.hiw-step-icon-success { background: var(--success-bg); color: var(--success); }
.hiw-step-icon-warning { background: var(--warning-bg); color: var(--warning); }
.hiw-step-num {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.hiw-step-num-primary { color: var(--primary); }
.hiw-step-num-info { color: var(--info); }
.hiw-step-num-success { color: var(--success); }
.hiw-step-num-warning { color: var(--warning); }
.hiw-step-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.hiw-step-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.hiw-note {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    flex-wrap: wrap; text-align: center;
    font-size: 13.5px; color: var(--text-secondary);
    margin: 40px auto 0; max-width: 620px;
}
.hiw-note i { color: var(--primary); font-size: 15px; }

/* Plan card extras */
.plan-divider { border-color: var(--border); margin: 16px 0; }
.plan-name.is-popular { color: var(--primary); }
.plan-cta {
    background: var(--bg-surface);
    color: var(--text);
    font-weight: 600;
    border: 1px solid var(--border-strong);
    transition: border-color var(--transition), background var(--transition);
}
.plan-cta:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
    color: var(--text);
}
.plan-cta-popular {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: box-shadow var(--transition), transform var(--transition);
}
.plan-cta-popular:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -6px var(--primary-glow);
}
.plan-cta, .plan-cta-popular { min-height: 44px; }
.pricing-note { font-size: 13px; color: var(--text-secondary); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* Final CTA section */
.cta-final { padding: 80px 0; }
.cta-final-sub {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final-btn { display: inline-flex; }

/* Section reveals — JS adds .is-visible when scrolled into view */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible {
    animation: fadeInUp 0.5s ease both;
}
.reveal.is-visible.reveal-d1 { animation-delay: 0.06s; }
.reveal.is-visible.reveal-d2 { animation-delay: 0.12s; }
.reveal.is-visible.reveal-d3 { animation-delay: 0.18s; }

@media (max-width: 768px) {
    .landing section { padding: 56px 0; }
    .hero { padding: 64px 0 56px; }
    .hero-title { max-width: 100%; }
    .hero-trust { gap: 16px; margin-top: 36px; padding-top: 28px; flex-direction: column; align-items: flex-start; text-align: left; }
    .hero-note { text-align: left; align-items: flex-start; border-radius: var(--radius); }
    .hero-actions .btn-hero-primary, .hero-actions .btn-hero-secondary { width: 100%; }
    .feature-card, .truth-card, .plan-card { padding: 22px; }
    .cta-section { padding: 40px 20px; }
    .cta-final { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge, .hero-title, .hero-sub, .hero-actions, .hero-note, .hero-trust,
    .reveal, .reveal.is-visible { animation: none; }
    .reveal { opacity: 1; transform: none; }
}
