/* =========================================
   VIBESTUDIO — GLOBAL CSS
   ========================================= */

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

/* =====================
   PAGE LOADER
   ===================== */
#vs-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #070711;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#vs-loader.hide { opacity: 0; visibility: hidden; }

.loader-logo-img {
  width: 220px; height: auto;
  animation: loaderIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes loaderIn {
  from { opacity: 0; transform: scale(0.75) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.loader-bar {
  width: 120px; height: 2px;
  background: rgba(168,85,247,0.15);
  border-radius: 2px; overflow: hidden;
  animation: loaderIn 0.7s 0.1s both;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  border-radius: 2px;
  animation: loadFill 0.9s 0.3s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes loadFill { from{width:0} to{width:100%} }

/* =====================
   CUSTOM CURSOR
   ===================== */
#vs-cursor {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.35) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: transform 0.08s linear, opacity 0.3s;
  mix-blend-mode: screen;
  filter: blur(2px);
}
@media (pointer: coarse) { #vs-cursor { display: none; } }

/* =====================
   SMOOTH PAGE ENTRANCE
   ===================== */
body { opacity: 0; transition: opacity 0.4s ease; }
body.loaded { opacity: 1; }

/* Hero staggered entrance */
.hero-badge   { animation: heroSlide 0.7s 0.15s cubic-bezier(0.34,1.4,0.64,1) both; }
.hero-title   { animation: heroSlide 0.7s 0.28s cubic-bezier(0.34,1.4,0.64,1) both; }
.hero-sub     { animation: heroSlide 0.7s 0.40s cubic-bezier(0.34,1.4,0.64,1) both; }
.hero-actions { animation: heroSlide 0.7s 0.50s cubic-bezier(0.34,1.4,0.64,1) both; }
.hero-stats   { animation: heroSlide 0.7s 0.60s cubic-bezier(0.34,1.4,0.64,1) both; }
.hero-visual  { animation: heroSlide 0.7s 0.35s cubic-bezier(0.34,1.4,0.64,1) both; }
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Card spotlight glow on hover */
.service-mini, .stack-card, .testimonial-card, .portfolio-card, .faq-item {
  position: relative; overflow: hidden;
}
.service-mini::before, .stack-card::before, .testimonial-card::before, .portfolio-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168,85,247,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none; z-index: 0;
}
.service-mini:hover::before, .stack-card:hover::before,
.testimonial-card:hover::before, .portfolio-card:hover::before { opacity: 1; }
.service-mini > *, .stack-card > *, .testimonial-card > *, .portfolio-card > * { position: relative; z-index: 1; }


/* =====================
   WHATSAPP BUTTON
   ===================== */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: all 0.3s;
  text-decoration: none;
}
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.wa-btn span { white-space: nowrap; }
@media (max-width: 480px) { .wa-btn span { display: none; } .wa-btn { padding: 14px; border-radius: 50%; } }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { padding: 110px 0; position: relative; z-index: 1; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 36px 30px; transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1); display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow);
}
.testimonial-card:hover { border-color: rgba(109,40,217,0.22); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-dim); line-height: 1.8; font-style: italic; flex: 1; }
.testimonial-text::before { content: '"'; color: var(--purple); font-size: 2rem; line-height: 0; vertical-align: -0.55rem; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.testimonial-name strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial-name span { font-size: 0.78rem; color: var(--text-dim); }

/* =====================
   FAQ
   ===================== */
.faq-section { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(168,85,247,0.35); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  user-select: none; gap: 16px;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.2s;
  font-size: 1rem; color: var(--purple);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(168,85,247,0.2); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px; color: var(--text-dim); font-size: 0.9rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

:root {
  --purple: #6d28d9;
  --purple-light: #a855f7;
  --blue: #2563eb;
  --warm: #f59e0b;
  --bg: #faf9ff;
  --bg2: #f2effd;
  --bg3: #eae6f8;
  --card: #ffffff;
  --border: rgba(109,40,217,0.09);
  --border-soft: rgba(0,0,0,0.06);
  --text: #120d24;
  --text-dim: #6b6487;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 4px 20px rgba(109,40,217,0.07), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 48px rgba(109,40,217,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; background: linear-gradient(135deg, var(--purple) 0%, #4f46e5 60%, var(--blue) 100%);
  color: #fff; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.28s cubic-bezier(0.34,1.2,0.64,1); cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(109,40,217,0.32), 0 1px 4px rgba(0,0,0,0.1);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 36px rgba(109,40,217,0.45), 0 2px 8px rgba(0,0,0,0.1); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; background: white; color: var(--text);
  border-radius: 50px; font-weight: 500; border: 1.5px solid var(--border-soft); transition: all 0.25s;
  box-shadow: var(--shadow);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); background: var(--bg2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; background: transparent; color: var(--text);
  border-radius: 50px; font-weight: 600; border: 1.5px solid var(--border-soft); transition: all 0.25s; cursor: pointer; width: 100%;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.full-width { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(249,248,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft); padding: 12px 0;
  box-shadow: 0 1px 12px rgba(124,58,237,0.07);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.88rem; color: var(--text-dim); font-weight: 500; transition: color 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); border-bottom-color: var(--purple); }
.nav-cta {
  padding: 10px 22px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important;
  color: #fff !important; border-radius: 50px; font-weight: 600 !important; border-bottom: none !important;
}
.nav-cta:hover { box-shadow: 0 8px 30px rgba(168,85,247,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-links.open { background: rgba(249,248,255,0.98) !important; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 72px; }
.section-tag {
  display: inline-block; padding: 7px 16px;
  background: rgba(109,40,217,0.07); border: 1px solid rgba(109,40,217,0.15);
  border-radius: 50px; font-size: 0.78rem; color: var(--purple); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.8px; }
.section-header p { color: var(--text-dim); max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }

/* BG DECORATIONS */
.page-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(109,40,217,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 90% 80%, rgba(37,99,235,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 45%, rgba(245,158,11,0.03) 0%, transparent 55%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(110px); animation: orbFloat 14s ease-in-out infinite alternate; }
.orb-1 { width: 700px; height: 600px; background: rgba(109,40,217,0.08); top: -200px; left: -200px; animation-duration: 16s; }
.orb-2 { width: 550px; height: 520px; background: rgba(37,99,235,0.06); top: 100px; right: -150px; animation-duration: 12s; animation-delay: -5s; }
.orb-3 { width: 450px; height: 400px; background: rgba(245,158,11,0.06); bottom: -50px; left: 30%; animation-duration: 18s; animation-delay: -8s; }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1) rotate(0deg); }
  to   { transform: translate(40px, -50px) scale(1.08) rotate(3deg); }
}

/* WAVE DIVIDER */
.wave-divider { position: relative; z-index: 1; line-height: 0; overflow: hidden; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* PAGE HERO (non-home pages) */
.page-hero {
  padding: 140px 0 80px; text-align: center; position: relative; z-index: 1;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* FOOTER */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--border-soft); background: var(--bg2); position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; margin-top: 12px; max-width: 240px; }
.footer-links h5 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 24px; flex-wrap: wrap; gap: 12px; }

/* CARD BASE */
.card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: all 0.3s;
}
.card:hover { border-color: rgba(124,58,237,0.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* FORM */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea {
  background: white; border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 12px 16px; color: var(--text);
  font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group select option { background: white; }
.form-success {
  display: none; text-align: center; padding: 14px;
  background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm); color: var(--purple); font-weight: 500; font-size: 0.9rem;
}
.form-success.show { display: block; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(0.34,1.2,0.64,1), transform 0.65s cubic-bezier(0.34,1.2,0.64,1); }
.reveal.visible { opacity: 1; transform: none; }

/* =====================
   HOME PAGE
   ===================== */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; width: 100%;
}
.hero {
  display: flex; align-items: center; position: relative;
  padding: 130px 24px 100px; gap: 72px;
  max-width: 1180px; margin: 0 auto; width: 100%;
  z-index: 1;
}
.hero-content { flex: 1; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px;
  background: rgba(109,40,217,0.08); border: 1px solid rgba(109,40,217,0.18);
  border-radius: 50px; font-size: 0.82rem; color: var(--purple); font-weight: 500; margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 3px rgba(34,197,94,0.2)} 50%{opacity:0.8;transform:scale(0.85);box-shadow:0 0 0 6px rgba(34,197,94,0.08)} }

.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; line-height: 1.08; margin-bottom: 22px; letter-spacing: -1.5px; }
.hero-sub { font-size: 1.1rem; color: var(--text-dim); max-width: 500px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.78rem; color: var(--text-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual { flex: 0 0 500px; position: relative; z-index: 1; }

/* =====================
   HERO DARK
   ===================== */
.hero-dark {
  background: #07071a; width: 100%;
}
.hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at -5% 50%, rgba(109,40,217,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 105% 20%, rgba(37,99,235,0.10) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-dark .hero-content { color: #fff; }
.hero-dark .hero-sub { color: rgba(255,255,255,0.58); }
.hero-dark .stat-label { color: rgba(255,255,255,0.42); }
.hero-dark .stat-divider { background: rgba(255,255,255,0.1); }
.hero-dark .hero-badge {
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.28);
  color: #c4b5fd;
}
.hero-dark .btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.hero-dark .btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(168,85,247,0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* WAVE DIVIDER */
.wave-divider { position: relative; z-index: 1; line-height: 0; overflow: hidden; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; height: auto; }
.wave-divider-dark { background: #07071a; }

/* =====================
   CLAUDE CODE TERMINAL
   ===================== */
.cc-terminal {
  background: #0c0c20;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.06),
    0 32px 80px rgba(0,0,0,0.65),
    0 0 120px rgba(109,40,217,0.1);
  font-family: 'Courier New', 'Menlo', 'Monaco', monospace;
  min-height: 400px;
}
.cc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.cc-dots { display: flex; gap: 7px; align-items: center; }
.cc-dot { width: 13px; height: 13px; border-radius: 50%; }
.cc-dot.cc-red    { background: #ff5f56; }
.cc-dot.cc-yellow { background: #ffbd2e; }
.cc-dot.cc-green  { background: #27c93f; box-shadow: 0 0 8px rgba(39,201,63,0.55); }
.cc-title-bar {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.77rem; color: rgba(255,255,255,0.35);
  font-family: inherit; letter-spacing: 0.02em;
}
.cc-body {
  padding: 20px 24px 28px;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.cc-line {
  font-size: 0.87rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  display: flex; align-items: baseline;
  white-space: pre;
}
.cc-spacer { height: 8px; flex-shrink: 0; }
.cc-dollar  { color: #22c55e; margin-right: 9px; font-weight: 700; }
.cc-chevron { color: #a855f7; margin-right: 9px; font-size: 1rem; }
.cc-muted   { color: rgba(255,255,255,0.22) !important; font-size: 0.76rem !important; }
.cc-step    { font-size: 0.84rem; }
.cc-step-icon { width: 18px; display: inline-block; margin-right: 8px; flex-shrink: 0; }
.cc-done    { font-weight: 700; }
.cc-cursor  {
  color: #a855f7;
  animation: ccBlink 1s step-end infinite;
  margin-left: 1px;
}
@keyframes ccBlink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

/* =====================
   SERVICE MINI TERMINALS
   ===================== */
.svc-terminal {
  background: #0c0c20;
  border: 1px solid rgba(168,85,247,0.16);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  height: 148px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-mini:hover .svc-terminal {
  border-color: rgba(168,85,247,0.35);
  box-shadow: 0 0 24px rgba(109,40,217,0.12);
}
.svc-term-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.045);
}
.svc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12); flex-shrink: 0;
}
.svc-dot:nth-child(1) { background: rgba(255,95,86,0.7); }
.svc-dot:nth-child(2) { background: rgba(255,189,46,0.7); }
.svc-dot-green { background: rgba(39,201,63,0.85) !important; box-shadow: 0 0 5px rgba(39,201,63,0.4); }
.svc-term-label {
  margin-left: 6px; font-size: 0.67rem; color: rgba(255,255,255,0.28);
  font-family: 'Courier New', monospace; letter-spacing: 0.01em;
}
.svc-term-body {
  padding: 8px 11px 6px;
  font-family: 'Courier New', 'Menlo', monospace;
  font-size: 0.7rem;
  line-height: 1.85;
  height: calc(148px - 30px);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-line {
  display: flex; align-items: baseline; gap: 0;
  color: rgba(255,255,255,0.75);
  white-space: pre;
}
.svc-dollar  { color: #22c55e; margin-right: 6px; font-weight: 700; }
.svc-chevron { color: #a855f7; margin-right: 6px; }
.svc-muted   { color: rgba(255,255,255,0.2) !important; }
.svc-step    { }
.svc-done    { font-weight: 700; }
.svc-cursor  { color: #a855f7; animation: ccBlink 1s step-end infinite; }

/* HOME SERVICES PREVIEW */
.home-services { padding: 100px 0; position: relative; z-index: 1; background: var(--bg2); }
.services-grid-4, .services-grid-5 { display: grid; gap: 20px; }
.services-grid-4 { grid-template-columns: repeat(4,1fr); }
.services-grid-5 { grid-template-columns: repeat(5,1fr); }
.service-mini {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 28px 20px 24px; transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1); text-align: center;
  box-shadow: var(--shadow);
}
.service-mini:hover { border-color: rgba(109,40,217,0.2); transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-mini-icon { width: 48px; height: 48px; margin: 0 auto 14px; }
.service-mini h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-mini p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; }

/* HOME TECH STRIP */
.tech-strip { padding: 56px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); position: relative; z-index: 1; background: var(--bg); }
.tech-strip-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.tech-item { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.tech-item:hover { color: var(--purple); }
.tech-item svg { opacity: 0.65; transition: opacity 0.2s; }
.tech-item:hover svg { opacity: 1; }

/* =====================
   SERVICES PAGE
   ===================== */
.services-page { padding: 0 0 100px; position: relative; z-index: 1; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-visual {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.service-block-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.service-block-content p { color: var(--text-dim); line-height: 1.75; margin-bottom: 24px; }
.service-tag-num { font-size: 0.75rem; font-weight: 700; color: var(--purple); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); flex-shrink: 0; }

/* =====================
   WERKWIJZE PAGE
   ===================== */
.werkwijze-page { padding: 0 0 100px; position: relative; z-index: 1; }
.stack-section { padding: 80px 0; }
.stack-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.stack-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: all 0.3s;
}
.stack-card:hover { border-color: rgba(168,85,247,0.35); transform: translateY(-4px); }
.stack-card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.stack-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.stack-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.stack-card .stack-badge {
  display: inline-block; margin-top: 14px; padding: 4px 12px;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2);
  border-radius: 50px; font-size: 0.75rem; color: var(--purple); font-weight: 600;
}

.flow-section { padding: 80px 0; border-top: 1px solid var(--border); }
.flow-steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.flow-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(59,130,246,0.1));
  border: 1px solid rgba(168,85,247,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--purple);
  flex-shrink: 0;
}
.flow-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.flow-content p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; }
.flow-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.flow-tag {
  padding: 4px 12px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  border-radius: 50px; font-size: 0.75rem; color: var(--blue); font-weight: 600;
}

/* =====================
   OVER ONS PAGE
   ===================== */
.over-ons-page { padding: 0 0 100px; position: relative; z-index: 1; }
.founder-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 80px 0;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top;
  border-radius: 24px; border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(168,85,247,0.1);
}
.founder-badge-card {
  position: absolute; bottom: -20px; left: -20px;
  background: rgba(15,15,32,0.95); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px;
  backdrop-filter: blur(20px); box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.founder-badge-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.founder-badge-card span { font-size: 0.8rem; color: var(--purple); }
.founder-content { }
.founder-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.founder-content p { color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; font-size: 0.97rem; }
.founder-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.value-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px;
}
.value-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.value-item span { font-size: 0.8rem; color: var(--text-dim); }

/* Waarden cards upgrade */
.waarden-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px;
}
.waarden-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.35s;
  display: flex; flex-direction: column; gap: 0;
}
.waarden-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #a855f7, #3b82f6); opacity: 0; transition: opacity 0.35s;
}
.waarden-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.waarden-card:hover { border-color: rgba(168,85,247,0.3); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(168,85,247,0.1); }
.waarden-card:hover::before { opacity: 1; }
.waarden-card:hover::after { opacity: 1; }
.waarden-card-num {
  font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -2px;
  background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(59,130,246,0.4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.waarden-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.waarden-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.waarden-card > p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.waarden-list {
  list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); padding-top: 18px;
  display: flex; flex-direction: column; gap: 9px; margin-top: auto;
}
.waarden-list li {
  font-size: 0.82rem; color: var(--text-dim); padding-left: 18px; position: relative; line-height: 1.4;
}
.waarden-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.mission-section { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; }
.mission-quote {
  max-width: 720px; margin: 0 auto;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; line-height: 1.45; color: var(--text);
}
.mission-quote em { font-style: normal; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* =====================
   PORTFOLIO PAGE
   ===================== */
.portfolio-page { padding: 0 0 100px; position: relative; z-index: 1; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.portfolio-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.portfolio-card:hover { border-color: rgba(168,85,247,0.35); transform: translateY(-6px); }
.portfolio-visual { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.v1{background:linear-gradient(135deg,#1a0533,#0d1a3a)} .v2{background:linear-gradient(135deg,#0d1a3a,#1a0533)} .v3{background:linear-gradient(135deg,#100c2a,#0a1e30)} .v4{background:linear-gradient(135deg,#0e1a10,#101a2a)}
.portfolio-info { padding: 24px; }
.portfolio-tag { display:inline-block; padding:3px 10px; background:rgba(168,85,247,0.12); border:1px solid rgba(168,85,247,0.2); border-radius:50px; font-size:0.72rem; color:var(--purple); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px; }
.portfolio-info h4 { font-size:1.1rem; font-weight:700; margin-bottom:6px; }
.portfolio-info p { font-size:0.88rem; color:var(--text-dim); line-height:1.6; }

/* Mock visuals */
.mock-browser { width:85%; background:rgba(15,15,30,.9); border-radius:8px; border:1px solid rgba(255,255,255,.1); overflow:hidden; }
.mock-bar { display:flex; gap:5px; padding:8px 10px; background:rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.06); }
.mock-bar span { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.2); }
.mock-bar span:nth-child(1){background:#ff5f56} .mock-bar span:nth-child(2){background:#ffbd2e} .mock-bar span:nth-child(3){background:#27c93f}
.mock-content { padding:12px; }
.mock-hero-block { height:60px; background:linear-gradient(135deg,rgba(168,85,247,.3),rgba(59,130,246,.3)); border-radius:6px; margin-bottom:10px; }
.mock-lines { display:flex; flex-direction:column; gap:6px; }
.mock-lines div { height:8px; background:rgba(255,255,255,.08); border-radius:4px; }
.mock-lines div:nth-child(2){width:70%} .mock-lines div:nth-child(3){width:50%}

.mock-dashboard { width:85%; height:150px; display:flex; gap:8px; background:rgba(15,15,30,.9); border-radius:8px; border:1px solid rgba(255,255,255,.1); overflow:hidden; }
.mock-sidebar { width:28%; background:rgba(168,85,247,.08); }
.mock-nav-items { padding:8px 6px; display:flex; flex-direction:column; gap:6px; }
.mock-nav-item { height:8px; background:rgba(255,255,255,.08); border-radius:4px; }
.mock-nav-item.active { background:rgba(168,85,247,.5); }
.mock-main { flex:1; padding:10px; display:flex; flex-direction:column; gap:8px; }
.mock-kpi-row { display:flex; gap:5px; }
.mock-kpi { flex:1; background:rgba(168,85,247,.12); border-radius:4px; padding:6px 5px; }
.mock-kpi-num { height:10px; background:rgba(168,85,247,.5); border-radius:3px; margin-bottom:4px; width:60%; }
.mock-kpi-label { height:6px; background:rgba(255,255,255,.1); border-radius:3px; width:80%; }
.mock-charts { display:flex; gap:6px; flex:1; }
.mock-chart-bar { flex:1; background:linear-gradient(180deg,rgba(168,85,247,.4),rgba(168,85,247,.1)); border-radius:4px; }
.mock-chart-line { flex:1; background:linear-gradient(135deg,rgba(59,130,246,.3),rgba(168,85,247,.2)); border-radius:4px; }

.mock-app { display:flex; justify-content:center; }
.mock-phone { width:90px; height:160px; background:rgba(15,15,30,.9); border-radius:16px; border:2px solid rgba(255,255,255,.1); overflow:hidden; display:flex; flex-direction:column; }
.mock-notch { width:30px; height:8px; background:rgba(255,255,255,.06); border-radius:0 0 6px 6px; margin:0 auto 4px; }
.mock-screen { flex:1; display:flex; flex-direction:column; padding:4px; }
.mock-app-header { height:16px; background:linear-gradient(90deg,rgba(168,85,247,.4),rgba(59,130,246,.3)); border-radius:4px; margin-bottom:6px; }
.mock-app-cards { display:flex; gap:4px; flex:1; }
.mock-app-cards div { flex:1; background:rgba(168,85,247,.15); border-radius:4px; }
.mock-app-nav { height:14px; background:rgba(255,255,255,.04); border-radius:4px; margin-top:4px; }

.mock-wp { width:88%; height:150px; background:rgba(15,15,25,.9); border-radius:8px; border:1px solid rgba(255,255,255,.1); overflow:hidden; display:flex; flex-direction:column; }
.mock-wp-adminbar { height:16px; background:#1d2327; border-bottom:1px solid rgba(255,255,255,.05); }
.mock-wp-body { display:flex; flex:1; }
.mock-wp-sidebar { width:28%; background:#1d2327; padding:6px 4px; }
.mock-wp-menu { display:flex; flex-direction:column; gap:5px; }
.mock-wp-menu div { height:7px; background:rgba(255,255,255,.1); border-radius:3px; }
.mock-wp-menu div.active { background:rgba(168,85,247,.6); }
.mock-wp-content { flex:1; padding:8px; }
.mock-wp-title { height:10px; background:rgba(255,255,255,.15); border-radius:3px; width:55%; margin-bottom:10px; }
.mock-wp-settings { display:flex; flex-direction:column; gap:6px; }
.mock-wp-row { display:flex; gap:5px; }
.mock-wp-row div:first-child { width:35%; height:8px; background:rgba(255,255,255,.08); border-radius:3px; }
.mock-wp-row div:last-child { flex:1; height:8px; background:rgba(255,255,255,.12); border-radius:3px; }
.mock-wp-btn { height:14px; width:50px; background:linear-gradient(90deg,rgba(168,85,247,.6),rgba(59,130,246,.5)); border-radius:4px; margin-top:4px; }

/* =====================
   PRICING PAGE
   ===================== */
.pricing-page { padding: 0 0 100px; position: relative; z-index: 1; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:36px 28px; position:relative; transition:all 0.3s; }
.pricing-card:hover { border-color:rgba(168,85,247,.3); }
.pricing-card.featured { background:linear-gradient(135deg,rgba(168,85,247,.08),rgba(59,130,246,.05)); border-color:rgba(168,85,247,.35); transform:scale(1.03); }
.pricing-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); padding:6px 18px; background:linear-gradient(135deg,var(--purple),var(--blue)); border-radius:50px; font-size:.78rem; font-weight:700; color:#fff; white-space:nowrap; }
.pricing-card h3 { font-size:1.2rem; font-weight:700; margin-bottom:16px; }
.price { margin-bottom:8px; }
.price-from { display:block; font-size:.8rem; color:var(--text-dim); margin-bottom:2px; }
.price-amount { font-size:2.4rem; font-weight:800; font-family:'Space Grotesk',sans-serif; background:linear-gradient(135deg,var(--purple),var(--blue)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.price-desc { font-size:.88rem; color:var(--text-dim); margin-bottom:24px; line-height:1.5; }
.price-features { margin-bottom:28px; }
.price-features li { font-size:.85rem; color:var(--text-dim); padding:7px 0; border-bottom:1px solid rgba(255,255,255,.04); }
.price-features li::before { content:'✓ '; color:var(--purple); font-weight:700; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-page { padding: 0 0 100px; position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; padding-top: 20px; }
.contact-info-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.contact-info-block p { color: var(--text-dim); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item-icon { width: 42px; height: 42px; background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.contact-item-text span { font-size: .82rem; color: var(--text-dim); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid-4 { grid-template-columns: repeat(2,1fr); }
  .services-grid-5 { grid-template-columns: repeat(3,1fr); }
  .stack-grid { grid-template-columns: repeat(2,1fr); }
  .waarden-grid { grid-template-columns: repeat(2,1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .founder-section { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { max-height: 480px; width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 48px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; flex: none; }
  .cc-terminal { min-height: 300px; }
  .cc-body { min-height: 260px; }
  .services-grid-5 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; inset:0; background:rgba(7,7,17,.97); align-items:center; justify-content:center; gap:32px; z-index:99; }
  .nav-links.open a { font-size:1.3rem; }
  .services-grid-4, .services-grid-5 { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .waarden-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .founder-values { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 1fr; gap: 16px; }
  .tech-strip-inner { gap: 24px; }
}

/* =====================
   WERKWIJZE PAGE
   ===================== */

/* Hero */
.wk-hero-section { min-height: 70vh; }
.wk-hero {
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 140px 24px 100px;
  display: flex; align-items: center; gap: 64px;
  position: relative; z-index: 1;
}
.wk-hero-content { flex: 1; }
.wk-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1.5px;
  color: #fff; margin: 20px 0 22px;
}
.wk-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.58);
  line-height: 1.75; max-width: 480px; margin-bottom: 32px;
}
.wk-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.wk-pill {
  padding: 7px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; font-size: 0.8rem; color: rgba(255,255,255,0.65);
  font-weight: 500; transition: all 0.2s;
}
.wk-pill:hover { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.35); color: #c4b5fd; }

/* Hero flow preview */
.wk-hero-visual { flex: 0 0 380px; }
.wk-flow-preview {
  display: flex; flex-direction: column; gap: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 24px;
  backdrop-filter: blur(12px);
}
.wk-fp-step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px;
  color: rgba(255,255,255,0.45); font-size: 0.9rem; font-weight: 500;
  transition: all 0.3s;
}
.wk-fp-step.wk-fp-done {
  color: rgba(255,255,255,0.85);
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.18);
}
.wk-fp-step.wk-fp-active {
  color: #fff;
  background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.3);
  box-shadow: 0 0 20px rgba(109,40,217,0.12);
}
.wk-fp-icon { font-size: 1.2rem; width: 28px; text-align: center; }
.wk-fp-arrow {
  text-align: center; color: rgba(255,255,255,0.18);
  font-size: 0.9rem; padding: 4px 0;
}

/* Stack section */
.wk-stack { padding: 100px 0; position: relative; z-index: 1; }
.wk-stack-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.wk-stack-card {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1);
  display: flex; flex-direction: column; gap: 12px;
}
.wk-stack-card:hover { border-color: rgba(109,40,217,0.22); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wk-stack-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.wk-stack-logo {
  width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.wk-stack-logo img { width: 52px; height: 52px; object-fit: contain; }
.wk-stack-badge {
  padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(109,40,217,0.08); border: 1px solid rgba(109,40,217,0.15); color: var(--purple);
}
.wk-stack-card h3 { font-size: 1.05rem; font-weight: 700; }
.wk-stack-card p { font-size: 0.87rem; color: var(--text-dim); line-height: 1.7; flex: 1; }
.wk-stack-bar {
  height: 4px; background: var(--bg3); border-radius: 4px; overflow: hidden; margin-top: 8px;
}
.wk-stack-fill { height: 100%; border-radius: 4px; }
.wk-stack-bar-label { font-size: 0.72rem; color: var(--text-dim); }

/* Timeline */
.wk-timeline-section {
  padding: 80px 0 120px; position: relative; z-index: 1;
  background: var(--bg2);
}
.wk-timeline { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.wk-tl-item {
  display: flex; gap: 32px; align-items: flex-start;
}
.wk-tl-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 72px;
}
.wk-tl-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1rem;
  color: #fff; flex-shrink: 0; z-index: 1; position: relative;
  box-shadow: 0 4px 20px rgba(109,40,217,0.3);
}
.wk-tl-line {
  width: 2px; flex: 1; min-height: 40px;
  background: linear-gradient(to bottom, rgba(109,40,217,0.3), rgba(109,40,217,0.05));
  margin: 4px 0;
}
.wk-tl-card {
  flex: 1; background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 28px 32px;
  box-shadow: var(--shadow); margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wk-tl-card:hover { border-color: rgba(109,40,217,0.2); box-shadow: var(--shadow-lg); }
.wk-tl-card-last { border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.02); }
.wk-tl-card-last:hover { border-color: rgba(34,197,94,0.4); }
.wk-tl-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px;
}
.wk-tl-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(109,40,217,0.08); border: 1px solid rgba(109,40,217,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.wk-tl-icon-live {
  background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); color: #22c55e;
}
.wk-tl-duration {
  display: block; font-size: 0.75rem; font-weight: 600; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.wk-tl-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.wk-tl-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.wk-tl-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wk-tl-tags span {
  padding: 4px 12px; border-radius: 50px; font-size: 0.73rem; font-weight: 600;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.18); color: var(--blue);
}

@media (max-width: 1024px) { .wk-stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .wk-hero { flex-direction: column; padding-top: 110px; }
  .wk-hero-visual { display: none; }
  .wk-stack-grid { grid-template-columns: 1fr; }
  .wk-tl-item { gap: 16px; }
  .wk-tl-card { padding: 20px; }
}

/* =====================
   SERVICES PAGE
   ===================== */

/* Hero */
.sv-hero {
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 150px 24px 110px;
  text-align: center; position: relative; z-index: 1;
}
.sv-hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -1.5px; color: #fff;
  margin: 20px 0 24px;
}
.sv-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.58);
  line-height: 1.75; max-width: 560px; margin: 0 auto 40px;
}
.sv-hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 40px;
}
.sv-stat { text-align: center; }
.sv-stat-num {
  display: block; font-size: 2rem; font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1; margin-bottom: 4px;
}
.sv-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.sv-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.sv-hero-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sv-nav-pill {
  padding: 9px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  font-weight: 500; transition: all 0.22s; text-decoration: none;
}
.sv-nav-pill:hover {
  background: rgba(168,85,247,0.18); border-color: rgba(168,85,247,0.4);
  color: #fff; transform: translateY(-2px);
}

/* Grid */
.sv-grid-section { padding: 80px 0 120px; position: relative; z-index: 1; }
.sv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}

/* Cards */
.sv-card {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.sv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(109,40,217,0.2); }
.sv-card-wide { grid-column: 1 / -1; flex-direction: row; }

/* Terminal top */
.sv-card-terminal {
  background: #0c0c20;
  border-bottom: 1px solid rgba(168,85,247,0.14);
  height: 200px; display: flex; flex-direction: column;
}
.sv-terminal-wide { height: auto; width: 420px; flex-shrink: 0; border-bottom: none; border-right: 1px solid rgba(168,85,247,0.14); }
.sv-term-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.sv-term-body {
  padding: 12px 14px 10px; flex: 1; overflow: hidden;
  font-family: 'Courier New', 'Menlo', monospace;
  font-size: 0.78rem; line-height: 1.9;
  display: flex; flex-direction: column;
}

/* Card body */
.sv-card-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.sv-body-wide { justify-content: center; }
.sv-card-top { display: flex; align-items: center; justify-content: space-between; }
.sv-card-num {
  font-size: 0.72rem; font-weight: 800; color: var(--purple);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}
.sv-card-tag {
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #16a34a;
}
.sv-card-body h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.3px; margin: 0; }
.sv-card-body p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; margin: 0; }

/* Feature list */
.sv-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; flex: 1; }
.sv-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; color: var(--text-dim);
}
.sv-features li::before {
  content: '✓'; color: var(--purple); font-weight: 700;
  font-size: 0.8rem; flex-shrink: 0; width: 16px;
}
.sv-features-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }

/* CTA button in card */
.sv-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: rgba(109,40,217,0.08); border: 1.5px solid rgba(109,40,217,0.2);
  border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--purple);
  transition: all 0.25s; margin-top: 4px; align-self: flex-start;
  text-decoration: none;
}
.sv-cta:hover { background: var(--purple); color: #fff; border-color: var(--purple); transform: translateY(-2px); }
.sv-cta-accent {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(109,40,217,0.3);
}
.sv-cta-accent:hover { box-shadow: 0 8px 32px rgba(109,40,217,0.45); background: linear-gradient(135deg, #5b21b6, #1d4ed8); }

/* CTA Banner */
.sv-cta-banner {
  background: var(--bg2); border-top: 1px solid var(--border-soft);
  padding: 64px 0; position: relative; z-index: 1;
}
.sv-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.sv-cta-inner h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 8px; }
.sv-cta-inner p { color: var(--text-dim); font-size: 0.95rem; }

@media (max-width: 900px) {
  .sv-grid { grid-template-columns: 1fr; }
  .sv-card-wide { flex-direction: column; }
  .sv-terminal-wide { width: 100%; height: 180px; border-right: none; border-bottom: 1px solid rgba(168,85,247,0.14); }
  .sv-features-2col { grid-template-columns: 1fr; }
  .sv-hero-stats { gap: 20px; }
  .sv-cta-inner { flex-direction: column; text-align: center; align-items: center; }
}
