@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #1e293b;
    --accent: #6366f1;
    --success: #10b981;
    --glass: rgba(255, 255, 255, 0.7);
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
}

/* Hero */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}
.hero-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 24px;
}
.btn-primary-custom {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Features */
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 24px;
}

/* Pricing Card */
.pricing-card {
    background: var(--primary);
    color: white;
    padding: 60px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.3;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.accordion-button {
    font-weight: 600;
    padding: 20px;
    background: #f8fafc;
}
.accordion-button:not(.collapsed) {
    background: white;
    color: var(--accent);
}

/* Custom Image Wrapper */
.img-wrapper {
    position: relative;
    z-index: 1;
}
.img-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    top: 20px;
    right: -20px;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}

/* Footer */
footer {
    background: #f8fafc;
    padding: 80px 0 40px;
}

/* Contact Form */
.contact-card {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.contact-card .form-control {
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.contact-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
