/* ============================================================
   Olideen Technologies — style.css
   Fonts  : Syne (headings) · DM Sans (body) · JetBrains Mono (code/labels)
   Updated: 2026
   ============================================================ */


/* ── Custom properties ───────────────────────────────────── */
:root {
  --navy:         #060D1A;
  --navy2:        #0A1628;
  --cyan:         #00D9FF;
  --blue:         #38BDF8;
  --purple:       #7C3AED;
  --purple2:      #4B2E83;
  --purple-light: #a78bfa;
  --deep-p:       #1E0533;
  --white:        #FFFFFF;
  --gray:         #94A3B8;
  --light:        #CBD5E1;
  --honey-gold:   #FFD700;
  --honey-dark:   #D4A017;
  --font-h:       'Syne', sans-serif;
  --font-b:       'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --glow:         0 0 30px rgba(0,217,255,0.25);
  --glow-lg:      0 0 60px rgba(0,217,255,0.2);
  --radius:       16px;
  --wu-acc1:      #00D9FF;
  --wu-acc1-rgb:  0,217,255;
  --wu-acc2:      #38BDF8;
  --wu-card:      rgba(255,255,255,0.03);
  --wu-border:    rgba(255,255,255,0.08);
  --wu-border-hi: rgba(255,255,255,0.14);
  --wu-text:      #e6efff;
  --wu-text2:     #8fa3bf;
  --wu-text3:     #4e6070;
  --wu-pill:      999px;
  --wu-r:         16px;
  --wu-grad:      linear-gradient(135deg, #00D9FF, #38BDF8, #7C3AED);
  --pf-acc1:      #7b5ea7;
  --pf-acc1-rgb:  123,94,167;
  --pf-acc2:      #5de3ff;
  --pf-acc2-rgb:  93,227,255;
  --pf-grad:      linear-gradient(135deg, #7b5ea7 0%, #5de3ff 100%);
  --pf-card:      rgba(255,255,255,0.03);
  --pf-border:    rgba(255,255,255,0.08);
  --pf-border-hi: rgba(255,255,255,0.14);
  --pf-text:      #e6efff;
  --pf-text2:     #8fa3bf;
  --pf-text3:     #4e6070;
  --pf-pill:      999px;
  --pf-r:         18px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── Canvas ── */
#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* ── 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%); transition: transform 0.1s ease; }
.cursor-ring { width: 36px; height: 36px; border: 2px solid rgba(0,217,255,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: all 0.12s ease; }

/* ── Utility ── */
.gradient-text { background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-gold { background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.highlight-cyan   { color: var(--cyan); font-weight: 600; }
.highlight-purple { color: var(--purple-light); font-weight: 600; }
.highlight-gold   { color: var(--honey-gold); font-weight: 600; }

.section-label { font-family: var(--font-h); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.section-sub { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Navbar ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 9990; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; height: 63px; background: rgba(6,13,26,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,217,255,0.08); transition: background 0.3s ease; }
.navbar.scrolled { padding: 1rem 3rem; height: 63px; background: rgba(6,13,26,0.98); }
.logo-icon { height: 40px; width: auto; display: block; transition: transform 0.3s; }
.logo-icon:hover { transform: scale(1.06); }
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { color: var(--light); text-decoration: none; font-family: var(--font-h); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--cyan); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: var(--navy); font-family: var(--font-h); font-weight: 700; font-size: 0.95rem; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,217,255,0.4); }
.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(5px); }
.btn-primary.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: transparent; color: var(--white); font-family: var(--font-h); font-weight: 600; font-size: 0.95rem; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,217,255,0.05); }
.btn-ghost.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: transparent; color: var(--cyan); font-family: var(--font-h); font-weight: 700; font-size: 0.95rem; border: 2px solid var(--cyan); border-radius: 50px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--cyan); color: var(--navy); box-shadow: 0 0 30px rgba(0,217,255,0.4); }

/* ── Hero ── */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 4rem; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 1rem; background: rgba(0,217,255,0.08); border: 1px solid rgba(0,217,255,0.25); border-radius: 50px; font-size: 0.82rem; font-family: var(--font-h); font-weight: 600; color: var(--cyan); letter-spacing: 0.05em; margin-bottom: 2rem; animation: fadeSlideDown 1s ease forwards; }
.hero-title { font-family: var(--font-h); font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 800; line-height: 1.0; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.1em; }
.hero-title .line { display: block; opacity: 0; transform: translateY(40px); animation: fadeSlideUp 0.9s ease forwards; }
.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.45s; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray); max-width: 560px; margin: 0 auto 2.5rem; opacity: 0; animation: fadeSlideUp 1s 0.7s ease forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3.5rem; opacity: 0; animation: fadeSlideUp 1s 0.9s ease forwards; }
.hero-signals { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.hero-signal { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.9rem; background: rgba(0,217,255,0.06); border: 1px solid rgba(0,217,255,0.18); border-radius: 50px; font-family: var(--font-h); font-size: 0.78rem; font-weight: 600; color: var(--light); }
.hero-signal i { color: var(--cyan); font-size: 0.7rem; }
.dot.pulse { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse-green 2s ease-out infinite; }

/* ── Ticker ── */
.ticker-wrap { position: relative; z-index: 1; background: rgba(0,217,255,0.05); border-top: 1px solid rgba(0,217,255,0.15); border-bottom: 1px solid rgba(0,217,255,0.15); padding: 0.9rem 0; overflow: hidden; }
.ticker { display: flex; gap: 3rem; white-space: nowrap; animation: ticker 30s linear infinite; width: max-content; }
.ticker span { font-family: var(--font-h); font-weight: 600; font-size: 0.9rem; color: var(--gray); letter-spacing: 0.05em; transition: color 0.3s ease, text-shadow 0.3s ease; }
.ticker span:not(.dot):hover { color: var(--honey-gold); text-shadow: 0 0 12px rgba(255,215,0,0.75); }
.ticker .dot { color: var(--honey-gold); font-size: 0.6rem; margin: 0 -1rem; opacity: 0.85; text-shadow: 0 0 10px rgba(255,215,0,0.9); }

/* ── Founder section ── */
.founder-section { position: relative; z-index: 1; padding: 8rem 3rem; background: linear-gradient(180deg, transparent, rgba(75,46,131,0.12) 20%, rgba(75,46,131,0.2) 50%, rgba(75,46,131,0.12) 80%, transparent); overflow: hidden; }
.founder-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(75,46,131,0.15) 0%, transparent 70%); pointer-events: none; }
.founder-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: center; }
.founder-visual { display: flex; justify-content: center; align-items: center; }
.founder-avatar-wrap { position: relative; width: 280px; height: 280px; }
.founder-avatar-ring { position: absolute; inset: -18px; border-radius: 50%; border: 2px solid transparent; background: linear-gradient(var(--navy), var(--navy)) padding-box, linear-gradient(135deg, #7C3AED, #00D9FF, #FFD700) border-box; animation: ring-spin 8s linear infinite; }
.founder-avatar-ring.ring2 { inset: -36px; border: 1px solid transparent; background: linear-gradient(var(--navy), var(--navy)) padding-box, linear-gradient(135deg, #FFD700, #7C3AED, #00D9FF) border-box; animation: ring-spin 14s linear infinite reverse; opacity: 0.5; }
.founder-avatar { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, rgba(75,46,131,0.6), rgba(124,58,237,0.4), rgba(0,217,255,0.2)); border: 2px solid rgba(75,46,131,0.5); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); box-shadow: 0 0 60px rgba(75,46,131,0.4), inset 0 0 40px rgba(75,46,131,0.2); }
.founder-initials { font-family: var(--font-h); font-size: 5rem; font-weight: 800; background: linear-gradient(135deg, #fff, #a78bfa, #FFD700); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.founder-badge-float { position: absolute; display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(10,22,40,0.92); border-radius: 50px; font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; white-space: nowrap; backdrop-filter: blur(12px); animation: badge-float 4s ease-in-out infinite; }
.fb1 { top: -10px; right: -40px; border: 1px solid rgba(255,215,0,0.4); color: #FFD700; animation-delay: 0s; }
.fb1 i { color: #FFD700; }
.fb2 { bottom: 30px; right: -55px; border: 1px solid rgba(0,217,255,0.3); color: #00D9FF; animation-delay: 1.3s; }
.fb2 i { color: #00D9FF; }
.fb3 { bottom: -10px; left: -30px; border: 1px solid rgba(167,139,250,0.4); color: #a78bfa; animation-delay: 2.6s; }
.fb3 i { color: #a78bfa; }
.fb4 { top: 30px; left: -30px; border: 1px solid rgba(167,139,250,0.4); color: #a5e6c1; animation-delay: 2.6s; }
.fb4 i { color: #a5e6c1; }
.founder-content { display: flex; flex-direction: column; }
.founder-content h2 { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.5rem; }
.founder-role { font-family: var(--font-h); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 1.75rem; }
.founder-bio { color: var(--light); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.founder-bio strong { color: var(--honey-gold); }
.founder-skills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.fskill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; border-radius: 50px; font-family: var(--font-h); font-size: 0.75rem; font-weight: 700; border: 1px solid rgba(75,46,131,0.5); background: rgba(75,46,131,0.12); color: var(--purple-light); cursor: default; transition: all 0.3s ease; }
.fskill i { font-size: 0.7rem; }
.fskill:hover { background: rgba(75,46,131,0.35); border-color: var(--purple-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(75,46,131,0.35); }
.founder-quote { position: relative; margin: 1.5rem 0 0; padding: 1.25rem 1.5rem; border-left: 3px solid var(--honey-gold); background: rgba(255,215,0,0.04); border-radius: 0 12px 12px 0; font-style: italic; color: var(--light); font-size: 1rem; line-height: 1.7; }
.fq-mark { font-family: Georgia, serif; font-size: 1.6rem; color: var(--honey-gold); line-height: 0; vertical-align: -0.4em; opacity: 0.8; }

/* ── Stats strip ── */
.stats-strip { position: relative; z-index: 1; padding: 4rem 3rem; background: linear-gradient(180deg, transparent, rgba(0,217,255,0.03), transparent); border-top: 1px solid rgba(0,217,255,0.08); border-bottom: 1px solid rgba(0,217,255,0.08); }
.stats-strip-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: row; align-items: center; justify-content: space-around; gap: 1rem; flex-wrap: nowrap; }
.sstat { text-align: center; flex: 1; min-width: 80px; }
.sstat-num { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; color: var(--cyan); display: block; line-height: 1; margin-bottom: 0.5rem; }
.sstat p { color: var(--gray); font-size: 0.8rem; line-height: 1.4; margin: 0; }
.sstat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── Service cards ── */
.services-section { position: relative; z-index: 1; padding: 7rem 3rem; max-width: 1200px; margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { position: relative; background: rgba(10,22,40,0.7); border: 1px solid rgba(0,217,255,0.1); border-radius: var(--radius); padding: 2.5rem 2rem; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(10px); }
.service-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); background: linear-gradient(135deg, rgba(0,217,255,0.06), transparent); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { border-color: rgba(255,215,0,0.45); transform: translateY(-8px); box-shadow: 0 0 40px rgba(255,215,0,0.18), 0 20px 60px rgba(255,215,0,0.08); }
.service-card:hover::before { opacity: 1; }
.card-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.service-card:hover .card-glow { opacity: 1; }
.service-card i { font-size: 2.2rem; color: var(--cyan); margin-bottom: 1.25rem; display: block; transition: transform 0.3s; }
.service-card:hover i { color: var(--honey-gold); filter: drop-shadow(0 0 8px rgba(255,215,0,0.6)); transform: scale(1.15) rotate(-5deg); }
.service-card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }
.card-tag { display: inline-block; margin-top: 1.25rem; padding: 0.25rem 0.75rem; background: rgba(0,217,255,0.12); border: 1px solid rgba(0,217,255,0.25); border-radius: 50px; font-size: 0.7rem; font-family: var(--font-h); font-weight: 700; color: var(--cyan); letter-spacing: 0.08em; }
.card-tag.tag-new { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.3); color: var(--purple-light); }
.services-cta { text-align: center; margin-top: 3rem; }

/* ── Why Us narrative (index page) ── */
.whyus-section { position: relative; z-index: 1; padding: 7rem 3rem; background: linear-gradient(180deg, transparent, rgba(75,46,131,0.15), rgba(30,5,51,0.25), transparent); }
.whyus-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 5rem; align-items: center; flex-wrap: wrap; }
.whyus-left { flex: 1.2; min-width: 300px; }
.whyus-left h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.whyus-left .section-sub { text-align: left; margin: 0 0 2rem; }
.whyus-right { flex: 0.8; min-width: 240px; display: flex; flex-direction: column; gap: 1.25rem; }
.narrative-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: rgba(10,22,40,0.6); border: 1px solid rgba(0,217,255,0.1); border-radius: 14px; backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.3s; }
.narrative-item:hover { border-color: rgba(0,217,255,0.25); transform: translateX(6px); }
.narrative-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(0,217,255,0.08); border: 1px solid rgba(0,217,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 1rem; }
.narrative-item strong { font-family: var(--font-h); font-size: 0.98rem; font-weight: 700; display: block; margin-bottom: 0.4rem; }
.narrative-item p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ── How it works ── */
.how-section { position: relative; z-index: 1; padding: 7rem 3rem; background: linear-gradient(180deg, transparent, rgba(0,217,255,0.03), transparent); }
.how-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.how-step { position: relative; padding: 2rem 1.5rem; background: rgba(10,22,40,0.6); border: 1px solid rgba(0,217,255,0.1); border-radius: var(--radius); backdrop-filter: blur(12px); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; overflow: hidden; }
.how-step:hover { border-color: rgba(0,217,255,0.3); transform: translateY(-6px); box-shadow: var(--glow); }
.how-num { font-family: var(--font-h); font-size: 3rem; font-weight: 800; color: rgba(0,217,255,0.12); line-height: 1; margin-bottom: 1rem; }
.how-step h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--white); }
.how-step p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* ── Portfolio cards (index page) ── */
.portfolio-section { position: relative; z-index: 1; padding: 7rem 3rem; max-width: 1200px; margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.portfolio-card { position: relative; background: rgba(10,22,40,0.7); border: 1px solid rgba(0,217,255,0.12); border-radius: var(--radius); padding: 2.25rem; backdrop-filter: blur(12px); transition: all 0.4s ease; overflow: hidden; }
.portfolio-card:hover { transform: translateY(-8px); border-color: rgba(0,217,255,0.3); box-shadow: var(--glow); }
.portfolio-icon { width: 52px; height: 52px; background: rgba(0,217,255,0.08); border: 1px solid rgba(0,217,255,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.portfolio-icon i { font-size: 1.3rem; color: var(--cyan); }
.portfolio-tag { display: inline-block; padding: 0.2rem 0.75rem; background: rgba(0,217,255,0.08); border: 1px solid rgba(0,217,255,0.25); border-radius: 50px; font-size: 0.7rem; font-family: var(--font-h); font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; margin-bottom: 1rem; }
.portfolio-tag.coming { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.3); color: var(--purple-light); }
.portfolio-card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.portfolio-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.portfolio-tech span { padding: 0.25rem 0.75rem; background: rgba(56,189,248,0.07); border: 1px solid rgba(56,189,248,0.15); border-radius: 50px; font-size: 0.75rem; font-family: var(--font-h); font-weight: 600; color: var(--blue); }
.pipeline-card { border-style: dashed; border-color: rgba(124,58,237,0.2); }
.pipeline-card:hover { border-color: rgba(124,58,237,0.4); box-shadow: 0 0 30px rgba(124,58,237,0.15); }

/* ── Portfolio live preview ── */
.portfolio-card.pf-live { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.pf-preview-wrap { position: relative; height: 0; overflow: hidden; transition: height 0.55s cubic-bezier(0.23, 1, 0.32, 1); background: #08101e; border-bottom: 1px solid rgba(0,217,255,0.12); flex-shrink: 0; }
.portfolio-card.pf-live:hover .pf-preview-wrap { height: 220px; }
.pf-browser-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.75rem; background: #0d1c30; border-bottom: 1px solid rgba(0,217,255,0.1); position: relative; z-index: 3; }
.pf-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pf-dot.r { background: #ff5f57; }
.pf-dot.y { background: #febc2e; }
.pf-dot.g { background: #28c840; }
.pf-url { flex: 1; font-size: 0.7rem; font-family: var(--font-mono); color: rgba(0,217,255,0.6); background: rgba(0,217,255,0.05); border: 1px solid rgba(0,217,255,0.1); border-radius: 4px; padding: 0.2rem 0.6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pf-open-btn { color: rgba(0,217,255,0.5); font-size: 0.75rem; transition: color 0.2s; flex-shrink: 0; padding: 0.15rem 0.3rem; }
.pf-open-btn:hover { color: var(--cyan); }
.pf-iframe-container { position: relative; width: 100%; height: 185px; overflow: hidden; }
.pf-iframe { width: 160%; height: 160%; border: none; transform: scale(0.625); transform-origin: top left; pointer-events: none; opacity: 0; transition: opacity 0.4s ease 0.2s; display: block; }
.pf-iframe.loaded { opacity: 1; }
.pf-iframe-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, transparent 55%, rgba(8,16,30,0.85) 100%); }
.pf-iframe-container::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(0,217,255,0.03) 0%, rgba(0,217,255,0.08) 50%, rgba(0,217,255,0.03) 100%); background-size: 200% 100%; animation: pf-shimmer 1.6s infinite; }
.pf-iframe-container::after { content: ''; position: absolute; inset: 0; z-index: 3; background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px); pointer-events: none; }
.pf-card-body { padding: 1.75rem 2.25rem; flex: 1; display: flex; flex-direction: column; }
.pf-top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pf-top-row .portfolio-icon { margin-bottom: 0; }
.pf-top-row .portfolio-tag  { margin-bottom: 0; }
.pf-card-body h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.pf-card-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.pf-links-row { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.25rem; }
.pf-visit-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-family: var(--font-h); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan); transition: gap 0.25s ease, opacity 0.25s; opacity: 0.75; }
.pf-visit-link:hover { gap: 0.75rem; opacity: 1; }
.portfolio-card.pf-live:hover { transform: translateY(-8px); border-color: rgba(0,217,255,0.35); box-shadow: 0 0 0 1px rgba(0,217,255,0.15), 0 20px 60px rgba(0,217,255,0.12), 0 0 80px rgba(0,217,255,0.06); }

/* ── Runway strip ── */
.runway-strip { margin-top: 3rem; }
.runway-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; padding: 2rem 2.5rem; background: rgba(10,22,40,0.7); border: 1px solid rgba(124,58,237,0.25); border-radius: var(--radius); backdrop-filter: blur(12px); }
.runway-ico { font-size: 2rem; color: var(--purple2); flex-shrink: 0; }
.runway-inner h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.runway-inner p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; max-width: 48ch; margin: 0; }
.runway-inner .btn-primary { flex-shrink: 0; margin-left: auto; }

/* ── Testimonials ── */
.testimonials-section { position: relative; z-index: 1; padding: 7rem 3rem; text-align: center; }
.testimonials-track { position: relative; max-width: 680px; margin: 0 auto 2rem; min-height: 160px; }
.testimonial-card { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transform: translateY(20px); transition: all 0.7s ease; background: rgba(10,22,40,0.7); border: 1px solid rgba(0,217,255,0.1); border-radius: var(--radius); padding: 2.5rem 2rem 2rem; backdrop-filter: blur(10px); pointer-events: none; }
.testimonial-card.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.quote-icon { font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: var(--cyan); opacity: 0.4; margin-bottom: 0.5rem; }
.testimonial-card p { font-size: 1.15rem; color: var(--light); font-style: italic; margin-bottom: 1.5rem; }
.client-info { color: var(--gray); font-size: 0.9rem; }
.testimonial-dots { display: flex; gap: 0.6rem; justify-content: center; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; }
.tdot.active { background: var(--cyan); width: 24px; border-radius: 50px; }

/* ── CTA section ── */
.cta-section { position: relative; z-index: 1; padding: 7rem 3rem; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; padding: 4rem 3rem; background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(75,46,131,0.15)); border: 1px solid rgba(75,46,131,0.3); border-radius: 24px; backdrop-filter: blur(15px); position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0,217,255,0.07) 0%, transparent 60%); pointer-events: none; }
.cta-inner h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner p { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-card { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-card.visible { opacity: 1; transform: translateY(0); }

/* ── Footer ── */
.footer { position: relative; z-index: 1; background: var(--navy2); border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 3rem 1.5rem; }
.footer-top { max-width: 1200px; margin: 0 auto 1.5rem; display: flex; align-items: flex-start; gap: 3rem; }
.footer-brand { flex-shrink: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-logo { max-width: 120px; height: auto; object-fit: contain; }
.footer-brand p { color: var(--gray); font-size: 0.78rem; line-height: 1.5; max-width: 180px; }
.footer-cols { flex: 1; display: flex; gap: 2rem; justify-content: space-between; }
.footer-column { flex: 1; min-width: 120px; display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h4 { font-family: var(--font-h); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.85rem; }
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-column ul a { color: var(--gray); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-column ul a:hover { color: var(--white); }
.footer-column p { color: var(--gray); font-size: 0.82rem; margin-bottom: 0.35rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-column p i { color: var(--cyan); width: 14px; font-size: 0.78rem; }
.social-links { display: flex; flex-direction: column; gap: 0.35rem; }
.social-links a { color: var(--gray); text-decoration: none; font-size: 0.82rem; display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.social-links a i { color: var(--cyan); width: 14px; font-size: 0.78rem; }
.social-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.75rem; color: var(--gray); }

/* ── WhatsApp float ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9000; display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: #25D366; color: #fff; text-decoration: none; border-radius: 50px; font-family: var(--font-h); font-weight: 700; font-size: 0.88rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: all 0.3s ease; }
.whatsapp-float i { font-size: 1.2rem; }
.whatsapp-float:hover { background: #1ebe5d; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* ── Page hero (legal/sub pages) ── */
.page-hero { position: relative; z-index: 1; padding: 10rem 3rem 5rem; text-align: center; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero p { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: 1.1rem; }
.services-page-grid { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 2rem 3rem 7rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

/* ── Contact page ── */
.contact-glow-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: -1; filter: blur(80px); }
.orb-purple { width: 600px; height: 600px; top: -100px; left: -150px; background: radial-gradient(circle, rgba(75,46,131,0.35) 0%, transparent 70%); animation: orb-drift 12s ease-in-out infinite alternate; }
.orb-cyan   { width: 500px; height: 500px; bottom: 10%; right: -100px; background: radial-gradient(circle, rgba(0,217,255,0.18) 0%, transparent 70%); animation: orb-drift 16s ease-in-out infinite alternate-reverse; }
.orb-gold   { width: 350px; height: 350px; top: 40%; left: 35%; background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%); animation: orb-drift 20s ease-in-out infinite alternate; }
.contact-page { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 10rem 3rem 7rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info h1 { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); line-height: 1.75; margin-bottom: 0; max-width: 420px; }
.contact-channels { display: flex; flex-direction: column; gap: 0.85rem; margin: 2rem 0; }
.contact-channel-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: rgba(10,22,40,0.6); border: 1px solid rgba(0,217,255,0.12); border-radius: 14px; text-decoration: none; color: var(--white); backdrop-filter: blur(12px); transition: all 0.3s ease; cursor: pointer; }
.contact-channel-card:hover { border-color: rgba(0,217,255,0.4); background: rgba(0,217,255,0.05); transform: translateX(6px); box-shadow: 0 0 30px rgba(0,217,255,0.1); }
.ccc-whatsapp:hover { border-color: rgba(37,211,102,0.5); background: rgba(37,211,102,0.05); box-shadow: 0 0 30px rgba(37,211,102,0.12); }
.ccc-static { cursor: default; }
.ccc-static:hover { transform: none; border-color: rgba(255,215,0,0.2); background: rgba(255,215,0,0.03); box-shadow: none; }
.ccc-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 12px; background: rgba(0,217,255,0.1); border: 1px solid rgba(0,217,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--cyan); transition: all 0.3s; }
.ccc-icon--purple { background: rgba(75,46,131,0.2); border-color: rgba(124,58,237,0.3); color: var(--purple-light); }
.ccc-icon--green  { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #25D366; }
.ccc-icon--gold   { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.25); color: var(--honey-gold); }
.ccc-text { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.ccc-label { font-family: var(--font-h); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.ccc-value { font-size: 0.9rem; color: var(--light); font-weight: 500; }
.ccc-arrow { color: rgba(255,255,255,0.2); font-size: 0.8rem; transition: all 0.3s; }
.contact-channel-card:hover .ccc-arrow { color: var(--cyan); transform: translateX(4px); }
.contact-response-badge { display: flex; align-items: center; gap: 0.85rem; padding: 1rem 1.25rem; background: rgba(0,217,255,0.04); border: 1px solid rgba(0,217,255,0.15); border-radius: 12px; position: relative; overflow: hidden; }
.contact-response-badge i { color: var(--cyan); font-size: 1.2rem; flex-shrink: 0; }
.crb-pulse { position: absolute; top: 50%; right: 1.25rem; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: pulse-ring 2s ease-out infinite; }
.contact-response-badge strong { font-family: var(--font-h); font-size: 0.9rem; font-weight: 700; display: block; color: var(--white); }
.contact-response-badge span { font-size: 0.78rem; color: var(--gray); }
.contact-form-wrap { background: rgba(10,22,40,0.75); border: 1px solid rgba(75,46,131,0.3); border-radius: 24px; padding: 3rem; backdrop-filter: blur(20px); box-shadow: 0 0 0 1px rgba(0,217,255,0.05), 0 30px 80px rgba(75,46,131,0.2); position: relative; overflow: hidden; }
.contact-form-wrap::before { content: ''; position: absolute; top: -60px; left: -60px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(75,46,131,0.25) 0%, transparent 70%); pointer-events: none; }
.contact-form-wrap::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,217,255,0.08) 0%, transparent 70%); pointer-events: none; }
.cfw-header { margin-bottom: 2rem; position: relative; z-index: 1; }
.cfw-header h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.4rem; }
.cfw-header p { color: var(--gray); font-size: 0.88rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.form-group label { font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gray); text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { padding: 0.9rem 1.1rem; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(75,46,131,0.3); border-radius: 10px; color: var(--white); font-family: var(--font-b); font-size: 0.97rem; transition: all 0.3s ease; outline: none; }
.form-group select option { background: var(--navy2); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--cyan); background: rgba(0,217,255,0.03); box-shadow: 0 0 0 3px rgba(0,217,255,0.08), 0 0 20px rgba(0,217,255,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.error-msg { color: #f87171; font-size: 0.8rem; }
.success-banner { display: none; padding: 1rem 1.25rem; background: rgba(0,217,255,0.1); border: 1px solid var(--cyan); border-radius: 10px; color: var(--cyan); font-family: var(--font-h); font-weight: 600; font-size: 0.95rem; margin-top: 1rem; text-align: center; }
.success-banner.visible { display: block; }
.success-banner.error { border-color: #f87171; color: #f87171; background: rgba(248,113,113,0.08); }
#submitBtn:hover { box-shadow: 0 0 40px rgba(0,217,255,0.5), 0 10px 40px rgba(0,217,255,0.3); }

/* ── Legal pages ── */
.legal-page { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 2rem 3rem 7rem; }
.legal-content { display: flex; flex-direction: column; gap: 0; }
.legal-section { padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--cyan); margin-bottom: 0.85rem; }
.legal-section p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; padding: 0; margin: 0.5rem 0; }
.legal-section ul li { color: var(--gray); font-size: 0.95rem; line-height: 1.6; padding-left: 1.25rem; position: relative; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: rgba(0,217,255,0.4); }
.legal-section a { color: var(--cyan); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-section i { color: var(--cyan); margin-right: 0.4rem; }

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE  (sv- prefix)
   ════════════════════════════════════════════════════════════ */
.sv-hero { position: relative; padding: 148px 24px 88px; text-align: center; overflow: hidden; z-index: 1; }
.sv-hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(ellipse 900px 600px at 50% -10%, rgba(124,58,237,0.22), transparent 65%), radial-gradient(ellipse 500px 300px at 80% 60%, rgba(0,217,255,0.08), transparent 60%); }
.sv-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.sv-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.sv-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--cyan); opacity: 0.6; }
.sv-hero h1 { font-family: var(--font-h); font-size: clamp(36px, 7vw, 68px); font-weight: 800; line-height: 1.06; color: var(--white); margin: 0 0 22px; }
.sv-hero h1 .sv-grad { background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sv-hero p { font-size: 18px; color: var(--gray); line-height: 1.72; max-width: 56ch; margin: 0 auto; }
.sv-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.sv-sec { padding: 64px 0; position: relative; z-index: 1; }
.service-card .sv-bullets { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.service-card .sv-bullets li { font-size: 13px; color: var(--gray); padding-left: 18px; position: relative; line-height: 1.5; }
.service-card .sv-bullets li::before { content: "→"; position: absolute; left: 0; color: var(--cyan); font-family: var(--font-mono); font-size: 11px; }
.service-card .sv-timerow { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; color: rgba(148,163,184,0.6); letter-spacing: 0.04em; }
.service-card .sv-timerow strong { color: var(--cyan); font-weight: 500; font-size: 12px; }
.sv-bespoke { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sv-bespoke-left h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin: 8px 0 20px; }
.sv-bespoke-left h2 .sv-grad { background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sv-bespoke-left p { color: var(--gray); font-size: 16px; line-height: 1.72; margin-bottom: 16px; }
.sv-bespoke-right { display: flex; flex-direction: column; gap: 18px; }
.sv-narr-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: rgba(10,22,40,0.6); border: 1px solid rgba(0,217,255,0.1); border-radius: 14px; backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.3s; }
.sv-narr-item:hover { border-color: rgba(0,217,255,0.25); transform: translateX(5px); }
.sv-narr-ico { width: 40px; height: 40px; min-width: 40px; background: rgba(0,217,255,0.08); border: 1px solid rgba(0,217,255,0.2); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--cyan); }
.sv-narr-item h4 { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.sv-narr-item p { color: var(--gray); font-size: 13.5px; line-height: 1.6; margin: 0; }
.sv-tools-head { text-align: center; margin-bottom: 36px; }
.sv-tools-head h2 { font-family: var(--font-h); font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin: 8px 0 12px; }
.sv-tools-head p { color: var(--gray); font-size: 15px; max-width: 54ch; margin: 0 auto; }
.sv-tech-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sv-tech-chip { font-family: var(--font-mono); font-size: 12px; padding: 8px 16px; border-radius: 999px; background: rgba(0,217,255,0.06); border: 1px solid rgba(0,217,255,0.18); color: var(--gray); letter-spacing: 0.04em; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.sv-tech-chip:hover { background: rgba(0,217,255,0.12); border-color: rgba(0,217,255,0.4); color: var(--cyan); }
.sv-cta { border-radius: 24px; background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(0,217,255,0.08) 100%); border: 1px solid rgba(124,58,237,0.3); padding: 68px 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; backdrop-filter: blur(14px); }
.sv-cta h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin: 8px 0 14px; }
.sv-cta p { font-size: 16px; color: var(--gray); max-width: 50ch; line-height: 1.65; margin: 0; }
.sv-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.sv-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: var(--navy); font-family: var(--font-h); font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s; }
.sv-btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0,217,255,0.35); }
.sv-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; background: transparent; color: var(--gray); border: 1px solid rgba(255,255,255,0.14); font-family: var(--font-h); font-size: 14px; font-weight: 500; text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.sv-btn-ghost:hover { border-color: rgba(0,217,255,0.4); color: var(--white); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   WHY US PAGE  (wu- prefix)
   ════════════════════════════════════════════════════════════ */
.wu-hero { position: relative; padding: 148px 24px 88px; text-align: center; overflow: hidden; z-index: 1; }
.wu-hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(ellipse 900px 600px at 50% -10%, rgba(124,58,237,0.22), transparent 65%), radial-gradient(ellipse 500px 300px at 80% 60%, rgba(0,217,255,0.08), transparent 60%); }
.wu-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.wu-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wu-acc1); margin-bottom: 18px; }
.wu-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--wu-acc1); opacity: 0.6; }
.wu-hero h1 { font-family: var(--font-h); font-size: clamp(36px, 7vw, 68px); font-weight: 800; line-height: 1.06; color: var(--wu-text); margin: 0 0 22px; }
.wu-grad-text { background: var(--wu-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.wu-hero p { font-size: 18px; color: var(--wu-text2); line-height: 1.72; max-width: 56ch; margin: 0 auto; }
.wu-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wu-sec { padding: 64px 0; position: relative; z-index: 1; }
.wu-sec-head { margin-bottom: 48px; }
.wu-sec-head.center { text-align: center; }
.wu-sec-head h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--wu-text); margin: 8px 0 14px; }
.wu-sec-head p { font-size: 16px; color: var(--wu-text2); max-width: 62ch; line-height: 1.65; }
.wu-sec-head.center p { margin: 0 auto; }
.wu-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
.wu-stat { background: rgba(10,22,40,0.6); border: 1px solid rgba(0,217,255,0.12); border-radius: var(--wu-r); padding: 28px 20px; text-align: center; backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.3s; }
.wu-stat:hover { border-color: rgba(0,217,255,0.3); transform: translateY(-4px); }
.wu-stat i  { font-size: 1.4rem; color: var(--wu-acc1); display: block; margin-bottom: 10px; }
.wu-stat h3 { font-family: var(--font-h); font-size: 1.9rem; font-weight: 800; color: var(--wu-acc1); margin-bottom: 4px; line-height: 1; }
.wu-stat p  { color: var(--wu-text2); font-size: 13px; margin: 0; }
.wu-reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wu-reason { background: var(--wu-card); border: 1px solid var(--wu-border); border-radius: var(--wu-r); padding: 28px 24px 24px; backdrop-filter: blur(14px); position: relative; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.wu-reason:hover { border-color: rgba(var(--wu-acc1-rgb), 0.35); transform: translateY(-4px); box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5); }
.wu-reason .rnum { position: absolute; top: 22px; right: 22px; font-family: var(--font-mono); font-size: 10px; color: var(--wu-text3); letter-spacing: 0.12em; }
.wu-reason .rico { width: 40px; height: 40px; border-radius: 11px; background: rgba(var(--wu-acc1-rgb), 0.08); border: 1px solid rgba(var(--wu-acc1-rgb), 0.2); display: flex; align-items: center; justify-content: center; color: var(--wu-acc1); margin-bottom: 18px; transition: background 0.25s, box-shadow 0.25s; }
.wu-reason:hover .rico { background: rgba(var(--wu-acc1-rgb), 0.15); box-shadow: 0 0 16px rgba(var(--wu-acc1-rgb), 0.2); }
.wu-reason.cred .rico { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.25); color: #FFD700; }
.wu-reason.cred:hover .rico { background: rgba(255,215,0,0.15); box-shadow: 0 0 16px rgba(255,215,0,0.2); }
.wu-reason.cred:hover { border-color: rgba(255,215,0,0.3); }
.wu-reason h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--wu-text); margin-bottom: 8px; }
.wu-reason p  { font-size: 13.5px; line-height: 1.65; color: var(--wu-text2); margin: 0; }
.wu-compare { border: 1px solid var(--wu-border); border-radius: var(--wu-r); overflow: hidden; background: rgba(6,13,26,0.6); backdrop-filter: blur(14px); }
.wu-compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; border-bottom: 1px solid var(--wu-border); }
.wu-compare-row:last-child { border-bottom: 0; }
.wu-compare-row > div { padding: 18px 20px; font-size: 14px; color: var(--wu-text2); }
.wu-compare-row.head > div { padding: 18px 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wu-text); background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--wu-border); }
.wu-compare-row.head > div.ol { color: var(--wu-acc1); background: rgba(var(--wu-acc1-rgb), 0.06); border-bottom: 1px solid rgba(var(--wu-acc1-rgb), 0.3); }
.wu-compare-row .crit { color: var(--wu-text); font-weight: 500; }
.wu-compare-row .ol   { background: rgba(var(--wu-acc1-rgb), 0.04); color: var(--wu-text); }
.wu-mark { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }
.wu-mark.yes { color: #5ddb8a; }
.wu-mark.no  { color: #ff7a7a; }
.wu-mark.mid { color: #e2b46a; }
.wu-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.wu-faq details { background: var(--wu-card); border: 1px solid var(--wu-border); border-radius: 14px; padding: 22px 26px; backdrop-filter: blur(10px); transition: border-color 0.2s; }
.wu-faq details[open] { border-color: rgba(var(--wu-acc1-rgb), 0.3); }
.wu-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-h); font-weight: 700; font-size: 16px; color: var(--wu-text); }
.wu-faq summary::-webkit-details-marker { display: none; }
.wu-faq summary::after { content: "+"; font-size: 22px; color: var(--wu-acc1); font-family: var(--font-b); font-weight: 300; transition: transform 0.2s; flex-shrink: 0; margin-left: 16px; }
.wu-faq details[open] summary::after { transform: rotate(45deg); }
.wu-faq details p { margin-top: 14px; font-size: 15px; line-height: 1.7; color: var(--wu-text2); }
.wu-cta { border-radius: 24px; background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(0,217,255,0.08) 100%); border: 1px solid rgba(124,58,237,0.3); padding: 68px 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; backdrop-filter: blur(14px); }
.wu-cta h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--wu-text); margin: 8px 0 14px; }
.wu-cta p  { font-size: 16px; color: var(--wu-text2); max-width: 50ch; line-height: 1.65; margin: 0; }
.wu-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.wu-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: var(--wu-pill); background: linear-gradient(135deg, var(--wu-acc1), var(--wu-acc2)); color: #060D1A; font-family: var(--font-h); font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s; }
.wu-btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0,217,255,0.35); }
.wu-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: var(--wu-pill); background: transparent; color: var(--wu-text2); border: 1px solid var(--wu-border-hi); font-family: var(--font-h); font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.wu-btn-ghost:hover { border-color: rgba(var(--wu-acc1-rgb), 0.45); color: var(--wu-text); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO PAGE  (pf- prefix)
   ════════════════════════════════════════════════════════════ */
.pf-hero { position: relative; padding: 148px 24px 88px; text-align: center; overflow: hidden; z-index: 1; }
.pf-hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(ellipse 900px 600px at 50% -10%, rgba(124,58,237,0.22), transparent 65%), radial-gradient(ellipse 500px 300px at 80% 60%, rgba(0,217,255,0.07), transparent 60%); }
.pf-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.pf-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.pf-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--cyan); opacity: 0.6; }
.pf-hero h1 { font-family: var(--font-h); font-size: clamp(36px, 7vw, 70px); font-weight: 800; line-height: 1.06; color: var(--white); margin: 0 0 22px; }
.pf-grad-text { background: var(--pf-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.pf-hero-sub { font-size: 18px; color: var(--gray); line-height: 1.72; max-width: 56ch; margin: 0 auto 36px; }
.pf-pills { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pf-pill { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; padding: 7px 14px; border-radius: 999px; background: var(--pf-card); border: 1px solid var(--pf-border); color: var(--gray); display: inline-flex; align-items: center; gap: 6px; }
.pf-pill .pip { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pf-pill.live { border-color: rgba(40,200,100,0.28); color: #5ddb8a; }
.pf-pill.live .pip { background: #5ddb8a; animation: pf-pulse-green 2s infinite; }
.pf-pill.build { border-color: rgba(0,217,255,0.28); color: var(--cyan); }
.pf-pill.build .pip { background: var(--cyan); }
.pf-pill.type { border-color: rgba(124,58,237,0.28); color: #c4a9ff; }
.pf-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.pf-sec { padding: 56px 0; }
.pf-sec-head { margin-bottom: 40px; }
.pf-sec-head h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin: 8px 0 12px; }
.pf-sec-head p { font-size: 16px; color: var(--gray); max-width: 60ch; line-height: 1.65; }
.pf-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px; background: var(--pf-card); border: 1px solid var(--pf-border); color: var(--gray); }
.pf-tag.live { background: rgba(40,200,100,0.1); border-color: rgba(40,200,100,0.28); color: #5ddb8a; }
.pf-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: var(--navy); font-family: var(--font-h); font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.pf-btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.pf-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; background: transparent; color: var(--gray); border: 1px solid var(--pf-border-hi); font-family: var(--font-h); font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.pf-btn-ghost:hover { border-color: rgba(var(--pf-acc1-rgb), 0.4); color: var(--white); transform: translateY(-1px); }
.pf-feat { display: grid; grid-template-columns: 1fr 1.25fr; min-height: 520px; border-radius: 24px; overflow: hidden; border: 1px solid var(--pf-border); background: var(--pf-card); backdrop-filter: blur(16px); margin-bottom: 24px; position: relative; z-index: 1; }
.pf-feat.rev { grid-template-columns: 1.25fr 1fr; }
.pf-feat-body { padding: 54px 48px; display: flex; flex-direction: column; justify-content: center; gap: 18px; border-right: 1px solid var(--pf-border); }
.pf-feat.rev .pf-feat-body { border-right: 0; border-left: 1px solid var(--pf-border); }
.pf-feat-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.pf-feat h2 { font-family: var(--font-h); font-size: clamp(26px, 2.8vw, 40px); font-weight: 800; color: var(--white); margin: 4px 0 0; line-height: 1.1; }
.pf-feat-desc { font-size: 16px; color: var(--gray); line-height: 1.68; max-width: 48ch; }
.pf-feat-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 4px 0; }
.pf-feat-stat .n { font-family: var(--font-h); font-size: 26px; font-weight: 800; background: linear-gradient(135deg, var(--cyan), var(--blue)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.pf-feat-stat .l { font-size: 11px; color: var(--gray); opacity: 0.7; margin-top: 2px; }
.pf-feat-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.pf-story-toggle .arr { display: inline-block; transition: transform 0.3s ease; }
.pf-story-toggle.open .arr { transform: rotate(90deg); }
.pf-story-panel { display: none; margin-top: 10px; padding: 18px 20px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid var(--pf-border); font-size: 14px; color: var(--gray); line-height: 1.72; }
.pf-story-panel.open { display: block; animation: pf-slide 0.28s ease; }
.pf-feat-visual { position: relative; overflow: hidden; background: radial-gradient(420px 300px at 70% 20%, rgba(0,217,255,0.12), transparent 65%), linear-gradient(160deg, #0f1a30 0%, #0a1124 100%); }
.pf-feat.rev .pf-feat-visual { background: radial-gradient(420px 300px at 30% 80%, rgba(124,58,237,0.18), transparent 65%), linear-gradient(160deg, #0f1a30 0%, #0a1124 100%); }
.pf-mock { position: absolute; inset: 44px 0 -44px 64px; border-radius: 14px; overflow: hidden; background: var(--navy2); box-shadow: 0 48px 120px -32px rgba(0,0,0,0.85), 0 0 0 1px var(--pf-border-hi); transform: perspective(2000px) rotateX(4deg) rotateY(-14deg) rotateZ(1deg); transform-origin: top left; transition: transform 0.65s cubic-bezier(0.18, 0.72, 0.18, 1); }
.pf-feat:hover .pf-mock { transform: perspective(2000px) rotateX(1deg) rotateY(-6deg) rotateZ(0); }
.pf-mock.rev { inset: 44px 64px -44px 0; transform: perspective(2000px) rotateX(4deg) rotateY(14deg) rotateZ(-1deg); transform-origin: top right; }
.pf-feat.rev:hover .pf-mock.rev { transform: perspective(2000px) rotateX(1deg) rotateY(6deg) rotateZ(0); }
.pf-mc { height: 100%; display: flex; flex-direction: column; }
.pf-chrome { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: rgba(6,13,26,0.92); border-bottom: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.pf-chrome .dots { display: flex; gap: 6px; }
.pf-chrome .dots span { width: 10px; height: 10px; border-radius: 50%; }
.pf-chrome .dots span:nth-child(1) { background: #ff5f57; }
.pf-chrome .dots span:nth-child(2) { background: #febc2e; }
.pf-chrome .dots span:nth-child(3) { background: #28c840; }
.pf-url-bar { font-family: var(--font-mono); font-size: 11px; color: var(--gray); background: rgba(255,255,255,0.04); padding: 5px 12px; border-radius: 6px; flex: 1; opacity: 0.7; }
.pf-screen { flex: 1; padding: 26px; overflow: hidden; }
.pf-cta { border-radius: 24px; background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(0,217,255,0.08) 100%); border: 1px solid rgba(124,58,237,0.3); padding: 68px 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; backdrop-filter: blur(14px); position: relative; z-index: 1; }
.pf-cta h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin: 8px 0 14px; }
.pf-cta p { font-size: 16px; color: var(--gray); max-width: 52ch; line-height: 1.65; margin: 0; }
.pf-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker        { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ring-spin     { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes badge-float   { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes orb-drift     { 0% { transform: translate(0,0); } 100% { transform: translate(40px,30px); } }
@keyframes pulse-ring    { 0% { box-shadow: 0 0 0 0 rgba(0,217,255,0.5); } 70% { box-shadow: 0 0 0 10px rgba(0,217,255,0); } 100% { box-shadow: 0 0 0 0 rgba(0,217,255,0); } }
@keyframes pulse-green   { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); } 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
@keyframes pf-shimmer    { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes pf-slide      { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes pf-pulse-green { 0%,100% { box-shadow: 0 0 4px rgba(93,219,138,0.5); } 50% { box-shadow: 0 0 10px rgba(93,219,138,0.9); } }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .founder-inner { grid-template-columns: 1fr; gap: 4rem; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .wu-reasons { grid-template-columns: repeat(2, 1fr); }
  .wu-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-page { grid-template-columns: 1fr; gap: 3rem; }
  .sv-bespoke { grid-template-columns: 1fr; gap: 3rem; }
  .sv-cta { padding: 44px 32px; flex-direction: column; align-items: flex-start; }
  .pf-feat, .pf-feat.rev { grid-template-columns: 1fr !important; min-height: auto; }
  .pf-feat-body { padding: 36px 28px; border-right: 0 !important; border-left: 0 !important; border-bottom: 1px solid var(--pf-border); }
  .pf-feat-visual { min-height: 300px; }
  .pf-mock { inset: 28px 0 -28px 28px !important; transform-origin: top left !important; transform: perspective(2000px) rotateX(3deg) rotateY(-10deg) rotateZ(1deg) !important; }
  .pf-cta { padding: 44px 32px; flex-direction: column; align-items: flex-start; }
  .wu-cta { padding: 44px 32px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 960px) {
  .wu-compare-row { grid-template-columns: 1fr; }
  .wu-compare-row > div { padding: 12px 16px; border-bottom: 1px solid var(--wu-border); }
  .wu-compare-row > div:last-child { border-bottom: 0; }
  .wu-compare-row.head { display: none; }
  .wu-compare-row > div::before { display: block; content: attr(data-label); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wu-text3); margin-bottom: 4px; font-family: var(--font-mono); }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; height: 63px; background: rgba(6,13,26,0.98) !important; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .navbar.scrolled { padding: 1rem 1.5rem; height: 63px; background: #060D1A !important; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 63px; left: 0; right: 0; background: rgba(6,13,26,0.97); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(0,217,255,0.1); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.85rem; flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero-title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .whatsapp-float { bottom: 16px; right: 16px; padding: 0.65rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float i { font-size: 1.4rem; margin: 0; }
  .hero-signals { gap: 0.5rem; }
  .services-section, .whyus-section, .testimonials-section, .cta-section { padding: 5rem 1.5rem; }
  .how-section { padding: 5rem 1.5rem; }
  .how-grid { grid-template-columns: 1fr; gap: 1rem; }
  .portfolio-section { padding: 4rem 1.5rem; }
  .portfolio-card.pf-live:hover .pf-preview-wrap { height: 160px; }
  .pf-card-body { padding: 1.25rem 1.5rem; }
  .whyus-inner { flex-direction: column; gap: 3rem; }
  .founder-section { padding: 5rem 1.5rem; }
  .founder-visual { order: -1; }
  .founder-avatar-wrap { width: 200px; height: 200px; }
  .founder-initials { font-size: 3.5rem; }
  .fb1, .fb2, .fb3, .fb4 { display: none; }
  .stats-strip { padding: 2.5rem 1rem; }
  .stats-strip-inner { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .sstat-divider { display: none; }
  .footer { padding: 2rem 1.5rem 1.25rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-cols { flex-wrap: wrap; gap: 1.25rem; justify-content: flex-start; }
  .footer-logo { max-width: 90px; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .services-page-grid { padding: 2rem 1.5rem 5rem; }
  .contact-page { padding: 8rem 1.5rem 5rem; }
  .contact-form-wrap { padding: 2rem 1.25rem; }
  .legal-page { padding: 1.5rem 1.5rem 5rem; }
  .runway-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .runway-inner .btn-primary { margin-left: 0; }
  .wu-hero { padding: 120px 20px 72px; }
  .wu-hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .wu-reasons { grid-template-columns: 1fr; }
  .wu-stats { grid-template-columns: 1fr 1fr; }
  .wu-wrap { padding: 0 20px; }
  .wu-sec { padding: 48px 0; }
  .wu-cta { padding: 36px 24px; }
  .sv-hero { padding: 120px 20px 72px; }
  .sv-hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .sv-wrap { padding: 0 20px; }
  .sv-sec { padding: 48px 0; }
  .sv-cta { padding: 36px 24px; }
  .pf-hero { padding: 120px 20px 72px; }
  .pf-feat-body { padding: 28px 20px; }
  .pf-feat-stats { grid-template-columns: 1fr 1fr; }
  .pf-wrap { padding: 0 20px; }
  .pf-sec { padding: 40px 0; }
  .pf-cta { padding: 36px 24px; }
  .orb-purple { width: 300px; height: 300px; }
  .orb-cyan { width: 250px; height: 250px; }
  .orb-gold { display: none; }
  .cta-inner { padding: 3rem 1.5rem; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .footer-logo { max-width: 70px; }
  .pf-feat-stats { grid-template-columns: 1fr 1fr; }
}

/* ── How We Work — merged narrative + steps section ── */
.how-we-work-section {
  position: relative;
  z-index: 1;
  padding: 7rem 3rem;
  background: linear-gradient(180deg, transparent, rgba(75,46,131,0.15), rgba(30,5,51,0.25), transparent);
}

/* Spaced second paragraph */
.section-sub--spaced { margin-top: 1rem; }

/* Narrative items container */
.narrative-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Right column layout */
.whyus-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Steps sub-heading */
.how-subheading {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* Vertical steps list */
.how-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-step-inline {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(0,217,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}

.how-step-inline:hover {
  border-color: rgba(0,217,255,0.3);
  transform: translateX(5px);
}

.how-step-inline .how-num {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(0,217,255,0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.how-step-inline h4 {
  font-family: var(--font-h);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.how-step-inline p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .how-we-work-section { padding: 5rem 1.5rem; }
  .how-step-inline:hover { transform: translateY(-3px); }
}