* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'SF Pro Display', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: #fafbfc;
    min-height: 100vh;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #137fec, #38bdf8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.logo-text {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-btn {
    color: #137fec;
    background: rgba(19, 127, 236, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.login-btn:hover {
    background: rgba(19, 127, 236, 0.15);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 48px 0 80px;
}

.hero-content {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 127, 236, 0.1);
    border: 1px solid rgba(19, 127, 236, 0.2);
    color: #137fec;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -1.5px;
}

.highlight {
    background: linear-gradient(135deg, #137fec, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #137fec, #0a5bb8);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(19, 127, 236, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 127, 236, 0.4);
}

.cta-button.secondary {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #0f172a;
    box-shadow: none;
}

.cta-button.secondary:hover {
    border-color: #137fec;
    color: #137fec;
}

.cta-subtext {
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 64px;
}

.stat-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 4px 12px rgba(19, 127, 236, 0.1);
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #137fec;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    line-height: 1.3;
}

/* Features Section */
.features-section {
    margin-bottom: 64px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: #0f172a;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 4px 12px rgba(19, 127, 236, 0.1);
    transform: translateY(-2px);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

/* Pricing Section */
.pricing-preview {
    margin-bottom: 64px;
}

.pricing-cards {
    display: grid;
    gap: 16px;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 4px 12px rgba(19, 127, 236, 0.1);
}

.pricing-card.featured {
    border-color: rgba(19, 127, 236, 0.4);
    background: rgba(19, 127, 236, 0.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #137fec, #0a5bb8);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #137fec;
    letter-spacing: -1px;
}

.price span {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    color: #64748b;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 24px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-bottom: 48px;
}

.cta-content {
    background: linear-gradient(135deg, #137fec, #0a5bb8);
    border: none;
    border-radius: 20px;
    padding: 40px 24px;
    box-shadow: 0 8px 24px rgba(19, 127, 236, 0.3);
}

.final-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -1px;
}

.final-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #137fec;
}

.footer-links span {
    margin: 0 8px;
}

/* Page Section (for content pages) */
.page-section {
    padding: 40px 0 60px;
}

.page-header-content {
    text-align: left;
    margin-bottom: 40px;
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 15px;
    color: #64748b;
}

.page-content {
    color: #334155;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #137fec;
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 8px;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #334155;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    margin-left: 20px;
    line-height: 1.7;
}

.page-content li {
    margin-bottom: 8px;
    color: #334155;
}

.page-content strong {
    color: #0f172a;
    font-weight: 600;
}

.page-content a,
.inline-link {
    color: #137fec;
    text-decoration: none;
    transition: color 0.2s;
}

.page-content a:hover,
.inline-link:hover {
    color: #0a5bb8;
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info-grid {
    display: grid;
    gap: 24px;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    color: #137fec;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item p {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(19, 127, 236, 0.1), rgba(56, 189, 248, 0.05));
    border: 1px solid rgba(19, 127, 236, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 32px;
}

.cta-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.cta-card p {
    color: #334155;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .final-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 28px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }
}
