:root {
    --primary: #2563eb;
    --secondary: #4f46e5;
    --dark: #1e293b;
    --light: #f8fafc;
    --success: #d1fae5;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 120px 0 80px;
    clip-path: ellipse(100% 100% at 50% 0%);
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.05em;
}

.hero-img {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

/* Features Section */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 12px;
}

/* Pricing Section */
.pricing-table {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
    transition: transform 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-5px);
}

.pricing-table thead th {
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.pricing-table#numbers thead {
    background: linear-gradient(45deg, var(--primary), #1e40af);
}

.pricing-table#sip-accounts thead {
    background: linear-gradient(45deg, var(--secondary), #3730a3);
}

.pricing-table tbody td {
    padding: 1.25rem;
    vertical-align: middle;
}

.pricing-table tbody tr:hover {
    background-color: #f1f5f9;
}

.pricing-table .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.pricing-table .free-tier {
    background-color: var(--success);
    font-weight: 700;
    color: #065f46;
}

.pricing-table-container {
    margin-bottom: 2rem;
}

.pricing-table-container .btn {
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .pricing-table {
        margin-bottom: 2rem;
    }
    .pricing-table-container {
        overflow-x: auto;
    }
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 24px;
    overflow: hidden;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    margin-left: 8px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}