/* ============================================================
   AYASC — styles.css
   KEY FIX: Elements are VISIBLE by default.
   .anim class starts hidden; JS adds .visible to show them.
   Hero content is ALWAYS visible (no opacity:0 default).
   ============================================================ */

/* ── Tokens ── */
:root {
  --bg:      #050811;
  --bg2:     #080d18;
  --bg3:     #0c1220;
  --acc:     #7af2ff;
  --acc2:    #0077ff;
  --acc3:    #fff15c;
  --text:    #e8eaf0;
  --muted:   #6b7280;
  --border:  rgba(255,255,255,0.07);
  --glow:    #2a5d61;
  --ff:      'Syne', sans-serif;
  --fb:      'DM Sans', sans-serif;
  --nav:     70px;
  --ease:    cubic-bezier(0.16,1,0.3,1);
}
.logoimg {
  height: 40px;      /* control logo size here */
  width: auto;       /* keeps aspect ratio */
  display: block;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--fb); overflow-x: hidden; }
img, svg { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--acc); border-radius: 2px; }

/* ── Cursor ── */
.cursor, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.cursor { width: 8px; height: 8px; background: var(--acc); transition: transform .1s; }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--acc);
  opacity: .45;
  transition: transform .35s var(--ease), opacity .3s;
}
@media (max-width: 768px) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── Loader ── */
.page-loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.page-loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-svg { width: 200px; display: block; margin: 0 auto 1.2rem; }
.loader-bar { width: 200px; height: 2px; background: var(--border); border-radius: 1px; overflow: hidden; margin: 0 auto .75rem; }
.loader-fill { height: 100%; background: var(--acc); width: 0; transition: width 1.4s var(--ease); }
.loader-text { font-family: var(--ff); font-size: .7rem; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }

/* ── Wrap / Container ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.75rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: var(--ff); font-size: .82rem; font-weight: 700;
  color: var(--bg); background: var(--acc);
  padding: .85rem 2rem; border-radius: 3px;
  letter-spacing: .06em; text-transform: uppercase;
  transition: box-shadow .3s, transform .2s;
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(0,255,157,.5); transform: translateY(-2px); }
.btn-primary.full { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  font-family: var(--ff); font-size: .82rem; font-weight: 600;
  color: var(--text); border: 1px solid var(--border);
  padding: .85rem 2rem; border-radius: 3px;
  letter-spacing: .06em; text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--acc); color: var(--acc); }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  z-index: 800;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(5,8,17,.9); backdrop-filter: blur(20px); border-color: var(--border); }
.nav-logo-link { display: flex; align-items: center; }
.nav-logo-svg { width: 148px; height: 46px; transition: filter .3s; }
.nav-logo-link:hover .nav-logo-svg { filter: drop-shadow(0 0 8px rgba(0,255,157,.6)); }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  font-family: var(--ff); font-size: .8rem; font-weight: 500;
  color: var(--muted); letter-spacing: .06em; text-transform: uppercase;
  position: relative; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--acc);
  transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  font-family: var(--ff); font-size: .78rem; font-weight: 700;
  color: var(--bg); background: var(--acc);
  padding: .48rem 1.1rem; border-radius: 2px;
  letter-spacing: .06em; text-transform: uppercase;
  transition: box-shadow .3s, transform .2s;
}
.nav-cta:hover { box-shadow: 0 0 22px var(--glow); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }

/* ════════════════════════════════
   SECTION COMMON
════════════════════════════════ */
.sec { padding: 7rem 0; position: relative; }
.sec-tag {
  font-family: var(--ff); font-size: .68rem; font-weight: 600;
  color: var(--acc); letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 2rem;
  max-width: 1160px; margin-left: auto; margin-right: auto; padding: 0 1.75rem;
}
.sec-title {
  font-family: var(--ff); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 1.25rem;
}
.sec-title em { font-style: normal; color: var(--acc); text-shadow: 0 0 40px rgba(0,255,157,.28); }
.sec-title.centered { text-align: center; }
.sec-desc { font-size: 1rem; line-height: 1.82; color: var(--muted); font-weight: 300; max-width: 50ch; }
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 4rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.col-left, .col-right { }

/* ── Scroll reveal ──
   Elements with .anim start hidden and fade in when .visible is added by JS.
   Hero content does NOT use .anim — always visible.
─────────────────── */
.anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0s);
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   HERO  — no opacity:0, always shown
════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav) + 3rem) 1.75rem 4rem;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,255,157,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,157,.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-watermark {
  position: absolute; bottom: 5%; right: -2%; width: min(55vw, 500px);
  pointer-events: none; opacity: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 950px; height:110vh }

.hero-badge {
  display: inline-block;
  font-family: var(--ff); font-size: .7rem; font-weight: 600; color: var(--acc);
  border: 1px solid rgba(0,255,157,.3); background: rgba(0,255,157,.05);
  padding: .38rem .9rem; border-radius: 2px;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.75rem;
}
.hero-title {
  font-family: var(--ff); font-size: clamp(2rem,5vw,4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
  margin-bottom: 1.5rem; display: flex; flex-direction: column;
}
.hero-title span { display: block; }
.hero-title .accent { color: var(--acc); text-shadow: 0 0 60px rgba(0,255,157,.35); }
.hero-sub { font-size: 1.05rem; line-height: 1.8; color: var(--muted); font-weight: 300; max-width: 52ch; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.stat-val { display: flex; align-items: baseline; gap: .1rem; }
.stat-val .counter { font-family: var(--ff); font-size: 2rem; font-weight: 800; color: var(--acc); }
.stat-val span:last-child { font-family: var(--ff); font-size: 1.6rem; font-weight: 800; color: var(--acc); }
.stat-item p { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .15rem; }
.stat-div { width: 1px; height: 46px; background: var(--border); }

.scroll-hint {
  position: absolute; bottom: 2.2rem; right: 2.2rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.scroll-hint span {
  font-family: var(--ff); font-size: .6rem; letter-spacing: .2em; color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px; height: 54px;
  background: linear-gradient(var(--acc), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.35;transform:scaleY(.5)} }

/* ════════════════════════════════
   NETWORK SECTION
════════════════════════════════ */
.network-sec { background: var(--bg2); }
.net-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2.5rem;
  align-items: center; position: relative;
}
.net-cards { display: flex; flex-direction: column; gap: 1.4rem; }
.net-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.4rem; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.net-card:hover { border-color: rgba(0,255,157,.3); box-shadow: 0 0 28px rgba(0,255,157,.07); transform: translateY(-3px); }
.nc-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.net-card h4 { font-family: var(--ff); font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.net-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* Phone */
.net-phone { display: flex; justify-content: center; }
.phone-wrap {
  width: 196px; height: 370px; border-radius: 28px;
  border: 2px solid rgba(0,255,157,.4); background: rgba(5,8,17,.96);
  box-shadow: 0 0 60px rgba(0,255,157,.14), inset 0 0 30px rgba(0,255,157,.03);
  overflow: hidden; position: relative;
}
.phone-notch {
  width: 70px; height: 14px; border-radius: 0 0 12px 12px;
  background: rgba(0,255,157,.12); margin: 0 auto;
}
.ph-screen { padding: .7rem .9rem; height: calc(100% - 14px); display: flex; flex-direction: column; gap: .55rem; }
.ph-hdr { display: flex; align-items: center; gap: .45rem; }
.ph-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--acc2)); flex-shrink: 0;
}
.ph-hdr-info span { display: block; font-size: .65rem; font-weight: 600; font-family: var(--ff); }
.ph-hdr-info small { font-size: .58rem; color: var(--acc); }
.ph-stats-row { display: flex; gap: .4rem; }
.ph-stat-box {
  flex: 1; background: rgba(0,255,157,.06); border: 1px solid rgba(0,255,157,.15);
  border-radius: 6px; padding: .4rem; text-align: center;
}
.ph-stat-box strong { display: block; font-family: var(--ff); font-size: .9rem; font-weight: 800; color: var(--acc); }
.ph-stat-box small { font-size: .55rem; color: var(--muted); }
.ph-bars { display: flex; flex-direction: column; gap: .45rem; }
.ph-bar-row { display: flex; align-items: center; gap: .4rem; font-size: .58rem; }
.ph-bar-row span { width: 38px; color: var(--muted); }
.ph-track { flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.ph-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  border-radius: 2px; width: 0;
  transition: width 1.4s var(--ease);
}
.ph-mini-chart { flex: 1; }
.ph-mini-chart svg { width: 100%; height: 100%; }
.ph-nav-row { display: flex; justify-content: space-around; font-size: .85rem; margin-top: auto; }

.conn-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible; opacity: .35;
}

/* ════════════════════════════════
   AUTOMATION
════════════════════════════════ */
.auto-sec { background: var(--bg); }
.metrics { display: flex; flex-direction: column; gap: .9rem; margin-top: 2rem; }
.metric {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 8px;
  padding: .9rem 1.3rem; transition: border-color .3s;
}
.metric:hover { border-color: rgba(0,255,157,.3); }
.m-icon {
  width: 34px; height: 34px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.red-icon { background: rgba(255,100,100,.12); color: #f66; }
.grn-icon { background: rgba(0,255,157,.12); color: var(--acc); }
.blu-icon { background: rgba(0,119,255,.12); color: var(--acc2); }
.metric strong { display: block; font-family: var(--ff); font-size: 1.15rem; font-weight: 800; color: var(--acc); }
.metric span { font-size: .78rem; color: var(--muted); }

.transform-box { display: flex; align-items: center; gap: 1.2rem; }
.t-card { flex: 1; border-radius: 10px; padding: 1.2rem; border: 1px solid var(--border); }
.before-card { background: rgba(255,100,100,.03); }
.after-card { background: rgba(0,255,157,.04); border-color: rgba(0,255,157,.2); box-shadow: 0 0 30px rgba(0,255,157,.06); }
.t-label { font-family: var(--ff); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .85rem; }
.red-lbl { color: #f66; } .grn-lbl { color: var(--acc); }
.t-list { display: flex; flex-direction: column; gap: .65rem; }
.t-row { display: flex; align-items: center; gap: .4rem; font-size: .8rem; padding: .35rem .5rem; border-radius: 5px; }
.t-row.chaos { color: var(--muted); text-decoration: line-through; opacity: .55; }
.t-row.order { color: var(--text); }
.t-arrow { display: flex; flex-direction: column; align-items: center; gap: .25rem; flex-shrink: 0; }
.t-arrow-glyph { font-size: 1.6rem; color: var(--acc); text-shadow: 0 0 18px rgba(0,255,157,.6); animation: ap 1.5s ease-in-out infinite; }
@keyframes ap { 0%,100%{transform:translateX(0)} 50%{transform:translateX(4px)} }
.t-arrow span { font-family: var(--ff); font-size: .58rem; color: var(--acc); letter-spacing: .1em; }

/* ════════════════════════════════
   OUTSOURCING
════════════════════════════════ */
.out-sec { background: var(--bg2); }
.compare-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.8rem; align-items: center; margin-top: 3.5rem; }
.cmp-col { border-radius: 12px; padding: 1.75rem; border: 1px solid var(--border); }
.traditional { background: rgba(255,100,100,.03); }
.ayasc-col { background: rgba(0,255,157,.04); border-color: rgba(0,255,157,.22); box-shadow: 0 0 40px rgba(0,255,157,.07); }
.cmp-head { font-family: var(--ff); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 1px solid var(--border); }
.bad-head { color: #f66; } .good-head { color: var(--acc); }
.cmp-list { display: flex; flex-direction: column; gap: .8rem; }
.cmp-list li { font-size: .88rem; line-height: 1.5; }
.cmp-vs { font-family: var(--ff); font-size: 1.1rem; font-weight: 800; color: var(--muted); text-align: center; }

/* ════════════════════════════════
   SALES & MARKETING
════════════════════════════════ */
.sales-sec { background: var(--bg); }
.dash-mock { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.dm-header { display: flex; align-items: center; gap: .4rem; padding: .7rem 1rem; background: rgba(255,255,255,.03); border-bottom: 1px solid var(--border); }
.dm-dot { width: 9px; height: 9px; border-radius: 50%; }
.dm-r { background: #ff5f56; } .dm-y { background: #ffbd2e; } .dm-g { background: #27c93f; }
.dm-title { font-family: var(--ff); font-size: .68rem; color: var(--muted); margin-left: .4rem; }
.dm-stats { display: flex; border-bottom: 1px solid var(--border); }
.dm-stat { flex: 1; padding: .9rem; border-right: 1px solid var(--border); }
.dm-stat:last-child { border-right: none; }
.dm-num { display: block; font-family: var(--ff); font-size: 1.2rem; font-weight: 800; color: var(--text); }
.dm-num.green-num { color: var(--acc); }
.dm-stat small { font-size: .62rem; color: var(--muted); }
.dm-chart { padding: .9rem; }
.dm-svg { width: 100%; display: block; height: 80px; }
.chart-path { stroke-dasharray: 600; stroke-dashoffset: 600; animation: dl 2s var(--ease) forwards .4s; }
@keyframes dl { to { stroke-dashoffset: 0; } }
.dm-xlabels { display: flex; justify-content: space-between; font-size: .62rem; color: var(--muted); margin-top: .3rem; }
.dm-camps { display: flex; flex-direction: column; gap: .45rem; padding: .7rem 1rem; border-top: 1px solid var(--border); }
.dm-camp { display: flex; align-items: center; gap: .65rem; font-size: .78rem; }
.camp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dm-camp span:nth-child(2) { flex: 1; color: var(--muted); }
.dm-camp strong { font-family: var(--ff); font-weight: 700; }

/* ════════════════════════════════
   SOFTWARE & SYSTEMS
════════════════════════════════ */
.soft-sec { background: var(--bg2); }
.soft-split { display: flex; align-items: center; gap: 1.5rem; margin-top: 3.5rem; }
.sp-panel { flex: 1; border-radius: 12px; padding: 1.75rem; border: 1px solid var(--border); min-height: 240px; }
.sp-old { background: rgba(255,255,255,.02); }
.sp-new { background: rgba(0,255,157,.03); border-color: rgba(0,255,157,.18); }
.sp-label { font-family: var(--ff); font-size: .63rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.paper-list { display: flex; flex-direction: column; gap: .55rem; }
.paper-item { font-size: .8rem; color: var(--muted); padding: .38rem .7rem; background: rgba(255,255,255,.03); border-radius: 4px; border-left: 2px solid rgba(255,255,255,.08); }
.paper-item.faded { opacity: .4; }
.sp-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: .25rem; flex-shrink: 0; }
.sp-arrow { font-family: var(--ff); font-size: 1.4rem; font-weight: 800; color: var(--acc); text-shadow: 0 0 18px rgba(0,255,157,.5); }
.sp-arrow-wrap span { font-family: var(--ff); font-size: .6rem; color: var(--acc); }
.digi-list { display: flex; flex-direction: column; gap: .65rem; }
.digi-item { display: flex; align-items: center; gap: .7rem; font-size: .82rem; padding: .45rem .6rem; background: rgba(0,255,157,.03); border-radius: 6px; }
.dtag { font-family: var(--ff); font-size: .6rem; font-weight: 700; padding: .18rem .45rem; border-radius: 3px; white-space: nowrap; }
.dtag.g { background: rgba(0,255,157,.14); color: var(--acc); }
.dtag.b { background: rgba(0,119,255,.14); color: var(--acc2); }
.dtag.p { background: rgba(123,92,255,.14); color: var(--acc3); }

/* ════════════════════════════════
   AI SECTION
════════════════════════════════ */
.ai-sec { background: var(--bg); position: relative; overflow: hidden; }
#aiCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .18; }
.ai-wrap { position: relative; z-index: 2; }
.ai-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.ai-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.4rem; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ai-card:hover { border-color: rgba(123,92,255,.4); box-shadow: 0 0 28px rgba(123,92,255,.1); transform: translateY(-4px); }
.ai-icon { font-size: 1.7rem; margin-bottom: .8rem; }
.ai-card h4 { font-family: var(--ff); font-size: .88rem; font-weight: 700; margin-bottom: .4rem; }
.ai-card p { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════
   WEB DEV
════════════════════════════════ */
.web-sec { background: var(--bg2); }
.web-split { display: flex; align-items: center; gap: 1.4rem; margin-top: 3.5rem; }
.web-panel { flex: 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.browser-top { display: flex; align-items: center; gap: .38rem; padding: .55rem .8rem; background: rgba(255,255,255,.05); border-bottom: 1px solid var(--border); }
.modern-top { background: rgba(0,255,157,.05); }
.bd { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.bd.g { background: #27c93f; } .bd.y { background: #ffbd2e; } .bd.r { background: #ff5f56; }
.burl { font-size: .62rem; color: var(--muted); margin-left: .4rem; }
.green-url { color: var(--acc); }
.browser-body { padding: 1rem; min-height: 190px; }
.old-body { background: rgba(255,255,255,.01); }
.ob-nav { height: 18px; background: rgba(255,255,255,.05); border-radius: 3px; margin-bottom: .9rem; }
.ob-hero { height: 55px; background: rgba(255,255,255,.03); border-radius: 4px; margin-bottom: .9rem; }
.ob-texts { display: flex; flex-direction: column; gap: .38rem; }
.ob-line { height: 9px; background: rgba(255,255,255,.05); border-radius: 2px; }
.ob-line.short { width: 55%; }
.new-body { background: rgba(0,255,157,.02); }
.nb-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: .9rem; }
.nb-logo { height: 14px; }
.nb-nav { display: flex; gap: .4rem; }
.nb-nav span { width: 22px; height: 6px; background: rgba(255,255,255,.18); border-radius: 2px; }
.nb-hero { display: flex; gap: .9rem; align-items: center; }
.nb-text { flex: 1; display: flex; flex-direction: column; gap: .38rem; }
.nb-h1 { height: 14px; background: linear-gradient(90deg,var(--acc),var(--acc2)); border-radius: 3px; opacity: .7; }
.nb-sub { height: 7px; background: rgba(255,255,255,.1); border-radius: 2px; }
.nb-cta { height: 18px; width: 60px; background: rgba(0,255,157,.3); border-radius: 3px; margin-top: .25rem; }
.nb-img { width: 55px; height: 75px; background: linear-gradient(135deg,rgba(0,119,255,.3),rgba(123,92,255,.3)); border-radius: 7px; }
.shimmer { animation: shim 2.5s ease-in-out infinite; }
@keyframes shim { 0%,100%{opacity:.7} 50%{opacity:1} }
.web-label { font-size: .63rem; color: var(--muted); text-align: center; margin-top: .65rem; font-style: italic; }
.bad-label { color: #f66; opacity: .7; } .good-label { color: var(--acc); }
.web-arrow-mid { display: flex; flex-direction: column; align-items: center; gap: .2rem; flex-shrink: 0; }
.web-arrow-mid span:first-child { font-family: var(--ff); font-size: .7rem; font-weight: 700; color: var(--acc); }
.wa-arrow { font-size: 1.4rem; color: var(--acc); text-shadow: 0 0 14px rgba(0,255,157,.5); }

/* ════════════════════════════════
   APP SECTION
════════════════════════════════ */
.app-sec { background: var(--bg); }
.app-types { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.8rem; }
.atype {
  font-family: var(--ff); font-size: .88rem; font-weight: 600;
  padding: .7rem 1rem; border: 1px solid var(--border); border-radius: 6px;
  transition: border-color .3s, color .3s;
}
.atype:hover { border-color: var(--acc); color: var(--acc); }

.phones-stage {
  position: relative; display: flex;
  justify-content: center; align-items: flex-end;
  height: 380px;
}
.main-phone {
  width: 175px; height: 350px; border-radius: 28px;
  border: 2px solid rgba(0,255,157,.45); background: rgba(5,8,17,.97);
  box-shadow: 0 0 70px rgba(0,255,157,.18); overflow: hidden; z-index: 3; position: relative;
}
.sp-phone {
  width: 135px; height: 270px; border-radius: 22px;
  border: 2px solid rgba(0,119,255,.28); background: rgba(5,8,17,.95);
  overflow: hidden; position: absolute; z-index: 2; opacity: .75;
}
.sp-left  { left: 0; transform: rotate(-8deg) translateY(28px); border-color: rgba(0,119,255,.28); }
.sp-right { right: 0; transform: rotate(8deg) translateY(28px); border-color: rgba(123,92,255,.28); }

.mph-screen { padding: .7rem; height: 100%; display: flex; flex-direction: column; gap: .5rem; }
.mph-bar { display: flex; align-items: center; gap: .38rem; font-size: .68rem; font-family: var(--ff); font-weight: 600; }
.mph-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
.mph-greet { font-size: .64rem; color: var(--muted); }
.mph-cards { display: flex; gap: .38rem; }
.mph-card { flex: 1; border-radius: 7px; padding: .45rem; font-size: .6rem; line-height: 1.5; }
.mph-card.g { background: rgba(0,255,157,.12); color: var(--acc); }
.mph-card.b { background: rgba(0,119,255,.12); color: var(--acc2); }
.mph-card strong { display: block; font-size: .78rem; font-family: var(--ff); }
.mph-chart { flex: 1; display: flex; align-items: flex-end; gap: 3px; padding: .3rem; }
.mph-chart div { flex: 1; border-radius: 2px; background: linear-gradient(to top,var(--acc),var(--acc2)); opacity: .65; }
.mph-nav { display: flex; justify-content: space-around; padding: .35rem 0; border-top: 1px solid var(--border); font-size: .78rem; margin-top: auto; }

.sph-screen { padding: .6rem; height: 100%; display: flex; flex-direction: column; gap: .5rem; }
.sph-hdr { font-family: var(--ff); font-size: .65rem; font-weight: 700; color: var(--muted); }
.sph-list { display: flex; flex-direction: column; gap: .4rem; }
.sph-list div { height: 18px; background: rgba(255,255,255,.05); border-radius: 4px; }
.donut { display: block; width: 72px; height: 72px; margin: .5rem auto; }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-sec { background: var(--bg2); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.2rem; }
.mission-box { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 8px; padding: 1.1rem; }
.mission-box strong { display: block; font-family: var(--ff); font-size: .75rem; font-weight: 700; color: var(--acc); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .45rem; }
.mission-box p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

.contact-card { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.contact-card h3 { font-family: var(--ff); font-size: 1.25rem; font-weight: 700; margin-bottom: 1.4rem; }
#contactForm { display: flex; flex-direction: column; gap: .9rem; }
.fg input, .fg textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 6px;
  padding: .85rem 1rem; color: var(--text); font-family: var(--fb); font-size: .88rem; outline: none;
  transition: border-color .3s; resize: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--acc); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.footer-logo { display: block; width: 170px; height: 58px; margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.75; max-width: 26ch; margin-bottom: 1.4rem; }
.socials { display: flex; gap: .6rem; }
.socials a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 4px; color: var(--muted);
  font-size: .72rem; font-weight: 700;
  transition: border-color .3s, color .3s, background .3s;
}
.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  width: 50px;
  height: auto;
  display: block;
}


.socials a:hover { border-color: var(--acc); color: var(--acc); background: rgba(0,255,157,.05); }
.footer-col h5 {
  font-family: var(--ff); font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .62rem; }
.footer-col ul li a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--acc); }
.footer-col ul li { font-size: .82rem; color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .net-grid { grid-template-columns: 1fr; gap: 2rem; }
  .net-phone { order: -1; }
  .net-cards { flex-direction: row; }
  .sec-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: var(--nav);
    background: rgba(5,8,17,.97); backdrop-filter: blur(20px);
    padding: 2rem; gap: 1.4rem; z-index: 799;
  }
  .nav-links.open + .nav-cta { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .compare-wrap { grid-template-columns: 1fr; }
  .cmp-vs { text-align: center; }
  .transform-box { flex-direction: column; }
  .soft-split { flex-direction: column; }
  .web-split { flex-direction: column; }
  .ai-cards { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .sp-phone { display: none; }
  .phones-stage { height: 300px; }
  .hero-watermark { display: none; }
  .net-cards { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .ai-cards { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .stat-div { display: none; }
}
