/* ═══════════════════════════════════════════════════
   BENBADRA LAID — style.css
   Design System 2026 · Futuriste · Dark Mode
═══════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan:    #00d4ff;
  --purple:  #8b5cf6;
  --green:   #10b981;
  --orange:  #fb923c;       /* Topaze 2026 */
  --plum:    #130824;       /* Plum Noir 2026 */
  --space:   #0a0f1e;
  --card:    #0d1526;
  --border:  rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--space);
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--space); }
::-webkit-scrollbar-thumb        { background: #1e3a5f; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--cyan); }

/* ── SELECTION ───────────────────────────────────── */
::selection { background: rgba(0,212,255,.18); color: #fff; }

/* ══════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 12px var(--cyan);
  transition: transform .08s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(0,212,255,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
a:hover ~ #cursor-ring,
button:hover ~ #cursor-ring { transform: translate(-50%,-50%) scale(1.8); }

/* ══════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════ */
.loader-overlay {
  position: fixed; inset: 0;
  background: var(--space);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader-overlay.hide { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader-logo {
  width: 80px; height: 80px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(139,92,246,.12));
  border: 1px solid rgba(0,212,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 1.6rem;
  color: var(--cyan);
  animation: glow-pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 1px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  animation: load-bar 1.6s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes load-bar   { from { width:0% } to { width:100% } }
@keyframes glow-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,212,255,.15)} 50%{box-shadow:0 0 24px 6px rgba(0,212,255,.08)} }

/* ══════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,21,38,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════
   WHATSAPP BUBBLE
══════════════════════════════════════════════════ */
.whatsapp-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-bubble svg     { width: 28px; height: 28px; }
.whatsapp-bubble:hover   { transform: scale(1.12); box-shadow: 0 6px 36px rgba(37,211,102,.6); }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
#navbar { background: transparent; }

#navbar.scrolled {
  background: rgba(10,15,30,.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}

.logo-mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,255,.18), rgba(139,92,246,.18));
  border: 1px solid rgba(0,212,255,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: .85rem;
  color: var(--cyan);
  transition: box-shadow .3s;
}
.logo-mark:hover { box-shadow: 0 0 18px rgba(0,212,255,.3); }

.nav-link {
  color: #94a3b8;
  font-size: .875rem; font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav-link:hover        { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.hamburger { display:flex; flex-direction:column; gap:5px; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:.3s; }

.mobile-menu {
  background: rgba(10,15,30,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--cyan), #009dbf);
  color: #03101f; font-weight: 700; font-size: .875rem;
  border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 24px rgba(0,212,255,.25);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(0,212,255,.45); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px;
  background: rgba(255,255,255,.04);
  color: #fff; font-weight: 600; font-size: .875rem;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
  text-decoration: none; white-space: nowrap; cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .25s, border-color .25s, color .25s;
}
.btn-ghost:hover { background: rgba(0,212,255,.08); border-color: rgba(0,212,255,.3); color: var(--cyan); }

.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.orb-1 { width:620px; height:620px; background:rgba(0,212,255,.055); top:-200px; right:-200px; animation:f1 9s ease-in-out infinite; }
.orb-2 { width:520px; height:520px; background:rgba(139,92,246,.055); bottom:-180px; left:-180px; animation:f2 11s ease-in-out infinite; }
.orb-3 { width:320px; height:320px; background:rgba(236,72,153,.04); top:40%; left:38%; animation:f3 7s ease-in-out infinite; }

@keyframes f1 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-28px,28px)} }
@keyframes f2 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(28px,-28px)} }
@keyframes f3 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-18px,18px)} }

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #7c3aed 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-purple {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* TECH PILLS */
.tech-pill {
  padding: 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: .78rem; font-family: 'JetBrains Mono', monospace;
  color: #94a3b8;
  transition: border-color .25s, color .25s, background .25s;
}
.tech-pill:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,.05); }

.tech-xs {
  padding: 3px 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  font-size: .68rem; font-family: 'JetBrains Mono', monospace;
  color: #475569; display: inline-block;
}

/* SCROLL CUE */
.scroll-cue {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 12px; position: relative;
}
.scroll-cue::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--cyan); border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot { 0%{top:6px;opacity:1} 100%{top:22px;opacity:0} }

/* ══════════════════════════════════════════════════
   HERO FADE-IN ANIMATIONS
══════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp .7s ease forwards; }
.stagger-1 { animation-delay: .05s; }
.stagger-2 { animation-delay: .15s; }
.stagger-3 { animation-delay: .28s; }
.stagger-4 { animation-delay: .42s; }
.stagger-5 { animation-delay: .58s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════════════
   REVEAL (SCROLL ANIMATIONS)
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   SECTION TYPOGRAPHY
══════════════════════════════════════════════════ */
.section-header { text-align: center; }

.section-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem; color: var(--cyan);
  margin-bottom: 12px; letter-spacing: .05em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 14px;
}

.section-sub {
  color: #64748b; max-width: 580px;
  margin: 0 auto; line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
.stat-item { text-align: center; padding: 20px; }

.stat-num {
  font-size: 2.4rem; font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { color: #475569; font-size: .82rem; margin-top: 4px; }

/* ══════════════════════════════════════════════════
   HERO — MESH GRADIENT
══════════════════════════════════════════════════ */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0,212,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(139,92,246,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(251,146,60,.04) 0%, transparent 60%);
  animation: mesh-drift 12s ease-in-out infinite alternate;
}
@keyframes mesh-drift {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.04) translateY(-12px); }
}

/* DISPONIBLE badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.35);
  border-radius: 100px;
  font-size: .75rem; font-family: 'JetBrains Mono', monospace;
  color: #34d399;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.7; transform:scale(1.3); }
}

/* SECTION PLUM (profondeur alternée) */
.section-plum {
  background: var(--plum);
  border-top: 1px solid rgba(139,92,246,.12);
  border-bottom: 1px solid rgba(139,92,246,.12);
}

/* ORANGE ACCENT BUTTON */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff; font-weight: 700; font-size: .875rem;
  border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 20px rgba(251,146,60,.25);
  transition: transform .25s, box-shadow .25s;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(251,146,60,.45); }

/* ══════════════════════════════════════════════════
   BENTO GRID — SERVICES
══════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

/* Web dev — large banner */
.bento-wide   { grid-column: span 4; }
/* Google Ads — tall */
.bento-tall   { grid-column: span 2; grid-row: span 2; }
/* Normal cards */
.bento-normal { grid-column: span 2; }
/* Full-width bottom */
.bento-full   { grid-column: span 6; }

@media (max-width: 1024px) {
  .bento-grid   { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-wide, .bento-tall, .bento-normal, .bento-full { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 640px) {
  .bento-grid   { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════ */
.svc-card {
  padding: 30px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative; overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,.04), transparent);
  opacity: 0; transition: opacity .35s;
}
.svc-card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,.22); box-shadow: 0 20px 56px rgba(0,0,0,.32); }
.svc-card:hover::before { opacity: 1; }

.svc-card--star {
  border-color: rgba(0,212,255,.28);
  background: rgba(0,212,255,.04);
}
.svc-card--star::before { opacity: 1; background: linear-gradient(135deg, rgba(0,212,255,.07), rgba(139,92,246,.04)); }

.star-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 100px; font-size: .68rem; font-weight: 700; color: #fff;
}

.svc-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--c) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 22px; height: 22px; color: var(--c); }

.svc-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-desc  { color: #64748b; font-size: .85rem; line-height: 1.6; margin-bottom: 14px; }

.svc-list  { list-style: none; margin-bottom: 18px; }
.svc-list li {
  font-size: .78rem; color: #94a3b8;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.svc-list li::before { content: '→ '; color: var(--cyan); font-family: 'JetBrains Mono', monospace; }
.svc-list li:last-child { border-bottom: none; }

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600;
  color: var(--cyan); text-decoration: none;
  transition: gap .25s;
}
.svc-link:hover { gap: 12px; }

/* ══════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════ */
.port-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s;
}
.port-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }

.port-img {
  position: relative; height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.port-tags  { position:absolute; top:12px; left:12px; display:flex; gap:6px; z-index:2; }
.port-tag   { padding:3px 10px; background:rgba(0,0,0,.5); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.15); border-radius:100px; font-size:.68rem; color:#fff; }

.mockup-wrap    { width: 155px; }
.mockup-browser { background:rgba(0,0,0,.42); border-radius:8px; border:1px solid rgba(255,255,255,.14); overflow:hidden; }
.mockup-bar     { padding:5px 8px; display:flex; gap:4px; background:rgba(0,0,0,.3); }
.mockup-bar span{ width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.28); }
.mockup-screen  { height:80px; }

.port-body { padding: 16px 20px; }

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about-glass {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.about-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(13,21,38,.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  font-size: .9rem;
}
.about-b1 { top: 8px; right: -16px; }
.about-b2 { bottom: 16px; left: -16px; }

.prog-bar  { height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; margin-top: 4px; margin-bottom: 10px; }
.prog-fill { height: 100%; background: var(--fc); border-radius: 2px; }

.trust-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  font-size: .82rem; color: #94a3b8;
}
.trust-chip .check { color: var(--cyan); font-weight: 700; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testi-card {
  padding: 26px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color .3s, background .3s;
}
.testi-card:hover { border-color: rgba(0,212,255,.18); background: rgba(0,212,255,.025); }

.stars { color: #f59e0b; letter-spacing: 2px; font-size: .95rem; }

.avatar-c {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.price-card {
  padding: 34px 30px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: box-shadow .3s;
}
.price-card:hover { box-shadow: 0 0 40px rgba(0,212,255,.06); }

.price-card--star {
  border-color: rgba(0,212,255,.3);
  background: rgba(0,212,255,.04);
  box-shadow: 0 0 40px rgba(0,212,255,.08);
  transform: scale(1.025);
}

.star-badge-price {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 3px 16px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 100px; font-size: .72rem; font-weight: 700; color: #fff;
  white-space: nowrap;
}

.price-tier { font-size: .8rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 8px; }

.price-amount { font-size: .88rem; color: #64748b; margin-bottom: 4px; }
.price-amount span { font-size: 1.9rem; font-weight: 900; color: #fff; }
.price-cur { font-size: 1.1rem; font-weight: 700; color: #fff; }

.price-list { list-style: none; }
.price-list li { padding: 7px 0; font-size: .84rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.price-list li:last-child { border-bottom: none; }
.price-list li.ok { color: #94a3b8; }
.price-list li.ok::before { content: '✓  '; color: var(--green); font-weight: 700; }
.price-list li.no { color: #334155; }
.price-list li.no::before { content: '✗  '; color: #334155; }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-item {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(0,212,255,.2); }

.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; text-align: left;
  background: none; border: none; cursor: pointer;
  color: #fff; font-weight: 600; font-size: .9rem;
  font-family: 'Inter', sans-serif; gap: 14px;
  transition: color .2s;
}
.faq-btn:hover { color: var(--cyan); }
.faq-item.open .faq-btn { color: var(--cyan); }

.faq-arrow { width:18px; height:18px; flex-shrink:0; transition: transform .3s; stroke:currentColor; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-body { max-height: 280px; }
.faq-body p { padding: 0 22px 18px; color: #64748b; font-size: .88rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════ */
.contact-box {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 38px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .82rem; font-weight: 500; color: #94a3b8; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff; font-size: .88rem;
  font-family: 'Inter', sans-serif;
  width: 100%; outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #334155; }
.form-group select option { background: #0f172a; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 0 0 3px rgba(0,212,255,.08);
  background: rgba(0,212,255,.03);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer-link {
  color: inherit; transition: color .2s; text-decoration: none;
  display: inline-block;
}
.footer-link:hover { color: var(--cyan); }

/* ══════════════════════════════════════════════════
   PROCESS / HOW IT WORKS
══════════════════════════════════════════════════ */
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  transition: transform .35s, border-color .35s;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; font-weight: 700;
  color: var(--cyan); letter-spacing: .1em;
  margin-bottom: 14px;
}

.step-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(139,92,246,.12));
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-icon svg { width: 22px; height: 22px; color: var(--cyan); }

.step-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc  { font-size: .83rem; color: #64748b; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(0,212,255,.07) 0%, rgba(139,92,246,.07) 100%);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 24px;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,.08) 0%, transparent 70%);
  top: -150px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   PARTNER LOGOS
══════════════════════════════════════════════════ */
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .55; transition: opacity .3s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo span { font-size: .72rem; color: #64748b; font-family: 'JetBrains Mono', monospace; }

/* ══════════════════════════════════════════════════
   ZONE CARDS
══════════════════════════════════════════════════ */
.zone-card {
  padding: 32px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  transition: transform .35s, border-color .35s;
}
.zone-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }

.zone-card--center {
  border-color: rgba(0,212,255,.25);
  background: rgba(0,212,255,.04);
}

.zone-icon  { font-size: 2rem; margin-bottom: 12px; }
.zone-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.zone-desc  { font-size: .83rem; color: #64748b; line-height: 1.6; margin-bottom: 14px; }
.zone-tag   {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 100px;
  font-size: .7rem; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
}

/* ══════════════════════════════════════════════════
   PORTFOLIO STACK TAGS
══════════════════════════════════════════════════ */
.port-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.port-stack span {
  padding: 3px 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: .68rem;
  font-family: 'JetBrains Mono', monospace;
  color: #64748b;
}

/* ══════════════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════════════ */
.blog-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.38); }

.blog-img {
  height: 160px; position: relative;
  display: flex; align-items: flex-start; padding: 16px;
}
.blog-cat {
  padding: 4px 12px;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .68rem; font-weight: 600; color: #fff;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .05em;
}

.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.blog-date { font-size: .72rem; color: #475569; font-family: 'JetBrains Mono', monospace; }

.blog-title {
  font-size: .95rem; font-weight: 700; color: #fff;
  line-height: 1.4; margin: 8px 0 10px;
  flex: 1;
}

.blog-excerpt { font-size: .82rem; color: #64748b; line-height: 1.6; margin-bottom: 14px; }

.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--cyan);
  text-decoration: none; transition: gap .25s; margin-top: auto;
}
.blog-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════
   PERFORMANCE / ECO SCORE CARD
══════════════════════════════════════════════════ */
.score-widget {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 20px;
}
.score-item {
  text-align: center;
  padding: 14px 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.score-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: .85rem;
  position: relative;
}
.score-ring::before {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--space);
}
.score-ring span { position: relative; z-index: 1; }
.score-lbl { font-size: .65rem; color: #475569; font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; }

/* GITHUB BADGE */
.gh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  font-size: .78rem; color: #94a3b8;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.gh-badge:hover { border-color: rgba(0,212,255,.3); color: var(--cyan); }
.gh-badge svg { width: 16px; height: 16px; fill: currentColor; }

/* SECTION DEPTH ALTERNATING */
.depth-alt {
  background: linear-gradient(180deg, var(--space) 0%, #0c111f 50%, var(--space) 100%);
}

/* ══════════════════════════════════════════════════
   CODE CARD (Hero right column — VS Code style)
══════════════════════════════════════════════════ */
.code-card {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,255,.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  line-height: 1.75;
  position: relative;
}
.code-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,212,255,.04) 0%, rgba(139,92,246,.04) 100%);
  pointer-events: none;
}

.code-card-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.cc-title {
  margin-left: 8px;
  font-size: .72rem;
  color: #475569;
  letter-spacing: .02em;
}

.code-body {
  padding: 20px 20px 8px;
  margin: 0;
  overflow-x: auto;
  color: #94a3b8;
}
.code-body code {
  display: block;
}

/* Syntax highlight classes */
.ck { color: #c792ea; }        /* keyword */
.cb { color: #89ddff; }        /* bracket / brace */
.cp { color: #82aaff; }        /* property */
.cs { color: #c3e88d; }        /* string */
.cn { color: #f78c6c; }        /* number / boolean */
.cw { color: #89ddff; }        /* punctuation (colon, comma) */
.cg { color: #4ec9b0; }        /* type / class name */
.cc { color: #546e7a; font-style: italic; } /* comment */

.code-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .7rem;
  color: #334155;
}
.cf-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  display: inline-block;
  animation: pulse 2s infinite;
}

/* ══════════════════════════════════════════════════
   CLI BUTTON (Hero primary CTA)
══════════════════════════════════════════════════ */
.btn-cli {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(0,212,255,.07);
  border: 1px solid rgba(0,212,255,.35);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem;
  font-weight: 700;
  color: #00d4ff;
  text-decoration: none;
  transition: background .25s, border-color .25s, box-shadow .25s;
  letter-spacing: .02em;
}
.btn-cli:hover {
  background: rgba(0,212,255,.14);
  border-color: rgba(0,212,255,.6);
  box-shadow: 0 0 28px rgba(0,212,255,.2);
}
.btn-cli-prompt {
  color: #22c55e;
  font-size: 1rem;
  user-select: none;
}
.btn-cli-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #00d4ff;
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  .about-b1, .about-b2 { display: none; }
  .price-card--star { transform: scale(1); }
  .contact-box { padding: 24px; }
}
