/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
:root {
    --primary: #1973fe;
    --primary-dark: #0d5cd4;
    --secondary: #0a1f44;
    --accent: #00d4aa;
    --text: #0a1f44;
    --text-muted: #6b7a99;
    --bg-light: #f8faff;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1973fe 0%, #00d4aa 100%);
    --gradient-dark: linear-gradient(135deg, #0a1f44 0%, #1973fe 100%);
    --shadow-sm: 0 4px 20px rgba(25,115,254,.10);
    --shadow-md: 0 10px 40px rgba(25,115,254,.18);
    --shadow-lg: 0 20px 60px rgba(25,115,254,.22);
    --radius: 16px;
    --radius-sm: 8px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ===== NAV ===== */
#mainNav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.2rem 0;
    transition: all .35s ease;
    background: transparent;
}
#mainNav.nav--sticky {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: .7rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.nav-brand { font-size: 1.6rem; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -.5px; transition: color .3s; }
#mainNav.nav--sticky .nav-brand { color: var(--primary); }
.nav-brand span { color: var(--accent); }
.nav-link-item { color: rgba(255,255,255,.9) !important; font-weight: 500; font-size: .95rem; text-decoration: none; padding: .4rem .8rem; border-radius: 6px; transition: all .2s; }
.nav-link-item:hover { color: var(--white) !important; background: rgba(255,255,255,.15); }
#mainNav.nav--sticky .nav-link-item { color: var(--text) !important; }
#mainNav.nav--sticky .nav-link-item:hover { color: var(--primary) !important; background: rgba(25,115,254,.08); }
.nav-btn { background: var(--white); color: var(--primary) !important; font-weight: 700; padding: .5rem 1.4rem; border-radius: 50px; font-size: .9rem; transition: all .25s; box-shadow: var(--shadow-sm); }
.nav-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--accent) !important; color: var(--white) !important; }
#mainNav.nav--sticky .nav-btn { background: var(--primary); color: var(--white) !important; }
#mainNav.nav--sticky .nav-btn:hover { background: var(--primary-dark); }

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('/img/home-bg.jpg') center/cover no-repeat;
    opacity: .08;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.12);
    animation: float linear infinite;
}
@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white); font-size: .82rem; font-weight: 600;
    padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
    letter-spacing: .5px; text-transform: uppercase;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .7; } }
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900; color: var(--white);
    line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 1.5rem;
}
.hero-title .highlight {
    background: linear-gradient(90deg, var(--accent), #7dd3fc);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px; }
.btn-hero-primary {
    background: var(--gradient); color: var(--white); font-weight: 700;
    padding: .9rem 2.2rem; border-radius: 50px; font-size: 1rem;
    border: none; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
    box-shadow: 0 8px 30px rgba(25,115,254,.4); transition: all .3s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(25,115,254,.5); color: var(--white); }
.btn-hero-secondary {
    background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.3); color: var(--white);
    font-weight: 600; padding: .9rem 2.2rem; border-radius: 50px; font-size: 1rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: all .3s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.2); color: var(--white); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .2rem; text-transform: uppercase; letter-spacing: .5px; }
.hero-image-wrap {
    position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image-wrap::before {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,170,.2) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-mockup {
    width: 100%; max-width: 560px; border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.1);
    animation: floatImg 4s ease-in-out infinite;
    position: relative; z-index: 1;
}
@keyframes floatImg { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-card-float {
    position: absolute; background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
    border-radius: 14px; padding: .8rem 1.2rem; box-shadow: 0 10px 40px rgba(0,0,0,.15);
    display: flex; align-items: center; gap: .8rem; z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
}
.hero-card-float:nth-child(2) { animation-delay: 1s; }
.hero-card-float:nth-child(3) { animation-delay: 2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-float .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-card-float .label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.hero-card-float .value { font-size: 1rem; font-weight: 800; color: var(--text); }
.card-float-1 { top: 10%; left: -5%; }
.card-float-2 { bottom: 15%; right: -5%; }

/* ===== SECTION SHARED ===== */
.section-tag {
    display: inline-block; background: rgba(25,115,254,.1); color: var(--primary);
    font-size: .78rem; font-weight: 700; padding: .35rem 1rem; border-radius: 50px;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--text); line-height: 1.2; letter-spacing: -.5px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* ===== FEATURES ===== */
.features-section { background: var(--bg-light); padding: 6rem 0; }
.feature-card {
    background: var(--white); border-radius: var(--radius); padding: 2rem;
    height: 100%; border: 1px solid rgba(25,115,254,.08);
    transition: all .35s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(25,115,254,.12), rgba(0,212,170,.12));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary); margin-bottom: 1.2rem;
    transition: all .35s;
}
.feature-card:hover .feature-icon { background: var(--gradient); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.feature-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--white); padding: 6rem 0; }
.industry-card {
    background: var(--bg-light); border-radius: var(--radius); padding: 1.8rem;
    display: flex; gap: 1.2rem; align-items: flex-start;
    border: 1px solid transparent; transition: all .3s ease;
}
.industry-card:hover { background: var(--white); border-color: rgba(25,115,254,.15); box-shadow: var(--shadow-md); transform: translateX(6px); }
.industry-icon {
    width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
    background: var(--gradient); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.industry-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.industry-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== STATS ===== */
.stats-section {
    background: var(--gradient-dark); padding: 5rem 0; position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('/img/home-bg1.png') center/cover; opacity: .04;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number { font-size: 3.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .5rem; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); height: 60px; margin: auto; }

/* ===== CTA ===== */
.cta-section { padding: 6rem 0; background: var(--bg-light); }
.cta-box {
    background: var(--gradient-dark); border-radius: 24px; padding: 4rem;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(0,212,170,.15);
}
.cta-box::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(25,115,254,.2);
}
.cta-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--white); line-height: 1.2; }
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.7; }
.btn-cta {
    background: var(--white); color: var(--primary); font-weight: 800;
    padding: 1rem 2.5rem; border-radius: 50px; font-size: 1rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.2); transition: all .3s; border: none;
}
.btn-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); color: var(--primary-dark); }

/* ===== FOOTER ===== */
.site-footer { background: var(--secondary); padding: 1.5rem 0; }
.footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section { padding-top: 100px; text-align: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { margin-top: 3rem; }
    .card-float-1, .card-float-2 { display: none; }
    .cta-box { padding: 2.5rem 1.5rem; text-align: center; }
    .stat-divider { display: none; }
}

/* ===== MOBILE DRAWER ===== */
.nav-hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px; padding: 6px;
    background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 10px; cursor: pointer; transition: all .25s;
}
.nav-hamburger span {
    display: block; height: 2px; border-radius: 2px;
    background: var(--white); transition: all .35s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}
#mainNav.nav--sticky .nav-hamburger { background: rgba(25,115,254,.08); border-color: rgba(25,115,254,.2); }
#mainNav.nav--sticky .nav-hamburger span { background: var(--text); }
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer-overlay {
    position: fixed; inset: 0; z-index: 1099;
    background: rgba(10,31,68,.55); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: all .35s ease;
}
.mobile-drawer-overlay.is-visible { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100;
    width: min(320px, 85vw);
    background: var(--white);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    box-shadow: -10px 0 60px rgba(0,0,0,.18);
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(25,115,254,.08);
    background: linear-gradient(135deg, var(--secondary), #1973fe);
}
.mobile-drawer__brand {
    font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -.5px;
}
.mobile-drawer__brand span { color: var(--accent); }
.mobile-drawer__close {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: none; color: var(--white);
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s;
}
.mobile-drawer__close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }

.mobile-drawer__nav {
    flex: 1; padding: 1.2rem 1rem; overflow-y: auto;
    display: flex; flex-direction: column; gap: .3rem;
}
.mobile-drawer__link {
    display: flex; align-items: center; gap: 1rem;
    padding: .9rem 1rem; border-radius: 12px;
    color: var(--text); font-weight: 600; font-size: .97rem;
    text-decoration: none; transition: all .2s;
    border: 1px solid transparent;
}
.mobile-drawer__link:hover, .mobile-drawer__link:focus {
    background: rgba(25,115,254,.07); color: var(--primary);
    border-color: rgba(25,115,254,.12); transform: translateX(4px);
}
.mobile-drawer__link-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(25,115,254,.12), rgba(0,212,170,.12));
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: all .2s;
}
.mobile-drawer__link:hover .mobile-drawer__link-icon {
    background: var(--gradient); color: var(--white);
}

.mobile-drawer__footer {
    padding: 1.2rem 1.5rem 2rem;
    border-top: 1px solid rgba(25,115,254,.08);
    display: flex; flex-direction: column; gap: .75rem;
}
.mobile-drawer__btn-outline {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .85rem; border-radius: 50px; font-weight: 700; font-size: .95rem;
    text-decoration: none; transition: all .25s;
    border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.mobile-drawer__btn-outline:hover { background: rgba(25,115,254,.07); color: var(--primary); }
.mobile-drawer__btn-primary {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .85rem; border-radius: 50px; font-weight: 700; font-size: .95rem;
    text-decoration: none; transition: all .25s;
    background: var(--gradient); color: var(--white);
    box-shadow: 0 6px 20px rgba(25,115,254,.35);
}
.mobile-drawer__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(25,115,254,.45); color: var(--white); }
