:root {
    --primary: #4F46E5;
    --primary-light: #EEF2FF;
    --primary-dark: #3730A3;
    --accent: #F59E0B;
    --success: #10B981;
    --error: #EF4444;
    --bg: #FFFFFF;
    --bg-alt: #F9FAFB;
    --text: #111827;
    --text-secondary: #6B7280;
    --text-hint: #9CA3AF;
    --border: #E5E7EB;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm { max-width: 800px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-alt);
    border-color: var(--text-hint);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-nav {
    padding: 8px 20px;
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    font-size: 14px;
}

.btn-nav:hover { background: var(--primary-dark); color: white !important; }

.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-full { width: 100%; }

/* Hero */
.hero {
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 580px;
    background: #1E1B4B;
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 26px;
    overflow: hidden;
    padding: 16px;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.mock-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
}

.mock-title-bar { flex: 1; }

.mock-line {
    height: 10px;
    background: #F3F4F6;
    border-radius: 5px;
    margin-bottom: 8px;
}

.mock-line:last-child { margin-bottom: 0; }
.mock-line.w60 { width: 60%; }
.mock-line.w70 { width: 70%; }
.mock-line.w75 { width: 75%; }
.mock-line.w80 { width: 80%; }
.mock-line.w85 { width: 85%; }
.mock-line.w90 { width: 90%; }
.mock-line.w100 { width: 100%; }

.mock-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mock-card {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.mock-card.accent {
    border-color: var(--primary);
    background: var(--primary-light);
}

.mock-card.accent .mock-line { background: rgba(79,70,229,0.15); }

.mock-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mock-badge.warn {
    background: var(--accent);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon.purple { background: #EDE9FE; color: #7C3AED; }
.feature-icon.blue { background: #DBEAFE; color: #2563EB; }
.feature-icon.red { background: #FEE2E2; color: #DC2626; }
.feature-icon.green { background: #D1FAE5; color: #059669; }
.feature-icon.orange { background: #FEF3C7; color: #D97706; }
.feature-icon.teal { background: #CCFBF1; color: #0D9488; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Steps */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin-top: 28px;
    flex-shrink: 0;
}

/* Documents Grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.doc-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    transition: all 0.3s;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.doc-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.doc-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.doc-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-badge.accent {
    background: #FEF3C7;
    color: #92400E;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.per {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--success);
    font-weight: 500;
    margin-top: 12px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.faq-item summary {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--text-hint);
    font-weight: 400;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--primary);
}

.faq-item p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #111827;
    color: #9CA3AF;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .nav-brand {
    color: white;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid #1F2937;
    padding-top: 24px;
    font-size: 13px;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 12px;
    color: #6B7280;
}

/* ===== Subpage Components ===== */

/* Page Hero */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #EEF2FF 0%, #F9FAFB 50%, #FEF3C7 100%);
}

.page-hero-content { max-width: 680px; margin: 0 auto; }

.page-icon {
    font-size: 56px;
    margin-bottom: 16px;
    line-height: 1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 32px;
    justify-content: center;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span {
    color: var(--text-hint);
}

/* Content Block */
.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.content-block > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

/* Type Grid */
.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.type-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.type-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.type-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.type-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Check List / Red List */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 36px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #ECFDF5;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.red-list li::before {
    content: '⚠';
    background: #FEF2F2;
    color: #EF4444;
}

/* Documents Hub Grid */
.doc-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.doc-hub-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.doc-hub-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.doc-hub-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.doc-hub-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.doc-hub-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.doc-hub-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.blog-card-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-hint);
}

/* ===== End Subpage Components ===== */

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 42px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-grid { grid-template-columns: repeat(2, 1fr); }
    .type-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-hub-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-trust { flex-direction: column; gap: 12px; }

    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }

    .features-grid { grid-template-columns: 1fr; }

    .steps { flex-direction: column; align-items: center; gap: 24px; }
    .step-connector { width: 2px; height: 32px; }

    .doc-grid { grid-template-columns: 1fr 1fr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .page-hero { padding: 120px 0 40px; }
    .page-hero h1 { font-size: 32px; }
    .page-subtitle { font-size: 16px; }
    .page-icon { font-size: 40px; }
    .type-grid { grid-template-columns: 1fr; }
    .doc-hub-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .content-block h2 { font-size: 26px; }
    .feature-detail-grid { grid-template-columns: 1fr; }
    .format-grid { grid-template-columns: 1fr 1fr; }
    .how-steps-detail { gap: 32px; }
    .how-step-detail { flex-direction: column; text-align: center; }
    .how-step-connector { width: 40px; height: 2px; margin: 0 auto; }
    .how-plan-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .faq-category { padding: 28px 20px; }
    .legal-content h2 { font-size: 22px; }
}

/* ===== Feature Detail Grid ===== */
.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}
.feature-detail {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79,70,229,0.08);
}
.feature-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.feature-detail-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}
.feature-detail-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}
.feature-bullets {
    list-style: none;
    padding: 0;
}
.feature-bullets li {
    padding: 4px 0;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}
.feature-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* ===== Format Grid ===== */
.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.format-card {
    background: white;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}
.format-card:hover {
    transform: translateY(-2px);
}
.format-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.format-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text);
}
.format-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== How It Works Detail ===== */
.how-steps-detail {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 24px;
}
.how-step-detail {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.how-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.how-step-body h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text);
}
.how-step-body p {
    color: var(--text-light);
    line-height: 1.7;
}
.how-step-body ul {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--text-light);
}
.how-step-body ul li {
    padding: 3px 0;
}
.how-step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    margin-left: 27px;
}

/* ===== How Plan Cards ===== */
.how-plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}
.how-plan-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
}
.how-plan-card.popular {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(79,70,229,0.12);
}
.how-plan-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}
.how-plan-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}
.how-plan-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}
.how-plan-card p {
    color: var(--text-light);
    margin-top: 8px;
}

/* ===== FAQ Category ===== */
.faq-category {
    background: white;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.faq-category h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-category h2 span {
    font-size: 24px;
}

/* ===== Legal Content ===== */
.legal-content {
    background: white;
    border-radius: 16px;
    padding: 48px 40px;
    border: 1px solid var(--border);
}
.legal-content h2 {
    font-size: 24px;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.legal-content h3 {
    font-size: 18px;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 8px;
}
.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
    color: var(--text-light);
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content li {
    padding: 4px 0;
    line-height: 1.7;
}
.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}
.legal-content strong {
    color: var(--text);
}
