/* 2Money Website - Switch Pages Common Styles
   Shared across all /switch/* pages at 2money.app */

.container { max-width: 800px; }
header .container { max-width: 1200px; }
footer { padding: 40px 0; }

/* Hero */
.hero { padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }

.hero::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%); width: min(800px, 100vw); height: 600px;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; margin-bottom: 20px; line-height: 1.1; letter-spacing: -0.02em; }

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #9D8DF1 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradient 5s ease infinite;
    will-change: background-position;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }

/* Section Title */
.section-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 32px; text-align: center; letter-spacing: -0.01em; }

/* Pain Points */
.pain-section { padding: 60px 0; }
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pain-card { background: var(--bg-card); border-radius: 16px; padding: 24px; border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.pain-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; background: rgba(255, 59, 48, 0.12); }
.pain-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.pain-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* Comparison Table */
.compare-section { padding: 60px 0; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); }
.compare-table td { font-size: 0.95rem; }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--positive); font-weight: 600; }
.cross { color: var(--negative); font-weight: 600; }
.warn { color: var(--warning); font-weight: 600; }

/* Import / Steps */
.import-section { padding: 60px 0; }
.steps-section { padding: 60px 0; }
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step { background: var(--bg-card); border-radius: 16px; padding: 28px; border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start; }
.step-number { width: 36px; height: 36px; border-radius: 10px; background: var(--primary); color: white; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* CTA Section */
.cta-section { padding: 80px 0; text-align: center; }
.cta-card { background: linear-gradient(135deg, var(--bg-card) 0%, rgba(88, 86, 214, 0.1) 100%); border-radius: 24px; padding: 56px 40px; border: 1px solid var(--border); }
.cta-card h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.cta-card p { color: var(--text-secondary); font-size: 1.1rem; max-width: 480px; margin: 0 auto 32px; }

/* Responsive */
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .hero { padding: 120px 0 60px; }
    .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.85rem; }
}
