/* ============================================================
   Jianzhik.com — Page-specific Styles
   ============================================================ */

/* ----------- Page sub-hero ----------- */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(0,229,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(124,92,255,.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .wrap-1400 { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .82rem;
  color: var(--text-3);
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--text-3); }
.page-hero .breadcrumb a:hover { color: var(--cyan); }
.page-hero .breadcrumb .sep { opacity: .5; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 18px;
  max-width: 900px;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 720px;
  line-height: 1.7;
}
.page-hero .meta {
  margin-top: 28px;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: .82rem;
  color: var(--text-3);
}
.page-hero .meta span { display: inline-flex; align-items: center; gap: 6px; }
.page-hero .meta .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }

/* ----------- Home Hero ----------- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0,229,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 30%, rgba(124,92,255,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0,255,163,.10) 0%, transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) { .hero-inner { grid-template-columns: 1fr; gap: 50px; } }
.hero-left .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: .8rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid var(--border-1);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-left .eyebrow .pulse {
  width: 8px; height: 8px; background: var(--cyan);
  border-radius: 50%; box-shadow: 0 0 10px var(--cyan);
  animation: pulse-glow 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--cyan); }
.hero .sub {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--border-3);
}
.hero-stat .num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat .num .unit {
  font-size: .55em;
  color: var(--cyan);
  margin-left: 4px;
  font-weight: 600;
}
.hero-stat .label {
  font-family: var(--ff-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ----------- Dashboard visual ----------- */
.hero-right { position: relative; perspective: 1400px; }
.dashboard {
  position: relative;
  border-radius: var(--radius-3);
  border: 1px solid var(--border-1);
  background: linear-gradient(180deg, rgba(15,20,36,.85) 0%, rgba(10,14,26,.9) 100%);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 30px 80px rgba(0, 229, 255, 0.10),
    0 10px 30px rgba(0,0,0,.5);
  transform: rotateX(2deg) rotateY(-6deg);
  transition: transform .6s ease;
}
.dashboard:hover { transform: rotateX(0) rotateY(0); }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-3);
  margin-bottom: 18px;
}
.dash-header .title {
  font-family: var(--ff-mono); font-size: .82rem;
  color: var(--text-2); letter-spacing: .15em; text-transform: uppercase;
}
.dash-header .dots { display: flex; gap: 6px; }
.dash-header .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--text-mute); }
.dash-header .dots span:nth-child(1) { background: var(--red); box-shadow: 0 0 6px var(--red); }
.dash-header .dots span:nth-child(2) { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.dash-header .dots span:nth-child(3) { background: var(--green); box-shadow: 0 0 6px var(--green); }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.dash-metric {
  border: 1px solid var(--border-3);
  border-radius: 10px;
  padding: 14px;
  background: rgba(5,7,13,.4);
}
.dash-metric .lbl { font-family: var(--ff-mono); font-size: .68rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 8px; }
.dash-metric .val { font-family: var(--ff-display); font-size: 1.45rem; color: var(--text-1); font-weight: 600; line-height: 1; }
.dash-metric .delta { font-family: var(--ff-mono); font-size: .7rem; margin-top: 6px; }
.dash-metric .delta.up { color: var(--green); }
.dash-metric .delta.dn { color: var(--red); }
.dash-chart {
  height: 180px;
  border: 1px solid var(--border-3);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0,229,255,.04) 0%, transparent 100%),
    rgba(5,7,13,.4);
  position: relative;
  overflow: hidden;
}
.dash-chart svg { width: 100%; height: 100%; display: block; }
.dash-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.dash-bars {
  height: 90px;
  border: 1px solid var(--border-3);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(5,7,13,.4);
  display: flex; align-items: flex-end; gap: 6px;
}
.dash-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--violet) 100%);
  border-radius: 3px 3px 0 0;
  opacity: .85;
  position: relative;
}
.dash-bars .bar::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: rgba(255,255,255,.4); }
.dash-list {
  border: 1px solid var(--border-3);
  border-radius: 10px;
  padding: 10px 14px;
  background: rgba(5,7,13,.4);
  font-family: var(--ff-mono); font-size: .72rem;
}
.dash-list-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px dashed rgba(255,255,255,.05); color: var(--text-2); }
.dash-list-row:last-child { border-bottom: 0; }
.dash-list-row .led { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 4px var(--green); }
.dash-list-row .led.w { background: var(--amber); box-shadow: 0 0 4px var(--amber); }
.dash-list-row .led.b { background: var(--cyan); box-shadow: 0 0 4px var(--cyan); }
.orbit-deco { position: absolute; inset: 0; pointer-events: none; }
.orbit-deco .blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .35; }
.orbit-deco .blob.b1 { width: 220px; height: 220px; background: var(--cyan); top: -10%; left: -10%; }
.orbit-deco .blob.b2 { width: 180px; height: 180px; background: var(--violet); bottom: -10%; right: -8%; }

/* Trusted-by strip */
.trusted { padding: 50px 0; border-top: 1px solid var(--border-3); border-bottom: 1px solid var(--border-3); background: rgba(5,7,13,.4); }
.trusted-label { text-align: center; font-family: var(--ff-mono); font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-3); margin-bottom: 22px; }
.trusted-grid { display: flex; flex-wrap: wrap; gap: 40px 60px; justify-content: center; align-items: center; }
.trusted-item { display: inline-flex; align-items: center; gap: 10px; color: var(--text-3); font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem; opacity: .7; transition: all .3s ease; }
.trusted-item:hover { opacity: 1; color: var(--cyan); transform: translateY(-2px); }
.trusted-item svg { width: 28px; height: 28px; }

/* ----------- Capabilities / Pillars ----------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 30px 26px;
  position: relative;
  background: linear-gradient(180deg, rgba(15,20,36,.6) 0%, rgba(10,14,26,.6) 100%);
  border: 1px solid var(--border-3);
  border-radius: var(--radius-2);
  overflow: hidden;
  transition: all .35s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--border-1); }
.pillar .num {
  font-family: var(--ff-mono); font-size: .72rem;
  letter-spacing: .25em; color: var(--cyan); margin-bottom: 22px;
}
.pillar .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,229,255,.15) 0%, rgba(124,92,255,.15) 100%);
  border: 1px solid var(--border-1);
  display: grid; place-items: center;
  color: var(--cyan);
  margin-bottom: 22px;
}
.pillar h3 { font-size: 1.18rem; margin-bottom: 12px; }
.pillar p { font-size: .94rem; color: var(--text-2); }
.pillar .arrow {
  position: absolute; bottom: 24px; right: 24px;
  color: var(--text-mute);
  transition: all .3s ease;
}
.pillar:hover .arrow { color: var(--cyan); transform: translate(2px, -2px); }

/* ----------- Service matrix (services page) ----------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .service-grid { grid-template-columns: 1fr; } }
.service {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(15,20,36,.7) 0%, rgba(10,14,26,.7) 100%);
  border: 1px solid var(--border-3);
  border-radius: var(--radius-2);
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}
.service::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle at center, rgba(0,229,255,.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
}
.service:hover { transform: translateY(-4px); border-color: var(--border-1); }
.service:hover::after { opacity: 1; }
.service .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.service .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,229,255,.12) 0%, rgba(124,92,255,.12) 100%);
  border: 1px solid var(--border-1);
  display: grid; place-items: center;
  color: var(--cyan);
  margin-bottom: 22px;
}
.service h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service .sub { color: var(--cyan); font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .1em; margin-bottom: 14px; }
.service p { font-size: .94rem; color: var(--text-2); margin-bottom: 18px; }
.service ul { list-style: none; padding: 0; }
.service li {
  font-size: .9rem; color: var(--text-2);
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.service li:last-child { border-bottom: 0; }
.service li::before {
  content: "▸"; color: var(--cyan); font-size: .8rem;
  margin-top: 2px;
}

/* Feature tabs */
.feature-tabs { display: grid; grid-template-columns: 280px 1fr; gap: 30px; margin-top: 30px; }
@media (max-width: 900px) { .feature-tabs { grid-template-columns: 1fr; } }
.feature-tab-list { display: flex; flex-direction: column; gap: 8px; }
.feature-tab {
  padding: 18px 20px;
  background: rgba(15,20,36,.5);
  border: 1px solid var(--border-3);
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s ease;
  display: flex; align-items: center; gap: 14px;
}
.feature-tab:hover { border-color: var(--border-1); }
.feature-tab.active {
  background: linear-gradient(135deg, rgba(0,229,255,.10) 0%, rgba(124,92,255,.10) 100%);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 20px rgba(0,229,255,.15);
}
.feature-tab .ic { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 8px; background: rgba(0,229,255,.1); color: var(--cyan); flex-shrink: 0; }
.feature-tab .t { font-family: var(--ff-display); font-weight: 600; color: var(--text-1); font-size: 1rem; }
.feature-tab .d { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-3); letter-spacing: .12em; text-transform: uppercase; }

.feature-panel {
  background: linear-gradient(180deg, rgba(15,20,36,.6) 0%, rgba(10,14,26,.6) 100%);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  padding: 36px;
  display: none;
  min-height: 360px;
}
.feature-panel.active { display: block; animation: fade-in .4s ease; }
.feature-panel h3 { font-size: 1.4rem; margin-bottom: 14px; }
.feature-panel p { color: var(--text-2); margin-bottom: 24px; }
.feature-panel .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-3); }
.feature-panel .stat-block .v { font-family: var(--ff-display); font-size: 1.8rem; color: var(--cyan); font-weight: 700; }
.feature-panel .stat-block .l { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

/* ----------- Advantages grid (advantages page) ----------- */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .adv-grid { grid-template-columns: 1fr; } }
.adv-card {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(15,20,36,.7) 0%, rgba(10,14,26,.7) 100%);
  border: 1px solid var(--border-3);
  border-radius: var(--radius-2);
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}
.adv-card:hover { transform: translateY(-4px); border-color: var(--border-1); }
.adv-card .big {
  font-family: var(--ff-display); font-size: 3.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.adv-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.adv-card p { font-size: .92rem; color: var(--text-2); }

/* Big stats strip */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 40px 30px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-3);
  background: linear-gradient(135deg, rgba(0,229,255,.06) 0%, rgba(124,92,255,.06) 100%);
  position: relative;
  overflow: hidden;
}
.big-stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,229,255,.04) 0 1px, transparent 1px 40px);
  pointer-events: none;
}
@media (max-width: 900px) { .big-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .big-stats { grid-template-columns: 1fr; } }
.big-stat { position: relative; }
.big-stat .v {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.big-stat .l { font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-2); }
.big-stat .spark { height: 30px; margin-top: 14px; opacity: .6; }

/* Process / pipeline */
.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-2);
  overflow: hidden;
  background: rgba(5,7,13,.5);
}
@media (max-width: 900px) { .pipeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pipeline { grid-template-columns: 1fr; } }
.pipeline-step {
  padding: 30px 24px;
  border-right: 1px solid var(--border-3);
  position: relative;
}
.pipeline-step:last-child { border-right: 0; }
@media (max-width: 900px) {
  .pipeline-step { border-right: 0; border-bottom: 1px solid var(--border-3); }
  .pipeline-step:last-child { border-bottom: 0; }
}
.pipeline-step .step-num {
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .25em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.pipeline-step h4 { font-size: 1.1rem; margin-bottom: 10px; }
.pipeline-step p { font-size: .9rem; color: var(--text-2); }
.pipeline-step .ic { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(0,229,255,.1); color: var(--cyan); margin-bottom: 18px; }

/* ----------- News / Blog list ----------- */
.news-controls {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-3);
}
.news-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.news-filter {
  padding: 8px 16px;
  border: 1px solid var(--border-3);
  background: rgba(15,20,36,.4);
  color: var(--text-2);
  border-radius: 999px;
  font-size: .86rem;
  cursor: pointer;
  transition: all .25s ease;
  font-family: var(--ff-mono);
  letter-spacing: .05em;
}
.news-filter:hover { border-color: var(--border-1); color: var(--text-1); }
.news-filter.active { background: var(--cyan-soft); border-color: var(--cyan); color: var(--cyan); }
.news-search {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,20,36,.4);
  border: 1px solid var(--border-3);
  border-radius: 8px;
  padding: 8px 14px;
}
.news-search input {
  background: transparent; border: 0; color: var(--text-1);
  font-family: var(--ff-mono); font-size: .88rem; outline: none;
  min-width: 220px;
}
.news-search input::placeholder { color: var(--text-mute); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: linear-gradient(180deg, rgba(15,20,36,.7) 0%, rgba(10,14,26,.7) 100%);
  border: 1px solid var(--border-3);
  border-radius: var(--radius-2);
  overflow: hidden;
  transition: all .35s ease;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--border-1); }
.news-card .cover {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: var(--cyan);
}
.news-card .cover::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, .08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.news-card .cover svg { position: relative; z-index: 1; width: 80px; height: 80px; opacity: .85; }
.news-card .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.news-card .meta-row { display: flex; gap: 12px; align-items: center; font-family: var(--ff-mono); font-size: .72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.news-card h3 { font-size: 1.16rem; margin-bottom: 12px; line-height: 1.4; }
.news-card p { font-size: .92rem; color: var(--text-2); margin-bottom: 18px; flex: 1; }
.news-card .read-more { color: var(--cyan); font-family: var(--ff-mono); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }

/* Featured news */
.news-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(15,20,36,.7) 0%, rgba(10,14,26,.7) 100%);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-3);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .news-feature { grid-template-columns: 1fr; } }
.news-feature .visual {
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(0,229,255,.10), rgba(124,92,255,.10));
  border: 1px solid var(--border-3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.news-feature .visual svg { width: 60%; height: 60%; }
.news-feature .meta-row { display: flex; gap: 14px; font-family: var(--ff-mono); font-size: .74rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.news-feature .meta-row .tag-featured { color: var(--cyan); }
.news-feature h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 16px; }
.news-feature p { font-size: 1rem; color: var(--text-2); margin-bottom: 24px; line-height: 1.7; }
.news-feature .stats-row { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--border-3); }
.news-feature .stats-row .item .v { font-family: var(--ff-display); font-size: 1.4rem; color: var(--cyan); font-weight: 700; }
.news-feature .stats-row .item .l { font-family: var(--ff-mono); font-size: .7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .15em; }

/* ----------- Contact page ----------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex; gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(15,20,36,.7) 0%, rgba(10,14,26,.7) 100%);
  border: 1px solid var(--border-3);
  border-radius: 12px;
  transition: all .25s ease;
}
.contact-card:hover { border-color: var(--border-1); }
.contact-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cyan-soft); color: var(--cyan);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--border-1);
}
.contact-card .label { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact-card .value { font-family: var(--ff-display); font-size: 1.05rem; color: var(--text-1); font-weight: 600; word-break: break-word; }

.form-wrap {
  background: linear-gradient(180deg, rgba(15,20,36,.7) 0%, rgba(10,14,26,.7) 100%);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-3);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.field label .req { color: var(--cyan); }
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(5,7,13,.6);
  border: 1px solid var(--border-3);
  color: var(--text-1);
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--ff-mono);
  font-size: .9rem;
  transition: all .2s ease;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 229, 255, .15); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%2300e5ff' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(180deg, rgba(15,20,36,.6) 0%, rgba(10,14,26,.6) 100%);
  border: 1px solid var(--border-3);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item.open { border-color: var(--border-1); }
.faq-q {
  width: 100%;
  padding: 22px 24px;
  background: transparent; border: 0;
  color: var(--text-1); text-align: left;
  font-family: var(--ff-display); font-size: 1.04rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600;
}
.faq-q::after { content: "+"; color: var(--cyan); font-family: var(--ff-mono); font-size: 1.5rem; transition: transform .3s ease; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-2); font-size: .96rem; line-height: 1.75; }

/* Legal pages */
.legal-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 50px; }
@media (max-width: 980px) { .legal-wrap { grid-template-columns: 1fr; } }
.legal-toc { position: sticky; top: 110px; align-self: start; max-height: calc(100vh - 130px); overflow-y: auto; padding-right: 14px; }
@media (max-width: 980px) { .legal-toc { position: static; max-height: none; padding-right: 0; } }
.legal-toc h5 { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.legal-toc ul { list-style: none; border-left: 1px solid var(--border-3); }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { display: block; padding: 6px 0 6px 16px; margin-left: -1px; border-left: 2px solid transparent; color: var(--text-2); font-size: .88rem; transition: all .2s ease; }
.legal-toc a:hover { color: var(--text-1); border-left-color: var(--cyan); }

.legal-content { font-size: 1rem; color: var(--text-2); line-height: 1.85; }
.legal-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 50px 0 18px; padding-top: 30px; border-top: 1px solid var(--border-3); scroll-margin-top: 110px; }
.legal-content h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.3rem; margin: 30px 0 12px; color: var(--text-1); scroll-margin-top: 110px; }
.legal-content h4 { font-size: 1.1rem; margin: 22px 0 10px; color: var(--text-1); }
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--text-1); font-weight: 600; }
.legal-content .updated { display: inline-block; padding: 6px 14px; background: var(--cyan-soft); border: 1px solid var(--border-1); border-radius: 999px; font-family: var(--ff-mono); font-size: .78rem; color: var(--cyan); margin-bottom: 28px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .92rem; }
.legal-content th, .legal-content td { padding: 12px 14px; text-align: left; border: 1px solid var(--border-3); }
.legal-content th { background: rgba(0, 229, 255, .06); font-family: var(--ff-mono); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); }
.legal-content .callout { padding: 20px 24px; background: var(--cyan-soft); border: 1px solid var(--border-1); border-radius: 10px; margin: 22px 0; color: var(--text-1); }
.legal-content .callout strong { color: var(--cyan); }

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 70px 40px;
  border-radius: var(--radius-3);
  background:
    radial-gradient(ellipse at center, rgba(0,229,255,.18) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0,229,255,.06), rgba(124,92,255,.06));
  border: 1px solid var(--border-1);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; filter: blur(60px); opacity: .25; }
.cta-banner::before { background: var(--cyan); top: -40px; left: -40px; }
.cta-banner::after  { background: var(--violet); bottom: -40px; right: -40px; }
.cta-banner h2 { margin-bottom: 18px; position: relative; }
.cta-banner p { color: var(--text-2); max-width: 640px; margin: 0 auto 28px; position: relative; }
.cta-banner .btn { position: relative; }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--violet)); z-index: 9999; width: 0; transition: width .1s ease-out; box-shadow: 0 0 10px var(--cyan); }
.network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; } }

/* Service icons grid */
.icon-tile {
  width: 64px; height: 64px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,229,255,.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0,229,255,.10) 0%, rgba(124,92,255,.10) 100%);
  border: 1px solid var(--border-1);
  display: grid; place-items: center;
  color: var(--cyan);
  position: relative;
  overflow: hidden;
}
.icon-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,229,255,.2) 100%);
}
.icon-tile svg { position: relative; z-index: 1; }

/* Phone mockup visual */
.phone-mock {
  width: 280px;
  border-radius: 36px;
  border: 8px solid #0a0e1a;
  background: linear-gradient(180deg, #0a0e1a 0%, #05070d 100%);
  padding: 18px;
  box-shadow:
    0 30px 80px rgba(0,229,255,.15),
    0 0 0 1px rgba(0,229,255,.2);
  position: relative;
  margin: 0 auto;
}
.phone-mock .notch {
  width: 100px; height: 22px;
  background: #05070d;
  border-radius: 0 0 12px 12px;
  margin: -18px auto 18px;
  position: relative;
}
.phone-mock .screen {
  background: linear-gradient(180deg, #05070d 0%, #0f1424 100%);
  border-radius: 8px;
  padding: 14px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.phone-mock .screen::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.06) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* App categories chips */
.chip-list { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 5px 12px;
  border: 1px solid var(--border-1);
  background: var(--cyan-soft);
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan);
}

/* Comparison table */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 30px 0; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border-3); }
.compare-table th { font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cyan); }
.compare-table td:first-child { font-weight: 600; color: var(--text-1); }
.compare-table tr:hover td { background: rgba(0,229,255,.04); }
.compare-table .yes { color: var(--green); }
.compare-table .no { color: var(--text-mute); }