:root {
    --primary-red: #d90429;
    --navy: #0b132b;
    --gold: #d4af37;
    --soft-white: #f8fafc;
    --glass: rgba(255, 255, 255, .12);
    --glass-border: rgba(255, 255, 255, .15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--soft-white);
    color: #111827;
    overflow-x: hidden;
}

.navbar {
    backdrop-filter: blur(14px);
    background: rgba(11, 19, 43, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 0;
}

.navbar-brand {
    font-size: 30px;
    font-weight: 800;
    color: white !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    color: rgba(255, 255, 255, .85) !important;
    margin: 0 10px;
    font-weight: 500;
    transition: .3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f4d35e);
    border: none;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(212, 175, 55, .3);
    color: var(--navy);
    font-weight: 700;
    padding: 12px 28px;
    transition: .3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
}

.btn-outline-premium {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 14px;
    color: white;
    padding: 12px 28px;
}

.hero {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, .18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(217, 4, 41, .25), transparent 35%),
        linear-gradient(135deg, #07101f, #0b132b 60%, #101f42);
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 120px;
    position: relative;
}

.hero::before {
    background: rgba(212, 175, 55, .07);
    border-radius: 50%;
    content: '';
    filter: blur(80px);
    height: 700px;
    position: absolute;
    right: -250px;
    top: -250px;
    width: 700px;
}

.hero h1 {
    color: white;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.glass-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.dashboard-preview {
    padding: 20px;
    position: relative;
}

.dashboard-preview img {
    border-radius: 20px;
    width: 100%;
}

.floating-card {
    animation: float 4s ease-in-out infinite;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    padding: 16px;
    position: absolute;
}

.floating-card.top {
    left: -20px;
    top: -20px;
}

.floating-card.bottom {
    bottom: -20px;
    right: -20px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.section {
    padding: 110px 0;
}

.section-title {
    margin-bottom: 70px;
    text-align: center;
}

.section-title h2 {
    color: var(--navy);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title p {
    color: #6b7280;
    line-height: 1.8;
    margin: auto;
    max-width: 760px;
}

.feature-card {
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .06);
    height: 100%;
    padding: 38px;
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-red), #ef233c);
    border-radius: 22px;
    color: white;
    display: flex;
    font-size: 30px;
    height: 74px;
    justify-content: center;
    margin-bottom: 24px;
    width: 74px;
}

.feature-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.9;
}

.business-section {
    background: linear-gradient(180deg, #ffffff, #f6f8fc);
}

.custom-tab {
    background: white;
    border: none;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .05);
    font-weight: 700;
    padding: 18px 26px;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-red), #ef233c);
    color: white;
}

.tab-preview {
    background: white;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.mobile-card {
    background: linear-gradient(135deg, #091120, #13213f);
    border-radius: 40px;
    color: white;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.mobile-card::before {
    background: rgba(212, 175, 55, .2);
    border-radius: 50%;
    content: '';
    height: 250px;
    position: absolute;
    right: -80px;
    top: -120px;
    width: 250px;
}

.member-card {
    background: linear-gradient(135deg, #d90429, #9d0208);
    border-radius: 26px;
    color: white;
    margin-top: 28px;
    overflow: hidden;
    padding: 24px;
    position: relative;
}

.member-card::after {
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: '';
    height: 160px;
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
}

.news-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
    overflow: hidden;
    transition: .3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-card img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.news-content {
    padding: 30px;
}

.footer {
    background: linear-gradient(135deg, #07101f, #0b132b);
    color: rgba(255, 255, 255, .85);
    padding: 90px 0 40px;
}

.footer h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
}

.social-icons a {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    color: white;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: .3s;
    width: 46px;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy);
}

.badge-premium {
    background: rgba(212, 175, 55, .14);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 999px;
    color: var(--gold);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 12px 24px;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 34px;
    }
}
/* HERO FIX */
.hero{
    min-height:100vh;
    padding-top:140px;
    padding-bottom:120px;
}

/* CUSTOM TABS */
.custom-business-tabs .nav-link{
    color:#0b132b !important;
    background:#ffffff;
    border-radius:20px;
    padding:14px 28px;
    font-weight:700;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.custom-business-tabs .nav-link:hover{
    transform:translateY(-3px);
}

.custom-business-tabs .nav-link.active{
    background:linear-gradient(135deg,#d90429,#ef233c);
    color:#fff !important;
}