/* =============================================
   DATASHAPERS v3 — AIvent-Inspired Theme
   Deep space · Electric violet · Neon glow
   ============================================= */

:root {
  --void:     #05050f;
  --deep:     #0a0812;
  --surface:  #0e0c1a;
  --glass:    rgba(255,255,255,0.04);
  --glass2:   rgba(255,255,255,0.07);
  --violet:   #7c3aed;
  --purple:   #a855f7;
  --magenta:  #d946ef;
  --pink:     #f472b6;
  --cyan:     #22d3ee;
  --teal:     #2dd4bf;
  --grad-primary: linear-gradient(135deg, #7c3aed, #d946ef);
  --grad-glow:    linear-gradient(135deg, #7c3aed80, #d946ef80);
  --grad-text:    linear-gradient(90deg, #a855f7, #d946ef, #f472b6);
  --text-bright: #f0eeff;
  --text-main:   #d4d0e8;
  --text-muted:  #9d94b8;
  --text-faint:  #3d3660;
  --glow-violet: 0 0 30px rgba(124,58,237,.4), 0 0 80px rgba(124,58,237,.15);
  --glow-magenta:0 0 30px rgba(217,70,239,.4), 0 0 80px rgba(217,70,239,.15);
  --glow-card:   0 8px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(124,58,237,.15);
  --border-v:    rgba(124,58,237,.18);
  --border-v2:   rgba(124,58,237,.3);
  --nav-h:  72px;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--void); color: var(--text-main); overflow-x: hidden; min-height: 100vh; font-size: 16px; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 99px; }

/* ── BACKGROUND ATMOSPHERE ── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .32; animation: orbFloat 12s ease-in-out infinite alternate; }
.orb-1 { width: 600px; height: 600px; background: #7c3aed; top: -200px; left: -150px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: #d946ef; top: 30%; right: -150px; animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; background: #7c3aed; bottom: -100px; left: 40%; animation-delay: -8s; opacity: .18; }
@keyframes orbFloat { from { transform: translateY(0) scale(1); } to { transform: translateY(-40px) scale(1.05); } }
.bg-grid { position: fixed; inset: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px); background-size: 50px 50px; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; background: rgba(5,5,15,.72); backdrop-filter: blur(24px) saturate(1.6); border-bottom: 1px solid rgba(124,58,237,.2); transition: background .3s, border-color .3s; }
#navbar.scrolled { background: rgba(5,5,15,.94); border-bottom-color: rgba(124,58,237,.35); }
.nav-logo { font-family: 'Open Sans', sans-serif; font-weight: 900; font-size: 1.2rem; letter-spacing: .04em; color: var(--text-bright); }
.nav-logo span { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* Logo image — if logo.png/jpg/svg is in same folder */
.nav-logo-img { height: 36px; width: auto; object-fit: contain; display: block; }
.nav-logo-text { display: none; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1.2rem; }
.nav-logo-text span { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-logo-img { height: 32px; width: auto; object-fit: contain; display: block; margin-bottom: .9rem; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: .5rem .85rem; font-size: .77rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); transition: color .2s; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--text-bright); }
.nav-links > li > a.active::after { content: ''; position: absolute; bottom: -1px; left: .85rem; right: .85rem; height: 2px; border-radius: 2px; background: var(--grad-primary); }
.has-dropdown { position: relative; }
/* Invisible hover bridge fills the gap between nav item and dropdown */
.has-dropdown::after { content: ''; position: absolute; bottom: -16px; left: 0; right: 0; height: 16px; }
.has-dropdown .dropdown { position: absolute; top: calc(100% + 2px); left: 0; background: rgba(10,8,22,.98); border: 1px solid var(--border-v); border-radius: var(--radius-sm); padding: .6rem 0; min-width: 210px; list-style: none; opacity: 0; pointer-events: none; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease; backdrop-filter: blur(24px); box-shadow: 0 20px 60px rgba(0,0,0,.7), var(--glow-violet); z-index: 600; }
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a { display: block; padding: .6rem 1.2rem; font-size: .8rem; color: var(--text-muted); transition: color .2s, background .2s; }
.dropdown li a:hover { color: var(--purple); background: rgba(124,58,237,.08); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .4rem; cursor: pointer; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; transition: all .3s; }
.nav-cta { background: var(--grad-primary); color: #fff; border: none; padding: .52rem 1.35rem; border-radius: 50px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; text-decoration: none; box-shadow: var(--glow-violet); transition: opacity .2s, box-shadow .2s; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { opacity: .88; box-shadow: var(--glow-magenta); }

/* ── HERO ── */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--nav-h) + 4rem) 2rem 6rem; overflow: hidden; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; background: rgba(124,58,237,.14); border: 1px solid rgba(124,58,237,.35); border-radius: 50px; padding: .35rem 1.1rem; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); margin-bottom: 1.8rem; animation: fadeUp .8s ease both; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--purple); border-radius: 50%; animation: glowPulse 1.4s ease infinite; }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 4px var(--purple); opacity: 1; } 50% { box-shadow: 0 0 14px var(--magenta); opacity: .5; } }
h1 { font-family: 'Open Sans', sans-serif; font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; line-height: 1.0; letter-spacing: -.01em; color: var(--text-bright); animation: fadeUp .8s .1s ease both; max-width: 900px; }
h1 em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; line-height: 1.82; color: var(--text-muted); max-width: 560px; margin: 1.5rem auto 0; animation: fadeUp .8s .2s ease both; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; animation: fadeUp .8s .3s ease both; }
.hero-dashboard { margin-top: 4rem; position: relative; z-index: 1; animation: fadeUp 1s .5s ease both; max-width: 620px; width: 100%; }

/* ── MARQUEE ── */
.marquee-strip { position: relative; z-index: 1; background: rgba(124,58,237,.07); border-top: 1px solid rgba(124,58,237,.2); border-bottom: 1px solid rgba(124,58,237,.2); padding: .75rem 0; overflow: hidden; }
.marquee-track { display: flex; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: .75rem; padding: 0 2rem; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--grad-primary); flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */
.stats-strip { display: flex; position: relative; z-index: 1; border-top: 1px solid var(--border-v); border-bottom: 1px solid var(--border-v); background: rgba(10,8,18,.5); }
.stat-item { flex: 1; text-align: center; padding: 2.8rem 1.5rem; border-right: 1px solid var(--border-v); transition: background .3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(124,58,237,.05); }
.stat-num { font-family: 'Open Sans', sans-serif; font-size: 2.8rem; font-weight: 700; line-height: 1; letter-spacing: -.01em; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-lbl { font-size: .72rem; color: var(--text-muted); margin-top: .4rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* ── LAYOUT UTILITIES ── */
.section-pad { padding: 7rem 4rem; position: relative; z-index: 1; }
.dark-section { background: rgba(8,6,18,.55); }
.section-header { margin-bottom: 4rem; }
.section-tag { display: inline-flex; align-items: center; gap: .55rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: .8rem; }
.section-tag::before { content: ''; width: 22px; height: 2px; background: var(--grad-primary); border-radius: 2px; }
.section-lead { font-size: 1.02rem; color: var(--text-muted); max-width: 560px; line-height: 1.85; margin-top: .8rem; }
h2 { font-family: 'Open Sans', sans-serif; font-size: clamp(1.7rem, 3.5vw, 2.9rem); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; color: var(--text-bright); }
h2 em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
h3 { font-family: 'Open Sans', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--text-bright); }
.glow-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--violet), var(--magenta), transparent); opacity: .4; position: relative; z-index: 1; }

/* ── BUTTONS ── */
.btn-primary { background: var(--grad-primary); color: #fff; border: none; padding: .85rem 2rem; border-radius: 50px; font-size: .88rem; font-weight: 700; letter-spacing: .05em; cursor: pointer; text-decoration: none; display: inline-block; box-shadow: var(--glow-violet); transition: opacity .2s, box-shadow .2s, transform .2s; white-space: nowrap; }
.btn-primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: var(--glow-magenta); }
.btn-ghost { background: transparent; color: var(--text-bright); border: 1px solid rgba(124,58,237,.35); padding: .85rem 2rem; border-radius: 50px; font-size: .88rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color .2s, background .2s, box-shadow .2s; white-space: nowrap; }
.btn-ghost:hover { border-color: var(--purple); background: rgba(124,58,237,.1); box-shadow: 0 0 20px rgba(124,58,237,.2); }
.btn-outline-accent { background: transparent; color: var(--purple); border: 1px solid rgba(168,85,247,.3); padding: .65rem 1.3rem; border-radius: 50px; font-size: .82rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color .2s, background .2s; }
.btn-outline-accent:hover { border-color: var(--purple); background: rgba(124,58,237,.1); }

/* ── PAGE HERO (inner) ── */
.page-hero { position: relative; z-index: 1; padding: calc(var(--nav-h) + 4.5rem) 4rem 4.5rem; text-align: center; border-bottom: 1px solid var(--border-v); background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,.11), transparent 70%); }
.page-hero .hero-eyebrow { margin-bottom: 1.2rem; animation: none; }
.page-hero h1 { font-family: 'Open Sans', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -.01em; color: var(--text-bright); max-width: 700px; margin: 0 auto; }
.page-hero h1 em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 1rem auto 0; line-height: 1.82; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 2.2rem; position: relative; overflow: hidden; text-decoration: none; display: block; transition: border-color .3s, background .3s, transform .3s; backdrop-filter: blur(10px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-primary); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.service-card:hover { border-color: rgba(168,85,247,.4); background: rgba(124,58,237,.06); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.3rem; transition: all .3s; }
.service-card:hover .service-icon { background: rgba(124,58,237,.2); box-shadow: 0 0 20px rgba(124,58,237,.25); }
.service-title { font-family: 'Open Sans', sans-serif; font-size: .95rem; font-weight: 700; color: var(--text-bright); margin-bottom: .65rem; }
.service-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.75; }
.service-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 1.2rem; font-size: .75rem; font-weight: 700; color: var(--purple); letter-spacing: .07em; text-transform: uppercase; transition: gap .2s, color .2s; }
.service-card:hover .service-link { gap: 10px; color: var(--magenta); }

/* ── PORTFOLIO PREVIEW ── */
.portfolio-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.portfolio-thumb { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .3s, border-color .3s, box-shadow .3s; backdrop-filter: blur(8px); }
.portfolio-thumb:hover { transform: translateY(-5px); border-color: rgba(168,85,247,.4); box-shadow: var(--glow-card); }
.thumb-img { height: 160px; display: flex; align-items: center; justify-content: center; }
.thumb-icon { font-size: 3rem; opacity: .6; }
.thumb-info { padding: 1.2rem 1.4rem; }
.thumb-title { font-family: 'Open Sans', sans-serif; font-size: .88rem; font-weight: 800; color: var(--text-bright); }
.thumb-tag { font-size: .68rem; color: var(--text-muted); margin-top: .3rem; letter-spacing: .07em; text-transform: uppercase; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.2rem; border-radius: var(--radius-sm); border: 1px solid transparent; transition: border-color .3s, background .3s; }
.why-item:hover { border-color: rgba(124,58,237,.25); background: rgba(124,58,237,.06); }
.why-check { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.28); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--purple); }
.why-text h4 { font-family: 'Open Sans', sans-serif; font-size: .88rem; font-weight: 800; color: var(--text-bright); margin-bottom: .25rem; }
.why-text p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; }
.ideology-card { background: var(--glass); border: 1px solid var(--border-v2); border-radius: var(--radius); padding: 2.5rem; position: relative; overflow: hidden; backdrop-filter: blur(12px); box-shadow: var(--glow-card); }
.ideology-card::before { content: '"'; position: absolute; top: -.5rem; left: 1.5rem; font-family: 'Open Sans', sans-serif; font-size: 8rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; opacity: .12; }
.ideology-quote { font-family: 'Open Sans', sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.7; color: var(--text-bright); position: relative; z-index: 1; }
.ideology-quote em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ideology-attr { margin-top: 1.2rem; font-size: .75rem; color: var(--text-muted); }
.ideology-bar { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.ideo-row { display: flex; flex-direction: column; gap: 6px; }
.ideo-label { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-muted); font-weight: 600; }
.ideo-track { height: 3px; background: rgba(255,255,255,.05); border-radius: 99px; overflow: hidden; }
.ideo-fill { height: 100%; border-radius: 99px; background: var(--grad-primary); animation: fillBar 1.5s ease both; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(10px); transition: border-color .3s, transform .3s, box-shadow .3s; }
.testi-card:hover { border-color: rgba(168,85,247,.35); transform: translateY(-4px); box-shadow: var(--glow-card); }
.testi-stars { font-size: .82rem; margin-bottom: .9rem; letter-spacing: 2px; color: #fbbf24; }
.testi-text { font-size: .88rem; color: var(--text-main); line-height: 1.8; }
.testi-author { margin-top: 1.4rem; display: flex; align-items: center; gap: .8rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-primary); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Open Sans', sans-serif; font-size: .72rem; font-weight: 800; color: #fff; box-shadow: var(--glow-violet); }
.testi-name { font-size: .84rem; font-weight: 700; color: var(--text-bright); }
.testi-role { font-size: .7rem; color: var(--text-muted); }

/* ── CTA SECTION ── */
.cta-section { padding: 8rem 4rem; text-align: center; position: relative; z-index: 1; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,.1), transparent 70%); }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner h2 { text-align: center; max-width: none; }
.cta-inner .section-lead { margin: 1rem auto 0; text-align: center; }
.cta-actions { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 4rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--violet), var(--magenta), transparent); z-index: 0; }
.step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--void); border: 2px solid var(--violet); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.3rem; font-family: 'Open Sans', sans-serif; font-size: .9rem; font-weight: 900; color: var(--purple); transition: all .3s; box-shadow: 0 0 15px rgba(124,58,237,.2); }
.step:hover .step-num { background: var(--violet); color: #fff; box-shadow: var(--glow-violet); }
.step-title { font-family: 'Open Sans', sans-serif; font-size: .82rem; font-weight: 800; color: var(--text-bright); margin-bottom: .5rem; }
.step-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.7; }

/* ── PORTAL CARDS ── */
.portal-section { background: rgba(8,6,18,.55); }
.portal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.portal-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 2.5rem; display: flex; flex-direction: column; position: relative; overflow: hidden; backdrop-filter: blur(12px); transition: border-color .3s, box-shadow .3s, transform .3s; }
.portal-card:hover { transform: translateY(-5px); }
.portal-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.portal-card.primary-portal::before { background: var(--grad-primary); }
.portal-card.secondary-portal::before { background: linear-gradient(135deg, #f59e0b, #f472b6); }
.portal-card.primary-portal:hover { border-color: rgba(168,85,247,.45); box-shadow: var(--glow-card); }
.portal-card.secondary-portal:hover { border-color: rgba(245,158,11,.4); box-shadow: 0 8px 40px rgba(245,158,11,.15); }
.portal-card:hover::before { transform: scaleX(1); }
.portal-icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.5rem; flex-shrink: 0; }
.portal-icon.blue { background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25); }
.portal-icon.amber { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); }
.portal-card h3 { margin-bottom: .65rem; }
.portal-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.portal-card-features { list-style: none; margin: 1.3rem 0 1.8rem; display: flex; flex-direction: column; gap: .55rem; }
.portal-card-features li { font-size: .83rem; color: var(--text-main); display: flex; gap: .6rem; align-items: flex-start; }
.portal-card.primary-portal .portal-card-features li::before { content: '✦'; color: var(--purple); font-size: .6rem; margin-top: .25rem; }
.portal-card.secondary-portal .portal-card-features li::before { content: '✦'; color: #f59e0b; font-size: .6rem; margin-top: .25rem; }
.portal-badge { position: absolute; top: 1.2rem; right: 1.2rem; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .7rem; border-radius: 100px; background: rgba(124,58,237,.18); color: var(--purple); border: 1px solid rgba(124,58,237,.3); }
.portal-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .72rem 1.5rem; border-radius: 50px; font-size: .83rem; font-weight: 700; letter-spacing: .04em; cursor: pointer; text-decoration: none; transition: all .2s; border: none; align-self: flex-start; }
.portal-btn.blue { background: var(--grad-primary); color: #fff; box-shadow: var(--glow-violet); }
.portal-btn.blue:hover { opacity: .88; box-shadow: var(--glow-magenta); }
.portal-btn.amber { background: linear-gradient(135deg, #92400e, #f59e0b); color: #fff; box-shadow: 0 4px 20px rgba(245,158,11,.25); }
.portal-btn.amber:hover { opacity: .88; }

/* ── SERVICES FULL ── */
.services-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 2.5rem; }
.service-full-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 2.5rem; position: relative; overflow: hidden; backdrop-filter: blur(10px); transition: border-color .3s, box-shadow .3s; }
.service-full-card:hover { border-color: rgba(168,85,247,.35); box-shadow: var(--glow-card); }
.service-full-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-primary); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.service-full-card:hover::before { transform: scaleX(1); }
.sfcard-icon { font-size: 2.2rem; margin-bottom: 1.3rem; }
.sfcard-title { font-family: 'Open Sans', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--text-bright); margin-bottom: .8rem; }
.sfcard-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.sfcard-features { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.sfcard-features li { font-size: .84rem; color: var(--text-main); display: flex; gap: .6rem; align-items: flex-start; }
.sfcard-features li::before { content: '→'; color: var(--purple); flex-shrink: 0; margin-top: .05rem; }

/* BI Benefits */
.bi-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.benefit-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(8px); transition: border-color .3s, background .3s; }
.benefit-card:hover { border-color: rgba(168,85,247,.3); background: rgba(124,58,237,.05); }
.benefit-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.benefit-title { font-family: 'Open Sans', sans-serif; font-size: .88rem; font-weight: 800; color: var(--text-bright); margin-bottom: .5rem; }
.benefit-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.75; }

/* ── ABOUT ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { font-size: .95rem; color: var(--text-main); line-height: 1.88; margin-bottom: 1.2rem; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.value-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 1.5rem; backdrop-filter: blur(8px); transition: border-color .3s; }
.value-card:hover { border-color: rgba(168,85,247,.3); }
.value-icon { font-size: 1.5rem; margin-bottom: .8rem; }
.value-title { font-family: 'Open Sans', sans-serif; font-size: .85rem; font-weight: 800; color: var(--text-bright); margin-bottom: .4rem; }
.value-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 1.8rem; text-align: center; backdrop-filter: blur(8px); transition: border-color .3s, transform .3s; }
.team-card:hover { border-color: rgba(168,85,247,.35); transform: translateY(-4px); box-shadow: var(--glow-card); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-family: 'Open Sans', sans-serif; font-size: 1.1rem; font-weight: 900; color: #fff; margin: 0 auto 1rem; box-shadow: var(--glow-violet); }
.team-name { font-family: 'Open Sans', sans-serif; font-size: .88rem; font-weight: 800; color: var(--text-bright); }
.team-role { font-size: .72rem; color: var(--text-muted); margin-top: .3rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-text h4 { font-family: 'Open Sans', sans-serif; font-size: .82rem; font-weight: 800; color: var(--text-bright); margin-bottom: .35rem; }
.contact-info-text p, .contact-info-text a { font-size: .87rem; color: var(--text-muted); text-decoration: none; line-height: 1.7; }
.contact-info-text a:hover { color: var(--purple); }
.contact-form { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 2.5rem; backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: .68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .11em; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,.04); border: 1px solid rgba(124,58,237,.2); color: var(--text-bright); padding: .82rem 1rem; border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(168,85,247,.5); box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #0e0c1a; }
.form-submit { width: 100%; padding: .9rem; font-size: .95rem; }

/* ── TABLEAU PAGE ── */
.tableau-why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.twhy-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); padding: 2rem; backdrop-filter: blur(8px); transition: border-color .3s; }
.twhy-card:hover { border-color: rgba(168,85,247,.3); }
.twhy-icon { font-size: 2rem; margin-bottom: 1rem; }
.twhy-title { font-family: 'Open Sans', sans-serif; font-size: .92rem; font-weight: 800; color: var(--text-bright); margin-bottom: .6rem; }
.twhy-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.75; }
.capabilities-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.cap-item { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem; background: var(--glass); border-radius: var(--radius-sm); border: 1px solid var(--border-v); }
.cap-bullet { color: var(--purple); font-size: .9rem; flex-shrink: 0; margin-top: .1rem; }
.cap-text { font-size: .84rem; color: var(--text-main); line-height: 1.6; }

/* ── PORTFOLIO PAGE ── */
.portfolio-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { background: rgba(255,255,255,.03); border: 1px solid var(--border-v); color: var(--text-muted); padding: .42rem .95rem; border-radius: 50px; font-size: .78rem; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: rgba(124,58,237,.14); border-color: rgba(168,85,247,.4); color: var(--purple); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 2rem; }
.portfolio-card { background: var(--glass); border: 1px solid var(--border-v); border-radius: var(--radius); overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; cursor: pointer; backdrop-filter: blur(8px); }
.portfolio-card:hover { transform: translateY(-5px); border-color: rgba(168,85,247,.35); box-shadow: var(--glow-card); }
.portfolio-card-preview { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-card-preview .preview-icon { font-size: 3.5rem; opacity: .5; }
.portfolio-card-body { padding: 1.5rem; }
.portfolio-card-title { font-family: 'Open Sans', sans-serif; font-size: .9rem; font-weight: 800; color: var(--text-bright); margin-bottom: .4rem; }
.portfolio-card-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.portfolio-card-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.tag { background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25); color: var(--purple); padding: .18rem .65rem; border-radius: 100px; font-size: .68rem; font-weight: 600; letter-spacing: .05em; }
.portfolio-card-actions { margin-top: 1.2rem; display: flex; gap: .7rem; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(12px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: rgba(10,8,20,.98); border: 1px solid rgba(124,58,237,.3); border-radius: var(--radius); width: min(90vw,1100px); max-height: 90vh; overflow: auto; display: flex; flex-direction: column; transform: scale(.95); transition: transform .3s; box-shadow: var(--glow-violet); }
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.6rem; border-bottom: 1px solid rgba(124,58,237,.18); flex-shrink: 0; }
.modal-title { font-family: 'Open Sans', sans-serif; font-size: .92rem; font-weight: 800; color: var(--text-bright); }
.modal-close { background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.25); color: var(--text-muted); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.modal-close:hover { color: #fff; border-color: var(--purple); background: rgba(124,58,237,.2); }
.modal-body { padding: 1.5rem; flex: 1; }
.modal-embed-area { min-height: 500px; border-radius: 10px; overflow: hidden; background: var(--void); border: 1px solid rgba(124,58,237,.15); display: flex; flex-direction: column; }
.tableau-embed-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(124,58,237,.2); background: rgba(8,6,18,.9); }
.tableau-embed-wrap .embed-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; background: rgba(8,6,18,.9); z-index: 2; transition: opacity .5s; }
.tableau-embed-wrap .embed-loading.hidden { opacity: 0; pointer-events: none; }
.embed-spinner { width: 38px; height: 38px; border: 3px solid rgba(124,58,237,.2); border-top-color: var(--purple); border-radius: 50%; animation: spin .8s linear infinite; }
.embed-loading p { font-size: .82rem; color: var(--text-muted); }
.embed-toolbar { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.2rem; border-bottom: 1px solid rgba(124,58,237,.15); background: rgba(0,0,0,.3); }
.embed-toolbar-title { font-family: 'Open Sans', sans-serif; font-size: .75rem; font-weight: 700; color: var(--text-main); }
.embed-toolbar a { font-size: .73rem; color: var(--purple); text-decoration: none; }
.embed-toolbar a:hover { text-decoration: underline; }
tableau-viz { display: block; width: 100%; }

/* ── DASH CARD ── */
.dash-card { background: rgba(10,8,22,.88); border: 1px solid rgba(124,58,237,.25); border-radius: var(--radius); padding: 1.4rem; box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 60px rgba(124,58,237,.12); backdrop-filter: blur(16px); }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.dash-title { font-family: 'Open Sans', sans-serif; font-size: .65rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 8px; height: 8px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-bottom: 1rem; }
.kpi { background: rgba(124,58,237,.08); border-radius: var(--radius-sm); padding: .8rem; border: 1px solid rgba(124,58,237,.15); }
.kpi-val { font-family: 'Open Sans', sans-serif; font-size: 1.15rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.kpi-lbl { font-size: .6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-top: 2px; }
.kpi-delta { font-size: .65rem; font-weight: 700; margin-top: 3px; }
.up { color: #2dd4bf; } .dn { color: #ff6b6b; }
.chart-area { height: 110px; }
.bar-chart { width: 100%; height: 100%; }
.bar-chart .bar { fill: rgba(124,58,237,.45); transition: fill .3s; }
.bar-chart .bar:hover { fill: var(--violet); }
.bar-chart .bar.hi { fill: var(--purple); }
.dash-footer { margin-top: .9rem; display: flex; align-items: center; justify-content: space-between; }
.dash-tag { font-size: .65rem; color: var(--text-muted); }
.dash-live { display: flex; align-items: center; gap: 5px; font-size: .65rem; color: #2dd4bf; }
.dash-live::before { content: ''; width: 6px; height: 6px; background: #2dd4bf; border-radius: 50%; animation: glowPulse 1.5s infinite; }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border-v); background: rgba(5,5,15,.95); }
.footer-top { display: flex; gap: 4rem; padding: 4rem; }
.footer-brand-col { max-width: 260px; }
.footer-logo { font-family: 'Open Sans', sans-serif; font-size: 1.15rem; font-weight: 900; color: var(--text-bright); margin-bottom: .9rem; }
.footer-logo span { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-tagline { font-size: .84rem; color: var(--text-muted); line-height: 1.75; }
.footer-socials { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.2); display: flex; align-items: center; justify-content: center; font-size: .82rem; color: var(--text-muted); text-decoration: none; transition: all .2s; }
.footer-socials a:hover { color: var(--purple); border-color: rgba(168,85,247,.4); box-shadow: 0 0 12px rgba(124,58,237,.25); }
.footer-links-col { flex: 1; display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col h5 { font-family: 'Open Sans', sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .5rem; }
.footer-col a, .footer-col p { font-size: .84rem; color: #6b5f8a; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 4rem; border-top: 1px solid var(--border-v); }
.footer-bottom span { font-size: .75rem; color: var(--text-faint); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fillBar { from { width: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MOBILE ── */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 900px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(5,5,15,.97); border-bottom: 1px solid rgba(124,58,237,.2); flex-direction: column; padding: 1.5rem; gap: .1rem; backdrop-filter: blur(24px); }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: .7rem 0; font-size: .85rem; }
  .has-dropdown .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: transparent; padding-left: 1rem; }
  .nav-hamburger { display: flex; }
  .hero { padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem; }
  .section-pad { padding: 4.5rem 1.5rem; }
  .page-hero { padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem; }
  .services-grid, .why-grid, .portfolio-preview-grid, .testimonials-grid, .services-full-grid, .bi-benefits, .tableau-why-grid, .about-intro, .contact-grid, .capabilities-list, .values-grid, .portal-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer .footer-top { flex-direction: column; padding: 3rem 1.5rem; gap: 2rem; }
  .footer-links-col { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: .5rem; text-align: center; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 50%; border-right: none; border-bottom: 1px solid var(--border-v); }
  .portfolio-preview-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .cta-section { padding: 5rem 1.5rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}
