/* ========================================
   haloaja.com — Main Stylesheet (v2 — Color Alive)
   No Tailwind dependency — Tegas Edition
   ======================================== */

/* ---------- Color Tokens ---------- */
:root {
    --cyan: #00e5ff;
    --cyan-dim: rgba(0, 229, 255, 0.7);
    --cyan-bg: rgba(0, 229, 255, 0.12);
    --cyan-bg-hover: rgba(0, 229, 255, 0.2);

    --violet: #a78bfa;
    --violet-dim: rgba(167, 139, 250, 0.7);
    --violet-bg: rgba(167, 139, 250, 0.12);
    --violet-bg-hover: rgba(167, 139, 250, 0.2);

    --rose: #f472b6;
    --rose-dim: rgba(244, 114, 182, 0.7);
    --rose-bg: rgba(244, 114, 182, 0.12);
    --rose-bg-hover: rgba(244, 114, 182, 0.2);

    --amber: #fbbf24;
    --amber-dim: rgba(251, 191, 36, 0.7);
    --amber-bg: rgba(251, 191, 36, 0.12);
    --amber-bg-hover: rgba(251, 191, 36, 0.2);

    --emerald: #34d399;
    --emerald-dim: rgba(52, 211, 153, 0.7);
    --emerald-bg: rgba(52, 211, 153, 0.12);

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;

    --bg-base: #0c1017;
    --bg-card: #141b24;
    --bg-card-hover: #1a232e;
    --border-card: rgba(255, 255, 255, 0.07);
    --border-card-hover: rgba(255, 255, 255, 0.12);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--cyan);
    color: #050505;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

/* ---------- Layout Helpers ---------- */
.container-main {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero-inner {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nav-inner {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- Icon Sizes ---------- */
.icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-xs {
    width: 0.75rem;
    height: 0.75rem;
}

.icon-2xs {
    width: 0.875rem;
    height: 0.875rem;
}

/* ---------- Font Helpers ---------- */
.font-mono-text {
    font-family: 'JetBrains Mono', monospace;
}

/* ---------- Background Patterns ---------- */
.dot-grid {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.glow-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 229, 255, 0.06);
    top: -200px;
    right: -200px;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 229, 255, 0.04);
    bottom: 20%;
    left: -150px;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(167, 139, 250, 0.04);
    bottom: -100px;
    right: 20%;
}

.glow-orb-4 {
    width: 350px;
    height: 350px;
    background: rgba(244, 114, 182, 0.03);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.glow-orb-5 {
    width: 300px;
    height: 300px;
    background: rgba(251, 191, 36, 0.025);
    top: 15%;
    left: 10%;
}

/* ---------- Typography — Gradients ---------- */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 45%, var(--violet) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease-in-out infinite;
}

.gradient-text-showcase {
    background: linear-gradient(135deg, #ffffff 20%, var(--violet) 80%, var(--cyan) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 10s ease-in-out infinite;
}

.gradient-text-cta {
    background: linear-gradient(135deg, #ffffff 10%, var(--emerald) 50%, var(--cyan) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---------- Hero Title Solid ---------- */
.hero-title-solid {
    color: #ffffff;
    text-shadow: 0 0 80px rgba(0, 229, 255, 0.12), 0 0 40px rgba(167, 139, 250, 0.08);
}

/* ---------- Glow Elements ---------- */
.glow-line {
    background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
    height: 1px;
    opacity: 0.45;
}

.glow-line-hero {
    max-width: 576px;
    margin: 5rem auto 0;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--cyan);
    color: #050505;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    transition: all 0.25s;
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.2);
    text-decoration: none;
}

.btn-primary:hover {
    background: #33ddff;
    box-shadow: 0 0 36px rgba(0, 229, 255, 0.35);
}

.btn-primary.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    box-shadow: none;
}

.btn-primary.btn-sm:hover {
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: rgba(0, 229, 255, 0.35);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: #25D366;
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #22c55e;
    box-shadow: 0 0 36px rgba(37, 211, 102, 0.35);
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s;
    text-decoration: none;
}

.btn-email:hover {
    border-color: rgba(0, 229, 255, 0.25);
    color: #fff;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(12, 16, 23, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 229, 255, 0.08) !important;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}

.logo-icon-sm {
    width: 1.75rem;
    height: 1.75rem;
}

.logo-icon span {
    color: #050505;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
}

.logo-icon-sm span {
    font-size: 0.75rem;
}

.logo-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.025em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-right .btn-primary {
    display: none;
}

.menu-toggle {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.25s;
}

.menu-toggle:hover {
    color: var(--cyan);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(12, 16, 23, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.mobile-menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
}

.mobile-link:hover {
    color: var(--cyan);
}

.mobile-link-cta {
    margin-top: 1rem;
    font-size: 1rem;
    background: var(--cyan);
    color: #050505;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.08);
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan-dim);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: subtle-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--cyan);
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--cyan); }
    50% { opacity: 0.5; box-shadow: 0 0 5px var(--cyan); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* ---------- Sections ---------- */
.section {
    position: relative;
    padding: 6rem 0;
}

.section-header {
    max-width: 36rem;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.label-violet { color: var(--violet-dim); }
.label-rose { color: var(--rose-dim); }
.label-amber { color: var(--amber-dim); }
.label-emerald { color: var(--emerald-dim); }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
}

/* ---------- Icon Color Variants ---------- */
.icon-cyan { background: var(--cyan-bg); color: var(--cyan); }
.icon-cyan i, .icon-cyan svg { color: var(--cyan); }

.icon-violet { background: var(--violet-bg); color: var(--violet); }
.icon-violet i, .icon-violet svg { color: var(--violet); }

.icon-rose { background: var(--rose-bg); color: var(--rose); }
.icon-rose i, .icon-rose svg { color: var(--rose); }

.icon-amber { background: var(--amber-bg); color: var(--amber); }
.icon-amber i, .icon-amber svg { color: var(--amber); }

.icon-emerald { background: var(--emerald-bg); color: var(--emerald); }
.icon-emerald i, .icon-emerald svg { color: var(--emerald); }

/* ---------- Cards ---------- */
.card-glow {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 1rem;
    padding: 1.75rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-glow:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-card-hover);
    box-shadow: 0 0 50px -12px rgba(0, 229, 255, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.card-glow:hover .icon-cyan { background: var(--cyan-bg-hover); box-shadow: 0 0 24px rgba(0, 229, 255, 0.15); }
.card-glow:hover .icon-violet { background: var(--violet-bg-hover); box-shadow: 0 0 24px rgba(167, 139, 250, 0.15); }
.card-glow:hover .icon-rose { background: var(--rose-bg-hover); box-shadow: 0 0 24px rgba(244, 114, 182, 0.15); }
.card-glow:hover .icon-amber { background: var(--amber-bg-hover); box-shadow: 0 0 24px rgba(251, 191, 36, 0.15); }

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f0f7ff;
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.card-glow:hover .card-title { color: #ffffff; }

.card-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-tag {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.3s;
}

.tag-cyan { color: rgba(0, 229, 255, 0.55); }
.tag-violet { color: rgba(167, 139, 250, 0.55); }
.tag-rose { color: rgba(244, 114, 182, 0.55); }
.tag-amber { color: rgba(251, 191, 36, 0.55); }
.tag-emerald { color: rgba(52, 211, 153, 0.55); }

.card-glow:hover .tag-cyan { color: rgba(0, 229, 255, 0.85); }
.card-glow:hover .tag-violet { color: rgba(167, 139, 250, 0.85); }
.card-glow:hover .tag-rose { color: rgba(244, 114, 182, 0.85); }
.card-glow:hover .tag-amber { color: rgba(251, 191, 36, 0.85); }
.card-glow:hover .tag-emerald { color: rgba(52, 211, 153, 0.85); }

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* ---------- Showcase ---------- */
.showcase-card {
    overflow: hidden;
    padding: 0;
}

.showcase-card:hover {
    border-color: rgba(167, 139, 250, 0.25);
    box-shadow: 0 0 60px -12px rgba(167, 139, 250, 0.15);
}

.browser-frame {
    border: 1px solid rgba(167, 139, 250, 0.12);
    border-radius: 0.75rem;
    overflow: hidden;
    background: #0e1319;
    margin: 1.25rem;
}

.browser-bar {
    background: #111820;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.browser-dots {
    display: flex;
    gap: 0.375rem;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-url {
    flex: 1;
    max-width: 16rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
}

.browser-url span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- Dashboard Mockup ---------- */
.dashboard {
    display: flex;
    height: 320px;
}

.dash-sidebar {
    width: 3.5rem;
    flex-shrink: 0;
    background: #111820;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-logo {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: rgba(167, 139, 250, 0.2);
    margin-bottom: 0.75rem;
}

.dash-nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.dash-nav-item.active { background: rgba(167, 139, 250, 0.25); }
.dash-nav-bottom { margin-top: auto; }

.dash-main {
    flex: 1;
    padding: 0.75rem 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dash-topbar-title {
    height: 12px;
    width: 8rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.dash-topbar-action {
    height: 12px;
    width: 5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dash-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}

.dash-stat-label {
    height: 8px;
    width: 3.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
}

.dash-stat-value {
    height: 12px;
    width: 4rem;
    border-radius: 6px;
    background: rgba(167, 139, 250, 0.15);
}

.dash-stat-value-primary { background: rgba(167, 139, 250, 0.22); }

.dash-stat-card-desktop { display: none; }
.dash-bar-desktop { display: none; }

.dash-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dash-chart-title {
    height: 8px;
    width: 6rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.dash-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex: 1;
}

.dash-bar {
    flex: 1;
    border-radius: 3px;
    background: rgba(167, 139, 250, 0.25);
    min-height: 4px;
}

.dash-bar-alt { background: rgba(167, 139, 250, 0.14); }

/* ---------- Showcase Info ---------- */
.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 2rem;
}

.showcase-label {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--violet-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.showcase-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
    max-width: 36rem;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--violet);
    text-decoration: none;
    transition: all 0.25s;
    flex-shrink: 0;
}

.showcase-link:hover {
    color: #c4b5fd;
    text-shadow: 0 0 24px rgba(167, 139, 250, 0.4);
}

.showcase-link i,
.showcase-link svg {
    transition: transform 0.2s;
}

.showcase-link:hover i,
.showcase-link:hover svg {
    transform: translate(2px, -2px);
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.about-left .section-title { margin-bottom: 1.5rem; }

.about-desc {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 30%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.about-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.value-card:has(.icon-rose):hover {
    border-color: rgba(244, 114, 182, 0.2);
    box-shadow: 0 0 36px -12px rgba(244, 114, 182, 0.15);
}

.value-card:has(.icon-violet):hover {
    border-color: rgba(167, 139, 250, 0.2);
    box-shadow: 0 0 36px -12px rgba(167, 139, 250, 0.15);
}

.value-card:has(.icon-cyan):hover {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 36px -12px rgba(0, 229, 255, 0.15);
}

.value-card:has(.icon-amber):hover {
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 0 36px -12px rgba(251, 191, 36, 0.15);
}

.value-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: all 0.3s;
}

.value-card:hover .icon-rose { background: var(--rose-bg-hover); }
.value-card:hover .icon-violet { background: var(--violet-bg-hover); }
.value-card:hover .icon-cyan { background: var(--cyan-bg-hover); }
.value-card:hover .icon-amber { background: var(--amber-bg-hover); }

.value-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f0f7ff;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.value-card:hover .value-card-title { color: #ffffff; }

.value-card-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
}

/* ---------- CTA ---------- */
.cta-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(52, 211, 153, 0.12);
    background: var(--bg-card);
}

.cta-glow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.06), transparent 40%, rgba(0, 229, 255, 0.05) 80%, transparent);
}

.cta-line-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.4), rgba(0, 229, 255, 0.3), transparent);
}

.cta-line-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), rgba(52, 211, 153, 0.3), transparent);
}

.cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: rgba(52, 211, 153, 0.06);
    border-radius: 50%;
    filter: blur(100px);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 1.75rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
    max-width: 28rem;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 300;
    line-height: 1.625;
    max-width: 22rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.footer-brand-tagline {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan-dim);
    opacity: 0.6;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-list a {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-col-list a:hover { color: var(--cyan); }

.footer-col-list-icons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* ========================================
   RESPONSIVE — md (768px)
   ======================================== */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-right .btn-primary { display: inline-flex; }
    .menu-toggle { display: none; }

    .hero-section { padding: 11rem 0 8rem; }
    .hero-title { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.125rem; }
    .hero-ctas { flex-direction: row; justify-content: center; }
    .glow-line-hero { margin-top: 7rem; }

    .section { padding: 8rem 0; }
    .section-title { font-size: 2.25rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .dashboard { height: 400px; }
    .dash-sidebar { width: 4rem; padding: 0.75rem; }
    .dash-stats { grid-template-columns: repeat(4, 1fr); }
    .dash-stat-card-desktop { display: block; }
    .dash-bar-desktop { display: block; }

    .showcase-info {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 2rem 2.5rem;
    }

    .showcase-title { font-size: 1.875rem; }

    .about-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; }

    .cta-content { padding: 5rem 4rem; }
    .cta-title { font-size: 3.25rem; }
    .cta-actions { flex-direction: row; justify-content: center; }

    .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: row; }
}

/* ========================================
   RESPONSIVE — lg (1024px)
   ======================================== */
@media (min-width: 1024px) {
    .hero-title { font-size: 5rem; }
    .section-title { font-size: 2.5rem; }
    .cta-title { font-size: 3.75rem; }
}