/* ==========================================================================
   Bulbule IT Solutions — Design System
   Premium technology brand. Deep navy + electric blue + cyan + purple.
   ========================================================================== */

:root{
  /* --- Brand palette --- */
  --navy: #071A35;
  --navy-2: #0B2447;
  --navy-3: #102C56;
  --blue: #2D8CFF;
  --cyan: #3DE0FF;
  --purple: #6C63FF;
  --purple-2: #8A7DFF;
  --white: #ffffff;
  --mist: #F5F8FC;
  --mist-2: #EEF3FA;
  --ink: #0A162B;
  --ink-soft: #4A5A75;
  --ink-faint: #8592A8;
  --line: rgba(10,22,43,0.08);
  --line-strong: rgba(10,22,43,0.14);

  /* --- Gradients --- */
  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--purple) 55%, var(--cyan) 100%);
  --grad-brand-2: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
  --grad-navy: linear-gradient(180deg, #071A35 0%, #050F22 100%);
  --grad-radial-glow: radial-gradient(circle at 30% 20%, rgba(45,140,255,0.35), transparent 55%);
  --grad-text: linear-gradient(120deg, #ffffff 0%, #B9D6FF 45%, #3DE0FF 100%);

  /* --- Elevation --- */
  --shadow-sm: 0 2px 10px rgba(10,22,43,0.06);
  --shadow-md: 0 12px 32px rgba(10,22,43,0.10);
  --shadow-lg: 0 24px 60px rgba(10,22,43,0.16);
  --shadow-glow: 0 0 0 1px rgba(61,224,255,0.18), 0 20px 60px rgba(45,140,255,0.20);
  --shadow-navy: 0 30px 80px rgba(3,10,25,0.55);

  /* --- Radii --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* --- Type --- */
  --font-display: 'Space Grotesk', 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* --- Motion --- */
  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
  --t-fast: .25s;
  --t-med: .5s;
  --t-slow: .9s;

  --nav-h: 86px;
  --container: 1240px;
}

/* ---------------------------------- Reset ---------------------------------- */
*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: auto; }
html.dark{
  --white:#0A1120; --mist:#0B1526; --mist-2:#0E1930; --ink:#EAF1FB; --ink-soft:#AFC1DC;
  --ink-faint:#7488A8; --line: rgba(255,255,255,0.08); --line-strong: rgba(255,255,255,0.14);
}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px){ body{ cursor:auto; } }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,textarea,select{ font-family:inherit; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:600; letter-spacing:-0.02em; line-height:1.08; color: var(--ink); }
section{ position: relative; }
::selection{ background: var(--cyan); color: var(--navy); }

/* Scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--mist); }
::-webkit-scrollbar-thumb{ background: linear-gradient(var(--blue),var(--purple)); border-radius:10px; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px){ .container{ padding: 0 20px; } }

/* ---------------------------------- Type scale ---------------------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:600; font-size:13px; letter-spacing:0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom:18px;
}
.eyebrow::before{ content:''; width:20px; height:2px; background: var(--grad-brand); border-radius:2px; }

h1{ font-size: clamp(2.6rem, 5.4vw, 5rem); }
h2.section-title{ font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3{ font-size: clamp(1.25rem, 1.8vw, 1.55rem); }

.section-head{ max-width: 680px; margin-bottom: 64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color: var(--ink-soft); font-size:1.08rem; margin-top:18px; }

.text-lead{ font-size: clamp(1.05rem,1.4vw,1.25rem); color: var(--ink-soft); }
.gradient-text{
  background: var(--grad-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  background-size:200% auto; animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift{ 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }

/* ---------------------------------- Buttons ---------------------------------- */
.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius: var(--r-pill); font-weight:600; font-size:.98rem;
  font-family: var(--font-body); white-space:nowrap; isolation:isolate; overflow:hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn svg{ width:18px; height:18px; transition: transform var(--t-fast) var(--ease); }
.btn:hover svg{ transform: translateX(4px); }
.btn:active{ transform: scale(.97); }

.btn-primary{ background: var(--grad-brand); background-size:200% auto; color:#fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover{ background-position:100% 0; box-shadow: 0 0 0 1px rgba(61,224,255,.3), 0 26px 70px rgba(45,140,255,.35); transform: translateY(-2px); }

.btn-ghost{ background: transparent; color: var(--ink); border:1.5px solid var(--line-strong); }
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-light{ background:#fff; color: var(--navy); }
.btn-light:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-light{ border:1.5px solid rgba(255,255,255,.28); color:#fff; background: rgba(255,255,255,.04); backdrop-filter: blur(6px); }
.btn-outline-light:hover{ border-color: var(--cyan); background: rgba(61,224,255,.08); transform: translateY(-2px); }

.btn-block{ width:100%; }
.btn-sm{ padding:11px 20px; font-size:.88rem; }

/* magnetic wrapper */
.magnetic{ display:inline-block; }

/* ---------------------------------- Glass / cards ---------------------------------- */
.glass{
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.glass-dark{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card{
  background:#fff; border-radius: var(--r-lg); border:1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}

/* gradient-border card */
.grad-border{
  position:relative; border-radius: var(--r-lg); background:#fff; z-index:0;
}
.grad-border::before{
  content:''; position:absolute; inset:0; padding:1.5px; border-radius:inherit;
  background: linear-gradient(135deg, rgba(45,140,255,.55), rgba(108,99,255,.4) 45%, rgba(61,224,255,.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:.55; transition: opacity var(--t-med) var(--ease); pointer-events:none; z-index:-1;
}
.grad-border:hover::before{ opacity:1; }

/* ---------------------------------- Loading screen ---------------------------------- */
#loader{
  position:fixed; inset:0; z-index:9999; background: var(--navy);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:22px;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#loader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-mark{ font-family: var(--font-display); font-size:2rem; font-weight:700; color:#fff; letter-spacing:-0.02em; display:flex; align-items:center; gap:10px;}
.loader-mark span{ background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.loader-bar{ width:220px; height:2px; background: rgba(255,255,255,.12); border-radius:2px; overflow:hidden; }
.loader-bar i{ display:block; height:100%; width:0%; background: var(--grad-brand); transition: width .3s var(--ease); }

/* ---------------------------------- Cursor ---------------------------------- */
.cursor-dot, .cursor-ring{
  position:fixed; top:0; left:0; pointer-events:none; z-index:9998; border-radius:50%;
  transform: translate(-50%,-50%); mix-blend-mode: difference;
}
.cursor-dot{ width:8px; height:8px; background:#fff; }
.cursor-ring{ width:38px; height:38px; border:1.5px solid #fff; transition: width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease); opacity:.7; }
.cursor-ring.big{ width:68px; height:68px; opacity:.45; }
@media (max-width:900px){ .cursor-dot,.cursor-ring{ display:none; } }

/* ---------------------------------- Scroll progress + back to top ---------------------------------- */
#scroll-progress{ position:fixed; top:0; left:0; height:3px; width:0%; background: var(--grad-brand); z-index:1001; }
#back-to-top{
  position:fixed; right:26px; bottom:26px; width:52px; height:52px; border-radius:50%;
  background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); opacity:0; transform: translateY(16px) scale(.9); pointer-events:none;
  transition: all var(--t-med) var(--ease); z-index: 500;
}
#back-to-top.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
#back-to-top:hover{ background: var(--grad-brand); }
#back-to-top svg{ width:20px; height:20px; }

/* ---------------------------------- Nav ---------------------------------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:900; height: var(--nav-h);
  display:flex; align-items:center; transition: all var(--t-med) var(--ease);
}
.nav-inner{
  width:100%; max-width: var(--container); margin:0 auto; padding: 0 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav.scrolled{
  background: rgba(7,26,53,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  height:72px; box-shadow: 0 8px 30px rgba(3,10,25,.18);
}
.nav .logo{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:1.28rem; color:#fff; }
.nav .logo .mark{
  width:38px; height:38px; border-radius:11px; background: var(--grad-brand); display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:800; font-size:1.05rem; box-shadow: 0 8px 22px rgba(45,140,255,.4);
}
.nav .logo .accent{ background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }

.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-links a{
  position:relative; padding:10px 16px; font-size:.94rem; font-weight:500; color: rgba(255,255,255,.82);
  border-radius: var(--r-pill); transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover, .nav-links a.active{ color:#fff; background: rgba(255,255,255,.08); }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.theme-toggle{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.16); color:#fff; transition: all var(--t-fast);
}
.theme-toggle:hover{ background: rgba(255,255,255,.1); }
.theme-toggle svg{ width:18px; height:18px; }

.nav-burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.nav-burger span{ height:2px; background:#fff; border-radius:2px; transition: all var(--t-fast); }

@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .nav .btn-outline-light{ display:none; }
}

/* Mobile menu */
.mobile-menu{
  position:fixed; inset:0; z-index:890; background: var(--navy);
  display:flex; flex-direction:column; padding: 120px 32px 40px; gap:6px;
  transform: translateY(-100%); transition: transform .55s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{ font-family: var(--font-display); font-size:1.7rem; color:#fff; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-menu .btn{ margin-top:24px; }

/* ---------------------------------- Hero ---------------------------------- */
.hero{
  min-height:100vh; display:flex; align-items:center; position:relative; overflow:hidden;
  background: var(--grad-navy); padding-top: var(--nav-h);
}
.hero-noise{ position:absolute; inset:0; opacity:.035; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); pointer-events:none; }
#hero-canvas{ position:absolute; inset:0; width:100%; height:100%; }
.hero-glow{ position:absolute; border-radius:50%; filter: blur(90px); opacity:.55; pointer-events:none; }
.hero-glow.g1{ width:520px; height:520px; background: radial-gradient(circle, rgba(45,140,255,.55), transparent 70%); top:-140px; left:-100px; }
.hero-glow.g2{ width:460px; height:460px; background: radial-gradient(circle, rgba(108,99,255,.5), transparent 70%); bottom:-160px; right:-60px; }
.hero-glow.g3{ width:340px; height:340px; background: radial-gradient(circle, rgba(61,224,255,.45), transparent 70%); top:40%; right:22%; }

.hero-grid-lines{ position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 80%); }

.hero-inner{ position:relative; z-index:3; display:grid; grid-template-columns: 1.05fr .95fr; gap:40px; align-items:center; width:100%; }
@media (max-width: 1080px){ .hero-inner{ grid-template-columns:1fr; text-align:center; } .hero-visual{ margin:0 auto; } }

.hero-badge{
  display:inline-flex; align-items:center; gap:10px; padding:9px 18px 9px 9px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#dce8ff; font-size:.85rem; margin-bottom:28px;
}
.hero-badge .dot{ width:22px; height:22px; border-radius:50%; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; }
.hero-badge .dot svg{ width:12px; height:12px; color:#fff; }

.hero h1{ color:#fff; margin-bottom:26px; }
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .line span{ display:inline-block; }
.hero p.text-lead{ color: rgba(223,232,250,.78); max-width:560px; margin-bottom:40px; }
@media (max-width:1080px){ .hero p.text-lead{ margin-left:auto; margin-right:auto; } }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }
@media (max-width:1080px){ .hero-ctas{ justify-content:center; } }

.hero-meta{ display:flex; gap:36px; flex-wrap:wrap; }
@media (max-width:1080px){ .hero-meta{ justify-content:center; } }
.hero-meta .item{ display:flex; flex-direction:column; gap:4px; }
.hero-meta .num{ font-family:var(--font-display); font-size:1.9rem; font-weight:700; color:#fff; }
.hero-meta .lbl{ font-size:.82rem; color: rgba(223,232,250,.6); }

/* hero visual */
.hero-visual{ position:relative; width:100%; max-width:480px; height:480px; }
.hero-visual .orb{
  position:absolute; inset:12%; border-radius:50%;
  background: conic-gradient(from 180deg, rgba(45,140,255,.35), rgba(108,99,255,.35), rgba(61,224,255,.35), rgba(45,140,255,.35));
  filter: blur(2px); animation: spin 18s linear infinite;
}
.hero-visual .orb::after{ content:''; position:absolute; inset:14%; border-radius:50%; background: var(--navy); box-shadow: inset 0 0 60px rgba(45,140,255,.25); }
@keyframes spin{ to{ transform: rotate(360deg); } }

.float-card{
  position:absolute; padding:14px 16px; border-radius: var(--r-md); display:flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:600; font-size:.86rem; color:#fff;
  background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(3,10,25,.35); animation: floatY 5s ease-in-out infinite;
}
.float-card svg{ width:18px; height:18px; }
.float-card.fc1{ top:6%; left:-6%; animation-delay:0s; }
.float-card.fc2{ top:22%; right:-10%; animation-delay:.6s; }
.float-card.fc3{ bottom:24%; left:-12%; animation-delay:1.2s; }
.float-card.fc4{ bottom:4%; right:-4%; animation-delay:1.8s; }
.float-card.fc5{ top:48%; left:38%; animation-delay:2.4s; }
@keyframes floatY{ 0%,100%{ transform: translateY(0px); } 50%{ transform: translateY(-14px); } }
@media (max-width:640px){ .float-card{ display:none; } .hero-visual{ height:340px; } }

.scroll-cue{ position:absolute; bottom:34px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:10px; color: rgba(223,232,250,.6); font-size:.78rem; letter-spacing:.08em; z-index:3; }
.scroll-cue .wheel{ width:24px; height:38px; border:1.5px solid rgba(255,255,255,.3); border-radius:14px; position:relative; }
.scroll-cue .wheel::after{ content:''; position:absolute; top:7px; left:50%; width:3px; height:7px; background: var(--cyan); border-radius:2px; transform:translateX(-50%); animation: scrollDot 1.8s ease infinite; }
@keyframes scrollDot{ 0%{ opacity:1; top:7px;} 70%{opacity:0; top:20px;} 100%{opacity:0; top:7px;} }

/* ---------------------------------- Sections generic ---------------------------------- */
.section{ padding: 130px 0; }
.section.tight{ padding:90px 0; }
.section-mist{ background: var(--mist); }
.section-navy{ background: var(--grad-navy); color:#fff; }
.section-navy .section-head p{ color: rgba(223,232,250,.72); }
.section-navy h2{ color:#fff; }
@media (max-width:780px){ .section{ padding:90px 0; } }

/* reveal utility (JS toggles .in) */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal-scale{ opacity:0; transform: scale(.92); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in{ opacity:1; transform:scale(1); }
.stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------------------------------- Trust / marquee ---------------------------------- */
.trust-bar{ padding:56px 0; border-bottom:1px solid var(--line); }
.trust-label{ text-align:center; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; color: var(--ink-faint); margin-bottom:34px; font-weight:600; }
.marquee{ overflow:hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track{ display:flex; gap:80px; width:max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.marquee-item{ font-family: var(--font-display); font-weight:700; font-size:1.4rem; color: var(--ink-faint); display:flex; align-items:center; gap:10px; opacity:.6; white-space:nowrap; }
.marquee-item svg{ width:22px; height:22px; }

/* ---------------------------------- Stats ---------------------------------- */
.stats-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:20px; }
@media (max-width:980px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .stats-grid{ grid-template-columns: 1fr 1fr; } }
.stat{ text-align:center; padding: 20px; }
.stat .num{ font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); font-weight:700; }
.stat .num .suffix{ background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .lbl{ margin-top:8px; color: var(--ink-soft); font-size:.92rem; }
.section-navy .stat .lbl{ color: rgba(223,232,250,.68); }

/* ---------------------------------- About ---------------------------------- */
.about-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:80px; align-items:center; }
@media (max-width:980px){ .about-grid{ grid-template-columns:1fr; gap:56px; } }
.about-visual{ position:relative; }
.about-visual .frame{
  border-radius: var(--r-xl); background: var(--grad-navy); aspect-ratio: 4/4.6; position:relative; overflow:hidden;
  box-shadow: var(--shadow-navy);
}
.about-visual .frame::before{ content:''; position:absolute; inset:0; background: var(--grad-radial-glow); }
.about-visual .frame .code{ position:absolute; inset:24px; border-radius: var(--r-md); background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); padding:22px; font-family:monospace; font-size:.8rem; color: rgba(223,232,250,.8); overflow:hidden; }
.about-visual .badge-float{
  position:absolute; bottom:-24px; left:-24px; background:#fff; border-radius: var(--r-lg); padding:22px 26px;
  box-shadow: var(--shadow-lg); display:flex; align-items:center; gap:14px;
}
@media (max-width:640px){ .about-visual .badge-float{ left:0; right:0; margin:0 16px; bottom:-20px; } }
.about-visual .badge-float .ic{ width:48px; height:48px; border-radius:14px; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; color:#fff; }
.about-visual .badge-float .ic svg{ width:24px; height:24px; }
.about-visual .badge-float b{ display:block; font-family:var(--font-display); font-size:1.3rem; }
.about-visual .badge-float span{ font-size:.82rem; color: var(--ink-soft); }
.about-visual .shape{ position:absolute; border-radius:50%; z-index:-1; filter: blur(2px); }
.about-visual .shape.s1{ width:120px; height:120px; background: var(--grad-brand); opacity:.25; top:-30px; right:-30px; }

.about-copy p{ color: var(--ink-soft); margin-bottom:18px; }
.pillars{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-top:32px; }
@media (max-width:520px){ .pillars{ grid-template-columns:1fr; } }
.pillar{ padding:22px; border-radius: var(--r-md); border:1px solid var(--line); transition: all var(--t-med) var(--ease); }
.pillar:hover{ border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar .ic{ width:40px; height:40px; border-radius:12px; background: var(--mist-2); display:flex; align-items:center; justify-content:center; margin-bottom:14px; color: var(--blue); }
.pillar .ic svg{ width:20px; height:20px; }
.pillar h4{ font-family: var(--font-display); font-size:1.05rem; margin-bottom:6px; }
.pillar p{ font-size:.88rem; color: var(--ink-soft); }

/* Timeline (about + process) */
.timeline{ position:relative; margin-top:20px; }
.timeline::before{ content:''; position:absolute; left:24px; top:0; bottom:0; width:2px; background: var(--line-strong); }
.timeline-item{ position:relative; padding:0 0 46px 70px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item .dot{ position:absolute; left:14px; top:2px; width:22px; height:22px; border-radius:50%; background: var(--grad-brand); box-shadow:0 0 0 6px var(--mist); display:flex; align-items:center; justify-content:center; }
.section-navy .timeline-item .dot{ box-shadow:0 0 0 6px var(--navy-2); }
.timeline-item .dot::after{ content:''; width:8px; height:8px; border-radius:50%; background:#fff; }
.timeline-item .yr{ font-family: var(--font-display); font-weight:700; color: var(--blue); font-size:.85rem; letter-spacing:.06em; margin-bottom:6px; display:block; }
.timeline-item h4{ font-family:var(--font-display); font-size:1.15rem; margin-bottom:8px; }
.timeline-item p{ color: var(--ink-soft); max-width:520px; }

/* ---------------------------------- Service cards ---------------------------------- */
.services-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width:980px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .services-grid{ grid-template-columns: 1fr; } }

.service-card{
  position:relative; padding:34px 30px; border-radius: var(--r-lg); background:#fff; border:1px solid var(--line);
  overflow:hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.service-card::before{
  content:''; position:absolute; inset:0; opacity:0; transition: opacity var(--t-med) var(--ease);
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(45,140,255,.10), transparent 60%);
}
.service-card:hover::before{ opacity:1; }
.service-card:hover{ box-shadow: var(--shadow-lg); border-color: rgba(45,140,255,.35); }
.service-card .num{ position:absolute; top:24px; right:28px; font-family: var(--font-display); font-size:2.2rem; font-weight:700; color: var(--line-strong); }
.service-card .ic{
  width:58px; height:58px; border-radius:16px; background: var(--grad-brand); display:flex; align-items:center; justify-content:center;
  color:#fff; margin-bottom:24px; box-shadow: 0 12px 26px rgba(45,140,255,.28); transition: transform .5s var(--ease);
}
.service-card:hover .ic{ transform: rotate(-8deg) scale(1.08); }
.service-card .ic svg{ width:28px; height:28px; }
.service-card h3{ margin-bottom:12px; }
.service-card p{ color: var(--ink-soft); font-size:.94rem; margin-bottom:22px; }
.service-card .tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.service-card .tags span{ font-size:.72rem; font-weight:600; padding:5px 11px; border-radius: var(--r-pill); background: var(--mist-2); color: var(--ink-soft); }
.card-link{ display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:.9rem; color: var(--blue); }
.card-link svg{ width:15px; height:15px; transition: transform var(--t-fast) var(--ease); }
.card-link:hover svg{ transform: translateX(5px); }

/* ---------------------------------- Tech stack ---------------------------------- */
.tech-tabs{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:50px; }
.tech-tab{ padding:10px 20px; border-radius: var(--r-pill); border:1px solid var(--line-strong); font-weight:600; font-size:.88rem; color: var(--ink-soft); transition: all var(--t-fast); }
.tech-tab.active, .tech-tab:hover{ background: var(--navy); color:#fff; border-color: var(--navy); }
.tech-panels{ position:relative; }
.tech-panel{ display:none; grid-template-columns: repeat(6,1fr); gap:16px; }
.tech-panel.active{ display:grid; }
@media (max-width:900px){ .tech-panel{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:520px){ .tech-panel{ grid-template-columns: repeat(2,1fr); } }
.tech-chip{
  display:flex; flex-direction:column; align-items:center; gap:12px; padding:24px 12px; border-radius: var(--r-md);
  border:1px solid var(--line); background:#fff; transition: all var(--t-med) var(--ease);
}
.tech-chip:hover{ transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.tech-chip .ic{ width:44px; height:44px; border-radius:12px; background: var(--mist-2); display:flex; align-items:center; justify-content:center; transition: transform var(--t-med) var(--ease); color: var(--navy);}
.tech-chip:hover .ic{ transform: rotate(360deg) scale(1.08); background: var(--grad-brand); color:#fff; }
.tech-chip .ic svg{ width:22px; height:22px; }
.tech-chip span{ font-size:.82rem; font-weight:600; color: var(--ink-soft); }

/* ---------------------------------- Leadership team ---------------------------------- */
.team-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width:860px){ .team-grid{ grid-template-columns: 1fr; max-width:420px; margin:0 auto; } }
.team-card{
  text-align:center; padding:44px 30px; border-radius: var(--r-lg); background:#fff; border:1px solid var(--line);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.team-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(45,140,255,.35); }
.team-card .avatar{
  width:92px; height:92px; margin:0 auto 22px; border-radius:50%; background: var(--grad-brand); background-size:200% auto;
  display:flex; align-items:center; justify-content:center; color:#fff; font-family: var(--font-display); font-weight:700;
  font-size:1.6rem; box-shadow: var(--shadow-glow); transition: background-position var(--t-slow) var(--ease);
}
.team-card:hover .avatar{ background-position:100% 0; }
.team-card h4{ font-family: var(--font-display); font-size:1.15rem; margin-bottom:6px; }
.team-card .role{ display:inline-block; font-size:.82rem; font-weight:600; color: var(--blue); background: var(--mist-2); padding:6px 14px; border-radius: var(--r-pill); margin-bottom:16px; }
.team-card .bio{ font-size:.88rem; color: var(--ink-soft); margin-bottom:18px; }
.team-card .social-row{ justify-content:center; margin-top:0; }
.team-card .social-row a{ width:36px; height:36px; border-color: var(--line-strong); color: var(--ink-soft); }
.team-card .social-row a:hover{ color:#fff; }

/* ---------------------------------- Industries ---------------------------------- */
.industries-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .industries-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .industries-grid{ grid-template-columns: 1fr; } }
.industry-card{
  position:relative; border-radius: var(--r-lg); padding:30px; min-height:200px; overflow:hidden;
  background: var(--grad-navy); color:#fff; display:flex; flex-direction:column; justify-content:flex-end;
  transition: transform var(--t-med) var(--ease);
}
.industry-card:hover{ transform: translateY(-6px); }
.industry-card::before{ content:''; position:absolute; inset:0; background: var(--grad-radial-glow); opacity:.7; transition: opacity var(--t-med); }
.industry-card:hover::before{ opacity:1; }
.industry-card .ic{ width:48px; height:48px; border-radius:14px; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; margin-bottom:44px; position:relative; z-index:2; }
.industry-card .ic svg{ width:24px; height:24px; }
.industry-card h4{ color:#fff; font-family: var(--font-display); font-size:1.15rem; position:relative; z-index:2; }
.industry-card p{ color: rgba(223,232,250,.7); font-size:.85rem; margin-top:8px; position:relative; z-index:2; max-height:0; opacity:0; overflow:hidden; transition: all .4s var(--ease); }
.industry-card:hover p{ max-height:80px; opacity:1; margin-top:8px; }

/* ---------------------------------- Process timeline (horizontal) ---------------------------------- */
.process-track{ position:relative; display:grid; grid-template-columns: repeat(7,1fr); gap:16px; margin-top:20px;}
.process-line{ position:absolute; top:29px; left:0; right:0; height:2px; background: var(--line-strong); }
.process-line i{ display:block; height:100%; width:0%; background: var(--grad-brand); transition: width 1.4s var(--ease); }
@media (max-width:980px){ .process-track{ grid-template-columns: repeat(2,1fr); } .process-line{ display:none; } }
.process-step{ text-align:center; position:relative; }
.process-step .idx{
  width:58px; height:58px; margin:0 auto 18px; border-radius:50%; background:#fff; border:2px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; color: var(--ink-faint);
  position:relative; z-index:2; transition: all var(--t-med) var(--ease);
}
.process-step.in .idx{ border-color: var(--blue); color:#fff; background: var(--grad-brand); box-shadow: var(--shadow-glow); }
.process-step h4{ font-family: var(--font-display); font-size:1rem; margin-bottom:8px; }
.process-step p{ font-size:.82rem; color: var(--ink-soft); }

/* ---------------------------------- Portfolio ---------------------------------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:50px; }
.filter-btn{ padding:10px 20px; border-radius: var(--r-pill); border:1px solid var(--line-strong); font-weight:600; font-size:.88rem; color: var(--ink-soft); transition: all var(--t-fast); }
.filter-btn.active, .filter-btn:hover{ background: var(--navy); color:#fff; border-color: var(--navy); }

.portfolio-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width:980px){ .portfolio-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .portfolio-grid{ grid-template-columns: 1fr; } }
.project-card{ border-radius: var(--r-lg); overflow:hidden; background:#fff; border:1px solid var(--line); transition: all var(--t-med) var(--ease); }
.project-card:hover{ box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.project-thumb{ position:relative; aspect-ratio: 4/3; overflow:hidden; background: var(--grad-navy); }
.project-thumb::before{ content:''; position:absolute; inset:0; background: var(--grad-radial-glow); }
.project-thumb .glyph{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-size:4rem; font-weight:700; color: rgba(255,255,255,.14); transition: transform .6s var(--ease); }
.project-card:hover .project-thumb .glyph{ transform: scale(1.15) rotate(-4deg); }
.project-thumb .tag{ position:absolute; top:16px; left:16px; background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff; font-size:.7rem; font-weight:600; padding:6px 12px; border-radius: var(--r-pill); backdrop-filter: blur(8px); z-index:2; }
.project-body{ padding:24px; }
.project-body h4{ font-family: var(--font-display); font-size:1.1rem; margin-bottom:8px; }
.project-body p{ font-size:.88rem; color: var(--ink-soft); margin-bottom:16px; }
.project-body .meta{ display:flex; justify-content:space-between; align-items:center; font-size:.78rem; color: var(--ink-faint); border-top:1px solid var(--line); padding-top:14px; }

/* ---------------------------------- Comparison ---------------------------------- */
.compare-table{ width:100%; border-collapse: separate; border-spacing:0; }
.compare-table th, .compare-table td{ padding:20px 22px; text-align:center; border-bottom:1px solid var(--line); }
.compare-table th:first-child, .compare-table td:first-child{ text-align:left; }
.compare-table thead th{ font-family: var(--font-display); font-size:.95rem; padding-bottom:22px; }
.compare-table thead th.us{ color: var(--blue); font-size:1.1rem; }
.compare-table tbody td:nth-child(2){ background: rgba(45,140,255,.05); }
.compare-table tbody tr td:first-child{ color: var(--ink-soft); font-weight:500; font-size:.94rem; }
.chk{ display:inline-flex; width:26px; height:26px; border-radius:50%; align-items:center; justify-content:center; }
.chk.yes{ background: var(--grad-brand); color:#fff; }
.chk.no{ background: var(--mist-2); color: var(--ink-faint); }
.chk svg{ width:14px; height:14px; }
@media (max-width:700px){ .compare-table{ font-size:.82rem; } .compare-table th,.compare-table td{ padding:14px 8px; } }

/* ---------------------------------- Testimonials ---------------------------------- */
.testi-track{ display:flex; gap:24px; overflow:hidden; }
.testi-card{ min-width:100%; padding:44px; border-radius: var(--r-xl); }
@media (min-width:900px){ .testi-card{ min-width:calc(50% - 12px); } }
.testi-stars{ display:flex; gap:4px; margin-bottom:22px; color: var(--cyan); }
.testi-stars svg{ width:16px; height:16px; }
.testi-card p.quote{ font-family: var(--font-display); font-size:1.2rem; line-height:1.5; margin-bottom:28px; color: var(--ink); }
.section-navy .testi-card p.quote{ color:#fff; }
.testi-person{ display:flex; align-items:center; gap:14px; }
.testi-avatar{ width:48px; height:48px; border-radius:50%; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; color:#fff; font-family: var(--font-display); font-weight:700; }
.testi-person b{ display:block; font-size:.95rem; }
.testi-person span{ font-size:.82rem; color: var(--ink-faint); }
.section-navy .testi-person span{ color: rgba(223,232,250,.6); }
.testi-nav{ display:flex; justify-content:center; gap:10px; margin-top:36px; }
.testi-dot{ width:9px; height:9px; border-radius:50%; background: var(--line-strong); transition: all var(--t-fast); }
.section-navy .testi-dot{ background: rgba(255,255,255,.22); }
.testi-dot.active{ width:26px; border-radius: var(--r-pill); background: var(--grad-brand); }

/* ---------------------------------- FAQ ---------------------------------- */
.faq-list{ max-width:800px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:26px 4px; text-align:left; font-family: var(--font-display); font-size:1.05rem; }
.faq-q .plus{ width:30px; height:30px; border-radius:50%; border:1px solid var(--line-strong); flex:none; display:flex; align-items:center; justify-content:center; transition: all var(--t-med) var(--ease); position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background: var(--ink); border-radius:2px; transition: all var(--t-med) var(--ease); }
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; }
.faq-item.open .plus{ background: var(--grad-brand); border-color:transparent; transform: rotate(180deg); }
.faq-item.open .plus::before, .faq-item.open .plus::after{ background:#fff; }
.faq-item.open .plus::after{ height:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .5s var(--ease), padding .5s var(--ease); }
.faq-item.open .faq-a{ max-height:260px; padding-bottom:26px; }
.faq-a p{ color: var(--ink-soft); max-width:680px; }

/* ---------------------------------- CTA ---------------------------------- */
.cta-section{ position:relative; overflow:hidden; border-radius: var(--r-xl); margin: 0 32px; background: var(--grad-navy); padding:100px 40px; text-align:center; }
@media (max-width:640px){ .cta-section{ margin:0 16px; padding:70px 24px; } }
.cta-section .hero-glow{ opacity:.5; }
.cta-section h2{ color:#fff; margin-bottom:20px; }
.cta-section p{ color: rgba(223,232,250,.75); max-width:560px; margin:0 auto 40px; }
.cta-btns{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------------------------------- Contact ---------------------------------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.15fr; gap:60px; }
@media (max-width:980px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{ padding:34px; border-radius: var(--r-lg); background: var(--grad-navy); color:#fff; margin-bottom:20px; }
.info-row{ display:flex; gap:16px; align-items:flex-start; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.info-row:last-child{ border-bottom:none; }
.info-row .ic{ width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; flex:none; }
.info-row .ic svg{ width:20px; height:20px; }
.info-row b{ display:block; font-size:.82rem; color: rgba(223,232,250,.6); margin-bottom:3px; font-weight:500; }
.info-row span, .info-row a{ font-size:.98rem; font-weight:600; }
.social-row{ display:flex; gap:10px; margin-top:24px; }
.social-row a{ width:42px; height:42px; border-radius:50%; border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; transition: all var(--t-fast); }
.social-row a:hover{ background: var(--grad-brand); border-color:transparent; color:#fff; transform: translateY(-3px); }
.social-row a svg{ width:18px; height:18px; }

.form-card{ padding:40px; border-radius: var(--r-xl); background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ position:relative; margin-bottom:24px; }
.field label{ position:absolute; left:18px; top:17px; font-size:.95rem; color: var(--ink-faint); transition: all var(--t-fast) var(--ease); pointer-events:none; background:#fff; padding:0 4px; }
.field input, .field textarea, .field select{
  width:100%; padding:17px 18px; border-radius: var(--r-sm); border:1.5px solid var(--line-strong); font-size:.96rem; color: var(--ink);
  transition: border-color var(--t-fast); background:transparent;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus{ outline:none; border-color: var(--blue); }
.field input:focus + label, .field textarea:focus + label, .field.filled label{ top:-9px; font-size:.76rem; color: var(--blue); font-weight:600; }
.field .err{ display:block; font-size:.78rem; color:#E5484D; margin-top:6px; min-height:16px; }
.field.invalid input, .field.invalid textarea{ border-color:#E5484D; }
.form-success{ display:none; text-align:center; padding:40px 10px; }
.form-success.show{ display:block; }
.form-success .ic{ width:64px; height:64px; border-radius:50%; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; color:#fff; margin:0 auto 20px; }
.form-success .ic svg{ width:30px; height:30px; }

.map-wrap{ margin-top:20px; border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--line); filter: grayscale(.3) contrast(1.05); }
.map-wrap iframe{ width:100%; height:280px; border:0; display:block; }

/* ---------------------------------- Footer ---------------------------------- */
.footer{ background: #050F22; color: rgba(223,232,250,.7); padding-top:100px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:70px; border-bottom:1px solid rgba(255,255,255,.08); }
@media (max-width:980px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand .logo{ margin-bottom:18px; }
.footer-brand p{ font-size:.9rem; max-width:280px; margin-bottom:24px; }
.footer h5{ color:#fff; font-family: var(--font-display); font-size:.95rem; margin-bottom:20px; letter-spacing:.02em; }
.footer ul li{ margin-bottom:12px; }
.footer ul a{ font-size:.9rem; transition: color var(--t-fast); }
.footer ul a:hover{ color: var(--cyan); }
.newsletter-form{ display:flex; gap:0; border:1px solid rgba(255,255,255,.14); border-radius: var(--r-pill); overflow:hidden; padding:5px; margin-top:8px; }
.newsletter-form input{ flex:1; background:transparent; border:none; padding:10px 14px; color:#fff; font-size:.88rem; }
.newsletter-form input:focus{ outline:none; }
.newsletter-form button{ background: var(--grad-brand); color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.newsletter-form button svg{ width:16px; height:16px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.82rem; flex-wrap:wrap; gap:14px; }
.footer-bottom .legal{ display:flex; gap:22px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; transition: all var(--t-fast); }
.footer-social a:hover{ background: var(--grad-brand); border-color:transparent; transform: translateY(-3px); }
.footer-social a svg{ width:16px; height:16px; }

/* ---------------------------------- Floating chat ---------------------------------- */
.chat-fab{
  position:fixed; left:26px; bottom:26px; width:58px; height:58px; border-radius:50%; background: var(--grad-brand);
  color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-glow); z-index:500;
  transition: transform var(--t-fast) var(--ease);
}
.chat-fab:hover{ transform: scale(1.08); }
.chat-fab svg{ width:24px; height:24px; }
.chat-fab .ping{ position:absolute; inset:0; border-radius:50%; border:2px solid var(--cyan); animation: ping 2.2s ease-out infinite; }
@keyframes ping{ 0%{ transform:scale(1); opacity:.8; } 100%{ transform:scale(1.6); opacity:0; } }

/* ---------------------------------- Page header (inner pages) ---------------------------------- */
.page-header{ padding: calc(var(--nav-h) + 90px) 0 90px; background: var(--grad-navy); color:#fff; position:relative; overflow:hidden; text-align:center; }
.page-header .breadcrumb{ display:flex; gap:8px; align-items:center; justify-content:center; font-size:.85rem; color: rgba(223,232,250,.6); margin-bottom:20px; }
.page-header h1{ color:#fff; }
.page-header p{ color: rgba(223,232,250,.72); max-width:600px; margin:20px auto 0; }

/* Simple content blocks (privacy/terms) */
.prose{ max-width:800px; margin:0 auto; }
.prose h2{ margin: 44px 0 16px; font-size:1.5rem; }
.prose h2:first-child{ margin-top:0; }
.prose p{ color: var(--ink-soft); margin-bottom:16px; }
.prose ul{ margin: 0 0 16px 20px; list-style: disc; color: var(--ink-soft); }
.prose ul li{ margin-bottom:8px; }

/* 404 */
.notfound{ min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; background: var(--grad-navy); color:#fff; padding: 40px 24px; position:relative; overflow:hidden; }
.notfound .code{ font-family: var(--font-display); font-size: clamp(6rem,18vw,12rem); font-weight:700; line-height:1; background: var(--grad-text); -webkit-background-clip:text; background-clip:text; color:transparent; }
.notfound h2{ color:#fff; margin: 10px 0 16px; }
.notfound p{ color: rgba(223,232,250,.72); margin-bottom:34px; }

/* Careers */
.jobs-list{ display:flex; flex-direction:column; gap:16px; }
.job-item{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:26px 30px; border-radius: var(--r-lg); border:1px solid var(--line); transition: all var(--t-med) var(--ease); flex-wrap:wrap; }
.job-item:hover{ border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateX(6px); }
.job-item .info h4{ font-family: var(--font-display); font-size:1.1rem; margin-bottom:6px; }
.job-item .info .tags{ display:flex; gap:10px; flex-wrap:wrap; }
.job-item .info .tags span{ font-size:.78rem; color: var(--ink-soft); display:flex; align-items:center; gap:5px; }
.job-item .info .tags svg{ width:14px; height:14px; }

.benefits-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width:900px){ .benefits-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .benefits-grid{ grid-template-columns: 1fr; } }
.benefit{ text-align:center; padding:30px 20px; border-radius: var(--r-lg); background: var(--mist); }
.benefit .ic{ width:52px; height:52px; margin:0 auto 16px; border-radius:14px; background: var(--grad-brand); display:flex; align-items:center; justify-content:center; color:#fff; }
.benefit .ic svg{ width:24px; height:24px; }
.benefit h4{ font-family: var(--font-display); font-size:1rem; margin-bottom:8px; }
.benefit p{ font-size:.84rem; color: var(--ink-soft); }

/* Values grid */
.values-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width:900px){ .values-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .values-grid{ grid-template-columns: 1fr; } }
.value-card{ padding:28px; border-radius: var(--r-lg); border:1px solid var(--line); transition: all var(--t-med) var(--ease); }
.value-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.value-card .ic{ width:48px; height:48px; border-radius:14px; background: var(--mist-2); color: var(--blue); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.value-card .ic svg{ width:22px; height:22px; }
.value-card h4{ font-family: var(--font-display); font-size:1.02rem; margin-bottom:8px; }
.value-card p{ font-size:.86rem; color: var(--ink-soft); }

/* Estimator modal */
.modal-overlay{ position:fixed; inset:0; background: rgba(5,15,34,.7); backdrop-filter: blur(6px); z-index:1400; opacity:0; visibility:hidden; transition: all .4s var(--ease); display:flex; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal-box{ background:#fff; border-radius: var(--r-xl); max-width:560px; width:100%; max-height:88vh; overflow-y:auto; padding:44px; position:relative; transform: scale(.92) translateY(20px); transition: transform .45s var(--ease); }
.modal-overlay.open .modal-box{ transform: scale(1) translateY(0); }
.modal-close{ position:absolute; top:22px; right:22px; width:36px; height:36px; border-radius:50%; background: var(--mist-2); display:flex; align-items:center; justify-content:center; }
.modal-close svg{ width:16px; height:16px; }
.chip-select{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; }
.chip-select .chip{ padding:10px 16px; border-radius: var(--r-pill); border:1.5px solid var(--line-strong); font-size:.86rem; font-weight:600; transition: all var(--t-fast); }
.chip-select .chip.sel{ background: var(--grad-brand); color:#fff; border-color:transparent; }

/* Search overlay */
.search-overlay{ position:fixed; inset:0; background: rgba(5,15,34,.92); backdrop-filter: blur(10px); z-index:1500; opacity:0; visibility:hidden; transition: all .4s var(--ease); padding: 120px 24px; }
.search-overlay.open{ opacity:1; visibility:visible; }
.search-box{ max-width:640px; margin:0 auto; }
.search-box input{ width:100%; background:transparent; border:none; border-bottom:2px solid rgba(255,255,255,.2); color:#fff; font-family: var(--font-display); font-size:2rem; padding:14px 0; }
.search-box input:focus{ outline:none; border-color: var(--cyan); }
.search-box input::placeholder{ color: rgba(255,255,255,.3); }
.search-results{ margin-top:30px; display:flex; flex-direction:column; gap:4px; }
.search-results a{ display:flex; justify-content:space-between; padding:16px 6px; color: rgba(255,255,255,.8); border-bottom:1px solid rgba(255,255,255,.06); }
.search-results a:hover{ color: var(--cyan); }
.search-close{ position:absolute; top:30px; right:30px; color:#fff; width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; }

/* Utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0 !important; }
.flex{ display:flex; }
.gap-12{ gap:12px; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:40px; } }
.badge-soft{ display:inline-block; padding:6px 14px; border-radius: var(--r-pill); background: var(--mist-2); color: var(--blue); font-size:.78rem; font-weight:600; margin-bottom:16px; }
