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

:root {
    --primary: #4f46e5;
    --primary-soft: rgba(79, 70, 229, 0.1);
    --accent: #f59e0b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    --gradient-1: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Atmosphere & Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: radial-gradient(rgba(71, 70, 229, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Floating Pill Navbar - Light Mode */
.header {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    z-index: 1000;
}

.header .container {
    max-width: 1400px;
    /* Wider for more menus */
}

.header .navbar {
    padding: 5px 25px;
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header.sticky {
    padding: 15px 0;
}

.header.sticky .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Corporate Brand Identity (CSS Based) */
.navbar-brand {
    padding: 0;
    margin: 0;
    text-decoration: none !important;
}

.logo-wrap {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-icon-box {
    width: 42px;
    height: 42px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    margin: 0;
    display: flex;
    align-items: baseline;
}

.brand-name span {
    color: var(--primary);
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: uppercase;
}

.header.sticky .brand-name {
    font-size: 1.4rem;
}

.header.sticky .logo-icon-box {
    width: 36px;
    height: 36px;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px !important;
    border-radius: 10px;
    transition: all 0.3s;
    margin: 0 2px;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-soft);
}

.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-soft);
}

/* Hero Section - Soft Light */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-content h1 span {
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-soft-glow {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-soft-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
    color: #fff;
}

.btn-outline-soft {
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid var(--primary-soft);
    transition: all 0.3s;
}

.btn-outline-soft:hover {
    background: var(--primary-soft);
}

.hero-visual img {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 8px solid #fff;
}

/* Feature Grid - Soft Cards */
.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-soft);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
}

.feature-icon i {
    font-size: 24px;
}

/* Stats Section */
.stats-banner {
    background: var(--bg-white);
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* App Promo */
.app-promo {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border-radius: 40px;
    padding: 80px;
    color: #fff;
    margin-top: 100px;
}

.app-promo h2 {
    color: #fff;
}

.app-promo .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: #fff;
    border-top: 1px solid var(--glass-border);
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .app-promo {
        padding: 40px;
    }
}

/* Pricing Section */
.pricing-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-soft);
}

.pricing-card.featured {
    background: var(--text-main);
    color: #fff;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.pricing-card.featured .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pricing-card.featured h3 {
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--accent);
    color: #fff;
    padding: 5px 45px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.6;
}

/* FAQ Section */
.accordion-item {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary-soft) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.accordion-button {
    padding: 25px;
    font-weight: 700;
    color: var(--text-main) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-soft) !important;
    color: var(--primary) !important;
}

/* Bank Cards */
.bank-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-color: var(--primary-soft);
}

.bank-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary);
}

.bank-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.fab-contact {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.fab-btn:hover {
    transform: scale(1.15) rotate(15deg);
    color: #fff;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.5);
}