:root {
    --voltax-navy: #061733;
    --voltax-blue: #0d6efd;
    --voltax-cyan: #05c7c9;
    --voltax-teal: #0bbf9f;
    --voltax-light: #f4f9ff;
    --voltax-muted: #60718a;
    --voltax-dark: #071f3f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--voltax-dark);
    background: #fff;
}

a { color: var(--voltax-blue); text-decoration: none; }
a:hover { color: var(--voltax-teal); }

.voltax-navbar {
    padding: 1rem 0;
    background: rgba(6, 23, 51, 0.30);
    backdrop-filter: blur(14px);
    transition: all .2s ease;
}

.navbar-scrolled {
    background: rgba(6, 23, 51, 0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,.16);
}

.navbar-brand strong { display: block; line-height: 1; letter-spacing: .04em; }
.navbar-brand small { display: block; color: var(--voltax-cyan); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--voltax-teal), var(--voltax-blue));
    box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 12px 30px rgba(5, 199, 201, .25);
}

.nav-link { font-weight: 600; color: rgba(255,255,255,.82) !important; }
.nav-link:hover { color: #fff !important; }

.btn-volt {
    border: 0;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--voltax-blue), var(--voltax-cyan));
    box-shadow: 0 14px 35px rgba(13,110,253,.28);
}
.btn-volt:hover { color: #fff; transform: translateY(-1px); }

.hero-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(5,199,201,.35), transparent 30%),
        linear-gradient(135deg, #061733 0%, #082b5e 55%, #081a3a 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: .55;
}
.hero-glow-one { width: 420px; height: 420px; background: rgba(5,199,201,.28); right: -160px; top: 80px; }
.hero-glow-two { width: 360px; height: 360px; background: rgba(13,110,253,.30); left: -180px; bottom: 80px; }

.eyebrow, .section-kicker {
    display: inline-block;
    color: var(--voltax-cyan);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
}

.text-soft { color: rgba(255,255,255,.78); }
.text-cyan { color: var(--voltax-cyan); }

.hero-section h1 {
    letter-spacing: -.04em;
    max-width: 720px;
}

.hero-card {
    padding: .65rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(20px);
}

.trust-points span {
    padding: .65rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.86);
    font-size: .92rem;
    font-weight: 600;
}

.section-padding { padding: 6rem 0; }
.bg-light { background: var(--voltax-light) !important; }
.section-title { font-weight: 850; letter-spacing: -.035em; margin-top: .6rem; }
.section-description { color: var(--voltax-muted); font-size: 1.05rem; }

.benefit-card, .module-card, .blog-card, .contact-box, .contact-form {
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(7,31,63,.08);
    box-shadow: 0 24px 70px rgba(7,31,63,.08);
}

.benefit-card { padding: 1.6rem; }
.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(11,191,159,.13), rgba(13,110,253,.13));
}
.benefit-card h3, .module-card h3, .blog-card h3 { font-size: 1.12rem; font-weight: 800; }
.benefit-card p, .module-card p, .blog-card p { color: var(--voltax-muted); margin-bottom: 0; }

.module-card { padding: 1.5rem; position: relative; overflow: hidden; }
.module-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -50px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(5,199,201,.14), transparent 60%);
}
.module-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--voltax-teal), var(--voltax-blue));
    margin-bottom: 1rem;
}

.demo-strip {
    background:
        radial-gradient(circle at 15% 40%, rgba(5,199,201,.23), transparent 28%),
        linear-gradient(135deg, #061733, #07346f);
}

.blog-card { padding: 1.6rem; }
.blog-card h3 a { color: var(--voltax-dark); }
.blog-date { display: inline-block; margin-bottom: .8rem; color: var(--voltax-teal); font-weight: 800; font-size: .85rem; }
.read-more { display: inline-block; margin-top: 1rem; font-weight: 800; }

.contact-box { padding: 1.4rem; }
.contact-form { padding: 2rem; }
.form-control, .form-select { min-height: 48px; border-radius: .9rem; border-color: rgba(7,31,63,.14); }
.form-control:focus, .form-select:focus { border-color: var(--voltax-cyan); box-shadow: 0 0 0 .25rem rgba(5,199,201,.14); }

.page-header {
    padding: 10rem 0 5rem;
    color: #fff;
    background: linear-gradient(135deg, #061733, #07346f);
}
.page-header h1 { font-weight: 850; letter-spacing: -.035em; max-width: 820px; }
.page-header p { color: rgba(255,255,255,.78); font-size: 1.12rem; max-width: 760px; }
.post-content {
    max-width: 820px;
    padding: 2.2rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 24px 70px rgba(7,31,63,.08);
}
.post-content p { color: #34445b; font-size: 1.08rem; line-height: 1.8; }

.footer { background: #fff; }
.footer h6 { font-weight: 800; }
.footer-links li { margin-bottom: .45rem; }

@media (max-width: 991px) {
    .voltax-navbar { background: rgba(6, 23, 51, .96); }
    .hero-section .min-vh-100 { min-height: auto !important; padding-top: 8rem !important; }
    .section-padding { padding: 4.5rem 0; }
}

@media (max-width: 575px) {
    .display-4 { font-size: 2.35rem; }
    .hero-section h1 { line-height: 1.08; }
    .contact-form { padding: 1.25rem; }
    .page-header { padding-top: 8rem; }
}
