@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --bg: #080a12;
    --bg-alt: #0d1120;
    --panel: #12182a;
    --panel-2: #171f35;
    --text: #f5f7ff;
    --muted: #b8c2df;
    --line: #2a355a;
    --brand: #7c9cff;
    --brand-2: #5eead4;
    --danger: #ff6b7b;
    --ok: #3ddc97;
    --max-width: 1220px;
    --header-height: 82px;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(1300px 600px at -5% -10%, rgba(124, 156, 255, 0.25), transparent),
        radial-gradient(1000px 500px at 110% 0%, rgba(94, 234, 212, 0.18), transparent),
        linear-gradient(180deg, #070a12 0%, #090d18 30%, #0b1020 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all .25s ease; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { width: min(92%, var(--max-width)); margin-inline: auto; }
.text-gold { background: linear-gradient(90deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.gold-divider { width: 86px; height: 3px; border-radius: 50px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); margin-top: 18px; }
.gold-divider.center { margin-inline: auto; }

/* Header */
.main-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 14, 26, 0.65);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
}
.header-container {
    width: min(95%, var(--max-width)); margin-inline: auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 46px; width: auto; filter: drop-shadow(0 10px 20px rgba(124,156,255,.35)); }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; letter-spacing: .3px; }
.desktop-nav .nav-links { display: flex; gap: 26px; }
.nav-item {
    color: #dbe5ff; font-weight: 600; font-size: .92rem; padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.nav-item:hover { color: #fff; border-bottom-color: var(--brand-2); }
.header-actions { display: flex; align-items: center; gap: 14px; }

.gold-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px; border-radius: 999px; font-weight: 700; color: #0b1020;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 26px rgba(94, 234, 212, .18), inset 0 -2px 0 rgba(0,0,0,.15);
}
.btn-shimmer {
    position: absolute; inset: 0 auto 0 -120%; width: 52%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
    transform: skewX(-20deg);
}
.gold-btn:hover .btn-shimmer { left: 140%; transition: .65s ease; }
.gold-btn:hover { transform: translateY(-1px); }
.gold-btn.big { padding: 15px 32px; font-size: 1rem; }

.mobile-menu-btn { display: none; background: transparent; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.line { width: 28px; height: 2px; background: #e5ecff; transition: .2s ease; }
.mobile-nav-overlay {
    position: fixed; inset: 0; z-index: 999; display: grid; place-items: center;
    background: rgba(6,10,20,.94); opacity: 0; pointer-events: none; transition: .3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-content { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.mobile-nav-content a { font-family: var(--font-heading); font-size: 1.6rem; color: #d8e4ff; }

/* Hero */
.hero-section { position: relative; padding: 150px 0 92px; min-height: 100vh; display: flex; align-items: center; }
.hero-background { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.pearl-orb {
    position: absolute; border-radius: 999px; filter: blur(70px); opacity: .55;
    animation: drift 12s ease-in-out infinite alternate;
}
.orb-1 { width: 420px; height: 420px; right: -90px; top: -50px; background: #667eea; }
.orb-2 { width: 380px; height: 380px; left: -120px; bottom: -40px; background: #43e6c3; animation-delay: -4s; }
.gold-accent-line {
    position: absolute; left: 12%; top: 24%; width: 280px; height: 280px;
    border: 1px dashed rgba(124,156,255,.35); border-radius: 50%; transform: rotate(20deg);
}
@keyframes drift { from { transform: translate(0,0);} to { transform: translate(30px, 36px);} }

.hero-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-title { font-size: clamp(2rem, 5vw, 4.2rem); margin-bottom: 18px; letter-spacing: -0.5px; }
.hero-subtitle { max-width: 620px; color: var(--muted); font-size: 1.08rem; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.primary-btn, .secondary-btn { padding: 14px 24px; border-radius: 14px; font-weight: 700; }
.primary-btn { background: #f4f7ff; color: #111a33; }
.primary-btn:hover { transform: translateY(-2px); }
.secondary-btn { border: 1px solid #3a4b7e; color: #d7e1ff; background: rgba(16,24,45,.45); }
.secondary-btn:hover { background: rgba(124,156,255,.16); }

.glass-card {
    border-radius: 24px; padding: 20px;
    background: linear-gradient(160deg, rgba(19,27,50,.9), rgba(13,18,34,.95));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.card-header { display: flex; gap: 8px; margin-bottom: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff6b7b; }
.yellow { background: #ffd56c; }
.green { background: #3ddc97; }
.chart-mockup { position: relative; height: 190px; }
.bar-group { height: 100%; display: flex; align-items: end; gap: 10px; }
.bar { flex: 1; border-radius: 10px 10px 3px 3px; background: linear-gradient(180deg, #b9c9ff 0%, #6f86e8 100%); opacity: .7; }
.bar-1 { height: 45%; }
.bar-2 { height: 64%; }
.bar-3 { height: 86%; background: linear-gradient(180deg, #6bf0d8, #3e8dff); }
.chart-line { position: absolute; inset: 0; }
.stat-floating {
    position: absolute; right: -14px; top: -14px; padding: 10px 14px; border-radius: 12px;
    background: #0f1831; border: 1px solid #37456f; display: flex; align-items: center; gap: 8px;
}
.stat-floating .icon { color: var(--ok); }
.stat-floating .val { font-weight: 700; }

/* Sections */
.stats-ticker, .services-section, .calculator-section, .reporting-section, .testimonials-section, .industries-section, .cta-section {
    padding: 88px 0;
}
.stats-ticker {
    margin-top: 10px;
    background: linear-gradient(90deg, rgba(124,156,255,.12), rgba(94,234,212,.08));
    border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-item {
    text-align: center; padding: 22px 18px; border-radius: 16px;
    background: rgba(16,22,40,.65); border: 1px solid rgba(255,255,255,.08);
}
.stat-item h3 { font-size: 2.4rem; color: #d5e1ff; margin-bottom: 6px; }
.stat-item p { font-size: .84rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card {
    border-radius: 18px; padding: 26px;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(124,156,255,.55); }
.card-icon { font-size: 1.6rem; color: #9db2ff; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.service-list li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; color: #d9e3ff; font-size: .9rem; }
.service-list li i { color: var(--ok); margin-top: 3px; }

.split-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: stretch; }
.calc-intro {
    padding: 24px; border-radius: 20px; background: linear-gradient(160deg, #141d36, #0f1528);
    border: 1px solid rgba(255,255,255,.08);
}
.calc-intro h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.calc-intro p { color: var(--muted); margin-bottom: 20px; }
.feature-badge {
    display: inline-flex; gap: 8px; align-items: center;
    background: rgba(124,156,255,.16); color: #dae3ff; padding: 8px 14px; border-radius: 999px;
}
.calc-interface {
    border-radius: 20px; overflow: hidden; background: linear-gradient(180deg, #141d37, #0f1529);
    border: 1px solid rgba(255,255,255,.08);
}
.calc-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: #0c1224; border-bottom: 1px solid #2b3760; }
.lights span { width: 8px; height: 8px; border-radius: 50%; background: #526398; display: inline-block; margin-left: 4px; }
#roi-form { padding: 22px; }
.input-group { margin-bottom: 14px; }
.input-group label { display: block; margin-bottom: 6px; color: #cdd8fa; font-weight: 600; font-size: .9rem; }
.input-group input[type="number"], .input-group select, .input-group textarea, .input-group input[type="text"], .input-group input[type="email"] {
    width: 100%; border: 1px solid #314172; border-radius: 10px; background: #0d1427; color: #eef3ff; padding: 10px 12px;
    font-family: var(--font-body);
}
.input-group input[type="range"] { width: 100%; accent-color: var(--brand); }
.range-val { color: #a9b8e8; font-size: .9rem; display: inline-block; margin-top: 4px; }
.calc-results {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px 18px;
    background: rgba(8,12,24,.7); border-top: 1px solid #2b3862;
}
.result-box { background: rgba(20,28,50,.8); border: 1px solid #2f3f71; padding: 10px; border-radius: 12px; }
.result-box small { color: #b2c2ee; display: block; font-size: .8rem; }
.result-box span { font-weight: 700; }
.result-box.gold { border-color: #4375ff; }
.result-box.gold span { color: #9bb3ff; }

.dashboard-mockup {
    border-radius: 20px; overflow: hidden;
    background: linear-gradient(180deg, #141d36, #11182d); border: 1px solid rgba(255,255,255,.08);
    display: flex; height: 560px;
}
.dash-sidebar { width: 70px; background: #0a1020; padding-top: 18px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.dash-icon { color: #6d7eaf; font-size: 1rem; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; }
.dash-icon.active, .dash-icon:hover { color: #dce5ff; background: #1f2c52; }
.dash-main { flex: 1; display: flex; flex-direction: column; }
.dash-top-bar { height: 56px; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a3865; color: #d4defd; }
.dash-grid { flex: 1; padding: 16px; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr 1fr; background: #0f162b; }
.dash-card { border-radius: 14px; padding: 14px; background: #151f3a; border: 1px solid #2a3868; }
.dash-card.wide { grid-column: span 2; }
.graph-area { height: 180px; display: flex; align-items: flex-end; }
.graph-bars { display: flex; align-items: flex-end; gap: 8px; width: 100%; height: 100%; }
.g-bar { flex: 1; border-radius: 8px 8px 2px 2px; background: linear-gradient(180deg, #8fa8ff, #5f7de8); }
.donut-chart { max-width: 160px; margin-inline: auto; }
.circle-bg { fill: none; stroke: #334473; stroke-width: 3.8; }
.circle { fill: none; stroke: #89a5ff; stroke-width: 2.8; stroke-linecap: round; }
.donut-text { text-align: center; margin-top: 8px; color: #d6e0ff; font-weight: 700; }
.channel-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d3c69; color: #d8e2ff; }
.trend.up { color: var(--ok); }
.trend.down { color: var(--danger); }
.trend.flat { color: #a8b6df; }

.testimonial-slider { max-width: 920px; margin-inline: auto; position: relative; }
.slide {
    display: none; background: linear-gradient(180deg, #151d36, #11182c);
    border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 30px;
}
.slide.active { display: block; }
.quote-icon { font-size: 2.2rem; color: #8da6ff; margin-bottom: 8px; }
.testimonial-text { font-size: clamp(1.05rem, 2vw, 1.4rem); margin-bottom: 14px; color: #e7edff; }
.author strong { display: block; font-size: 1rem; }
.author span { color: var(--muted); font-size: .9rem; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border: 1px solid #40538e; border-radius: 10px; background: #111930; color: #d5dfff; cursor: pointer;
}
.prev { left: -56px; }
.next { right: -56px; }

.industry-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.ind-item {
    text-align: center; padding: 18px 10px; border-radius: 14px;
    background: #121a2f; border: 1px solid #2b3760; color: #d8e1ff;
}
.ind-item i { display: block; font-size: 1.2rem; margin-bottom: 8px; color: #95abff; }
.ind-item:hover { transform: translateY(-3px); border-color: #4a66b2; }

.cta-card {
    border-radius: 24px; padding: 60px 40px; text-align: center;
    background: linear-gradient(135deg, rgba(124,156,255,.18), rgba(94,234,212,.12));
    border: 1px solid rgba(255,255,255,.12);
}
.cta-card h2 { margin-bottom: 10px; }
.cta-card p { max-width: 700px; margin: 0 auto 24px; color: #d0daf7; }

/* Footer */
.main-footer { border-top: 1px solid rgba(255,255,255,.08); background: #0a0f1f; padding: 76px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 24px; margin-bottom: 40px; }
.footer-logo { height: 46px; margin-bottom: 12px; }
.brand-col p { color: var(--muted); margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
    border: 1px solid #33406c; color: #d7e1ff; background: #121b33;
}
.social-links a:hover { background: #27385f; }
.footer-col h4 { margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a, .contact-col li { color: var(--muted); }
.footer-col ul li a:hover { color: #e6eeff; }
.contact-col li { display: flex; gap: 8px; align-items: flex-start; }
.contact-col li i { color: #8ea5ff; margin-top: 5px; }
.contact-col a { color: #d8e2ff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; text-align: center; color: #94a5d1; font-size: .85rem; }

/* Live chat */
.live-chat-widget {
    position: fixed; right: 24px; bottom: 84px; width: 320px; z-index: 990;
    border-radius: 16px; overflow: hidden; opacity: 0; pointer-events: none;
    transform: translateY(16px) scale(.97);
    transition: .2s ease;
    background: #101a31; border: 1px solid #314170;
}
.live-chat-widget.active { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.chat-header { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #0d1428; border-bottom: 1px solid #2f3d6c; }
.chat-status { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.close-chat { margin-left: auto; cursor: pointer; }
.chat-body { height: 220px; overflow-y: auto; padding: 12px; background: #0b1224; }
.msg.bot { background: #1b2850; border: 1px solid #3a4f8b; padding: 8px 10px; border-radius: 10px 10px 10px 2px; display: inline-block; }
.chat-input { display: flex; gap: 8px; padding: 8px; border-top: 1px solid #2d3d6c; }
.chat-input input { flex: 1; border: 0; background: transparent; color: #e6edff; outline: none; }
.chat-input button { border: 0; background: transparent; color: #a9bcff; cursor: pointer; }
.chat-trigger {
    position: fixed; right: 24px; bottom: 24px; z-index: 990; width: 52px; height: 52px;
    border: 0; border-radius: 16px; cursor: pointer; color: #0c1325;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

/* Legal and contact */
.legal-page-content { padding: 138px 0 70px; }
.legal-wrapper {
    border-radius: 18px; padding: 34px;
    background: linear-gradient(180deg, #121a31, #0f172d);
    border: 1px solid #2c3962;
}
.legal-wrapper h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-wrapper h2 { margin: 20px 0 10px; font-size: 1.35rem; }
.legal-wrapper p { color: var(--muted); margin-bottom: 10px; }
.legal-wrapper a { color: #c7d5ff; text-decoration: underline; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; }
.contact-info-panel {
    border-radius: 18px; padding: 24px; background: linear-gradient(180deg, #111933, #0f162b); border: 1px solid #2f3e6c;
}
.contact-form-wrapper {
    border-radius: 18px; padding: 22px; background: linear-gradient(180deg, #111932, #0f162c); border: 1px solid #2f3e6c;
}
.info-item { display: flex; gap: 12px; margin-bottom: 18px; }
.info-item i { color: #97abff; margin-top: 4px; }

/* Utils */
.fade-in-up { opacity: 0; transform: translateY(14px); animation: rise .65s ease forwards; }
.delay-200 { animation-delay: .2s; }
@keyframes rise { to { opacity: 1; transform: translateY(0);} }

/* Responsive */
@media (max-width: 1080px) {
    .hero-content, .split-layout, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .industry-grid { grid-template-columns: repeat(3,1fr); }
    .dashboard-mockup { height: auto; flex-direction: column; }
    .dash-sidebar { width: 100%; flex-direction: row; justify-content: center; padding: 10px 0; }
    .dash-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .dash-card.wide { grid-column: auto; }
}

@media (max-width: 780px) {
    .desktop-nav, .header-actions .gold-btn { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-section { min-height: auto; padding: 130px 0 70px; }
    .hero-btns { flex-direction: column; }
    .ticker-grid, .calc-results, .footer-top { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2,1fr); }
    .legal-wrapper { padding: 20px; }
    .prev, .next { display: none; }
}