/* Hero */
.hero {
    padding: var(--space-3xl) 0 var(--space-xl);
    text-align: center;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-formats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.format-pill {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.format-pill-sep {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    background: var(--success-light);
    border-radius: var(--radius-full);
}

/* Reassurance */
.reassurance {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reassurance-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.reassurance-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.reassurance-item strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.2rem;
}

.reassurance-item p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* How it works */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--bg-soft);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    max-width: 260px;
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    background: var(--gray-800);
    border-radius: var(--radius-full);
}

.step h3 {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.step-arrow {
    color: var(--gray-300);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: var(--gray-900);
    color: white;
    overflow: hidden;
    position: relative;
}

.cta-content h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.cta-price {
    margin-bottom: 1.25rem;
}

.cta-price .price {
    font-size: 2.25rem;
    font-weight: 800;
}

.cta-price .price-period {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}
.cta-feature svg { color: var(--primary-light); flex-shrink: 0; }

/* FAQ */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-soft);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.625rem;
    background: white;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Pricing page */
.pricing-hero {
    padding: var(--space-3xl) 0 var(--space-xl);
    text-align: center;
}

.pricing-section {
    padding: 0 0 var(--space-4xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    background: white;
    transition: all var(--transition-slow);
}
.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gray-900);
    color: white;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-price .price-period {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.pricing-features li.included svg { color: var(--success); }
.pricing-features li.excluded { color: var(--text-muted); }
.pricing-features li.excluded svg { color: var(--gray-300); }
.pricing-features li.highlight { color: var(--primary-dark); }

/* SEO page content */
.seo-content {
    padding: var(--space-3xl) 0;
    background: var(--bg-soft);
}
.seo-content h2 { margin-bottom: 1rem; }
.seo-content h3 { margin: 2rem 0 0.75rem; }
.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.seo-content ul { margin-bottom: 1rem; }
.seo-content li {
    position: relative;
    padding: 0.375rem 0 0.375rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.seo-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
