/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #0ea5e9;
    --dark: #1e293b;
    --light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-img-container {
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    transform: rotateY(-5deg) rotateX(5deg);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.hero-img:hover {
    transform: rotateY(0) rotateX(0);
}

/* Features */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #f1f5f9;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

/* Pricing */
.pricing-section {
    background-color: var(--light);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1.5rem 0;
}

.price-tag small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Testimonials / Trust */
.trust-section {
    background: var(--dark);
    color: white;
}

/* Footer */
.footer {
    background: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-img {
        transform: none;
        margin-top: 2rem;
    }

    .pricing-card.popular {
        transform: none;
        margin: 1rem 0;
    }
}