/* ══════════════════════════════════════════════════════════════════
   Green Edge Technologies — Mobile App Development Service Page
   mobile-app-development.css
══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS (identical across all pages) ──────────────────── */
:root {
  --bg:#0A0F1C; --bg-2:#121826; --bg-3:#0d1220;
  --surface:#1A2235; --surface-2:#202c42;
  --border:rgba(255,255,255,0.07); --border-g:rgba(0,200,83,0.22);
  --text:#FFFFFF; --text-muted:#B0B8C5; --text-faint:#6F7A8A;
  --green:#00C853; --green-dark:#006837;
  --green-glow:rgba(0,200,83,0.30); --green-subtle:rgba(0,200,83,0.08);
  --ai-blue:#00A8FF; --tech-purple:#6C63FF;
  --orange:#FF6B00; --neon:#39FF14;
  --grad-text:linear-gradient(120deg,#00C853 0%,#00A8FF 50%,#6C63FF 100%);
  --grad-btn:linear-gradient(135deg,#00C853,#006837);
  --font-d:'Manrope',sans-serif; --font-b:'Inter',sans-serif;
  --radius:14px; --radius-lg:22px;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --nav-h:72px; --shadow:0 4px 30px rgba(0,0,0,.5)
}
body.light {
  --bg:#F5F7FA; --bg-2:#EBEEF3; --bg-3:#E0E5EE;
  --surface:#FFFFFF; --surface-2:#F0F3F8;
  --border:rgba(0,0,0,0.08); --border-g:rgba(0,200,83,0.30);
  --text:#0A0F1C; --text-muted:#4A5568; --text-faint:#9AA5B4;
  --green-subtle:rgba(0,200,83,0.10); --shadow:0 4px 30px rgba(0,0,0,.12)
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; overflow-x:hidden }
body { background:var(--bg); color:var(--text); font-family:var(--font-b); font-size:16px; line-height:1.7; cursor:default; transition:background .4s,color .4s }
a { color:inherit; text-decoration:none }
ul { list-style:none }
button { border:none; background:none; font-family:inherit; cursor:pointer }
input,select,textarea { font-family:inherit; font-size:inherit; outline:none }

/* ── NOISE OVERLAY ───────────────────────────────────────────────── */

/* ── CUSTOM CURSOR ───────────────────────────────────────────────── */

/* ── CONTAINER ───────────────────────────────────────────────────── */
.container { max-width: 1240px; width: 100%; margin:0 auto; padding:0 28px }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:9px; padding:12px 26px; border-radius:9px; font-family:var(--font-d); font-weight:700; font-size:.9rem; letter-spacing:.01em; transition:all .3s var(--ease); position:relative; overflow:hidden; cursor:pointer }
.btn::after { content:''; position:absolute; inset:0; opacity:0; background:rgba(255,255,255,.1); border-radius:inherit; transition:opacity .25s }
.btn:hover::after { opacity:1 }
.btn-primary { background:var(--grad-btn); color:#fff; box-shadow:0 4px 22px var(--green-glow) }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 40px var(--green-glow),0 0 0 1px rgba(0,200,83,.35) }
.btn-ghost { border:1.5px solid var(--green); color:var(--green); background:var(--green-subtle); backdrop-filter:blur(8px) }
.btn-ghost:hover { background:rgba(0,200,83,.16); transform:translateY(-2px); box-shadow:0 6px 26px var(--green-glow) }
.btn-lg { padding:15px 34px; font-size:1rem; border-radius:11px }
.btn-xl { padding:17px 42px; font-size:1.05rem; border-radius:12px }
.btn-sm { padding:9px 18px; font-size:.82rem }
.btn-pulse { animation:btnPulse 3s ease-in-out infinite }
.btn-pulse:hover { animation:none }
@keyframes btnPulse { 0%,100% { box-shadow:0 4px 22px var(--green-glow) } 50% { box-shadow:0 4px 44px rgba(0,200,83,.6),0 0 0 7px rgba(0,200,83,.07) } }

/* ── SECTIONS ────────────────────────────────────────────────────── */
.section { padding:110px 0; position:relative }
.section-tag { display:inline-block; font-family:var(--font-d); font-size:.7rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--green); background:var(--green-subtle); border:1px solid var(--border-g); padding:4px 14px; border-radius:100px; margin-bottom:1.25rem }
.section-header { text-align:center; max-width: 700px; width: 100%; margin:0 auto 5rem }
.section-title { font-family:var(--font-d); font-size:clamp(1.875rem, 3.75vw, 3.0469rem); font-weight:800; line-height:1.12; letter-spacing:-.03em; margin-bottom:1.1rem }
.section-sub { font-size:1.05rem; color:var(--text-muted); max-width: 560px; width: 100%; margin:0 auto; line-height:1.75 }
.gradient-text { background:var(--grad-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal-up { opacity:0; transform:translateY(40px); animation:revealUp .85s var(--ease) forwards; animation-delay:var(--d,0s) }
@keyframes revealUp { to { opacity:1; transform:translateY(0) } }
.reveal-section,.reveal-card { opacity:0; transform:translateY(36px); transition:opacity .7s var(--ease),transform .7s var(--ease) }
.reveal-card { transition-delay:calc(var(--i,0)*.08s) }
.reveal-section.is-visible,.reveal-card.is-visible { opacity:1; transform:translateY(0) }

/* ── PROGRESS RING ───────────────────────────────────────────────── */
.progress-ring-wrap { position:fixed; bottom:2rem; right:2rem; z-index:1200; width:52px; height:52px; border-radius:50%; background:var(--surface); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:0; visibility:hidden; transform:translateY(14px) scale(.9); transition:opacity .35s,visibility .35s,transform .35s var(--ease); box-shadow:0 4px 24px rgba(0,0,0,.4) }
.progress-ring-wrap.visible { opacity:1; visibility:visible; transform:translateY(0) scale(1) }
.progress-ring-wrap:hover { transform:translateY(-3px) scale(1.06) }
.progress-ring { position:absolute; inset:0; transform:rotate(-90deg) }
.progress-ring__track { fill:none; stroke:rgba(255,255,255,.08); stroke-width:2.5 }
.progress-ring__fill { fill:none; stroke:var(--green); stroke-width:2.5; stroke-linecap:round; stroke-dasharray:125.66; stroke-dashoffset:125.66; transition:stroke-dashoffset .1s linear }
.progress-ring__icon { position:relative; z-index:1; color:var(--green) }

/* ══════════════════════════════════════════════════════════════════
   NAV — pixel-perfect match across all pages
══════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   1 · HERO
══════════════════════════════════════════════════════════════════ */
.svc-hero { min-height:92vh; display:flex; align-items:center; position:relative; overflow:hidden; padding-top:var(--nav-h); background:linear-gradient(160deg,var(--bg) 0%,var(--bg-2) 100%) }
.hero-canvas { position:absolute; inset:0; z-index:0; width:100%; height:100%; display:block }
.hero-glow { position:absolute; border-radius:50%; filter:blur(110px); pointer-events:none; animation:glowFloat 9s ease-in-out infinite }
.hero-glow-1 { max-width: 800px; width: 100%; height:800px; background:radial-gradient(circle,rgba(108,99,255,.07) 0%,transparent 70%); top:-220px; right:-140px }
.hero-glow-2 { max-width: 500px; width: 100%; height:500px; background:radial-gradient(circle,rgba(0,200,83,.07) 0%,transparent 70%); bottom:-80px; left:-80px; animation-delay:-4s }
@keyframes glowFloat { 0%,100% { transform:translate(0,0) scale(1) } 33% { transform:translate(28px,-20px) scale(1.05) } 66% { transform:translate(-18px,14px) scale(.97) } }
.svc-hero .container { position:relative; z-index:1; padding-top:4rem; padding-bottom:5rem }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center }

/* breadcrumb / badge */
.hero-breadcrumb { display:inline-flex; align-items:center; gap:7px; font-family:var(--font-d); font-size:.78rem; font-weight:600; color:var(--text-faint); margin-bottom:1.25rem }
.hero-breadcrumb a { color:var(--text-faint); transition:color .2s }
.hero-breadcrumb a:hover { color:var(--green) }
.hero-breadcrumb svg { opacity:.5 }
.breadcrumb-active { color:var(--ai-blue) }
.hero-service-badge { display:inline-flex; align-items:center; gap:8px; font-size:.8rem; font-weight:600; color:var(--tech-purple); background:rgba(108,99,255,.08); border:1px solid rgba(108,99,255,.25); padding:6px 16px; border-radius:100px; margin-bottom:1.5rem }
.badge-dot { width:7px; height:7px; border-radius:50%; background:var(--tech-purple); box-shadow:0 0 10px var(--tech-purple); animation:badgePulse 2s ease-in-out infinite; flex-shrink:0 }
@keyframes badgePulse { 0%,100% { box-shadow:0 0 4px var(--tech-purple) } 50% { box-shadow:0 0 18px var(--tech-purple),0 0 32px rgba(108,99,255,.3) } }

.hero-title { font-family:var(--font-d); font-size:clamp(2.625rem, 5.1562vw, 4.2188rem); font-weight:800; line-height:1.07; letter-spacing:-.035em; margin-bottom:1.25rem }
.hero-desc { font-size:1.05rem; color:var(--text-muted); line-height:1.78; margin-bottom:1.5rem; max-width:520px }
.hero-trust-row { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:2rem }
.hero-trust-row span { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-d); font-size:.82rem; font-weight:600; color:var(--text-muted) }
.hero-ctas { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:2.5rem }
.hero-stats { display:flex; align-items:center; gap:1.5rem; background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:1rem 1.5rem; width:fit-content }
.hs-item { display:flex; flex-direction:column; align-items:center; gap:2px }
.hs-n { font-family:var(--font-d); font-size:1.35rem; font-weight:800; color:var(--ai-blue) }
.hs-l { font-family:var(--font-d); font-size:.72rem; font-weight:600; color:var(--text-faint); letter-spacing:.06em; text-transform:uppercase }
.hs-sep { width:1px; height:36px; background:var(--border) }

/* ── PHONE MOCKUP ─────────────────────────────────────────────── */
.hero-visual { position:relative }
.phone-cluster { position:relative; display:flex; justify-content:center; align-items:flex-end; padding-bottom:2.5rem }
.phone { position:relative }
.phone--main { z-index:2 }
.phone--mini { position:absolute; right:-30px; top:20%; z-index:3; max-width: 115px; width: 100%; transform:rotate(6deg) }
.phone-shell { background:var(--surface); border:1.5px solid rgba(108,99,255,.3); border-radius:32px; overflow:hidden; position:relative; box-shadow:0 40px 100px rgba(0,0,0,.7),0 0 0 1px rgba(108,99,255,.08),inset 0 1px 0 rgba(255,255,255,.04) }
.phone--main .phone-shell { max-width: 240px; width: 100%; height:480px }
.phone--mini .phone-shell { max-width: 115px; width: 100%; height:230px; border-radius:22px; border-color:rgba(0,200,83,.25); box-shadow:0 20px 60px rgba(0,0,0,.6) }
.phone-notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:80px; height:20px; background:var(--bg); border-radius:0 0 18px 18px; z-index:10 }
.phone-notch--small { width:50px; height:14px }
.phone-screen { position:absolute; inset:0; background:var(--bg-3); overflow:hidden }
.phone-home-bar { position:absolute; bottom:8px; left:50%; transform:translateX(-50%); width:80px; height:4px; background:rgba(255,255,255,.25); border-radius:2px }

/* App screen slides */
.app-screen { width:100%; height:100%; position:relative; overflow:hidden }
.app-slide { position:absolute; inset:0; padding:.6rem .6rem .4rem; opacity:0; transform:translateX(30px); transition:opacity .5s var(--ease),transform .5s var(--ease); overflow:hidden; font-family:var(--font-d) }
.app-slide--active { opacity:1; transform:translateX(0) }
.as-statusbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:.4rem; padding:.1rem 0 }
.as-time { font-size:.55rem; font-weight:800; color:var(--text) }
.as-icons { display:flex; align-items:center; gap:.25rem; color:var(--text); opacity:.7 }
.as-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.6rem }
.as-greeting { font-size:.6rem; font-weight:700; color:var(--text); line-height:1.4 }
.as-avatar { width:24px; height:24px; border-radius:50%; background:linear-gradient(135deg,var(--tech-purple),#00A8FF); flex-shrink:0 }
.as-kpi-row { display:flex; gap:.35rem; margin-bottom:.55rem }
.as-kpi { flex:1; background:var(--surface); border:1px solid var(--border); border-radius:8px; padding:.35rem .3rem; text-align:center }
.ask-n { display:block; font-size:.62rem; font-weight:800; line-height:1 }
.ask-l { display:block; font-size:.45rem; color:var(--text-faint); font-weight:600; margin-top:1px }
.as-chart-label { font-size:.52rem; font-weight:700; color:var(--text-faint); margin-bottom:.3rem; letter-spacing:.04em; text-transform:uppercase }
.as-chart { display:flex; align-items:flex-end; gap:3px; height:44px; margin-bottom:.5rem }
.as-bar { flex:1; background:rgba(108,99,255,.25); border-radius:2px 2px 0 0; height:var(--h); transition:height .8s var(--ease) }
.as-bar--active { background:var(--tech-purple); box-shadow:0 0 8px rgba(108,99,255,.5) }
.as-activity-label { font-size:.5rem; font-weight:700; color:var(--text-faint); margin-bottom:.25rem; letter-spacing:.04em; text-transform:uppercase }
.as-activity-list { display:flex; flex-direction:column; gap:.22rem }
.as-activity-item { display:flex; align-items:center; gap:.4rem; font-size:.52rem; color:var(--text-muted); font-weight:600 }
.as-act-dot { width:5px; height:5px; border-radius:50%; flex-shrink:0 }
/* slide 2 */
.as-nav-bar { display:flex; justify-content:space-between; align-items:center; margin-bottom:.4rem }
.as-nav-back,.as-nav-action { font-size:.7rem; color:var(--tech-purple); font-weight:700; cursor:pointer }
.as-nav-title { font-size:.65rem; font-weight:800; color:var(--text) }
.as-search { display:flex; align-items:center; gap:.4rem; background:var(--surface); border:1px solid var(--border); border-radius:8px; padding:.3rem .5rem; font-size:.55rem; color:var(--text-faint); margin-bottom:.5rem }
.as-feed { display:flex; flex-direction:column; gap:.4rem }
.as-feed-card { display:flex; gap:.4rem; background:var(--surface); border:1px solid var(--border); border-radius:8px; overflow:hidden }
.as-fc-img { width:36px; height:36px; flex-shrink:0 }
.as-fc-body { padding:.35rem .4rem .35rem 0; flex:1 }
.as-fc-title { height:5px; background:var(--text-muted); border-radius:3px; width:80%; margin-bottom:4px; opacity:.5 }
.as-fc-sub { height:4px; background:var(--border); border-radius:3px; width:55%; margin-bottom:4px }
.as-fc-tag { font-size:.46rem; font-weight:800; letter-spacing:.06em }
/* slide 3 */
.as-chat { display:flex; flex-direction:column; gap:.35rem; padding:.2rem 0 .3rem; flex:1; overflow:hidden }
.as-chat-msg { display:flex }
.as-chat-msg--recv { justify-content:flex-start }
.as-chat-msg--sent { justify-content:flex-end }
.as-chat-bubble { font-size:.52rem; font-weight:600; line-height:1.4; padding:.35rem .55rem; border-radius:10px; max-width:80% }
.as-chat-msg--recv .as-chat-bubble { background:var(--surface); color:var(--text-muted); border-radius:10px 10px 10px 2px }
.as-chat-msg--sent .as-chat-bubble { background:var(--tech-purple); color:#fff; border-radius:10px 10px 2px 10px }
.as-typing { display:flex; gap:3px; align-items:center; padding:.2rem .55rem }
.as-typing span { width:5px; height:5px; border-radius:50%; background:var(--text-faint); animation:typingBounce 1.2s ease-in-out infinite }
.as-typing span:nth-child(2) { animation-delay:.2s }
.as-typing span:nth-child(3) { animation-delay:.4s }
@keyframes typingBounce { 0%,60%,100% { transform:translateY(0) } 30% { transform:translateY(-4px) } }
.as-input-row { display:flex; gap:.3rem; align-items:center; padding:.3rem 0 0 }
.as-input-field { flex:1; background:var(--surface); border:1px solid var(--border); border-radius:20px; padding:.25rem .55rem; font-size:.52rem; color:var(--text-faint) }
.as-send-btn { width:22px; height:22px; border-radius:50%; background:var(--tech-purple); flex-shrink:0 }
/* mini screen */
.mini-screen { width:100%; height:100%; overflow:hidden }
.ms-header { height:40%; width:100% }
.ms-content { padding:.35rem .4rem }
.ms-avatar { width:24px; height:24px; border-radius:50%; background:var(--tech-purple); margin-bottom:.25rem }
.ms-name { height:5px; background:var(--text-muted); border-radius:3px; width:70%; margin-bottom:.2rem; opacity:.6 }
.ms-stars { font-size:.5rem; color:#FFD600; margin-bottom:.25rem }
.ms-row { height:4px; background:var(--border); border-radius:3px; margin-bottom:.2rem }
.ms-row--short { width:65% }
/* slide dots */
.slide-dots { position:absolute; bottom:-24px; left:50%; transform:translateX(-50%); display:flex; gap:5px }
.sd-dot { width:6px; height:6px; border-radius:50%; background:var(--border); cursor:pointer; transition:background .3s,width .3s; display:block }
.sd-dot--active { background:var(--tech-purple); width:18px; border-radius:3px }

/* floating annotations */
.hero-ann { position:absolute; display:flex; align-items:center; gap:6px; font-family:var(--font-d); font-size:.72rem; font-weight:700; padding:6px 12px; border-radius:100px; box-shadow:0 8px 32px rgba(0,0,0,.4); backdrop-filter:blur(8px) }
.hero-ann-a { bottom:-16px; left:-22px; background:rgba(108,99,255,.12); border:1px solid rgba(108,99,255,.3); color:#6C63FF; animation:floatA 3.5s ease-in-out infinite }
.hero-ann-b { top:-10px; right:-22px; background:rgba(0,200,83,.12); border:1px solid rgba(0,200,83,.3); color:#00C853; animation:floatB 4s ease-in-out infinite }
@keyframes floatA { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-7px) } }
@keyframes floatB { 0%,100% { transform:translateY(0) } 50% { transform:translateY(7px) } }

.hero-scroll-cue { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint) }
.scroll-line { width:1px; height:44px; background:linear-gradient(to bottom,var(--tech-purple),transparent); animation:scrollPulse 1.7s ease-in-out infinite }
@keyframes scrollPulse { 0% { transform:scaleY(1); transform-origin:top } 50% { transform:scaleY(0); transform-origin:top } 50.1% { transform-origin:bottom } 100% { transform:scaleY(1); transform-origin:bottom } }

/* ══════════════════════════════════════════════════════════════════
   2 · TYPES — "Mobile Apps We Specialise In"
══════════════════════════════════════════════════════════════════ */
.types-section { background:var(--bg-2) }
.types-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem
}
.type-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.85rem 1.6rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  transition:border-color .3s,transform .4s var(--ease),box-shadow .4s;
  position:relative;
  overflow:hidden
}
.type-card::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at top left,var(--ci,rgba(0,200,83,.05)) 0%,transparent 65%);
  opacity:0;
  transition:opacity .4s
}
.type-card:hover { transform:translateY(-8px); border-color:var(--ct,var(--green)); box-shadow:0 28px 60px rgba(0,0,0,.4) }
.type-card:hover::before { opacity:1 }

.tc-icon {
  width:52px; height:52px;
  border-radius:14px;
  background:var(--ci,var(--green-subtle));
  color:var(--ct,var(--green));
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  border:1px solid color-mix(in srgb, var(--ct,var(--green)) 25%, transparent);
  transition:transform .35s var(--ease)
}
.type-card:hover .tc-icon { transform:scale(1.1) rotate(-6deg) }

.type-card h3 {
  font-family:var(--font-d);
  font-size:1.02rem;
  font-weight:800;
  line-height:1.3;
  color:var(--text)
}
.type-card p {
  font-size:.87rem;
  color:var(--text-muted);
  line-height:1.7;
  flex:1
}
.tc-list {
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:0
}
.tc-list li {
  font-size:.8rem;
  color:var(--text-muted);
  padding-left:1.1rem;
  position:relative;
  line-height:1.5
}
.tc-list li::before {
  content:'';
  position:absolute;
  left:0;
  top:.45em;
  width:5px; height:5px;
  border-radius:50%;
  background:var(--ct,var(--green));
  opacity:.75
}
.tc-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding-top:1rem;
  border-top:1px solid var(--border);
  margin-top:auto
}
.tc-time {
  display:flex;
  align-items:center;
  gap:5px;
  font-family:var(--font-d);
  font-size:.75rem;
  font-weight:700;
  color:var(--text-faint)
}
.tc-time svg { color:var(--text-faint); flex-shrink:0 }
.tc-cta {
  font-family:var(--font-d);
  font-size:.78rem;
  font-weight:800;
  color:var(--ct,var(--green));
  transition:opacity .2s,letter-spacing .2s
}
.tc-cta:hover { opacity:.75; letter-spacing:.02em }

/* ══════════════════════════════════════════════════════════════════
   3 · PROCESS — "Mobile App Development Process"
══════════════════════════════════════════════════════════════════ */
.process-section { background:var(--bg); position:relative; overflow:hidden }
.process-section::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(0,200,83,.05) 0%,transparent 65%);
  pointer-events:none
}
.process-track {
  display:flex;
  align-items:flex-start;
  gap:0;
  position:relative;
  z-index:1
}
.process-line {
  position:absolute;
  top:44px;
  left:calc(10% + 22px);
  right:calc(10% + 22px);
  height:2px;
  background:var(--border);
  z-index:0
}
.process-line-fill {
  height:100%;
  width:50%;
  background:linear-gradient(90deg,var(--green) 0%,rgba(0,200,83,.3) 100%);
  border-radius:2px;
  transition:width .6s var(--ease)
}
.proc-step {
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:.85rem;
  padding:0 .75rem;
  position:relative;
  z-index:1
}
.proc-num {
  width:44px; height:44px;
  border-radius:50%;
  background:var(--surface);
  border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-d);
  font-size:.78rem;
  font-weight:900;
  color:var(--text-faint);
  letter-spacing:.05em;
  flex-shrink:0;
  transition:border-color .3s,color .3s,background .3s,box-shadow .3s
}
.proc-num--active {
  background:var(--green-subtle);
  border-color:var(--green);
  color:var(--green);
  box-shadow:0 0 0 4px rgba(0,200,83,.1)
}
.proc-step:hover .proc-num {
  border-color:var(--green);
  color:var(--green);
  background:var(--green-subtle)
}
.proc-icon {
  width:54px; height:54px;
  border-radius:15px;
  background:var(--surface);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
  transition:border-color .3s,color .3s,transform .35s var(--ease),background .3s
}
.proc-icon--active {
  background:var(--green-subtle);
  border-color:var(--border-g);
  color:var(--green)
}
.proc-step:hover .proc-icon {
  border-color:var(--border-g);
  color:var(--green);
  background:var(--green-subtle);
  transform:translateY(-4px)
}
.proc-step h3 {
  font-family:var(--font-d);
  font-size:.95rem;
  font-weight:800;
  color:var(--text);
  line-height:1.3
}
.proc-step p {
  font-size:.82rem;
  color:var(--text-muted);
  line-height:1.68
}
.proc-tags {
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  justify-content:center
}
.proc-tags span {
  font-family:var(--font-d);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.06em;
  color:var(--green);
  background:var(--green-subtle);
  border:1px solid var(--border-g);
  border-radius:100px;
  padding:2px 10px
}

/* ══════════════════════════════════════════════════════════════════
   4 · TECH STACK
══════════════════════════════════════════════════════════════════ */
.tech-section { background:var(--bg-2) }
.tech-groups {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.25rem
}
.tech-group {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.5rem 1.4rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  transition:border-color .3s,transform .4s var(--ease)
}
.tech-group:hover { transform:translateY(-5px); border-color:var(--border-g) }
.tg-label {
  display:flex;
  align-items:center;
  gap:7px;
  font-family:var(--font-d);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-faint);
  padding-bottom:.75rem;
  border-bottom:1px solid var(--border)
}
.tg-label svg { flex-shrink:0; color:var(--green) }
.tg-items {
  display:flex;
  flex-direction:column;
  gap:.5rem
}
.tech-pill {
  display:flex;
  align-items:center;
  gap:.65rem;
  padding:.55rem .75rem;
  border-radius:9px;
  background:var(--bg-2);
  border:1px solid var(--border);
  cursor:default;
  transition:background .2s,border-color .2s;
  position:relative
}
.tech-pill:hover { background:var(--green-subtle); border-color:var(--border-g) }
.tp-icon {
  width:28px; height:28px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  border-radius:7px;
  background:rgba(255,255,255,.05)
}
.tech-pill span {
  font-family:var(--font-d);
  font-size:.82rem;
  font-weight:700;
  color:var(--text);
  flex:1
}
.tool-tooltip {
  display:none;
  position:absolute;
  bottom:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  background:var(--surface);
  border:1px solid var(--border-g);
  border-radius:8px;
  padding:6px 12px;
  font-size:.75rem;
  color:var(--text-muted);
  white-space:nowrap;
  z-index:100;
  pointer-events:none;
  box-shadow:0 8px 24px rgba(0,0,0,.4)
}
.tech-pill:hover .tool-tooltip { display:block }

/* ══════════════════════════════════════════════════════════════════
   6 · PROJECTS
══════════════════════════════════════════════════════════════════ */
.proj-section { background:var(--bg-2) }
.proj-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
.proj-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:border-color .3s,transform .4s var(--ease),box-shadow .4s }
.proj-card:hover { transform:translateY(-8px); border-color:rgba(0,168,255,.3); box-shadow:0 30px 70px rgba(0,0,0,.45) }
.proj-image { height:220px; position:relative; overflow:hidden }
.proj-visual { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; padding:1.25rem }
/* mini browser in project card */
.pv-browser { background:var(--surface); border:1px solid var(--border); border-radius:8px; overflow:hidden; width:100% }
.pvb-bar { display:flex; gap:4px; padding:.35rem .5rem; background:var(--surface-2); border-bottom:1px solid var(--border) }
.pvb-bar span { width:8px; height:8px; border-radius:50%; background:var(--border) }
.pvb-bar span:nth-child(1) { background:#ff5f57 }
.pvb-bar span:nth-child(2) { background:#febc2e }
.pvb-content { padding:.5rem }
.pvb-nav { height:8px; background:var(--surface-2); border-radius:4px; margin-bottom:.4rem }
.pvb-hero { background:var(--bg-3); border-radius:4px; padding:.5rem; margin-bottom:.4rem }
.pvb-h1 { height:7px; background:rgba(255,255,255,.2); border-radius:3px; width:70%; margin-bottom:3px }
.pvb-h2 { height:5px; background:var(--border); border-radius:3px; width:50% }
.pvb-cards { display:flex; gap:4px }
.pvb-cards span { flex:1; height:16px; background:var(--surface); border:1px solid var(--border); border-radius:4px }
/* ecomm visual */
.pv-ecomm { width:100% }
.pve-header { height:12px; background:rgba(108,99,255,.3); border-radius:4px; margin-bottom:.5rem }
.pve-grid { display:grid; grid-template-columns:1fr 1fr; gap:.5rem }
.pve-item { background:var(--surface); border:1px solid var(--border); border-radius:6px; padding:.5rem }
.pve-img { height:32px; background:rgba(108,99,255,.2); border-radius:4px; margin-bottom:.35rem }
.pve-price { font-family:var(--font-d); font-size:.75rem; font-weight:800 }
/* saas visual */
.pv-saas { display:flex; gap:.5rem; width:100% }
.pvs-sidebar { width:28px; background:var(--surface); border:1px solid var(--border); border-radius:5px; padding:.4rem .3rem; display:flex; flex-direction:column; gap:.3rem; flex-shrink:0 }
.pvs-sidebar span { height:5px; background:var(--border); border-radius:3px }
.pvs-main { flex:1 }
.pvs-kpi { background:var(--surface); border:1px solid var(--border); border-radius:5px; padding:.4rem .5rem; margin-bottom:.4rem; font-family:var(--font-d); font-size:.8rem; font-weight:800 }
.pvs-chart { display:flex; align-items:flex-end; gap:4px; height:40px; background:var(--surface); border:1px solid var(--border); border-radius:5px; padding:.4rem }
.pvsc-bar { flex:1; background:rgba(0,168,255,.25); border-radius:2px 2px 0 0 }
.pvsc-bar--a { background:var(--ai-blue) }
/* overlay + score */
.proj-overlay { position:absolute; inset:0; background:rgba(0,0,0,.65); backdrop-filter:blur(3px); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .35s var(--ease) }
.proj-card:hover .proj-overlay { opacity:1 }
.proj-score { position:absolute; top:.75rem; right:.75rem; background:rgba(0,0,0,.7); border:1px solid var(--border); border-radius:8px; padding:3px 10px; font-family:var(--font-d); font-size:.72rem; font-weight:800; color:var(--green); display:flex; align-items:center; gap:4px; backdrop-filter:blur(4px) }
.proj-score span { font-weight:600; color:var(--text-faint) }
.proj-body { padding:1.5rem }
.proj-cat { display:inline-block; font-family:var(--font-d); font-size:.66rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; padding:3px 10px; border-radius:100px; border:1px solid; margin-bottom:.75rem }
.proj-body h3 { font-family:var(--font-d); font-size:1rem; font-weight:800; line-height:1.3; margin-bottom:.5rem }
.proj-body p { font-size:.84rem; color:var(--text-muted); line-height:1.65; margin-bottom:.75rem }
.proj-meta { display:flex; justify-content:space-between; font-family:var(--font-d); font-size:.74rem; color:var(--text-faint); font-weight:600; padding-top:.65rem; border-top:1px solid var(--border) }

/* ══════════════════════════════════════════════════════════════════
   7 · RESULTS
══════════════════════════════════════════════════════════════════ */
.results-section { background:var(--bg); position:relative; overflow:hidden }
.results-bg { position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%,rgba(0,168,255,.05) 0%,transparent 70%); pointer-events:none }
.results-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; z-index:1 }
.result-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.25rem 1.75rem; text-align:center; display:flex; flex-direction:column; align-items:center; gap:.6rem; transition:border-color .3s,transform .4s var(--ease),box-shadow .4s; position:relative; overflow:hidden }
.result-card--featured { border-color:rgba(108,99,255,.3); background:rgba(108,99,255,.03) }
.result-card:hover { transform:translateY(-7px); border-color:rgba(0,168,255,.35); box-shadow:0 24px 60px rgba(0,0,0,.35) }
.rc-arrow { font-size:1.5rem; font-weight:900; line-height:1; color:var(--tech-purple) }
.rc-arrow--down { color:#FF6B00 }
.rc-number { font-family:var(--font-d); font-size:3.25rem; font-weight:800; color:var(--tech-purple); line-height:1 }
.rc-pct { font-family:var(--font-d); font-size:1.4rem; font-weight:800; color:var(--text-muted); margin-top:-1rem }
.rc-label { font-family:var(--font-d); font-size:.88rem; font-weight:800; color:var(--text); margin-top:.25rem }
.rc-desc { font-size:.8rem; color:var(--text-faint); line-height:1.62; max-width:220px }

/* ══════════════════════════════════════════════════════════════════
   5 · FEATURES
══════════════════════════════════════════════════════════════════ */
.features-section { background:var(--bg) }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem }
.feat-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.65rem; display:flex; flex-direction:column; gap:.75rem; transition:border-color .3s,transform .35s var(--ease),box-shadow .35s }
.feat-card:hover { transform:translateY(-6px); border-color:rgba(108,99,255,.35); box-shadow:0 20px 50px rgba(0,0,0,.35) }
.fc-icon { width:48px; height:48px; border-radius:12px; background:var(--fi); color:var(--ft); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .3s var(--ease) }
.feat-card:hover .fc-icon { transform:scale(1.1) rotate(-5deg) }
.feat-card h4 { font-family:var(--font-d); font-size:.92rem; font-weight:800 }
.feat-card p { font-size:.84rem; color:var(--text-muted); line-height:1.65 }

/* ══════════════════════════════════════════════════════════════════
   8 · PRICING
══════════════════════════════════════════════════════════════════ */
.pricing-section { background:var(--bg-2); position:relative; overflow:hidden }
.pricing-glow { position:absolute; top:-100px; left:50%; transform:translateX(-50%); max-width: 900px; width: 100%; height:500px; background:radial-gradient(ellipse at top,rgba(0,168,255,.06) 0%,transparent 70%); pointer-events:none }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:start; position:relative; z-index:1 }
.pc { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.25rem; display:flex; flex-direction:column; gap:1rem; transition:border-color .3s,transform .4s var(--ease),box-shadow .4s; position:relative }
.pc:hover { transform:translateY(-6px); box-shadow:0 28px 70px rgba(0,0,0,.35) }
.pc--featured { border-color:var(--tech-purple); background:rgba(108,99,255,.03); box-shadow:0 0 0 1px rgba(108,99,255,.2),0 24px 80px rgba(108,99,255,.1) }
.pc--featured:hover { box-shadow:0 0 0 1px var(--tech-purple),0 32px 80px rgba(108,99,255,.18) }
.pc-popular { position:absolute; top:-13px; left:50%; transform:translateX(-50%); font-family:var(--font-d); font-size:.68rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#fff; background:var(--tech-purple); padding:4px 16px; border-radius:100px; white-space:nowrap; box-shadow:0 4px 18px rgba(108,99,255,.4) }
.pc-head { display:flex; align-items:center; gap:1rem }
.pc-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.pc-head h3 { font-family:var(--font-d); font-size:1rem; font-weight:800; margin-bottom:2px }
.pc-sub { font-family:var(--font-d); font-size:.78rem; color:var(--text-faint) }
.pc-price { display:flex; align-items:baseline; gap:4px }
.pc-cur { font-family:var(--font-d); font-size:1.3rem; font-weight:800; color:var(--text-muted) }
.pc-amt { font-family:var(--font-d); font-size:3rem; font-weight:800; line-height:1; color:var(--ai-blue) }
.pc-price--custom { align-items:center }
.pc-custom { font-family:var(--font-d); font-size:2rem; font-weight:800; color:var(--tech-purple) }
.pc-period { font-family:var(--font-d); font-size:.78rem; color:var(--text-faint) }
.pc-feats { display:flex; flex-direction:column; gap:.55rem; flex:1 }
.pc-feats li { display:flex; align-items:center; gap:8px; font-family:var(--font-d); font-size:.83rem; color:var(--text-muted); font-weight:600 }

/* ══════════════════════════════════════════════════════════════════
   9 · FAQ
══════════════════════════════════════════════════════════════════ */
.faq-section { background:var(--bg) }
.faq-layout { display:grid; grid-template-columns:400px 1fr; gap:5rem; align-items:start }
.faq-left { position:sticky; top:calc(var(--nav-h) + 24px) }
.faq-left p { font-size:.95rem; color:var(--text-muted); line-height:1.75; margin-top:.75rem }
.faq-acc { display:flex; flex-direction:column; gap:.75rem }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:border-color .3s }
.faq-item:has(.faq-btn[aria-expanded="true"]) { border-color:rgba(0,168,255,.35) }
.faq-btn { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.15rem 1.35rem; cursor:pointer; font-family:var(--font-d); font-size:.95rem; font-weight:700; color:var(--text); text-align:left; transition:background .2s }
.faq-btn:hover { background:var(--surface-2) }
.faq-chev { flex-shrink:0; color:var(--text-faint); transition:transform .35s var(--ease),color .2s }
.faq-btn[aria-expanded="true"] .faq-chev { transform:rotate(180deg); color:var(--ai-blue) }
.faq-ans { overflow:hidden; transition:height .4s var(--ease) }
.faq-ans-inner { padding:.25rem 1.35rem 1.35rem; font-size:.88rem; color:var(--text-muted); line-height:1.78 }

/* ══════════════════════════════════════════════════════════════════
   10 · FINAL CTA
══════════════════════════════════════════════════════════════════ */
.final-cta { padding:110px 0; position:relative; overflow:hidden; background:var(--bg-3); text-align:center }
.fcta-glow-1 { position:absolute; top:-80px; left:50%; transform:translateX(-50%); max-width: 900px; width: 100%; height:400px; background:radial-gradient(ellipse at top,rgba(0,168,255,.1) 0%,transparent 70%); pointer-events:none }
.fcta-glow-2 { position:absolute; bottom:-80px; right:-100px; max-width: 500px; width: 100%; height:500px; background:radial-gradient(circle,rgba(0,200,83,.07) 0%,transparent 70%); pointer-events:none }
.fcta-inner { position:relative; z-index:1; max-width: 720px; width: 100%; margin:0 auto }
.fcta-btns { display:flex; justify-content:center; flex-wrap:wrap; gap:1.25rem; margin-bottom:2rem }
.fcta-trust { display:flex; gap:2rem; justify-content:center; flex-wrap:wrap }
.fcta-trust span { font-family:var(--font-d); font-size:.8rem; font-weight:700; color:var(--green) }

/* ══════════════════════════════════════════════════════════════════
   FOOTER — exact match across all pages
══════════════════════════════════════════════════════════════════ */
.footer { background:var(--bg-3); border-top:1px solid var(--border) }
.footer-top-bar { background:rgba(0,200,83,.05); border-bottom:1px solid var(--border-g); padding:13px 0 }
.footer-top-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.8rem; color:var(--text-muted); font-family:var(--font-d); font-weight:600 }
.footer-socials { display:flex; gap:8px }
.social-link { width:34px; height:34px; border-radius:7px; background:var(--surface); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-muted); transition:all .2s; cursor:pointer }
.social-link:hover { background:var(--green-subtle); color:var(--green); border-color:var(--border-g); box-shadow:0 0 14px var(--green-glow) }
.footer-main { padding:60px 0 44px }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr 1fr; gap:3rem }
.footer-brand p { font-size:.875rem; color:var(--text-muted); line-height:1.75; margin-bottom:2rem; max-width:280px }
.newsletter-wrap { margin-top:1.5rem }
.newsletter-label { font-family:var(--font-d); font-size:.78rem; font-weight:700; letter-spacing:.05em; color:var(--text-muted); margin-bottom:.65rem; display:block }
.newsletter-form { display:flex; gap:8px }
.newsletter-form input { flex:1; background:var(--surface); border:1.5px solid var(--border); border-radius:8px; padding:10px 13px; color:var(--text); font-size:.85rem; transition:border-color .2s }
.newsletter-form input::placeholder { color:var(--text-faint) }
.newsletter-form input:focus { border-color:var(--green); box-shadow:0 0 0 2px var(--green-subtle) }
.footer-col h5 { font-family:var(--font-d); font-size:.73rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:1.25rem }
.footer-col ul { display:flex; flex-direction:column; gap:9px }
.footer-col a { font-size:.875rem; color:var(--text-muted); transition:color .2s; cursor:pointer }
.footer-col a:hover { color:var(--green) }
.footer-bottom { border-top:1px solid var(--border); padding:22px 0 }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; font-size:.79rem; color:var(--text-faint) }
.footer-legal { display:flex; gap:1.5rem }
.footer-legal a { color:var(--text-faint); transition:color .2s; cursor:pointer }
.footer-legal a:hover { color:var(--green) }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .types-grid { grid-template-columns:repeat(2,1fr) }
  .tech-groups { grid-template-columns:1fr }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem }
  .footer-brand { grid-column:span 2 }
  .perf-inner { gap:3rem }
}
@media (max-width:960px) {
  .hero-inner { grid-template-columns:1fr }
  .hero-visual { display:none }
  .process-track { flex-direction:column; gap:2rem; align-items:center }
  .process-line { display:none }
  .proc-step { width:100%; max-width: 360px; flex-direction:row; text-align:left; align-items:flex-start }
  .proc-num { position:static; transform:none; order:-1; width:auto }
  .proj-grid { grid-template-columns:1fr }
  .results-grid { grid-template-columns:repeat(2,1fr) }
  .pricing-grid { grid-template-columns:1fr }
  .perf-inner { grid-template-columns:1fr }
  .faq-layout { grid-template-columns:1fr; gap:3rem }
  .faq-left { position:static }
}
@media (max-width:768px) {
  :root { --nav-h:64px }
  body { cursor:default }
  .section { padding:75px 0 }
  .hero-stats { flex-wrap:wrap; gap:1rem }
  .hs-sep { display:none }
  .hero-ctas { flex-direction:column }
  .types-grid { grid-template-columns:1fr }
  .results-grid { grid-template-columns:1fr 1fr }
  .psc-scores { grid-template-columns:repeat(2,1fr) }
  .fcta-btns { flex-direction:column; align-items:center }
  .fcta-trust { gap:1rem }
  .footer-grid { grid-template-columns:1fr }
  .footer-brand { grid-column:span 1 }
  .footer-bottom-inner { flex-direction:column; text-align:center }
  .footer-legal { justify-content:center; flex-wrap:wrap }
  .footer-top-inner { flex-direction:column; text-align:center }
  .newsletter-form { flex-direction:column }
}
@media (max-width:480px) {
  .hero-title { font-size:clamp(2.25rem, 8.4375vw, 2.8125rem) }
  .results-grid { grid-template-columns:1fr }
  .proc-step { flex-direction:column; align-items:center; text-align:center }
  .bm-body { grid-template-columns:1fr }
  .bm-preview-panel { display:none }
}

/* ── FEATURES RESPONSIVE ─────────────────────────────────────── */
@media (max-width:1100px) { .features-grid { grid-template-columns:repeat(2,1fr) } }
@media (max-width:768px) { .features-grid { grid-template-columns:1fr } .phone--mini { display:none } }

/* Logo Fix */

/* Logo sizing is controlled via Appearance → Customize → Logo & Branding.
   CSS custom properties are set by greenedge_logo_inline_css() in functions.php
   and consumed by components.css. Do not add hardcoded overrides here. */
