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

:root {
    --primary-glow: #ff6b00;
    --primary-deep: #e65100;
    --accent-gold: #f59e0b;
    --dark-bg: #ffffff;
    --dark-card: #f8fafc;
    --dark-border: rgba(0, 0, 0, 0.05);
    --text-main: #0f172a;
    --text-dim: #64748b;
    --white: #ffffff;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(15, 23, 42, 0.05);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
}

/* Global Reset & Base */
body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

a {
    transition: var(--transition-smooth);
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-deep);
    border-radius: 10px;
}

/* Section Utilities */
.section-padding {
    padding: 120px 0;
}

.text-primary-tech {
    color: var(--primary-glow);
}

.text-dim {
    color: var(--text-dim);
}

/* Navbar - Redesigned Floating Pill */
.navbar {
    padding: 25px 0;
    transition: var(--transition-smooth);
    background: transparent;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 12px 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    max-width: 1100px;
}

.navbar-brand .logo-box {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-glow), var(--primary-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-toggler {
    border: none;
    padding: 0;
    color: var(--text-main);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    margin: 0 15px;
    opacity: 0.8;
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary-glow) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-glow);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 20px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .navbar.scrolled .container {
        border-radius: 20px;
    }
    
    .nav-link {
        margin: 10px 0;
    }
    
    .header-cta {
        margin-top: 20px;
    }
}

/* Buttons */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-glow), var(--primary-deep));
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
    font-size: 0.9rem;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.3);
    color: #ffffff;
}

.btn-outline-white {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background: var(--text-main);
    color: #ffffff;
}

/* Hero Section - Redesigned */
.hero {
    min-height: 90vh;
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(230, 81, 0, 0.05), transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.08);
    color: var(--primary-glow);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-glow), var(--primary-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    max-width: 650px;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.15);
    border: 8px solid #ffffff;
}

.floating-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    z-index: 3;
}

.card-trust {
    top: 10%;
    right: -5%;
    width: 220px;
}

.legal-header {
    min-height: 40vh !important;
    padding-top: 180px !important;
    padding-bottom: 80px !important;
    text-align: center;
}

.legal-header h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 20px;
}

.card-shield {
    bottom: 10%;
    left: -10%;
    width: 260px;
}

.trust-avatars {
    display: flex;
    margin-bottom: 12px;
}

.trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

.trust-avatars img:first-child { margin-left: 0; }

/* Feature Cards - Bento Style Layout Possible */
.bento-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--primary-glow);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-glow);
    margin-bottom: 25px;
}

/* Glass Panels */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

/* Stats Section */
.stats-container {
    background: var(--dark-card);
    padding: 60px 0;
    border-radius: 40px;
    border: 1px solid var(--dark-border);
}

.stat-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000000, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

/* Why Us Section */
.check-list li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--primary-glow);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Footer Section */
/* Footer Section - Redesigned */
.footer {
    background: #fcfcfc;
    padding-top: 120px;
    border-top: 1px solid var(--dark-border);
}

.footer-top {
    padding-bottom: 100px;
}

.footer-brand .logo-box {
    font-size: 1.8rem;
    font-weight: 900;
}

.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-glow);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--text-dim);
    display: inline-block;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.footer-links li a:hover {
    color: var(--primary-glow);
    transform: translateX(8px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-contact .icon-box {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-glow);
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--primary-glow);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-main);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary-glow);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid var(--dark-border);
    background: #ffffff;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--primary-glow);
}

/* Form Controls */
.premium-form .form-control {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 15px 20px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.premium-form .form-control:focus {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-glow);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-glow);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-img {
        transform: none !important;
        margin-top: 50px;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 20px;
        padding: 30px;
        border-radius: 20px;
        border: 1px solid var(--dark-border);
    }
}