body { font-family: 'Figtree', sans-serif; background-color: #f8fafc; }

/* ── Navbar ── */
.navbar-brand-custom { font-weight: 700; font-size: 1.1rem; color: #fff !important; }
.navbar-brand-custom:hover { color: #ffc107 !important; }
.bg-navy { background-color: #1e3a5f !important; }
.footer-bg { background-color: #1e3a5f; }
.navbar-nav .nav-link { color: rgba(255,255,255,.85) !important; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #ffc107 !important; }

.nav-tabs .nav-link { color: #475569 !important; }
.nav-tabs .nav-link:hover { color: #1e3a5f !important; }
.nav-tabs .nav-link.active { color: #1e3a5f !important; font-weight: 700; }
.dropdown-item:active { background-color: #1e3a5f; }

.nav-cta .btn { white-space: nowrap; }

.navbar-nav .nav-item + .nav-item {
    position: relative;
    margin-left: 14px;
    padding-left: 14px;
}
.navbar-nav .nav-item + .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.25), transparent);
}

/* ── Buttons ── */
.btn-brand { background-color: #ffc107; border-color: #ffc107; color: #1e3a5f; font-weight: 600; }
.btn-brand:hover { background-color: #e0a800; border-color: #e0a800; color: #1e3a5f; }

.btn-login {
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 500;
    transition: all .2s;
}
.btn-login:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.btn-cta {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #1e3a5f;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(255,193,7,.35);
    transition: all .2s ease;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,193,7,.45);
    background: linear-gradient(135deg, #ffca2c, #ffb300);
}

.btn-dashboard {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all .2s;
}
.btn-dashboard:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-1px);
    color: #fff;
}

.btn-hero {
    position: relative;
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(255,193,7,.35);
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255,193,7,.5);
    color: black;
}
.btn-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at center, rgba(255,255,255,.25), transparent 70%);
    opacity: 0;
    transition: .3s;
}
.btn-hero:hover::after { opacity: 1; }

/* ── Hero ── */
.hero-gradient { background: linear-gradient(135deg, #1e3a5f 0%, #1a4a7a 50%, #1a3060 100%); }

.hero-section {
    position: relative;
    background-image: url('/img/splash.png');
    background-size: cover;
    background-position: center bottom;
    min-height: 520px;
}
.hero-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(30,58,95,.93) 0%, rgba(26,74,122,.88) 55%, rgba(26,48,96,.80) 100%);
}

.hero-stats-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
}
.hero-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    transition: all .25s ease;
}
.hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.15);
}
.hero-stat-highlight {
    background: rgba(255,193,7,.15);
    border: 1px solid rgba(255,193,7,.35);
    color: #fff;
}

/* ── Demo cards ── */
.demo-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s, transform .2s;
}
.demo-card:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.35);
    transform: translateY(-2px);
}
.demo-card-pro {
    border: 1px solid rgba(255,255,255,.15);
    transition: all .25s ease;
}
.demo-card-pro:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.3);
}
.demo-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.demo-avatar-yellow { background: rgba(255,193,7,0.2); color: #ffc107; }
.demo-avatar-purple { background: rgba(167,139,250,0.2); color: #c4b5fd; }
.demo-action {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255,193,7,.15);
    color: #ffc107;
}
.demo-action-purple { background: rgba(167,139,250,.15); color: #c4b5fd; }

/* ── Stat cards ── */
.stat-card {
    background: #fff;
    border: 1px solid #e9ecef;
    transition: box-shadow .2s, transform .2s;
}
.stat-card:hover { box-shadow: 0 .5rem 1.5rem rgba(30,58,95,.1); transform: translateY(-3px); }
.stat-highlight {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe !important;
}

/* ── Feature cards ── */
.card-feature { transition: box-shadow .2s, border-color .2s; border: 1px solid #e9ecef; }
.card-feature:hover { box-shadow: 0 .5rem 1rem rgba(0,0,0,.1) !important; border-color: #b6d4fe; }
.section-alt { background-color: #f8fafc; }

.feature-main {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
}
.feature-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.feature-secondary {
    background: linear-gradient(145deg, #ffffff, #f8f5ff);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .3s ease;
}
.feature-secondary:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(124,58,237,.18);
}
.feature-mini { background: #fff; transition: all .25s ease; }
.feature-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,.12) !important;
}
.feature-mini h3 { margin-top: 5px; }
.feature-main .rounded-circle,
.feature-secondary .rounded-circle,
.feature-mini .rounded-circle { box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.feature-main .btn {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    box-shadow: 0 6px 18px rgba(13,110,253,.35);
}
.feature-main .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13,110,253,.45);
}
.feature-secondary .btn { border: 1px solid #dee2e6; background: #fff; }
.feature-secondary .btn:hover { background: #f8f9fa; }
.feature-main .badge { font-size: .7rem; padding: 6px 10px; border-radius: 999px; }

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon-blue { background: rgba(13,110,253,.1); }
.feature-icon-purple { background: rgba(124,58,237,.12); }
.feature-mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Steps ── */
.step-card { background: #fff; transition: transform .25s, box-shadow .25s; }
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1) !important;
}
.step-card-featured {
    border: 2px solid #ffc107 !important;
    background: linear-gradient(145deg, #fffdf2, #fff);
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e3a5f;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-number-featured {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #1e3a5f;
}

/* ── Reviews ── */
.review-card { background: #fff; transition: transform .25s, box-shadow .25s; }
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1) !important;
}
.review-card-featured {
    border: 2px solid #ffc107 !important;
    background: linear-gradient(145deg, #fffdf2, #fff);
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

/* ── Misc ── */
.text-navy { color: #1e3a5f !important; }
.seo-box { background: #f8fafc; border: 1px solid #e9ecef; }
