@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f1f5f9;
    --card: #ffffff;
    --card-hover: #fafbfc;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-bg: rgba(99, 102, 241, 0.08);
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
    font-size: 16px;
    overflow-x: hidden;
}
input, select, button, textarea { font-size: 16px; font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light); 
    padding: 16px 0; 
    position: sticky; 
    top: 0; 
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    font-size: 1.4rem; 
    font-weight: 800; 
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.logo-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}
.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a { 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95rem; 
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* Buttons */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 16px 32px; 
    border: none; 
    border-radius: 14px; 
    cursor: pointer; 
    font-weight: 700; 
    font-size: 1rem;
    text-decoration: none; 
    transition: all 0.3s; 
    width: 100%;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}
.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}
.btn-outline { 
    background: white; 
    border: 2px solid var(--border); 
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.btn-outline:hover { 
    border-color: var(--primary); 
    color: var(--primary);
    background: var(--primary-bg);
    box-shadow: var(--shadow);
}
@media (min-width: 768px) { .btn { width: auto; } }

/* Hero */
.hero { 
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content { 
    position: relative; 
    z-index: 1; 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 40px; 
    align-items: center; 
}
@media (min-width: 900px) { 
    .hero-content { grid-template-columns: 1fr 1fr; gap: 80px; }
    .hero { padding: 120px 0 140px; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text);
}
.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
@media (min-width: 500px) {
    .hero-buttons { flex-direction: row; }
    .hero h1 { font-size: 3.25rem; }
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Trust Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
@media (min-width: 768px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
    text-align: center;
}
.trust-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.trust-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Sections */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text);
}
@media (min-width: 768px) { .section-title { font-size: 2.75rem; } }
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Feature Cards */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.feature-card { 
    background: white;
    border: 1px solid var(--border-light);
    padding: 36px 28px;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.feature-icon img {
    width: 36px;
    height: 36px;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step-card {
    background: white;
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}
.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Plans Section */
.plans-section { 
    background: var(--bg-soft);
}
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card {
    background: white;
    border: 2px solid var(--border-light);
    padding: 36px 28px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    box-shadow: var(--shadow);
}
.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.plan-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, white 100%);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}
.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.plan-rate {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    line-height: 1;
}
.plan-rate span {
    font-size: 1rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    font-weight: 500;
}
.plan-range {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
}
.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.plan-features li {
    color: var(--text-secondary);
    padding: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.plan-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 24px;
    background: var(--gradient-soft);
    border-radius: 28px;
    margin: 60px 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}
@media (min-width: 768px) { .cta-section h2 { font-size: 2.75rem; } }
.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer { 
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
    padding: 60px 0 30px;
    margin-top: 100px;
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 40px; 
    margin-bottom: 40px; 
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { 
    color: var(--text);
    margin-bottom: 16px; 
    font-size: 1rem;
    font-weight: 700;
}
.footer a { 
    color: var(--text-secondary); 
    text-decoration: none; 
    display: block; 
    margin-bottom: 12px; 
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer a:hover { color: var(--primary); }
.footer-bottom { 
    border-top: 1px solid var(--border-light); 
    padding-top: 24px; 
    text-align: center; 
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Forms */
.form-container { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-muted) 100%);
    position: relative;
    overflow: hidden;
}
.form-container::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.form-card { 
    width: 100%; 
    max-width: 460px; 
    background: white;
    padding: 40px 32px; 
    border-radius: 24px; 
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) { .form-card { padding: 48px 44px; } }

.form-card .logo {
    justify-content: center;
    margin-bottom: 32px;
}
.form-card h2 { 
    font-size: 1.85rem; 
    font-weight: 800; 
    text-align: center;
    margin-bottom: 8px;
    color: var(--text);
}
.form-card .subtitle { 
    text-align: center; 
    color: var(--text-secondary); 
    margin-bottom: 36px; 
    font-size: 0.95rem; 
    line-height: 1.6;
}

.form-group { margin-bottom: 22px; }
.form-group label { 
    display: block; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--text); 
    margin-bottom: 8px; 
}
.form-group input, .form-group select { 
    width: 100%; 
    padding: 14px 16px; 
    border: 1.5px solid var(--border); 
    border-radius: 12px; 
    background: white;
    color: var(--text);
    transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-group input::placeholder { color: var(--text-muted); }

.alert { 
    padding: 14px 16px; 
    border-radius: 12px; 
    margin-bottom: 24px; 
    font-size: 0.9rem; 
    font-weight: 500;
}
.alert-warning { 
    background: rgba(245, 158, 11, 0.1); 
    border: 1px solid rgba(245, 158, 11, 0.3); 
    color: #92400e;
}
.alert-success { 
    background: rgba(16, 185, 129, 0.1); 
    border: 1px solid rgba(16, 185, 129, 0.3); 
    color: #065f46;
}

.form-footer {
    text-align: center;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.form-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* SVG Icon Styles */
.svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: currentColor;
}
.svg-icon svg {
    width: 100%;
    height: 100%;
}
.feature-icon .svg-icon,
.stat-icon .svg-icon,
.quick-action-card .svg-icon {
    width: 32px;
    height: 32px;
}
.logo-icon .svg-icon {
    width: 24px;
    height: 24px;
    color: white;
}

/* Mobile Dropdown Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.mobile-menu-btn:hover {
    background: var(--primary);
    color: white;
}
.mobile-menu-btn .svg-icon {
    width: 22px;
    height: 22px;
}
@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* Mobile Dropdown Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    z-index: 99;
    padding: 16px 20px 24px;
    animation: slideDown 0.3s ease;
}
.mobile-menu.active {
    display: block;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s;
    margin-bottom: 4px;
}
.mobile-menu a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}
.mobile-menu a .svg-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}
.mobile-menu .btn {
    margin-top: 8px;
}

/* Logo icon gradient background */
.logo-icon {
    background: var(--gradient);
}