﻿/* ══════════════════════════════════════════════════════
   idiibi — Main Stylesheet v6 (English · 3D Animations)
   Design: Dark · Green Accent · Space Grotesk
   ══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --bg:          #080a0a;
  --bg-alt:      #0d0f0f;
  --bg-card:     #131616;
  --bg-card2:    #181b1b;
  --green:       #2aff82;
  --green-dark:  #1fd96e;
  --green-glow:  rgba(42,255,130,0.20);
  --green-dim:   rgba(42,255,130,0.10);
  --green-line:  rgba(42,255,130,0.22);
  --blue-accent: #3b82f6;
  --text:        #eef0f0;
  --muted:       #8b9294;
  --subtle:      #545c5f;
  --border:      rgba(255,255,255,0.07);
  --border-g:    rgba(42,255,130,0.15);
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 100px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-g:    0 8px 48px rgba(42,255,130,0.15);
  --transition:  0.22s ease;
  --font-body:   'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-mono:   'Space Grotesk', monospace;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* PWA safe-area */
@media (display-mode: standalone) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(42,255,130,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
::selection { background: rgba(42,255,130,0.28); color: #fff; }

/* ─── Focus ─── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* ─── Container ─── */
.container { width: min(1200px, 92vw); margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   CURSOR GLOW
══════════════════════════════════════════════════════ */
#cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,255,130,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  top: 0; left: 0;
}

/* ══════════════════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green), #00d4ff, var(--green));
  background-size: 200% 100%;
  animation: gradient-slide 3s linear infinite;
  z-index: 9999;
  transition: width 0.1s linear;
}
@keyframes gradient-slide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════════════════
   OFFLINE BAR
══════════════════════════════════════════════════════ */
#offline-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9998;
  background: #dc2626; color: #fff;
  text-align: center; padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
#offline-bar.show { transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   ANIMATION — REVEAL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  transition: all var(--transition); white-space: nowrap; cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--green); color: #060808;
  box-shadow: 0 0 0 0 rgba(42,255,130,0);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(42,255,130,0.2), 0 4px 24px rgba(42,255,130,0.3);
  transform: translateY(-2px);
}
.btn-glow {
  position: relative; overflow: hidden;
}
.btn-glow::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-glow:hover::before { transform: translateX(100%); }
.btn-secondary {
  background: rgba(42,255,130,0.12); color: var(--green);
  border: 1px solid rgba(42,255,130,0.3);
}
.btn-secondary:hover {
  background: rgba(42,255,130,0.22);
  border-color: rgba(42,255,130,0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(42,255,130,0.15);
}
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--green-line); color: var(--green); background: var(--green-dim); }
.btn-ghost {
  background: transparent; color: var(--muted); border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border); }
.btn-sm { padding: 7px 17px; font-size: 13px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.w-full { width: 100%; margin-top: 8px; }

.btn-quote {
  background: rgba(42,255,130,0.1); color: var(--green);
  border: 1.5px solid rgba(42,255,130,0.35);
}
.btn-quote:hover {
  background: rgba(42,255,130,0.2); border-color: var(--green);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,255,130,0.2);
}

.footer-quote-link {
  font-size: 13px; font-weight: 700; color: var(--green) !important;
  padding: 4px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(42,255,130,0.25); transition: background var(--transition);
}
.footer-quote-link:hover { background: rgba(42,255,130,0.1); }

/* ══════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════ */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,10,10,0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
#site-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,255,130,0), rgba(42,255,130,0.2) 50%, rgba(42,255,130,0), transparent);
  opacity: 0; transition: opacity 0.4s;
}
#site-header.scrolled {
  background: rgba(8,10,10,0.97);
  box-shadow: 0 4px 48px rgba(0,0,0,0.6);
}
#site-header.scrolled::after { opacity: 1; }

.nav-wrap {
  display: flex; align-items: center; gap: 20px; height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.logo img {
  border-radius: 10px;
  box-shadow: 0 0 0 1.5px rgba(42,255,130,0.22), 0 2px 12px rgba(0,0,0,0.4);
  transition: box-shadow 0.2s, transform 0.3s;
}
.logo:hover img {
  box-shadow: 0 0 0 2.5px rgba(42,255,130,0.55), 0 4px 20px rgba(42,255,130,0.2);
  transform: rotate(-3deg) scale(1.05);
}
.logo-copy { display: flex; flex-direction: column; line-height: 1.2; }
.logo-copy strong {
  font-size: 18px; font-weight: 800; letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 60%, var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-copy small {
  font-size: 9.5px; color: var(--subtle); font-weight: 500; letter-spacing: 0.3px;
}

#nav-menu {
  display: flex; align-items: center; gap: 2px; flex: 1; padding: 0 8px;
}
.nav-link {
  padding: 7px 12px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); border-radius: 8px; transition: all 0.18s;
  position: relative; white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.055); }
.nav-link.active { color: var(--green); background: rgba(42,255,130,0.08); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--green);
}

.nav-actions {
  display: flex; align-items: center; gap: 7px; margin-left: auto; padding-left: 4px;
}

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px; border-radius: 8px;
  border: 1px solid var(--border); flex-shrink: 0; transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--green-line); }
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.s-alt { background: var(--bg-alt); padding: 100px 0; }
.s-contact {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42,255,130,0.07) 0%, transparent 70%), var(--bg);
  padding: 100px 0;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 60px; }
.section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.3rem);
  font-weight: 800; line-height: 1.25; letter-spacing: -0.5px; color: #fff;
  margin: 10px 0 16px;
}
.section-head p { color: var(--muted); font-size: 16.5px; line-height: 1.75; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px; color: var(--green); margin-bottom: 6px;
}
.dot { display: inline-block; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.s-hero {
  position: relative; padding: 80px 0 64px; overflow: hidden;
  min-height: calc(100dvh - 68px); display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: orb-float 8s ease-in-out infinite;
}
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,255,130,0.1) 0%, transparent 70%);
  top: -200px; right: -100px; animation-delay: 0s;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  bottom: -100px; left: 15%; animation-delay: -4s;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42,255,130,0.06) 0%, transparent 70%);
  top: 40%; left: 40%; animation-delay: -2s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,255,130,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,255,130,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 55% 40%, black 0%, transparent 75%);
  animation: grid-pulse 6s ease-in-out infinite;
}
@keyframes grid-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

#particles-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.5;
}

.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -1.2px; color: #fff;
  margin: 14px 0 22px;
}
.hero-line {
  display: block;
  animation: hero-line-in 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-line:nth-child(2) { animation-delay: 0.1s; }
.hero-line:nth-child(3) { animation-delay: 0.2s; }
@keyframes hero-line-in {
  from { opacity: 0; transform: translateY(20px) skewY(1deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}
.hero-line-sub { font-size: 0.75em; color: var(--muted); }
.accent-text { color: var(--green); }

.hero-lead {
  font-size: 17px; color: var(--muted); line-height: 1.78; margin-bottom: 30px; max-width: 520px;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.chip {
  padding: 5px 13px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  transition: all 0.2s; cursor: default;
}
.chip:hover { background: var(--green-dim); border-color: var(--green-line); color: var(--green); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 0; border-top: 1px solid var(--border); margin-bottom: 20px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-item strong { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.stat-item span:first-of-type { color: var(--green); font-size: 20px; font-weight: 900; }
.stat-item span:last-child { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

.hero-partners {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--subtle);
}
.hero-partners b { color: var(--muted); font-weight: 700; }
.hero-partners em { color: var(--green); font-style: normal; }

/* ─── DASHBOARD VISUAL ─── */
.hero-visual { perspective: 1000px; }
.dash-shell {
  background: var(--bg-card);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-g), 0 0 0 1px rgba(42,255,130,0.05);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  transform-style: preserve-3d;
  animation: dash-hover 6s ease-in-out infinite;
}
@keyframes dash-hover {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(3deg) translateY(-8px); }
}
.hero-visual:hover .dash-shell {
  transform: rotateY(-3deg) rotateX(2deg) translateY(-6px);
  animation: none;
}

.dash-header {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: rgba(0,0,0,0.4); border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots i {
  width: 10px; height: 10px; border-radius: 50%; display: block;
}
.dash-dots i:nth-child(1) { background: #ff5f56; }
.dash-dots i:nth-child(2) { background: #febc2e; }
.dash-dots i:nth-child(3) { background: #28c840; }
.dash-title { font-size: 12px; font-weight: 700; color: var(--muted); flex: 1; text-align: center; }
.dash-live {
  font-size: 11px; font-weight: 700; color: var(--green);
  animation: live-blink 2s ease infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.dash-body { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-main-panel {
  background: rgba(255,255,255,0.025); border-radius: var(--radius); padding: 14px;
  border: 1px solid var(--border);
}
.dash-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); margin-bottom: 6px; }
.dash-main-panel h3 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.dash-desc { font-size: 11px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.funnel-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.funnel-step {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(42,255,130,0.08); border: 1px solid var(--green-line);
  border-radius: 8px; padding: 6px 10px;
}
.funnel-step span { font-size: 10px; font-weight: 800; color: var(--green); }
.funnel-step small { font-size: 10px; color: var(--muted); }
.funnel-arrow { font-size: 11px; color: var(--subtle); }

.dash-mini-cards { display: flex; flex-direction: column; gap: 8px; }
.mini-card {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mini-card:hover { border-color: var(--green-line); box-shadow: 0 2px 12px rgba(42,255,130,0.08); }
.mini-tag {
  display: inline-block; font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--green); margin-bottom: 2px;
}
.mini-card p { font-size: 11px; color: var(--muted); }

.dash-metrics { padding: 12px 16px 14px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.metric-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); }
.metric-row span:first-child { width: 70px; flex-shrink: 0; }
.metric-row span:last-child { width: 36px; text-align: right; color: var(--green); font-weight: 700; }
.metric-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden;
}
.metric-fill {
  height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), #00d4ff);
  animation: fill-bar 1.5s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
  width: var(--w, 0);
}
@keyframes fill-bar {
  from { width: 0; }
  to { width: var(--w, 0); }
}

/* ══════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════ */
.ticker {
  overflow: hidden; padding: 14px 0;
  background: linear-gradient(90deg, var(--bg-alt), rgba(42,255,130,0.04), var(--bg-alt));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: flex; align-items: center; gap: 20px; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.ticker-track b { color: var(--green); font-size: 10px; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   ENTERPRISE SPLIT
══════════════════════════════════════════════════════ */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.value-stack { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.value-row {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
  transition: background 0.2s; border-radius: var(--radius);
}
.value-row:last-child { border-bottom: none; }
.value-row:hover { background: rgba(255,255,255,0.02); }
.v-num {
  font-size: 11px; font-weight: 900; color: var(--green);
  font-family: var(--font-mono); letter-spacing: 0.5px;
  background: rgba(42,255,130,0.1); border: 1px solid var(--green-line);
  border-radius: 6px; padding: 4px 8px; flex-shrink: 0; align-self: flex-start; margin-top: 2px;
}
.value-row h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.value-row p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ─── Package Card ─── */
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-g);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
  transform-style: preserve-3d;
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), #00d4ff, var(--green));
  background-size: 200%;
  animation: gradient-slide 3s linear infinite;
}
.pkg-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 64px rgba(42,255,130,0.2);
}
.pkg-badge {
  display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--green); background: rgba(42,255,130,0.1);
  border: 1px solid var(--green-line); border-radius: var(--radius-pill);
  padding: 4px 12px; margin-bottom: 14px;
}
.pkg-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pkg-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.pkg-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.curr { font-size: 14px; font-weight: 700; color: var(--muted); }
.pkg-price strong { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.per { font-size: 14px; color: var(--muted); }
.pkg-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg-list li {
  display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text);
  padding: 4px 0;
}
.pkg-list li::before {
  content: '✓'; color: var(--green); font-weight: 900; font-size: 13px; flex-shrink: 0;
}
.pkg-actions { margin-bottom: 10px; }
.pkg-actions .btn { width: 100%; }

/* ══════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.4s;
  position: relative; overflow: hidden; cursor: default;
  transform-style: preserve-3d;
}
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(42,255,130,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: var(--green-line);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 0 1px rgba(42,255,130,0.08);
}
.svc-card:hover::after { opacity: 1; }
.svc-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.svc-tag {
  display: inline-block; font-size: 9.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--green); background: rgba(42,255,130,0.1);
  border-radius: var(--radius-pill); padding: 3px 10px; margin-bottom: 10px;
}
.svc-card h3 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.35; }
.svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.svc-card ul { display: flex; flex-direction: column; gap: 6px; }
.svc-card li { font-size: 12.5px; color: var(--subtle); display: flex; align-items: center; gap: 7px; }
.svc-card li::before {
  content: '→'; color: var(--green); font-size: 11px; flex-shrink: 0; font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   STEP CARDS (GROWTH)
══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.4s;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-line);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.step-icon-wrap { margin-bottom: 16px; }
.step-num {
  font-size: 34px; font-weight: 900; color: rgba(42,255,130,0.15);
  font-family: var(--font-mono); line-height: 1; display: block;
  transition: color 0.3s;
}
.step-card:hover .step-num { color: rgba(42,255,130,0.4); }
.step-card h3 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   CLIENTS GRID
══════════════════════════════════════════════════════ */
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.client-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.35s, border-color 0.3s, box-shadow 0.35s;
}
.client-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-line);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.client-card strong { font-size: 15px; font-weight: 700; color: #fff; }
.client-card span { font-size: 12.5px; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover, .faq-item[open] { border-color: var(--green-line); }
.faq-item summary {
  padding: 18px 20px; font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  list-style: none; line-height: 1.45;
  transition: color 0.2s;
}
.faq-item summary:hover { color: #fff; }
.faq-item[open] summary { color: var(--green); }
.faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--muted); flex-shrink: 0; transition: transform 0.3s, color 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 4px 20px 18px; font-size: 14.5px; color: var(--muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--bg-card); border: 1px solid var(--border-g);
  border-radius: var(--radius-lg); padding: 36px 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 40px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), #00d4ff, var(--green));
  background-size: 200%;
  animation: gradient-slide 3s linear infinite;
}
.cta-banner-body { flex: 1; min-width: 240px; }
.cta-banner-tag {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--green); margin-bottom: 8px;
}
.cta-banner-body h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-banner-p { font-size: 14.5px; color: var(--muted); }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px;
}
.cc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.4s;
}
.cc:hover { transform: translateY(-8px); border-color: var(--green-line); box-shadow: var(--shadow-g); }
.cc-featured {
  border-color: var(--green-line); position: relative;
  box-shadow: 0 0 40px rgba(42,255,130,0.1);
}
.cc-featured-pill {
  position: absolute; top: -12px; right: 20px;
  background: var(--green); color: #060808; font-size: 11px; font-weight: 800;
  padding: 4px 14px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.8px;
}
.cc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(42,255,130,0.1); border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.cc-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); }
.cc h3 { font-size: 18px; font-weight: 800; color: #fff; }
.cc p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cc-addr {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--muted); padding: 8px 12px;
  background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border);
}
.cc-note { font-size: 12px; color: var(--muted); }
.cc-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.cc-chips span {
  padding: 3px 10px; border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 600;
  background: rgba(42,255,130,0.08); border: 1px solid var(--green-line); color: var(--green);
}

/* ─── Lead Form ─── */
.lead-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border-g);
  border-radius: var(--radius-lg); padding: 40px 36px; margin-bottom: 32px;
}
.lf-head { margin-bottom: 28px; }
.lf-head h3 { font-size: 20px; font-weight: 700; color: #fff; margin-top: 10px; }
.lf-form .lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.lf-col-full { grid-column: 1 / -1; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.lf-req-star { color: var(--green); }
.lf-field input, .lf-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 14px; color: var(--text);
  font-size: 14.5px; font-family: var(--font-body); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lf-field input::placeholder, .lf-field textarea::placeholder { color: var(--subtle); }
.lf-field input:focus, .lf-field textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(42,255,130,0.1);
}
.lf-field textarea { resize: vertical; min-height: 90px; }
.lf-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.lf-actions .btn { padding: 14px 36px; font-size: 15px; }
.lf-note { font-size: 12.5px; color: var(--subtle); }
.lf-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.3); border-top-color: #0a0a0a;
  animation: spin 0.7s linear infinite;
}
.lf-feedback {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  border-radius: 10px; margin-top: 16px; font-size: 14px; font-weight: 600;
}
.lf-success { background: rgba(42,255,130,0.1); border: 1px solid rgba(42,255,130,0.3); color: var(--green); }
.lf-error { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3); color: #f87171; }

/* Trust Bar */
.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.trust-icon { font-size: 16px; }
.trust-sep { width: 1px; height: 20px; background: var(--border); }

/* ══════════════════════════════════════════════════════
   PWA BANNER
══════════════════════════════════════════════════════ */
.pwa-banner {
  position: fixed; bottom: 16px; right: 16px; z-index: 990;
  background: var(--bg-card); border: 1px solid var(--border-g);
  border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: var(--shadow-g); max-width: 380px;
  animation: slide-up 0.4s cubic-bezier(.32,1.25,.64,1);
}
@keyframes slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pwa-banner-content { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 200px; }
.pwa-banner-content img { border-radius: 8px; flex-shrink: 0; }
.pwa-banner-content > div { display: flex; flex-direction: column; gap: 2px; }
.pwa-banner-content strong { font-size: 14px; font-weight: 700; color: #fff; }
.pwa-banner-content span { font-size: 12px; color: var(--muted); }
.pwa-banner-actions { display: flex; gap: 8px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#site-footer {
  background: var(--bg-alt); border-top: 1px solid var(--border); padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { border-radius: 8px; opacity: 0.9; }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { font-size: 15px; font-weight: 800; color: #fff; }
.footer-brand small { font-size: 9.5px; color: var(--subtle); }
.footer-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--muted); padding: 5px 10px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.footer-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.footer-meta { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.footer-meta a { font-size: 13px; color: var(--green); }
.footer-meta a:hover { text-decoration: underline; }
.footer-meta span { font-size: 12px; color: var(--subtle); }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.s-founder-hero {
  position: relative; padding: 80px 0 64px; overflow: hidden;
  min-height: calc(100dvh - 68px); display: flex; align-items: center;
}
.fh-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fh-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.fh-photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.6), 0 0 0 1px var(--border-g);
  transform: perspective(900px) rotateY(5deg);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.fh-photo-wrap:hover { transform: perspective(900px) rotateY(0); }
.fh-photo { width: 100%; height: auto; display: block; }
.fh-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,10,10,0.6) 0%, transparent 50%);
}

.fh-copy { display: flex; flex-direction: column; gap: 20px; }
.fh-name { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin: 4px 0 8px; }
.fh-quote {
  position: relative; padding: 20px 24px;
  background: rgba(42,255,130,0.05); border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.fq-mark {
  position: absolute; top: -8px; left: 16px; font-size: 64px; line-height: 1;
  color: rgba(42,255,130,0.2); font-style: italic; pointer-events: none;
}
.fh-quote p { font-size: 15px; color: var(--muted); line-height: 1.75; position: relative; z-index: 1; }
.fh-contact { display: flex; flex-direction: column; gap: 10px; }
.fc-item {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted);
  padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; transition: all 0.2s;
}
.fc-item:hover { border-color: var(--green-line); color: var(--text); }
.fh-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px; padding: 9px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--green-line); color: var(--text); }
.social-fb:hover { border-color: rgba(59,130,246,0.5); color: #60a5fa; }
.social-ig:hover { border-color: rgba(236,72,153,0.5); color: #f472b6; }

.fh-quote-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fh-quote-note { font-size: 12px; color: var(--muted); }

/* About stats */
.ab-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px;
}
.ab-stat-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
  transition: border-color 0.2s, transform 0.3s;
}
.ab-stat-item:hover { border-color: var(--green-line); transform: translateY(-4px); }
.ab-stat-item strong { font-size: 32px; font-weight: 900; color: var(--green); display: block; line-height: 1; }
.ab-stat-item span { font-size: 12.5px; color: var(--muted); margin-top: 4px; display: block; }

/* About bios */
.about-bios { display: flex; flex-direction: column; gap: 20px; margin-bottom: 56px; }
.bio-block { padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.bio-block p { font-size: 15.5px; color: var(--muted); line-height: 1.8; }

/* About CTA */
.about-cta {
  background: var(--bg-card); border: 1px solid var(--border-g);
  border-radius: var(--radius-lg); padding: 48px;
  text-align: center; position: relative; overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), #00d4ff, var(--green));
  background-size: 200%;
  animation: gradient-slide 3s linear infinite;
}
.about-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin: 12px 0 14px; }
.about-cta p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.about-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .fh-layout { grid-template-columns: 1fr; }
  .ab-stats { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #nav-menu { display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(8,10,10,0.98); padding: 16px; flex-direction: column; gap: 4px;
    border-bottom: 1px solid var(--border); backdrop-filter: blur(24px);
    z-index: 199; }
  #nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  /* hide secondary nav actions — keep only the primary CTA */
  .nav-actions .btn-outline,
  .nav-actions #pwa-install,
  .nav-actions .btn-primary { display: none; }
  .nav-actions { gap: 4px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .cta-banner { flex-direction: column; padding: 28px 24px; }
  .lead-form-wrap { padding: 28px 20px; }
  .lf-form .lf-grid { grid-template-columns: 1fr; }
  .lf-col-full { grid-column: 1; }
  .about-cta { padding: 36px 24px; }
  /* footer stacking at tablet */
  .footer-inner { gap: 20px; }
  .footer-meta { align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-chips { display: none; }
  .clients-grid { grid-template-columns: 1fr; }
  /* header — hide all nav-action buttons, logo subtitle */
  .nav-actions .btn { display: none; }
  .logo-copy small { display: none; }
  .nav-wrap { gap: 12px; }
  /* footer — center stack */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .footer-brand { flex-direction: column; align-items: center; gap: 8px; }
  .footer-brand > div { align-items: center; }
  .footer-nav { justify-content: center; }
  .footer-meta { align-items: center; }
  .pwa-banner { right: 8px; left: 8px; bottom: 8px; max-width: none; }
}
