/* ─── THEME VARIABLES ─── */
:root {
  --bg:            #f4f6fb;
  --bg-soft:       #eaecf4;
  --surface:       #ffffff;
  --surface-2:     #eff1f8;
  --border:        rgba(99,91,255,.10);
  --border-strong: rgba(99,91,255,.22);

  --c-teal:         #2fadf7;
  --c-teal-lt:     rgba(15,188,171,.10);
  --c-violet:     #0245d6;
  --c-violet-lt:   rgba(99,91,255,.08);

  --g-accent:      linear-gradient(90deg, #2fadf7,#0245d6);
  --g-accent-r:    linear-gradient(90deg, #0245d6, #2fadf7);

  --text:          #0d1117;
  --text-muted:    #586074;
  --text-dim:      #98a3bc;

  --shadow-sm:     0 2px 8px rgba(13,17,23,.06);
  --shadow-md:     0 8px 28px rgba(13,17,23,.09);
  --shadow-lg:     0 24px 60px rgba(13,17,23,.13);

  --radius:        14px;
  --radius-sm:     8px;
  --radius-lg:     22px;
  --radius-pill:   999px;

--ff-display: 'Satoshi', sans-serif;
--ff-body: 'Inter', sans-serif;

  --nav-h:         60px;
  --section-pad:   110px 0;
  --transition:    .28s ease;
}
body.dark {
  --bg:            #08090f;
  --bg-soft:       #0d0f1a;
  --surface:       #111320;
  --surface-2:     #181b2c;
  --border:        rgba(99,91,255,.14);
  --border-strong: rgba(99,91,255,.30);

  --c-teal:       #2fadf7; 
  --c-teal-lt:     rgba(18,217,196,.10);
  --c-violet:      #0245d6;
  --c-violet-lt:   rgba(124,111,255,.10);

  --text:          #edf0f9;
  --text-muted:    #7883a0;
  --text-dim:      #353d56;

  --shadow-sm:     0 2px 8px rgba(0,0,0,.28);
  --shadow-md:     0 8px 28px rgba(0,0,0,.42);
  --shadow-lg:     0 24px 60px rgba(0,0,0,.56);
}

/* ─── 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(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  transition: background var(--transition), color var(--transition);
}


a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: none; font-family: inherit; border: none; background: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--c-violet); border-radius: 2px; }

/* ─── CURSOR ─── */
.b-cursor-dot,
.b-cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.b-cursor-dot {
  width: 7px; height: 7px;
  background: var(--c-teal);
  transition: width .15s, height .15s, background .3s;
}
.b-cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--c-violet);
  opacity: .5;
  transition: width .2s, height .2s, border-color .2s, opacity .2s;
}
body.cursor-hover .b-cursor-ring { width: 54px; height: 54px; border-color: var(--c-teal); opacity: .75; }

/* ─── UTILITY ─── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
section{padding: 50px 0px;}
.b-tag {margin:0 auto 28px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--c-teal);
  padding: 5px 13px; border-radius: var(--radius-pill);
  border: 1px solid var(--c-teal); background: var(--c-teal-lt);
  margin-bottom: 18px;
}
.b-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-teal); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.025em;
}
.section-title em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub {
  color: var(--text-muted); font-size: 16px;
  margin-top: 14px; line-height: 1.72;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-family: var(--ff-display); font-size: 14px; font-weight: 700;
  letter-spacing: .015em; transition: all var(--transition);
}
.btn-primary {
  font-size:16px;padding:18px 36px;
  background: var(--g-accent); color: #fff;
  box-shadow: 0 4px 18px rgba(99,91,255,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(99,91,255,.34); }
.btn-ghost {
  font-size:16px;padding:18px 36px;
  border: 1.5px solid var(--border-strong); color: var(--text);
  background: var(--surface);
}
.btn-ghost:hover { border-color: var(--c-violet); background: var(--c-violet-lt); }
.btn-nav{padding:10px 22px;font-size:13px;}
/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }



/* ════════════════════════════════
   NAVBAR (injected via JS)
════════════════════════════════ */
.b-nav{
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 40px);
  max-width: 1300px;

  height: var(--nav-h);

  border-radius: 999px;      /* capsule */
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);

  z-index: 200;
}
.b-nav.scrolled{
  background: rgba(255,255,255,.95);
  border-color: var(--border);
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
body.dark .b-nav.scrolled { background: white;}

.b-nav-inner {
  height: 100%;
  height:100%;
  padding:0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b-nav-logo{
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
}

.b-nav-logo img{
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.b-nav-links {
  display: flex; gap: 30px; align-items: center; margin-right: 28px;
}
.b-nav-links a {
  font-size: 16px; font-weight: 500; color: black;
  position: relative; transition: color var(--transition); white-space: nowrap;
}
.b-nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--g-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
/* .b-nav-links a:hover { color: var(--c-teal); } */
.b-nav-links a:hover::after { transform: scaleX(1); }
.b-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.b-nav-login {
  font-size: 16px; font-weight: 500; color: black;
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}
.b-nav-login:hover {  background: var(--c-teal); }

.b-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  cursor: none;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
  margin-left: auto;
}
.b-nav-hamburger:hover {
  background: var(--c-teal-lt);
  border-color: var(--c-teal);
}
.b-nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}
/* Open state */
.b-nav.menu-open .b-nav-hamburger span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.b-nav.menu-open .b-nav-hamburger span:nth-child(2) { opacity: 0; width: 0; }
.b-nav.menu-open .b-nav-hamburger span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.b-nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 199;
  overflow-y: auto;
  padding: 28px 28px 40px;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.b-nav-drawer.drawer-open {
  transform: translateX(0);
}
.b-nav-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.b-nav-drawer-link:last-of-type { border-bottom: none; }
.b-nav-drawer-link:hover { color: var(--c-teal); padding-left: 6px; }
.b-nav-drawer-link::after { content: '→'; font-size: 13px; color: var(--text-dim); }
.b-nav-drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}
.b-nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.b-nav-drawer-actions .b-nav-login {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  font-size: 15px;
  font-weight: 600;
}
.b-nav-drawer-actions .btn {
  justify-content: center;
  font-size: 15px;
  padding: 14px;
}

/* ════════════════════════════════
   HERO SLIDER
════════════════════════════════ */
.b-hero {
  position: relative; width: 100%; height: 100vh; min-height: 620px;
  overflow: hidden; padding-top: var(--nav-h);
  display: flex; align-items: center;
}
.b-hero-slides { position: absolute; inset: 0; }
.b-hero-slide {
  position: absolute; inset: 0;
  /* background-size: cover; background-position: center; */
  opacity: 0; transition: opacity 1.2s ease; z-index: 0;
}
.b-hero-slide.active { opacity: 1; z-index: 1; }
.b-hero-slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg,
    rgba(244,246,251,.94) 0%,
    rgba(244,246,251,.76) 48%,
    rgba(244,246,251,.18) 100%);
  transition: background var(--transition);
}
body.dark .b-hero-slide-overlay {
  background: linear-gradient(105deg,
    rgba(8,9,15,.94) 0%,
    rgba(8,9,15,.76) 48%,
    rgba(8,9,15,.18) 100%);
}
/* NEW — full-cover image inside each slide */
.b-hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.b-hero-content {
 position: relative; z-index: 3; max-width: 640px;
}
.b-hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--c-teal); margin-bottom: 22px;
  opacity: 0; animation: slideUp .7s .2s ease forwards;
}
.b-hero-eyebrow span { width: 28px; height: 1.5px; background: var(--c-teal); }
.b-hero-h1 {color: white;
  font-family: var(--ff-display);
  font-size: clamp(42px, 6.5vw, 86px);
  font-weight: 800; line-height: 1.0; letter-spacing: -.03em;
  opacity: 0; animation: slideUp .85s .35s ease forwards;
}
.b-hero-h1 .grad {
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.b-hero-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.72;
  margin-top: 20px; max-width: 480px;
  opacity: 0; animation: slideUp .85s .5s ease forwards;
}
.b-hero-ctas {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
  opacity: 0; animation: slideUp .85s .65s ease forwards;
}
.b-hero-meta {
  display: flex; gap: 36px; margin-top: 52px;
  opacity: 0; animation: slideUp .85s .8s ease forwards;
}
.b-hero-stat .num {
  font-family: var(--ff-display); font-size: 30px; font-weight: 800;
  background: var(--g-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.b-hero-stat .lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.b-hero-indicators {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.b-hero-dot {
  width: 8px; height: 8px; border-radius: 99px; cursor: pointer;
  background: var(--text-dim); border: none;
  transition: all .4s ease; padding: 0;
}
.b-hero-dot.active { width: 28px; background: var(--g-accent); }

.b-scroll-hint {
  position: absolute; bottom: 40px; right: 48px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); writing-mode: vertical-rl;
  opacity: 0; animation: slideUp 1s 1.2s ease forwards;
}
.b-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--c-teal), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollDrop {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0) translateY(20px); }
}

/* ════════════════════════════════
   ECOSYSTEM MAP
════════════════════════════════ */
.b-ecosystem { padding: var(--section-pad); position: relative; overflow: hidden; }
.b-eco-header { text-align: center; margin-bottom: 72px; }
.b-eco-header .section-sub { margin: 14px auto 0; }

.b-eco-map {
  position: relative; height: 560px; max-width: 860px; margin: 0 auto;
}
.b-eco-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px dashed;
  transform: translate(-50%, -50%);
}
.b-eco-ring-1 { width: 260px; height: 260px; border-color: rgba(15,188,171,.22); animation: spinCW 28s linear infinite; }
.b-eco-ring-2 { width: 430px; height: 430px; border-color: rgba(99,91,255,.14); animation: spinCCW 44s linear infinite; }
.b-eco-ring-3 { width: 568px; height: 568px; border-color: rgba(15,188,171,.07); animation: spinCW 62s linear infinite; }

@keyframes spinCW  { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes spinCCW { to { transform: translate(-50%,-50%) rotate(-360deg); } }

.b-eco-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 108px; height: 108px; border-radius: 50%; z-index: 10;
  background: var(--surface); border: 2px solid var(--c-teal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(15,188,171,.18), var(--shadow-md);
  animation: hubPulse 3.5s ease-in-out infinite;
}
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(15,188,171,.14), var(--shadow-md); }
  50%       { box-shadow: 0 0 52px rgba(15,188,171,.30), var(--shadow-lg); }
}
.b-eco-center-logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.b-eco-center-logo img{
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.b-eco-center-logo {
  font-family: var(--ff-display); font-size: 22px; font-weight: 800;
  background: var(--g-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.b-eco-center-lbl { font-size: 9px; color: var(--text-muted); letter-spacing: .08em; }

.b-eco-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.b-eco-line {
  stroke-dasharray: 5 5;
  animation: dashFlow 3s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -20; } }

.b-eco-node {
  position: absolute; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; z-index: 5;
  transition: all .3s ease; cursor: pointer; box-shadow: var(--shadow-sm);
  opacity: 0; /* animated in by JS */
}
.b-eco-node.visible {
  opacity: 1;
  animation: nodeFloat var(--float-dur, 5s) ease-in-out infinite alternate;
}
@keyframes nodeFloat {
  from { transform: translate(-50%, -50%) translateY(0px); }
  to   { transform: translate(-50%, -50%) translateY(-8px); }
}
.b-eco-node:hover {
  border-color: var(--c-teal);
  box-shadow: 0 0 22px rgba(15,188,171,.24), var(--shadow-md);
  z-index: 15;
}
.b-eco-node-icon { font-size: 22px; line-height: 1; }
.b-eco-node-lbl { font-size: 9px; color: var(--text-muted); text-align: center; line-height: 1.2; padding: 0 4px; }
.b-eco-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 6px 11px; font-size: 12px; font-weight: 500;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s; box-shadow: var(--shadow-md);
  color: var(--text);
}
.b-eco-node:hover .b-eco-tooltip { opacity: 1; }

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.b-services { padding: var(--section-pad); }
.b-services-header { margin-bottom: 64px; }
.b-services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.b-svc-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.b-svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.b-svc-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.b-svc-card:hover::before { transform: scaleX(1); }
.b-svc-card:nth-child(1) { grid-column: 1/6; }
.b-svc-card:nth-child(2) { grid-column: 6/10; }
.b-svc-card:nth-child(3) { grid-column: 10/13; }
.b-svc-card:nth-child(4) { grid-column: 1/4; }
.b-svc-card:nth-child(5) { grid-column: 4/8; }
.b-svc-card:nth-child(6) { grid-column: 8/13; }

.b-svc-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; background: var(--c-teal-lt);
}
.b-svc-icon{width: 45px; height: 45px;}
.b-svc-num { font-size: 10px; letter-spacing: .14em; color: var(--text-dim); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.b-svc-name { font-family: var(--ff-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.b-svc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.b-svc-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  transition: all .3s; font-size: 15px; color: var(--text-muted);
}
.b-svc-card:hover .b-svc-arrow {
  background: var(--c-teal); border-color: var(--c-teal);
  color: #fff; transform: rotate(45deg);
}

/* ════════════════════════════════
   BENTO — WHY CHOOSE US
════════════════════════════════ */
.b-why { padding: var(--section-pad); }
.b-why-header { margin-bottom: 52px; }
.b-bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 14px; grid-auto-rows: 196px;
}
.b-bento-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.b-bento-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.b-bento-card:nth-child(1) { grid-column:1/5; grid-row:1/3; background: radial-gradient(circle at 80% 20%, var(--c-teal-lt), transparent 60%), var(--surface); }
.b-bento-card:nth-child(2) { grid-column:5/8; grid-row:1/2; }
.b-bento-card:nth-child(3) { grid-column:8/13; grid-row:1/2; }
.b-bento-card:nth-child(4) { grid-column:5/9; grid-row:2/3; background: radial-gradient(circle at 20% 80%, var(--c-violet-lt), transparent 60%), var(--surface); }
.b-bento-card:nth-child(5) { grid-column:9/13; grid-row:2/3; }
.b-bento-card:nth-child(6) { grid-column:1/5; grid-row:3/4; }
.b-bento-card:nth-child(7) { grid-column:5/9; grid-row:3/4; }
.b-bento-card:nth-child(8) { grid-column:9/13; grid-row:3/4; }

.b-bento-icon { font-size: 30px; margin-bottom: 12px; }
.b-bento-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; margin-bottom: 7px; line-height: 1.22; }
.b-bento-card:nth-child(1) .b-bento-title { font-size: 23px; }
.b-bento-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.bbb1 { margin-top: auto;}
.bbb2{display:flex;justify-content:space-between;font-size:11px;color:var(--text-muted);margin-bottom:8px;}
.bbb2 span{color:var(--c-teal);}
.b-bento-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 99px;
  background: var(--c-teal-lt); color: var(--c-teal); border: 1px solid var(--c-teal);
}
.b-bento-big-num {
  font-family: var(--ff-display); font-size: 50px; font-weight: 800;
  background: var(--g-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin: 5px 0;
}
.b-bento-text{font-size:12px;color:var(--text-muted);}
.b-bento-bar-track { height: 3px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.b-bento-bar-fill {width:94%; height: 100%; border-radius: 2px; background: var(--g-accent); animation: barGrow 1.5s ease forwards; }
@keyframes barGrow { from { width: 0; } }

/* ════════════════════════════════
   PLATFORM PREVIEW
════════════════════════════════ */
.b-platform { padding: var(--section-pad); }
.b-platform-header { text-align: center; margin-bottom: 52px; }
.b-platform-header .section-sub { margin: 14px auto 0; }
.b-platform-shell {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.b-platform-topbar {
  height: 48px; background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 20px; gap: 14px;
}
.b-platform-dots { display: flex; gap: 7px; }
.b-platform-dots span { width: 11px; height: 11px; border-radius: 50%; }
.b-platform-dots span:nth-child(1) { background: #f87171; }
.b-platform-dots span:nth-child(2) { background: #fbbf24; }
.b-platform-dots span:nth-child(3) { background: #34d399; }
.b-platform-url {
  flex: 1; max-width: 380px; height: 26px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 6px; display: flex; align-items: center;
  padding: 0 10px; font-size: 11px; color: var(--text-muted);
}
.b-platform-body { display: grid; grid-template-columns: 200px 1fr; min-height: 440px; }
.b-platform-sidebar { background: var(--bg-soft); border-right: 1px solid var(--border); padding: 20px 0; }
.b-sidebar-item {
  padding: 11px 20px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); transition: all .2s; cursor: pointer;
  border-left: 2px solid transparent;
}
.b-sidebar-item:hover, .b-sidebar-item.active {
  color: var(--text); background: var(--c-violet-lt); border-left-color: var(--c-violet);
}
.b-platform-main { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.b-platform-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.b-platform-metric {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px;
}
.b-metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.b-metric-value {
  font-family: var(--ff-display); font-size: 26px; font-weight: 800;
  background: var(--g-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-top: 4px;
}
.b-metric-delta { font-size: 11px; color: var(--c-teal); margin-top: 3px; }
.b-chart-area {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px; flex: 1;
}
.b-chart-label { font-size: 11px; color: var(--text-muted); margin-bottom: 14px; }
.b-chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 112px; }
.b-chart-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--c-violet), var(--c-teal));
  transform-origin: bottom; animation: barScale 1s ease forwards; transform: scaleY(0);
}
.b-chart-bar1{height:40%}
.b-chart-bar2{height:60%;animation-delay:.08s}
.b-chart-bar3{height:50%;animation-delay:.16s}
.b-chart-bar4{height:75%;animation-delay:.16s}
.b-chart-bar5{height:55%;animation-delay:.16s}
.b-chart-bar6{height:85%;animation-delay:.16s}
.b-chart-bar7{height:65%;animation-delay:.16s}
.b-chart-bar8{height:90%;animation-delay:.16s}
.b-chart-bar9{height:70%;animation-delay:.16s}
.b-chart-bar10{height:100%;animation-delay:.16s}
.b-chart-bar11{height:88%;animation-delay:.16s}
.b-chart-bar12{height:95%;animation-delay:.16s}

@keyframes barScale { to { transform: scaleY(1); } }

/* ════════════════════════════════
   INDUSTRIES
════════════════════════════════ */
.b-industries { padding: var(--section-pad); overflow: hidden; }
.b-industries-header { margin-bottom: 52px; }
.b-industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start;}
.b-industry-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: visible;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: var(--shadow-sm);position: relative;
}
.b-industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.b-industry-thumb {
  height: 188px; 
  position: relative;
    background-size: cover;        
  background-position: center;     
  background-repeat: no-repeat;
}
.thumb1{background-image:url('../img/indus1.jpg')}
.thumb2{background-image:url('../img/indus2.jpg')}
.thumb3{background-image:url('../img/indus3.jpg')}
.thumb4{background-image:url('../img/indus4.jpg')}
.thumb5{background-image:url('../img/indus5.jpg')}
.thumb6{background-image:url('../img/indus6.jpg')}

.b-industry-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 10%, var(--surface));
}
.b-industry-body { padding: 20px 22px; }
.b-industry-name { font-family: var(--ff-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.b-industry-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.b-industry-features {
  padding: 0 22px 22px; display: flex; flex-direction: column; gap: 6px;
   }
.b-industry-feat { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.b-industry-feat::before {
  content: '✓'; width: 17px; height: 17px; border-radius: 50%;
  background: var(--c-teal-lt); color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; flex-shrink: 0;
}

/* ════════════════════════════════
   SECURITY
════════════════════════════════ */
.b-security {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--c-violet-lt), transparent 60%);
  position: relative; overflow: hidden;
}
.b-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.b-security-visual {
  position: relative; height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.b-security-shield {
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-violet-lt), var(--c-teal-lt));
  border: 2px solid var(--c-violet); display: flex; align-items: center;
  justify-content: center; font-size: 64px; z-index: 2; position: relative;
  animation: hubPulse 3s ease-in-out infinite;
}
.b-security-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: spinCW 22s linear infinite;
}
.b-security-ring:nth-child(2) { width: 264px; height: 264px; border-color: rgba(99,91,255,.18); }
.b-security-ring:nth-child(3) { width: 356px; height: 356px; border-color: rgba(15,188,171,.10); animation-direction: reverse; }
.b-sec-dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--c-teal); box-shadow: 0 0 8px var(--c-teal);
}
.dot1{top:12%;left:52%;}
.dot2{top:76%;left:38%;background:var(--c-violet);box-shadow:0 0 10px var(--c-violet);}
.dot3{top:44%;left:88%;background:var(--c-teal);box-shadow:0 0 10px var(--c-teal);}

.b-certs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.b-cert-badge {
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); font-size: 12px; font-weight: 600;
  background: var(--surface); display: flex; align-items: center; gap: 6px;
}
.b-cert-badge::before { content: '🔒'; font-size: 13px; }
.b-sec-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.b-sec-point {
  display: flex; gap: 14px; padding: 18px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); transition: border-color .3s; box-shadow: var(--shadow-sm);
}
.b-sec-point:hover { border-color: var(--c-violet); }
.b-sec-point-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: var(--c-violet-lt); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.b-sec-point-title { font-family: var(--ff-display); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.b-sec-point-body { font-size: 12px; color: var(--text-muted); }

/* ════════════════════════════════
   WORKFLOW
════════════════════════════════ */
.b-workflow { padding: var(--section-pad); }
.b-workflow-header { text-align: center; margin-bottom: 72px; }
.b-workflow-header .section-sub { margin: 14px auto 0; }
.b-workflow-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.b-workflow-steps::before {
  content: ''; position: absolute; top: 46px; left: 10%; right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--c-teal) 30%, var(--c-violet) 70%, transparent 100%);
  z-index: 0;
}
.b-wf-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
}
.b-wf-num {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 26px; font-weight: 800;
  margin-bottom: 22px; transition: all .3s; box-shadow: var(--shadow-sm);
}
.b-wf-step:hover .b-wf-num {
  border-color: var(--c-teal);
  box-shadow: 0 0 28px rgba(15,188,171,.22);
  color: var(--c-teal);
}
.b-wf-title { font-family: var(--ff-display); font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.b-wf-body { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════
   STORIES
════════════════════════════════ */
.b-stories { padding: var(--section-pad); overflow: hidden; }
.b-stories-header { margin-bottom: 52px; }
.b-stories-wrap { overflow: hidden; position: relative; }
.b-stories-wrap::before,
.b-stories-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.b-stories-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.b-stories-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.b-stories-track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee 30s linear infinite;
}
.b-stories-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.b-story-card {
  width: 340px; flex-shrink: 0;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: border-color .3s, box-shadow .3s;
}
.b-story-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.b-story-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; }
.b-story-quote { font-size: 14px; line-height: 1.72; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.b-story-author { display: flex; align-items: center; gap: 10px; }
.b-story-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.b-story-name { font-family: var(--ff-display); font-size: 13px; font-weight: 700; }
.b-story-co { font-size: 11px; color: var(--text-dim); margin-top: 1px; }

/* ════════════════════════════════
   CTA
════════════════════════════════ */
.b-cta-section { padding: var(--section-pad); }
.b-cta-inner {
  background: linear-gradient(135deg, var(--c-teal-lt) 0%, var(--c-violet-lt) 100%);
  border: 1.5px solid var(--border-strong);
  border-radius: 28px; padding: 88px 52px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.b-cta-quote {
  font-family: var(--ff-display);
  font-size: clamp(26px, 4.2vw, 58px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
  max-width: 780px; margin: 0 auto 28px;
}
.b-cta-quote .grad {
  background: var(--g-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.b-cta-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.b-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════
   FOOTER (injected via JS)
════════════════════════════════ */
.b-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.b-footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.b-footer-brand-logo{
  display: block;
  margin-bottom: 14px;
}

.b-footer-brand-logo img{
  height: 60px;      
  width: auto;
  display: block;
  object-fit: contain;
}
.b-footer-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.72; max-width: 240px; margin-bottom: 20px;
}
.b-footer-contact { font-size: 13px; color: var(--text-muted); line-height: 2.2; }
.b-footer-contact a { color: var(--c-teal); transition: opacity .2s; }
.b-footer-contact a:hover { opacity: .75; }
.b-footer-col-title {
  font-family: var(--ff-display); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin-bottom: 18px;
}
.b-footer-links { display: flex; flex-direction: column; gap: 11px; }
.b-footer-links a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.b-footer-links a:hover { color: var(--c-teal); }
.b-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 16px;
}
.b-footer-copy { font-size: 12px; color: var(--text-dim); }
.b-footer-socials { display: flex; gap: 10px; }
.b-footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 13px; color: var(--text-muted);
  transition: all .2s; text-decoration: none; cursor: pointer;
}
.b-footer-social:hover { border-color: var(--c-teal); color: var(--c-teal); }

/* ════════════════════════════════
   THEME TOGGLE CAPSULE (injected)
════════════════════════════════ */
.b-theme-toggle {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 300;
  width: 72px; height: 36px; border-radius: 99px;
  background: var(--surface); border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-md); cursor: pointer; padding: 4px;
  display: flex; align-items: center;
  transition: background .3s, border-color .3s;
}
.b-theme-toggle-pill {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--g-accent);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1; flex-shrink: 0; pointer-events: none;
}
body.dark .b-theme-toggle-pill { transform: translateX(36px); }

/* ════════════════════════════════
   CHAT BUTTON (injected)
════════════════════════════════ */
.b-chat-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--g-accent); box-shadow: 0 4px 20px rgba(99,91,255,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer;
  transition: transform .25s, box-shadow .25s; border: none;
}
.b-chat-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(99,91,255,.42); }

.b-chat-bubble {
  position: fixed; bottom: 92px; right: 28px; z-index: 299;
  background: var(--surface); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  padding: 18px 22px; width: 280px; box-shadow: var(--shadow-lg);
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity .28s ease, transform .28s ease;
}
.b-chat-bubble.open { opacity: 1; pointer-events: auto; transform: none; }
.b-chat-bubble strong { display: block; font-family: var(--ff-display); font-size: 15px; color: var(--text); margin-bottom: 6px; }
.b-chat-bubble-input { margin-top: 14px; display: flex; gap: 8px; }
.b-chat-bubble-input input {
  flex: 1; height: 34px; padding: 0 12px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: 13px; color: var(--text); font-family: var(--ff-body);
  outline: none; transition: border-color .2s; cursor: text;
}
.b-chat-bubble-input input:focus { border-color: var(--c-violet); }
.b-chat-bubble-input button {
  height: 34px; padding: 0 14px; border-radius: var(--radius-pill);
  background: var(--g-accent); color: #fff;
  font-size: 12px; font-weight: 700; font-family: var(--ff-display); cursor: pointer;
  border: none;
}















/* ════════════════════════════════════════════════════════
   PAGES.CSS — Services · Solutions · About · Resources
   Extends base theme variables (do not redefine :root)
════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (shared) ─── */
.pg-hero {
  padding: calc(var(--nav-h) + 80px) 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;  background:var(--bg);
}
.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:var(--bg);
  pointer-events: none;
}
.pg-hero-tag { margin-bottom: 22px; }
.pg-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 820px;
  margin: 0 auto 22px;
}
.pg-hero-title em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pg-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.72;
}
.pg-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── SECTION HEADERS ─── */
.sec-header { margin-bottom: 56px; }
.sec-header.center { text-align: center; }
.sec-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── FLOATING ORBS (decorative) ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: .45;
}
.orb-teal  { background: var(--c-teal); }
.orb-violet{ background: var(--c-violet); }
.res-orb-teal{width:420px;height:420px;top:-120px;right:-80px;}
.res-orb-violet{width:340px;height:340px;bottom:-100px;left:-60px;}
/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */

/* Services Intro Strip */
.svc-strip {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 90px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.svc-strip-item {
  flex: 1;
  padding: 36px 28px;
  border-right: 1.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background var(--transition);
}
.svc-strip-item:last-child { border-right: none; }
.svc-strip-item:hover { background: var(--surface-2); }
.svc-strip-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--c-teal-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: var(--c-teal);
}
.svc-strip-text h4 {
  font-family: var(--ff-display);
  font-size: 15px; font-weight: 700;
  margin-bottom: 5px;
}
.svc-strip-text p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* Services Grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 90px;
}
.svc-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.svc-card-num {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.svc-card-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: var(--c-teal-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: transform .3s;
  color: var(--c-teal);
}
.svc-card:hover .svc-card-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card-title {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.svc-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.svc-card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.svc-card-list li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 9px;
}
.svc-card-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-teal);
  flex-shrink: 0;
}
.svc-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  color: var(--c-teal);
  transition: gap .2s;
}
.svc-card-link:hover { gap: 12px; }

/* Process / How it Works */
.svc-process { padding: var(--section-pad); background: var(--bg-soft); }
.svc-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}
.svc-process-track::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-violet));
  z-index: 0;
}
.svc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.svc-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 800;
  color: var(--c-teal);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.svc-step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed var(--border-strong);
  animation: spin 12s linear infinite;
  opacity: 0;
  transition: opacity .3s;
}
.svc-step:hover .svc-step-num::after { opacity: 1; }
.svc-step:hover .svc-step-num { transform: scale(1.1); box-shadow: var(--shadow-md); }
@keyframes spin { to { transform: rotate(360deg); } }
.svc-step h4 {
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.svc-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* CTA Banner */
.svc-cta-banner {
  margin: 90px 0 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(15,188,171,.08), transparent);
  pointer-events: none;
}
.svc-cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  max-width: 500px;
}
.svc-cta-banner h2 em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ════════════════════════════════
   SOLUTIONS PAGE
════════════════════════════════ */

/* Tabs */
.sol-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.sol-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  transition: all .25s;
  cursor: none;
}
.sol-tab:hover, .sol-tab.active {
  border-color: var(--c-teal);
  color: var(--c-teal);
  background: var(--c-teal-lt);
}

/* Solutions Panel */
.sol-panel { display: none; }
.sol-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sol-panel-visual {
  border-radius: var(--radius-lg);
 background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border: 1.5px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.sol-panel-visual1{background-image: url('../img/solu-saas.jpg');}
.sol-panel-visual2{background-image: url('../img/solu-fintech.jpg');}
.sol-panel-visual3{background-image: url('../img/solu-healthcare.jpg');}
.sol-panel-visual4{background-image: url('../img/solu-ecom.jpg');}
.sol-panel-visual5{background-image: url('../img/solu-agencies.jpg');}
.sol-panel-tag { margin-bottom: 18px; display: inline-flex; }
.sol-panel-title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sol-panel-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.sol-features-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.sol-feat-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.sol-feat-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--c-teal-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  color: var(--c-teal);
}
.sol-feat-text h5 {
  font-size: 14px; font-weight: 700;
  margin-bottom: 3px;
}
.sol-feat-text p { font-size: 13px; color: var(--text-muted); }

/* Stats Row */
.sol-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 90px 0;
}
.sol-stat {
  background: var(--surface);
  padding: 44px 32px;
  text-align: center;
  transition: background var(--transition);
}
.sol-stat:hover { background: var(--surface-2); }
.sol-stat-num {
  font-family: var(--ff-display);
  font-size: 48px; font-weight: 800;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.sol-stat-label { font-size: 13px; color: var(--text-muted); }

/* Integration Grid */
.sol-integrations { padding: var(--section-pad); background: var(--bg-soft); }
.sol-int-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.sol-int-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.sol-int-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-teal);
}

.sol-int-card .int-icon { font-size: 32px; margin-bottom: 8px; }
.sol-int-card .int-name { font-size: 11px; font-weight: 700; color: var(--text-muted); }
.sol-int-lower{text-align:center; margin-top:32px; font-size:14px; color:var(--text-muted);}
.sol-int-lower a{color:var(--c-teal); font-weight:600;}
/* ================================================================
   ABOUT PAGE — about.css
   Uses only theme variables from the main stylesheet.
   No inline styles; no variable redefinitions.
================================================================ */

/* ─── FONT OVERRIDE (Satoshi fallback to Syne) ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Syne:wght@700;800&display=swap');

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background: var(--bg-soft);
}

.about-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .5;
  pointer-events: none;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero__title {
  margin-bottom: 18px;
}

.about-hero__sub {
  margin-bottom: 36px;
}

.about-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Diagram */
.about-hero__diagram {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-hero__diagram-card {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  width: 240px;
  box-shadow: var(--shadow-lg);
}

.about-hero__diagram-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.about-hero__diagram-avatar img{ width: 82px;
  height: 82px;
  border-radius: 50%;}

.about-hero__diagram-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: var(--text);
}

.about-hero__diagram-email {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.about-hero__diagram-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.about-hero__diagram-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-dim);
  width: 100%;
  margin-bottom: 4px;
}

.about-hero__diagram-bar {
  display: block;
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  flex-shrink: 0;
}

.about-hero__diagram-bar:nth-child(2) {
  background: linear-gradient(90deg, var(--c-teal), var(--c-violet));
}
.abbar1{width: 75%;}
.abbar2{width: 20%;}
.abbar3{width: 92%;}
.abbar4{width: 60%;}
.abbar5{width: 25%;}
.abbar6{--w:88%;--c:var(--c-teal)}
.abbar7{--w:62%;--c:var(--c-violet)}
.abbar8{--w:95%;--c:var(--c-teal)}
.abbar9{--w:44%;--c:var(--c-violet)}
/* Icon groups flanking the card */
.about-hero__icon-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.about-hero__icon-group--left { left: 0; }
.about-hero__icon-group--right { right: 0; }

.about-hero__icon-chip {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), color var(--transition);
}

.about-hero__icon-chip--label {
  width: auto;
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: .06em;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--text-dim);
  height: auto;
  font-weight: 600;
}

.about-hero__icon-chip:hover {
  border-color: var(--c-teal);
  color: var(--c-teal);
}

/* Features grid */
.about-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
}

.about-hero__feat {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-hero__feat:hover {
  border-color: var(--c-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-hero__feat-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--c-teal);
}

.about-hero__feat h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.about-hero__feat p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   MISSION / VISION / VALUES
════════════════════════════════════════════════ */
.about-mvv {
  padding: var(--section-pad);
  background: var(--bg);
  overflow: hidden;
}

.about-mvv__header {
  text-align: center;
  margin-bottom: 70px;
}

.about-mvv__header .section-sub {
  margin: 14px auto 0;
}

.about-mvv__scene {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.about-mvv__connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  pointer-events: none;
  z-index: 0;
}

/* Nodes */
.about-mvv__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 28px;
  z-index: 2;
}

.about-mvv__node--mission {
  top: 2%;
  left: 1%;
}

.about-mvv__node--vision {
  top: 10%;
  right: 1%;
  flex-direction: row-reverse;
}

.about-mvv__node--values {
  bottom: -13%;
  left: 28%;
  transform: translateX(-50%);
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

/* Circles */
.about-mvv__circle {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 10px;
  position: relative;
}

.about-mvv__circle--mission {
  background: conic-gradient(#f5c518 0deg 270deg, transparent 270deg);
  box-shadow: 0 0 0 4px rgba(245,197,24,.15), var(--shadow-md);
}

.about-mvv__circle--vision {
  background: conic-gradient(#3b9ddd 0deg 270deg, transparent 270deg);
  box-shadow: 0 0 0 4px rgba(59,157,221,.15), var(--shadow-md);
}

.about-mvv__circle--values {
  background: conic-gradient(#e85d26 0deg 270deg, transparent 270deg);
  box-shadow: 0 0 0 4px rgba(232,93,38,.15), var(--shadow-md);
}

.about-mvv__circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-2);
  border: 3px solid var(--surface);
}

.about-mvv__circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

/* Text blocks */
.about-mvv__text {
  max-width: 240px;
}

.about-mvv__text h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-mvv__text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-mvv__text--right { text-align: left; }
.about-mvv__text--left  { text-align: right; }
.about-mvv__node--values .about-mvv__text { text-align: center; max-width: 320px; }

/* ════════════════════════════════════════════════
   ROADMAP / TIMELINE
════════════════════════════════════════════════ */
.about-roadmap {
  padding: var(--section-pad);
  background: var(--bg-soft);
}

.about-roadmap__header {
  text-align: center;
  margin-bottom: 60px;
}

.about-roadmap__header .section-sub {
  margin: 14px auto 0;
}

.about-roadmap__track {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.about-roadmap__svg {
  width: 100%;
  height: auto;
  display: block;
}



/* Label overlay grid */
.about-roadmap__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-roadmap__label {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 150px;
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.about-roadmap__label:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--c-teal);
}

.about-roadmap__label h4 {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.about-roadmap__label p {
  display: none;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-roadmap__label:hover p {
  display: block;
}
/* Label positions matching the SVG dots */
.about-roadmap__label--1 { left: 5%;  top: 2%;  }
.about-roadmap__label--2 { left: 33%; top: 2%;  }
.about-roadmap__label--3 { left: 50%; top: 28%; }
.about-roadmap__label--4 { right: 8%; top: 40%; }
.about-roadmap__label--5 { left: 58%; bottom: 2%; }
.about-roadmap__label--6 { right: -5%; bottom: 2%; }

/* ════════════════════════════════════════════════
   TRUST & SECURITY
════════════════════════════════════════════════ */
.about-trust {
  padding: var(--section-pad);
  background: var(--bg);
}

.about-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-trust__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 36px 0;
}

.about-trust__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-trust__step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.about-trust__step--1 { background: var(--text); color: var(--bg); }
.about-trust__step--2 { background: var(--c-teal); color: #fff; }
.about-trust__step--3 { background: var(--c-teal); color: #fff; opacity: .85; }
.about-trust__step--4 {
  background: linear-gradient(90deg, var(--c-teal), var(--c-violet));
  color: #fff;
}

.about-trust__step--1 .about-trust__step-num { color: var(--c-teal); }
.about-trust__step--2 .about-trust__step-num,
.about-trust__step--3 .about-trust__step-num,
.about-trust__step--4 .about-trust__step-num { color: rgba(255,255,255,.75); }

.about-trust__step-num {
  font-size: 13px;
  font-weight: 800;
  min-width: 24px;
}

.about-trust__step-label {
  flex: 1;
}

.about-trust__step-icon {
  font-size: 18px;
}

.about-trust__quote {
  font-family: var(--ff-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-muted);
  border-left: 3px solid var(--c-teal);
  padding-left: 18px;
  margin-top: 10px;
}

/* Visual side */
.about-trust__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-trust__clipboard {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 190px;
  box-shadow: var(--shadow-md);
}

.about-trust__clip-item {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-trust__clip-item:last-child { border: none; }

.about-trust__arrow {
  font-size: 24px;
  color: var(--c-teal);
  font-weight: 700;
}

.about-trust__shield {
  position: relative;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--c-teal), var(--c-violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-trust__shield-icon {
  font-size: 38px;
}

.about-trust__shield-check {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--c-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 900;
  border: 2px solid var(--surface);
}

.about-trust__dashboard {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.about-trust__dash-bar {
  height: 10px;
  width: var(--w);
  background: var(--c);
  border-radius: var(--radius-pill);
  opacity: .75;
}

/* ════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════ */
.about-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.about-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.35) saturate(.6);
  z-index: 0;
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,188,171,.45) 0%, rgba(236,72,153,.35) 100%);
  z-index: 1;
}

.about-cta .container {
  position: relative;
  z-index: 2;
}

.about-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-cta__inner .b-tag {margin: 0;
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.about-cta__inner .b-tag::before {
  background: #fff;
}

.about-cta__title {
  color: #fff;
  margin-bottom: 18px;
}

.about-cta__sub {
  color: rgba(255,255,255,.7);
  margin: 0 auto 40px;
}

.about-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.about-cta__ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.about-cta__ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
}

.about-cta__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.about-cta__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-cta__stat-val {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-cta__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.about-cta__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}

/* ════════════════════════════════
   RESOURCES / BLOG PAGE
════════════════════════════════ */

/* Featured Post */
.res-featured {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 72px;
  transition: box-shadow .35s;
}
.res-featured:hover { box-shadow: var(--shadow-lg); }
.res-feat-thumb {
  height: 420px;
  background-image: url('../img/blog1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.res-feat-content {
  padding: 20px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.res-feat-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.res-feat-cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-teal);
}
.res-feat-date { font-size: 12px; color: var(--text-dim); }
.res-feat-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color .2s;
}
.res-feat-title:hover { color: var(--c-teal); }
.res-feat-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.res-feat-btn{margin-bottom: 24px;}
.btn-article{font-size:14px;padding:13px 26px;}
.res-feat-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.res-feat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
}
.res-feat-author-text strong { display: block; font-size: 14px; font-weight: 700; }
.res-feat-author-text span { font-size: 12px; color: var(--text-muted); }

/* Blog Filter */
.res-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.res-filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  transition: all .25s;
  cursor: none;
}
.res-filter-btn:hover, .res-filter-btn.active {
  border-color: var(--c-teal);
  color: var(--c-teal);
  background: var(--c-teal-lt);
}

/* Blog Grid */
.res-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.res-blog-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.res-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.res-blog-thumb {
  background-size: cover;
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.res-blog-thumb-1 { background-image: url('../img/blog2.jpg') }
.res-blog-thumb-2 { background-image: url('../img/blog3.jpg') }
.res-blog-thumb-3 { background-image: url('../img/blog4.jpg') }
.res-blog-thumb-4 { background-image: url('../img/blog5.jpg') }
.res-blog-thumb-5 { background-image: url('../img/blog6.jpg') }
.res-blog-thumb-6 { background-image: url('../img/blog7.jpg') }
.res-blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--surface));
}
.res-blog-body { padding: 22px; }
.res-blog-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.res-blog-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-teal);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--c-teal-lt);
}
.res-blog-time { font-size: 11px; color: var(--text-dim); }
.res-blog-title {
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color .2s;
}
.res-blog-card:hover .res-blog-title { color: var(--c-teal); }
.res-blog-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.res-blog-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.res-blog-author { display: flex; align-items: center; gap: 8px; }
.res-blog-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--g-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
}
.res-blog-author-name { font-size: 12px; font-weight: 600; }
.res-blog-read { font-size: 11px; color: var(--text-dim); }

/* Newsletter */
.res-newsletter {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.res-newsletter .b-tag{margin:0 auto 22px;}
.res-newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(15,188,171,.07), transparent);
  pointer-events: none;
}
.res-newsletter h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}
.res-newsletter p { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto 36px; }
.res-nl-form {
  display: flex;
  gap: 12px;
  margin: 0 auto;flex-direction:column;max-width:100%;
}
.res-newsletter-last{font-size:12px;color:var(--text-dim);margin-top:16px;}
.res-nl-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color .25s;margin-bottom:10px;border-radius:var(--radius);
}
.res-nl-input::placeholder { color: var(--text-dim); }
.res-nl-input:focus { border-color: var(--c-teal); }
.res-nl-form-btn{max-width: 180px;}
/* ════════════════════════════════════════════════
   TESTIMONIALS – bento mosaic
════════════════════════════════════════════════ */
.res-testi {
  padding: var(--section-pad);
  background: var(--bg);
}

.res-testi__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.res-testi__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.res-testi__header-right .section-sub {
  margin-top: 0;
}

/* Bento grid */
.res-testi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

/* Base tile */
.res-testi__tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.res-testi__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-accent);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}

.res-testi__tile:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Stat tiles */
.res-testi__tile--stat .res-testi__stat-val {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.res-testi__stat-sup {
  font-size: .55em;
}

.res-testi__tile--stat .res-testi__stat-label {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
  z-index: 5;
}

/* Accent stat tile */
.res-testi__tile--accent {
  background: var(--text);
}

.res-testi__tile--accent .res-testi__stat-val {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.res-testi__tile--accent .res-testi__stat-label {
  color: var(--text-dim);
}

.res-testi__tile--accent .res-testi__logo {
  color: var(--text-dim);
}

/* Quote tiles */
.res-testi__tile--quote {
  background: var(--surface-2);
}

.res-testi__blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.res-testi__inline-quote {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}

/* Photo */
.res-testi__photo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.res-testi__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.res-testi__photo--lg {
  width: 56px;
  height: 56px;
  font-size: 16px;
}

.res-testi__photo-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.res-testi__photo-info strong {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-display);
  color: var(--text);
}

.res-testi__photo-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Logo */
.res-testi__logo {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: auto;
}

.res-testi__logo--brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-transform: none;
}

/* Grid placement */
.res-testi__tile--a { grid-column: 1; grid-row: 1; background: var(--c-teal-lt); border-color: var(--c-teal); }
.res-testi__tile--b { grid-column: 2; grid-row: 1; }
.res-testi__tile--c { grid-column: 3 / 5; grid-row: 1; }
.res-testi__tile--d { grid-column: 1; grid-row: 2; }
.res-testi__tile--e { grid-column: 2; grid-row: 2; background-image: url(../img/time.jpg);background-size: cover; }
.res-testi__tile--f { grid-column: 3; grid-row: 2; }
.res-testi__tile--g { grid-column: 1; grid-row: 3; }
.res-testi__tile--h { grid-column: 2; grid-row: 3; }
.res-testi__tile--i { grid-column: 3 / 5; grid-row: 2 / 4;background-image: url(../img/person.jpg);background-size: cover; }

/* ════════════════════════════════════════════════
   FAQ – animated accordion
════════════════════════════════════════════════ */
.res-faq {
  padding: var(--section-pad);
  background: var(--bg-soft);
}

.res-faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.res-faq__header {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.res-faq__link {
  color: var(--c-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.res-faq__link:hover { color: var(--c-violet); }

.res-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.res-faq__item {
  border-bottom: 1px solid var(--border-strong);
}

.res-faq__item:first-child {
  border-top: 1px solid var(--border-strong);
}

.res-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.res-faq__q:hover { color: var(--c-teal); }

.res-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}

.res-faq__icon::before,
.res-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform var(--transition), background var(--transition), opacity var(--transition);
}

.res-faq__icon::before { width: 10px; height: 1.5px; }
.res-faq__icon::after  { width: 1.5px; height: 10px; }

/* open state */
.res-faq__item--open .res-faq__q { color: var(--c-teal); }

.res-faq__item--open .res-faq__icon {
  background: var(--c-teal);
  border-color: var(--c-teal);
  transform: rotate(45deg);
}

.res-faq__item--open .res-faq__icon::before,
.res-faq__item--open .res-faq__icon::after { background: #fff; }

/* Answer panel */
.res-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .3s ease;
}

.res-faq__a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  padding-bottom: 24px;
}

/* Resources Hub sidebar layout */
.res-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.res-sidebar-card {background:var(--c-teal-lt); 
  border: 1.5px solid var(--c-teal);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 22px;
}
.res-sidebar-card-btn{width:100%;justify-content:center;font-size:14px;padding:12px 20px;}
.res-sidebar-card-icon{font-size:22px;margin-bottom:12px;}
.res-sidebar-card h4 {color:var(--c-teal);
  font-family: var(--ff-display);
  font-size: 15px; font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.res-sidebar-card p{font-size:13px;color:var(--text-muted);margin-bottom:18px;line-height:1.6;}
.res-sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.res-sidebar-tag {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
  transition: all .2s;
  cursor: none;
}
.res-sidebar-tag:hover { border-color: var(--c-teal); color: var(--c-teal); background: var(--c-teal-lt); }
.res-popular-list { display: flex; flex-direction: column; gap: 16px; }
.res-popular-item { display: flex; gap: 12px; align-items: flex-start; }
.res-popular-num {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 800;
  color: var(--border-strong);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}
.res-popular-title { font-size: 13px; font-weight: 600; line-height: 1.4; transition: color .2s; }
.res-popular-item:hover .res-popular-title { color: var(--c-teal); cursor: none; }
.res-popular-cat { font-size: 11px; color: var(--text-dim); margin-top: 3px; }

/* Load More */
.res-load-more {
  text-align: center;
  margin-top: 48px;
}

/* ─── SHARED PAGINATION ─── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pg-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  transition: all .25s;
  cursor: none;
}
.pg-btn:hover, .pg-btn.active {
  border-color: var(--c-teal);
  color: var(--c-teal);
  background: var(--c-teal-lt);
}

/* ─── ANIMATIONS ─── */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.anim-float { animation: floatY 4s ease-in-out infinite; }



/* ════════════════════════════════
   SERVICES HERO — HEX LAYOUT
════════════════════════════════ */

/* Override pg-hero for this page */
.svc-hero {
  min-height: 140vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

/* Background image */
.svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 9, 15, .92) 0%,
    rgba(8, 9, 15, .75) 48%,
    rgba(8, 9, 15, .55) 100%
  );
}

/* Inner layout */
.svc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: calc(var(--nav-h) );
  padding-bottom: 80px;
}

/* Text side */

.svc-hero-tag  { opacity: 0; animation: slideUp .6s .1s ease forwards; }
.svc-hero-title {
  color: black;
  opacity: 0; animation: slideUp .7s .25s ease forwards;
}
.svc-hero-title em {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-hero-sub  {
  color: black;
  opacity: 0; animation: slideUp .7s .4s ease forwards;
}
.svc-hero-ctas { opacity: 0; animation: slideUp .7s .55s ease forwards; }

/* ── Hex cluster ── */
.svc-hex-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  user-select: none;
}

.svc-hex-row {
  display: flex;
  gap: 6px;
  margin-bottom: -18px; /* rows overlap slightly for honeycomb effect */
}
.svc-hex-row--offset {
  transform: translateX(0);
  /* natural honeycomb: middle row stays, outer rows shift by half-hex width */
}

/* The hexagon shape */
.svc-hex {
  width: 148px;
  background-color: transparent;
  height: 170px; /* height = width * 1.1547 for regular hex */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border: none;
  position: relative;
  cursor: default;
  transition: transform .35s ease, filter .35s ease;

  /* Entry animation — starts invisible */
  opacity: 0;
  transform: scale(.7) translateY(30px);
  /* JS will add .svc-hex--visible with delay */
}
.svc-hex1{background-image: url('../img/aeps.jpg');}
.svc-hex2{background-image: url('../img/bbps.jpg');}
.svc-hex3{background-image: url('../img/dmt.jpg');}
.svc-hex4{background-image: url('../img/recharge.jpg');}
.svc-hex5{background-image: url('../img/payout.jpg');}
.svc-hex6{background-image: url('../img/pancard.jpg');}
.svc-hex7{background-image: url('../img/deposit.jpg');}
/* Pseudo-border via outline hex behind */
.svc-hex::before {
  content: '';
  position: absolute;
  inset: -2px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  /* background: linear-gradient(135deg, rgba(15,188,171,.5), rgba(236,72,153,.3)); */
  z-index: -1;
}

.svc-hex:hover {
  transform: scale(1.08) translateY(-4px) !important;
  filter: brightness(1.25);
  z-index: 2;
}


/* Inner content */
.svc-hex-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  text-align: center;
  color: #08090f;
}
.svc-hex-inner span {
  font-size: 18px;
  line-height: 1;color: #08090f;
}
.svc-hex-inner {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
}
.svc-hex-inner--center span { font-size: 18px; }
.svc-hex-inner--center {
  
  color: black;
  /* font-weight: 800; */
  /* letter-spacing: .06em; */
  text-shadow: 0 2px 12px rgba(15,188,171,.6);
}

/* Visible state — added by JS */
.svc-hex--visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition:
    opacity .6s ease,
    transform .6s cubic-bezier(.34,1.56,.64,1);
}





/* ════════════════════════════════════════════════════════
   SVC-STACK.CSS — Sticky Stacking Services Section
   Requires base theme variables from style.css
════════════════════════════════════════════════════════ */

/* ─── SECTION WRAPPER ─── */
.svc-stack-section {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.svc-stack-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(15,188,171,.06), transparent),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(236,72,153,.05), transparent);
  pointer-events: none;
}

.svc-stack-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.svc-stack-header .section-sub {
  margin: 14px auto 0;
}

/* ─── STICKY TRACK ─── */
.svc-stack-track {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* ─── STICKY CARD WRAPPER ─── */
.svc-stack-item {
  position: sticky;
  /* top offset staggers so each card peeks above the previous */
  height: 560px;
  margin-bottom: 24px;
  z-index: 1;
  /* JS sets --svc-index, used for top calculation */
  top: calc(var(--nav-h) + 24px + var(--svc-stack-index, 0) * 14px);
}

/* Push section tall enough for the sticky effect to play out */
.svc-stack-spacer {
  height: 40px;
}

/* ─── CARD ─── */
.svc-card-stack {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
  transform-origin: top center;
  will-change: transform;
  backdrop-filter: blur(12px);
}

.svc-card-stack:hover {
  transform: translateY(-6px) scale(1.008) !important;
  box-shadow: 0 32px 80px rgba(13,17,23,.18);
}

/* Glow stripe at top of each card — color set via --svc-glow-a / --svc-glow-b */
.svc-card-stack::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--svc-glow-a, var(--c-teal)), var(--svc-glow-b, var(--c-violet)));
  z-index: 10;
}

/* Ambient glow blob */
.svc-card-stack::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--svc-glow-a, var(--c-teal)), transparent 70%);
  opacity: .10;
  pointer-events: none;
  transition: opacity .5s;
}
.svc-card-stack:hover::after { opacity: .18; }

/* ─── CARD LEFT CONTENT ─── */
.svc-card-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.svc-card-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  /* background: linear-gradient(135deg, var(--svc-glow-a, var(--c-teal)), var(--svc-glow-b, var(--c-violet))); */
  box-shadow: 0 8px 24px color-mix(in srgb, var(--svc-glow-a, var(--c-teal)) 40%, transparent);
  margin-bottom: 28px;
  transition: transform .3s, box-shadow .3s;
}
.svc-card-icon-wrap img{width: 50px;height: 50px;}
.svc-card-stack:hover .svc-card-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--svc-glow-a, var(--c-teal)) 55%, transparent);
}

.svc-card-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.svc-card-title {
  font-family: var(--ff-display);
  font-size:1.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.svc-card-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--svc-glow-a, var(--c-teal)), var(--svc-glow-b, var(--c-violet)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 340px;
  margin-bottom: 32px;
}

.svc-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-card-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-card-stat-num {
  font-family: var(--ff-display);
  font-size: 32px; font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--svc-glow-a, var(--c-teal)), var(--svc-glow-b, var(--c-violet)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-card-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.svc-card-cta {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: all .28s ease;
  flex-shrink: 0;
}
.svc-card-cta:hover {
  background: linear-gradient(135deg, var(--svc-glow-a, var(--c-teal)), var(--svc-glow-b, var(--c-violet)));
  border-color: transparent;
  color: #fff;
  transform: scale(1.12) rotate(45deg);
}

/* ─── CARD RIGHT MOCKUP ─── */
.svc-card-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
}

/* Subtle grid lines inside mockup area */
.svc-card-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,91,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,91,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ─── MOCKUP WIDGET ─── */
.svc-mockup {
  width: 100%;
  max-width: 340px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 22px;
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.svc-card-stack:hover .svc-mockup {
  transform: translateY(-8px) rotate(-1deg);
}

.svc-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.svc-mockup-dots {
  display: flex;
  gap: 5px;
}
.svc-mockup-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}
.svc-mockup-dots span:first-child { background: #ff5f57; }
.svc-mockup-dots span:nth-child(2) { background: #febc2e; }
.svc-mockup-dots span:last-child { background: #28c840; }

.svc-mockup-badge {
  font-size: 10px; font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--c-teal-lt);
  color: var(--c-teal);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.svc-mockup-amount {
  font-family: var(--ff-display);
  font-size: 28px; font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -.02em;
}

.svc-mockup-sub {
  font-size: 11px; color: var(--text-dim);
  margin-bottom: 18px;
}

/* Mini bar chart */
.svc-mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  margin-bottom: 16px;
}
.svc-mockup-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--border-strong);
  transition: height .6s ease;
}
.svc-mockup-bar.active {
  background: linear-gradient(to top, var(--svc-glow-a, var(--c-teal)), var(--svc-glow-b, var(--c-violet)));
}
.svc-mockup-bar1{height: 30%;}
.svc-mockup-bar2{height: 55%;}
.svc-mockup-bar3{height: 80%;}
.svc-mockup-bar4{height: 45%;}
.svc-mockup-bar5{height: 90%;}
.svc-mockup-bar6{height: 60%;}
.svc-mockup-bar7{height: 75%;}
/* Mini metric row */
.svc-mockup-metrics {
  display: flex;
  gap: 10px;
}
.svc-mockup-metric {
  flex: 1;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  border: 1px solid var(--border);
}
.svc-mockup-metric-val {
  font-family: var(--ff-display);
  font-size: 15px; font-weight: 800;
  color: var(--text);
}
.svc-mockup-metric-key {
  font-size: 10px; color: var(--text-dim);
  margin-top: 2px;
}


/* ─── ENTRY ANIMATION ─── */
.svc-stack-item {
  opacity: 0;
  transform: translateY(40px) scale(.97);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.svc-stack-item.svc-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ════════════════════════════════════════════════════════
   SOL-USECASES.CSS — Solutions Use Cases Section
   Requires base theme variables from style.css
════════════════════════════════════════════════════════ */

/* ─── SECTION ─── */
.sol-uc-section {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.sol-uc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 90% 20%, rgba(15,188,171,.07), transparent),
    radial-gradient(ellipse 45% 55% at 5% 80%,  rgba(236,72,153,.05), transparent);
  pointer-events: none;
}

/* ─── TWO-COLUMN LAYOUT ─── */
.sol-uc-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* ─── LEFT CONTENT ─── */
.sol-uc-content {
  position: relative;
  z-index: 2;
}

.sol-uc-content .b-tag { margin-bottom: 20px; }

.sol-uc-content .section-title { margin-bottom: 16px; }

.sol-uc-content .section-sub { margin-bottom: 40px; }

/* Testimonial quote */
.sol-uc-quote {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 3px solid var(--c-teal);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: box-shadow var(--transition);
}

.sol-uc-quote:hover { box-shadow: var(--shadow-md); }

.sol-uc-quote-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sol-uc-quote-text::before { content: '\201C'; }
.sol-uc-quote-text::after  { content: '\201D'; }

.sol-uc-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sol-uc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.sol-uc-quote-author strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--text);
}

.sol-uc-quote-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Pagination dots */
.sol-uc-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-uc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  border: none;
  padding: 0;
  transition: all .35s ease;
  cursor: none;
}

.sol-uc-dot.active {
  width: 26px;
  border-radius: var(--radius-pill);
  background: var(--g-accent);
}

.sol-uc-dot-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

/* ─── RIGHT GRID ─── */
.sol-uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* ─── INDIVIDUAL CARD ─── */
.sol-uc-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s;
  cursor: default;

  /* Entry state — JS adds .sol-uc-in */
  opacity: 0;
  transform: scale(.78) translateY(20px);
}
.sol-uc-card-icon-img{height: 50px;width: 70px;}
.sol-uc-card.sol-uc-in {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.34,1.56,.64,1),
    box-shadow .35s ease,
    border-color .35s;
}

.sol-uc-card:hover {
  transform: translateY(-8px) scale(1.04) !important;
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

/* Large card — first one, spans more visual weight */
.sol-uc-card--lg {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 36px 24px;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
}

.sol-uc-card--lg .sol-uc-card-icon { font-size: 52px; }
.sol-uc-card--lg .sol-uc-card-name { font-size: 15px; }

/* Accent cards */
.sol-uc-card--accent {
  background: linear-gradient(135deg, var(--c-teal-lt), rgba(15,188,171,.18));
  border-color: rgba(15,188,171,.3);
}

.sol-uc-card--accent2 {
  background: linear-gradient(135deg, var(--c-violet-lt), rgba(236,72,153,.12));
  border-color: rgba(236,72,153,.25);
}

/* Card icon */
.sol-uc-card-icon {
  font-size: 34px;
  line-height: 1;
  transition: transform .3s ease;
}

.sol-uc-card:hover .sol-uc-card-icon {
  transform: scale(1.15) rotate(-5deg);
}

/* Card label */
.sol-uc-card-name {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

/* Floating animation on visible cards */
.sol-uc-card.sol-uc-in:nth-child(odd)  { animation: solUcFloat 4s ease-in-out infinite; }
.sol-uc-card.sol-uc-in:nth-child(even) { animation: solUcFloat 4s ease-in-out infinite reverse; }

@keyframes solUcFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-7px) scale(1); }
}

/* Pause float on hover so hover transform takes over cleanly */
.sol-uc-card:hover { animation-play-state: paused !important; }

/* ═══════════════════════════════════════════════════════
   PAGES CSS  –  contact.html | demo.html
   Uses theme variables from main theme file.
   No inline styles. No variable redefinitions.
   File-namespaced class names to avoid conflicts.
═══════════════════════════════════════════════════════ */

/* ─── NAV SPACER ─── */
.contact-nav-spacer {
  height: var(--nav-h);
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */

/* HERO */
.contact-hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
  text-align: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(15,188,171,.13) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 90% 80%, rgba(236,72,153,.10) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-title {
  margin: 0 auto;
}

/* MAIN GRID */
.contact-main {
  padding: 60px 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

/* FORM CARD */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form-header {
  margin-bottom: 32px;
}
.contact-form-header h2 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}
.contact-form-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 6px;
}

/* FORM FIELDS */
.contact-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-field:last-child {
  margin-bottom: 0;
}
.contact-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px var(--c-teal-lt);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-dim);
}

/* SUBMIT */
.contact-submit {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

/* SUCCESS MSG */
.contact-success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--c-teal-lt);
  border: 1px solid var(--c-teal);
  border-radius: var(--radius-sm);
  color: var(--c-teal);
  font-size: 14px;
  font-weight: 600;
}
.contact-success-msg.contact-success-visible {
  display: flex;
}

/* INFO PANEL */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CTA CARD */
.contact-cta-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
}
.contact-cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,188,171,.14) 0%, rgba(236,72,153,.12) 100%);
  pointer-events: none;
}
.contact-cta-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}
.contact-cta-card h3 em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-cta-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
}
.contact-cta-card .btn {
  position: relative;
  font-size: 14px;
  padding: 12px 24px;
}

/* CONTACT DETAILS */
.contact-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--c-teal-lt);
  border: 1px solid rgba(15,188,171,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal);
}
.contact-detail-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail-item span {
  font-size: 14px;
  color: var(--text);
}

/* OFFICES */
.contact-offices {
  padding: 80px 0;
  background: var(--bg-soft);
}
.contact-offices .section-sub {
  margin-bottom: 48px;
}
.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.contact-office-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-office-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.contact-office-img-1 {
  background-image: linear-gradient(135deg, rgba(15,188,171,.6), rgba(236,72,153,.5)),
    url('../img/loca1.jpg');
}
.contact-office-img-2 {
  background-image: linear-gradient(135deg, rgba(99,91,255,.5), rgba(15,188,171,.4)),
    url('../img/loca2.jpg');
}
.contact-office-img-3 {
  background-image: linear-gradient(135deg, rgba(236,72,153,.5), rgba(99,91,255,.4)),
    url('../img/loca3.jpg');
}

.contact-office-body {
  padding: 20px;
}
.contact-office-body h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-office-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.contact-office-tel {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-teal);
  transition: color var(--transition);
}
.contact-office-tel:hover {
  color: var(--c-violet);
}



/* ══════════════════════════════════════════════════════
   DEMO PAGE
══════════════════════════════════════════════════════ */

/* HERO */
.demo-hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}
.demo-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.demo-hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(15,188,171,.18) 0%, transparent 70%);
}
.demo-hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(236,72,153,.15) 0%, transparent 70%);
}
.demo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: start;
}
.demo-hero-text {
  padding-top: 20px;
}
.demo-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.demo-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 800;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.demo-stat span {
  font-size: 12.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.demo-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* BOOKING CARD */
.demo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.demo-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,188,171,.15) 0%, transparent 70%);
  pointer-events: none;
}
.demo-card-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  position: relative;
}
.demo-card-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
  position: relative;
}
.demo-form .contact-field {
  position: relative;
}

/* TIME SLOTS */
.demo-slots-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.demo-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.demo-slot {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-body);
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: none;
}
.demo-slot:hover {
  border-color: var(--c-teal);
  color: var(--c-teal);
  background: var(--c-teal-lt);
}
.demo-slot-active {
  border-color: var(--c-teal);
  background: var(--c-teal-lt);
  color: var(--c-teal);
}

.demo-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* FEATURES */
.demo-features {
  padding: 80px 0;
  background: var(--bg-soft);
}
.demo-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.demo-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.demo-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.demo-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.demo-feature-icon-1 { background: var(--c-teal-lt); color: var(--c-teal); border: 1px solid rgba(15,188,171,.2); }
.demo-feature-icon-2 { background: var(--c-violet-lt); color: var(--c-violet); border: 1px solid rgba(236,72,153,.15); }
.demo-feature-icon-3 { background: var(--c-teal-lt); color: var(--c-teal); border: 1px solid rgba(15,188,171,.2); }
.demo-feature-icon-4 { background: var(--c-violet-lt); color: var(--c-violet); border: 1px solid rgba(236,72,153,.15); }
.demo-feature-card h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.demo-feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* TICKER */
.demo-ticker-section {
  padding: 28px 0;
  background: var(--surface-2);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.demo-ticker-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: demoTicker 28s linear infinite;
}
.demo-ticker-item {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}
@keyframes demoTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}





/* ════════════════════════════════════════════════
   RESOURCES HERO — rh-hero
   Uses only theme variables — no hardcoded colours
   Light & dark mode compatible
════════════════════════════════════════════════ */

/* ── HERO WRAPPER ── */
.rh-hero {
  padding-top: 100px;
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}

/* ── Background gradient layers ── */
.rh-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, var(--c-teal-lt) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, var(--c-violet-lt) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 20% 75%, var(--c-teal-lt) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}

/* Subtle grain noise texture */
.rh-hero__bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  opacity: .022;
  pointer-events: none;
  z-index: 1;
}

/* ── Particle canvas ── */
.rh-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
}

/* ── SVG connector web ── */
.rh-hero__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

/* Connector path animation — travelling dash */
.rh-connector {
  stroke-linecap: round;
  animation: rh-dash-travel 3.5s linear infinite;
}

.rh-connector--teal   { animation-duration: 3.8s; }
.rh-connector--violet { animation-duration: 4.4s; animation-direction: reverse; }

.rh-connector:nth-child(2) { animation-delay: -0.6s; }
.rh-connector:nth-child(3) { animation-delay: -1.3s; }
.rh-connector:nth-child(4) { animation-delay: -0.9s; }
.rh-connector:nth-child(5) { animation-delay: -2.1s; }
.rh-connector:nth-child(6) { animation-delay: -1.7s; }

@keyframes rh-dash-travel {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -44; }
}

/* Pulse rings emanating from centre */
.rh-pulse {
  transform-origin: 600px 340px;
  animation: rh-pulse-out 3.2s ease-out infinite;
}

.rh-pulse--1 { animation-delay: 0s; }
.rh-pulse--2 { animation-delay: 1.6s; }

@keyframes rh-pulse-out {
  0%   { transform: scale(1);   opacity: .45; }
  70%  { transform: scale(2.2); opacity: .08; }
  100% { transform: scale(2.6); opacity: 0;   }
}

/* ════════════════════════════════════════════════
   CENTRE NODE
════════════════════════════════════════════════ */
.rh-hero__node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  z-index: 4;
  animation: rh-node-float 5s ease-in-out infinite;
}

@keyframes rh-node-float {
  0%, 100% { transform: translate(-50%, -44%) translateY(0); }
  50%       { transform: translate(-50%, -44%) translateY(-10px); }
}

.rh-hero__node-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, var(--c-teal-lt), var(--c-violet-lt) 60%, transparent 80%);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow:
    0 0 40px var(--c-teal-lt),
    0 0 80px var(--c-teal-lt),
    var(--shadow-md),
    inset 0 0 30px var(--c-teal-lt);
  backdrop-filter: blur(6px);
  background-color: var(--surface);
  animation: rh-node-glow 4s ease-in-out infinite alternate;
}

@keyframes rh-node-glow {
  0%   { box-shadow: 0 0 40px var(--c-teal-lt),   0 0 80px var(--c-teal-lt),   var(--shadow-md); }
  100% { box-shadow: 0 0 60px var(--c-violet-lt),  0 0 110px var(--c-violet-lt), var(--shadow-lg); }
}

.rh-hero__node-icon {
  filter: drop-shadow(0 0 10px var(--c-teal));
  line-height: 1;
}

/* ════════════════════════════════════════════════
   FEATURE CARDS
════════════════════════════════════════════════ */
.rh-hero__cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.rh-hero__card {
  position: absolute;
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  width: 230px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  animation: rh-card-drift 6s ease-in-out infinite alternate;
}

.rh-hero__card:hover {
  border-color: var(--c-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) !important;
}

/* Card drift animations */
.rh-hero__card--tl { animation-delay: 0s;    animation-duration: 7s; }
.rh-hero__card--tr { animation-delay: -2.1s; animation-duration: 6.5s; }
.rh-hero__card--ml { animation-delay: -1.3s; animation-duration: 8s; }
.rh-hero__card--mr { animation-delay: -3.5s; animation-duration: 7.5s; }
.rh-hero__card--bl { animation-delay: -0.7s; animation-duration: 6.8s; }
.rh-hero__card--br { animation-delay: -4.2s; animation-duration: 7.2s; }

@keyframes rh-card-drift {
  0%   { margin-top: 0;    margin-left: 0; }
  33%  { margin-top: -5px; margin-left: 3px; }
  66%  { margin-top: 3px;  margin-left: -4px; }
  100% { margin-top: 0;    margin-left: 0; }
}

/* Card positions */
.rh-hero__card--tl { top: 18%; left:  10%; }
.rh-hero__card--tr { top: 18%; right: 10%; }
.rh-hero__card--ml { top: 47%; left:   6%; }
.rh-hero__card--mr { top: 47%; right:  6%; }
.rh-hero__card--bl { top: 70%; left:  10%; }
.rh-hero__card--br { top: 70%; right: 10%; }

/* Card icon */
.rh-hero__card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px var(--c-teal));
}

/* Card text */
.rh-hero__card h4 {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.rh-hero__card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Teal accent — left-side cards */
.rh-hero__card--tl,
.rh-hero__card--ml,
.rh-hero__card--bl {
  border-color: var(--border-strong);
  border-left: 2px solid var(--c-teal);
}

/* Violet accent — right-side cards */
.rh-hero__card--tr,
.rh-hero__card--mr,
.rh-hero__card--br {
  border-color: var(--border-strong);
  border-left: 2px solid var(--c-violet);
}

.rh-hero__card--tr:hover,
.rh-hero__card--mr:hover,
.rh-hero__card--br:hover {
  border-color: var(--c-violet);
  box-shadow: var(--shadow-lg);
}

/* ════════════════════════════════════════════════
   HEADLINE CONTENT (top strip)
════════════════════════════════════════════════ */
.rh-hero__content-wrap {
  position: relative;
  z-index: 6;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 48px;
}

.rh-hero__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* b-tag inherits from style.css — no override needed */

.rh-hero__title {
  color: var(--text);
  margin-bottom: 18px;
}

.rh-hero__sub {
  color: var(--text-muted);
  margin: 0 auto 36px;
}

.rh-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Ghost button using existing theme tokens */
.rh-hero__btn-ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.rh-hero__btn-ghost:hover {
  border-color: var(--c-teal);
  background: var(--c-teal-lt);
  color: var(--c-teal);
}


/* ── LAYOUT WRAP ── */
.lp-wrap {
  display: grid;
  grid-template-columns: 520px 1fr;
  min-height: 100vh;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   LEFT PANEL
══════════════════════════════════════════ */
.lp-left {
  display: flex;
  flex-direction: column;
  padding: 44px 56px 44px 56px;
  background: var(--surface);
  overflow-y: auto;
  position: relative;
  z-index: 2;
}

/* ── Logo ── */
.lp-logo{
  display:inline-block;
  margin-bottom:36px;
  text-decoration:none;
}

.lp-logo img{
  height:52px;      /* adjust as needed */
  width:auto;
  display:block;
  object-fit:contain;
}

/* ── Tab bar ── */
.lp-tabs {
  display: flex;
  position: relative;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 4px;
  margin-bottom: 36px;
  width: fit-content;
}

.lp-tab {
  position: relative;
  z-index: 1;
  padding: 9px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color var(--transition);
  background: none;
  border: none;
}

.lp-tab.lp-tab-on {
  color: var(--text);
}

.lp-tab-bar {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  width: calc(50% - 5px);
  background: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.lp-tab-bar.lp-tab-bar-right {
  transform: translateX(calc(100% + 4px));
}

/* ── Form visibility ── */
.lp-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp-form-hidden {
  display: none;
}

.lp-form-visible {
  display: flex;
  animation: lp-fadein .32s ease;
}

@keyframes lp-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── Form headings ── */
.lp-form-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 6px;
}

.lp-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Social buttons ── */
.lp-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.lp-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.lp-social-btn:hover {
  border-color: var(--c-teal);
  background: var(--c-teal-lt);
  transform: translateY(-2px);
}

.lp-social-btn svg {
  width: 18px;
  height: 18px;
}

/* ── Divider ── */
.lp-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 12px;
}

.lp-divider::before,
.lp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Field ── */
.lp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.lp-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lp-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-forgot {
  font-size: 12px;
  color: var(--c-teal);
  font-weight: 500;
  transition: opacity var(--transition);
}

.lp-forgot:hover {
  opacity: .75;
}

.lp-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.lp-input::placeholder {
  color: var(--text-dim);
}

.lp-input:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px var(--c-teal-lt);
}

/* ── Password eye ── */
.lp-pw-wrap {
  position: relative;
}

.lp-pw-wrap .lp-input {
  padding-right: 44px;
}

.lp-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.lp-eye:hover {
  color: var(--c-teal);
}

/* ── Strength bar ── */
.lp-strength-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
  margin-top: 4px;
}

.lp-strength-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width .4s ease, background .4s ease;
}

.lp-strength-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 2px;
}

/* ── Checkbox ── */
.lp-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.lp-check input[type="checkbox"] {
  display: none;
}

.lp-check-box {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 1.5px solid var(--border-strong);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}

.lp-check input:checked + .lp-check-box {
  background: var(--c-teal);
  border-color: var(--c-teal);
}

.lp-check input:checked + .lp-check-box::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.lp-check a {
  color: var(--c-teal);
  font-weight: 500;
}

/* ── Submit ── */
.lp-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 18px;
}

/* ── Switch link ── */
.lp-switch {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.lp-switch a {
  color: var(--c-teal);
  font-weight: 600;
}

/* ── Success state ── */
.lp-success {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.lp-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-teal-lt);
  border: 2px solid var(--c-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal);
  margin-bottom: 20px;
  animation: lp-pop .4s ease;
}

@keyframes lp-pop {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

/* ── Shake keyframe ── */
@keyframes lpShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-7px); }
  40%       { transform: translateX(7px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* ══════════════════════════════════════════
   RIGHT PANEL — SLIDER
══════════════════════════════════════════ */
.lp-right {
  position: relative;
  overflow: hidden;
}

/* ── Slides ── */
.lp-slides {
  position: absolute;
  inset: 0;
}

.lp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1s ease;
}
.lp-slide1{background-image: url('../img/log1.jpg');}
.lp-slide2{background-image: url('../img/log2.jpg');}
.lp-slide3{background-image: url('../img/log3.jpg');}

.lp-slide.lp-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* ── Overlay ── */
.lp-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,9,15,.3) 0%,
    rgba(8,9,15,.55) 60%,
    rgba(8,9,15,.82) 100%
  );
  z-index: 1;
}

/* ── Floating stat card ── */
.lp-stat-card {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 3;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: lp-floatcard 5s ease-in-out infinite;
}

@keyframes lp-floatcard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.lp-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  opacity: .8;
}

.lp-stat-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 6px var(--c-teal);
  animation: lp-pulse 1.5s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.lp-stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lp-stat-num {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.lp-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .03em;
}

.lp-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
}

/* ── Caption ── */
.lp-caption {
  position: absolute;
  bottom: 80px;
  left: 40px;
  right: 40px;
  z-index: 3;
}

.lp-caption-text {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: opacity .35s ease;
}

.lp-caption-sub {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}

/* ── Dots ── */
.lp-dots {
  position: absolute;
  bottom: 36px;
  left: 40px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.35);
  border: none;
  transition: width .35s ease, background .35s ease;
}

.lp-dot.lp-dot-on {
  width: 26px;
  background: var(--c-teal);
}

    /* ── LEGAL PAGE LAYOUT ── */
    .legal-hero {
      padding: calc(var(--nav-h) + 60px) 0 60px;
      background: linear-gradient(135deg, var(--c-teal-lt) 0%, var(--c-violet-lt) 100%);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    .legal-hero .b-tag { display: inline-flex; }
    .legal-hero-meta {
      display: flex; align-items: center; justify-content: center;
      gap: 24px; margin-top: 24px; flex-wrap: wrap;
    }
    .legal-hero-meta span {
      font-size: 13px; color: var(--text-muted);
      display: flex; align-items: center; gap: 6px;
    }
    .legal-hero-meta span::before {
      content: ''; width: 4px; height: 4px;
      border-radius: 50%; background: var(--c-teal); display: inline-block;
    }

    /* ── TWO-COLUMN LAYOUT ── */
    .legal-body {
      padding: 72px 0 100px;
    }
    .legal-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 60px;
      align-items: start;
    }

    /* ── STICKY TOC ── */
    .legal-toc {
      position: sticky; top: calc(var(--nav-h) + 24px);
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }
    .legal-toc-title {
      font-family: var(--ff-display); font-size: 11px; font-weight: 700;
      letter-spacing: .10em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 16px;
    }
    .legal-toc-list { display: flex; flex-direction: column; gap: 4px; }
    .legal-toc-list a {
      font-size: 13px; color: var(--text-muted);
      padding: 7px 10px; border-radius: 8px;
      border-left: 2px solid transparent;
      transition: all .2s; display: block; line-height: 1.4;
    }
    .legal-toc-list a:hover,
    .legal-toc-list a.active {
      color: var(--c-teal); background: var(--c-teal-lt);
      border-left-color: var(--c-teal);
    }

    /* ── CONTENT ── */
    .legal-content { min-width: 0; }
    .legal-section {
      margin-bottom: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid var(--border);
      scroll-margin-top: calc(var(--nav-h) + 24px);
    }
    .legal-section:last-child { border-bottom: none; margin-bottom: 0; }

    .legal-section-num {
      font-size: 11px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--c-teal); margin-bottom: 10px;
    }
    .legal-section-title {
      font-family: var(--ff-display); font-size: 22px; font-weight: 800;
      margin-bottom: 18px; letter-spacing: -.02em; line-height: 1.2;
    }
    .legal-section p {
      font-size: 15px; color: var(--text-muted);
      line-height: 1.78; margin-bottom: 16px;
    }
    .legal-section p:last-child { margin-bottom: 0; }
    .legal-section strong { color: var(--text); font-weight: 600; }

    /* ── CALLOUT BOX ── */
    .legal-callout {
      background: var(--c-teal-lt); border: 1px solid var(--c-teal);
      border-radius: var(--radius); padding: 20px 22px;
      margin: 20px 0;
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
    }
    .legal-callout strong { color: var(--c-teal); }

    .legal-warn {
      background: rgba(236,72,153,.08); border: 1px solid rgba(236,72,153,.25);
      border-radius: var(--radius); padding: 20px 22px;
      margin: 20px 0;
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
    }
    .legal-warn strong { color: var(--c-violet); }

    /* ── BULLET LIST ── */
    .legal-list {
      display: flex; flex-direction: column; gap: 10px;
      margin: 18px 0;
    }
    .legal-list li {
      font-size: 14px; color: var(--text-muted);
      display: flex; gap: 12px; align-items: flex-start;
      line-height: 1.7;
    }
    .legal-list li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--c-teal); flex-shrink: 0; margin-top: 8px;
    }

    /* ── TABLE ── */
    .legal-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); border: 1.5px solid var(--border); }
    .legal-table { width: 100%; border-collapse: collapse; font-size: 13px; }
    .legal-table th {
      background: var(--surface-2); color: var(--text-muted);
      font-family: var(--ff-display); font-weight: 700;
      font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
      padding: 12px 16px; text-align: left;
      border-bottom: 1px solid var(--border);
    }
    .legal-table td {
      padding: 12px 16px; color: var(--text-muted);
      border-bottom: 1px solid var(--border); line-height: 1.6;
      vertical-align: top;
    }
    .legal-table tr:last-child td { border-bottom: none; }
    .legal-table tr:hover td { background: var(--surface-2); }

    /* ── CONTACT CARD ── */
    .legal-contact-card {
      background: linear-gradient(135deg, var(--c-teal-lt), var(--c-violet-lt));
      border: 1.5px solid var(--border-strong);
      border-radius: var(--radius-lg); padding: 36px;
      margin-top: 16px; display: grid;
      grid-template-columns: 1fr 1fr; gap: 20px;
    }
    .legal-contact-item { display: flex; flex-direction: column; gap: 4px; }
    .legal-contact-item-label {
      font-size: 10px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--text-dim);
    }
    .legal-contact-item-val {
      font-family: var(--ff-display); font-size: 14px; font-weight: 600;
      color: var(--text);
    }
    .legal-contact-item-val a { color: var(--c-teal); }

    












/* ═══════════════════════════════════════════════════════════════
   ≤ 1400px  —  Wide tablet / small desktop
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {

  /* Global */
  .container { padding: 0 24px; }
  :root { --section-pad: 90px 0; }

  /* Navbar */
  .b-nav-links { gap: 22px; }
  .b-nav-links a { font-size: 15px; }

  /* Hero Slider */
  .b-hero-h1 { font-size: clamp(38px, 5.5vw, 72px); }

  /* Ecosystem */
  .b-eco-map { height: 500px; }

  /* Services bento grid */
  .b-services-grid { gap: 14px; }

  /* Bento */
  .b-bento { grid-auto-rows: 180px; }

  /* Platform */
  .b-platform-body { grid-template-columns: 170px 1fr; }
  .b-platform-row  { grid-template-columns: repeat(3, 1fr); }

  /* Industries */
  .b-industries-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* Workflow */
  .b-workflow-steps { gap: 0; }
  .b-wf-num { width: 80px; height: 80px; font-size: 22px; }

  /* Footer */
  .b-footer-top { grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }

  /* CTA */
  .b-cta-inner { padding: 72px 40px; }

  /* Pages — Services stack cards */
  .svc-stack-item { height: 520px; }
  .svc-card-title { font-size: 1.3rem; }

  /* Solutions tabs */
  .sol-stats { grid-template-columns: repeat(4, 1fr); }
  .sol-int-grid { grid-template-columns: repeat(5, 1fr); }

  /* About */
  .about-hero__inner { gap: 40px; }
  .about-mvv__node--mission { left: 0; }
  .about-mvv__node--vision  { right: 0; }

  /* Resources */
  .res-testi__grid { gap: 12px; }
  .res-layout { grid-template-columns: 1fr 260px; gap: 32px; }

  /* Resources hero cards */
  .rh-hero__card { width: 200px; }

  /* Login */
  .lp-wrap { grid-template-columns: 460px 1fr; }
  .lp-left { padding: 36px 44px; }

  /* Contact / Demo */
  .contact-grid { gap: 28px; }
  .demo-hero-inner { grid-template-columns: 1fr 460px; gap: 40px; }
  .demo-features-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   ≤ 768px  —  Tablet / large mobile
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global ── */
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }
  .container { padding: 0 20px; }
  :root { --section-pad: 64px 0; }
  section { padding: 36px 0; }
  .b-nav{
    width: calc(100% - 20px);
    top: 10px;
  }
  /* ── NAVBAR ── */
  .b-nav-links   { display: none; }
  .b-nav-actions { display: none; }
  .b-nav-hamburger { display: flex; }
  .b-nav-drawer    { display: flex; }

  /* ── HERO SLIDER ── */
  .b-hero { min-height: 520px; }
  .b-hero-content { max-width: 100%; }
  .b-hero-h1  { font-size: clamp(32px, 8vw, 52px); }
  .b-hero-sub { font-size: 15px; }
  .b-hero-ctas { flex-direction: column; gap: 10px; }
  .b-hero-ctas .btn { width: 100%; justify-content: center; }
  .b-hero-meta { gap: 20px; flex-wrap: wrap; }
  .b-hero-stat .num { font-size: 24px; }
  .b-scroll-hint { display: none; }
  .b-hero-indicators { bottom: 20px; }

  /* ── ECOSYSTEM ── */
  .b-ecosystem { padding: 48px 0; }
  .b-eco-header { margin-bottom: 40px; }
  .b-eco-map { height: 360px; max-width: 100%; }
  .b-eco-ring-2 { width: 340px; height: 340px; }
  .b-eco-ring-3 { display: none; }
  .b-eco-node  { width: 60px; height: 60px; }
  .b-eco-node-icon { font-size: 17px; }
  .b-eco-node-lbl  { font-size: 8px; }
  .b-eco-center { width: 86px; height: 86px; }
  .b-eco-center-logo { font-size: 18px; }

  /* ── SERVICES (homepage bento grid) ── */
  .b-services-grid { display: flex; flex-direction: column; gap: 12px; }
  .b-svc-card { padding: 24px; }

  /* ── BENTO ── */
  .b-bento { display: flex; flex-direction: column; gap: 12px; }
  .b-bento-card { min-height: 140px; padding: 22px; }
  .b-bento-big-num { font-size: 38px; }

  /* ── PLATFORM ── */
  .b-platform-body { grid-template-columns: 1fr; }
  .b-platform-sidebar { display: none; }
  .b-platform-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .b-platform-main { padding: 18px; gap: 14px; }
  .b-metric-value { font-size: 20px; }
  .b-chart-bars { height: 88px; }

  /* ── INDUSTRIES ── */
  .b-industries-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ── SECURITY ── */
  .b-security-grid { grid-template-columns: 1fr; gap: 40px; }
  .b-security-visual { height: 240px; }
  .b-security-shield { width: 120px; height: 120px; font-size: 48px; }
  .b-security-ring:nth-child(2) { width: 200px; height: 200px; }
  .b-security-ring:nth-child(3) { width: 270px; height: 270px; }

  /* ── WORKFLOW ── */
  .b-workflow-steps { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .b-workflow-steps::before { display: none; }
  .b-wf-num { width: 72px; height: 72px; font-size: 20px; }

  /* ── STORIES ── */
  .b-story-card { width: 280px; }

  /* ── CTA ── */
  .b-cta-inner { padding: 48px 24px; border-radius: 18px; }
  .b-cta-actions { flex-direction: column; gap: 10px; }
  .b-cta-actions .btn { width: 100%; justify-content: center; }

  /* ── FOOTER ── */
  .b-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 36px; }
  .b-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── PAGE HERO (shared) ── */
  .pg-hero { padding: calc(var(--nav-h) + 48px) 0 60px; }
  .pg-hero-title { font-size: clamp(32px, 7vw, 56px); }
  .pg-hero-sub   { font-size: 16px; }
  .pg-hero-ctas  { flex-direction: column; gap: 10px; }
  .pg-hero-ctas .btn { width: 100%; justify-content: center; }

  /* ── SERVICES PAGE ── */
    /* Hero section */
  .svc-hero{
    min-height:auto;
    padding:100px 0 60px;
    overflow:hidden;

  }

  .svc-hero-inner{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
    padding-top:0;
    padding-bottom:0;
  }

  /* Prevent children from overflowing grid */
  .svc-hero-inner > *{
    min-width:0;
  }

  .svc-hero-title{
    font-size:clamp(2rem,10vw,3.2rem);
    line-height:1.1;
    word-break:break-word;
  }

  .svc-hero-sub{
    max-width:100%;
    font-size:1rem;
    line-height:1.7;
    padding-inline:8px;
  }

  /* CTA buttons */
  .svc-hero-ctas{
    display:flex;
    flex-direction:column;
    gap:12px;
    width:100%;
  }

  .svc-hero-ctas .btn,
  .svc-hero-ctas a{
    width:100%;
    justify-content:center;
  }

  /* Hex cluster */
  .svc-hex-cluster{
    width:100%;
    transform:scale(.82);
    transform-origin:center top;
  }

  .svc-hex-row{
    gap:4px;
    margin-bottom:-12px;
    flex-wrap:nowrap;
  }

  /* Any image/video inside hero */
  .svc-hero img,
  .svc-hero video{
    max-width:100%;
    height:auto;
  }
  .svc-strip { flex-direction: column; }
  .svc-strip-item { border-right: none; border-bottom: 1.5px solid var(--border); }
  .svc-strip-item:last-child { border-bottom: none; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-process-track { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-process-track::before { display: none; }
  .svc-cta-banner { flex-direction: column; text-align: center; padding: 36px 24px; gap: 24px; }
  .svc-cta-actions { justify-content: center; flex-wrap: wrap; }

  /* Services stack */
  .svc-stack-item { height: auto; position: relative; top: auto !important; margin-bottom: 16px; }
  .svc-card-stack { grid-template-columns: 1fr; height: auto; }
  .svc-card-left  { padding: 32px 28px; }
  .svc-card-right { min-height: 240px; border-left: none; border-top: 1px solid var(--border); }

  /* ── SOLUTIONS PAGE ── */
  .sol-tabs { gap: 6px; }
  .sol-tab  { padding: 9px 16px; font-size: 13px; }
  .sol-panel.active { grid-template-columns: 1fr; gap: 36px; }
  .sol-panel-visual { min-height: 280px; padding: 24px; }
  .sol-stats { grid-template-columns: 1fr 1fr; gap: 1.5px; }
  .sol-stat { padding: 32px 20px; }
  .sol-stat-num { font-size: 36px; }
  .sol-int-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* Solutions use cases */
  .sol-uc-inner { grid-template-columns: 1fr; gap: 48px; }
  .sol-uc-grid  { max-width: 440px; margin: 0 auto; }

  /* ── ABOUT PAGE ── */
  .about-hero { padding: 100px 0 56px; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .about-hero__features { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-hero__diagram { min-height: 340px; }
  .about-mvv__scene { position: static; gap: 40px; min-height: auto; }
  .about-mvv__connectors { display: none; }
  .about-mvv__node--mission { position: static; flex-direction: column; text-align: center; gap: 16px; }
   .about-mvv__node--vision {position: static; flex-direction: column-reverse; text-align: center; gap: 16px;}
  .about-mvv__node--values  { position: static; transform: none; flex-direction: column; gap: 16px; }
  .about-mvv__text { max-width: 100%; text-align: center !important; }
  .about-trust__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-trust__visual { flex-direction: column; align-items: center; }
  .about-roadmap__label { padding: 1px 4px; }
  .about-roadmap__label spam{display: none;}
  .about-roadmap__label:hover spam{display: block;}
  .about-cta__stats { flex-direction: row; justify-content: center; gap: 24px; flex-wrap: wrap; }

  /* ── RESOURCES PAGE ── */
  .res-featured { grid-template-columns: 1fr; }
  .res-feat-thumb { height: 240px; }
  .res-feat-content { padding: 24px 24px; }
  .res-filter { gap: 8px; }
  .res-blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .res-layout { grid-template-columns: 1fr; }
  .res-sidebar-card { display: none; }
  .res-newsletter { padding: 40px 24px; }
  .res-nl-form { flex-direction: column; max-width: 100%; }
  .res-nl-form-btn { max-width: 100%; width: 100%; justify-content: center; }
  .res-testi__header { grid-template-columns: 1fr; gap: 20px; }
  .res-testi__grid{ display:grid;  grid-template-columns:1fr;  gap:14px; }
  .res-testi__tile{ grid-column:auto !important; grid-row:auto !important; min-height:auto;padding:20px; }
  .res-testi__tile--i{ min-height:280px;  background-position:center; }
  .res-testi__tile--e{  min-height:180px; background-position:center;  }
 .res-testi__stat-val{ font-size:clamp(28px,8vw,42px); }
  .res-testi__blockquote,
  .res-testi__inline-quote{ font-size:13px; line-height:1.6; }
 .res-testi__photo{ width:40px; height:40px; }
  .res-testi__photo--lg{ width:48px; height:48px; }
  .res-faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .res-faq__header { position: static; }

  /* Resources hero */
  .rh-hero { min-height: auto; }
  .rh-hero__content-wrap { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 32px; }
  .rh-hero__node { display: none; }
  .rh-hero__svg  { display: none; }
  .rh-hero__cards {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 20px 48px;
    pointer-events: auto;
  }
  .rh-hero__card { position: static; width: 100%; animation: none; }

  /* ── LOGIN PAGE ── */
  .lp-wrap {padding-bottom:12rem ; grid-template-columns: 1fr; }
  .lp-right { display: none; }
  .lp-left  { padding: 32px 24px; }
  .lp-tabs  { width: 100%; }
  .lp-tab   { flex: 1; text-align: center; }

  /* ── CONTACT PAGE ── */
  .contact-hero { padding: 80px 0 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-panel { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .contact-cta-card, .contact-details { flex: 1 1 280px; }
  .contact-offices-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── DEMO PAGE ── */
  .demo-hero { padding: 72px 0 60px; }
  .demo-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .demo-hero-stats { gap: 20px; }
  .demo-features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── CHAT / THEME BUTTONS ── */
  .b-chat-btn  { bottom: 20px; right: 20px; }
  .b-chat-bubble { right: 20px; bottom: 84px; width: 260px; }
  .b-theme-toggle { bottom: 20px; }
      .legal-layout { grid-template-columns: 1fr; }
      .legal-toc { position: static; }
      .legal-contact-card { grid-template-columns: 1fr; }

}


/* ═══════════════════════════════════════════════════════════════
   ≤ 480px  —  Mobile
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Global ── */
  .container { padding: 0 16px; }
  :root { --section-pad: 48px 0; }
  section { padding: 28px 0; }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .btn-primary, .btn-ghost { font-size: 14px; padding: 14px 24px; }

  /* ── NAVBAR ── */
  .b-nav-inner { padding: 0 16px; }
  .b-nav-logo  { width: 8rem; }
  .b-nav-drawer {gap: 0px; padding: 20px 16px 36px; }

  /* ── HERO SLIDER ── */
  .b-hero { min-height: 480px; }
  .b-hero-h1  { font-size: clamp(28px, 9vw, 44px); }
  .b-hero-sub { font-size: 14px; max-width: 100%; }
  .b-hero-eyebrow { font-size: 10px; }
  .b-hero-stat .num { font-size: 22px; }
  .b-hero-stat .lbl { font-size: 11px; }

  /* ── ECOSYSTEM ── */
  .b-eco-map { height: 300px; }
  .b-eco-ring-1 { width: 180px; height: 180px; }
  .b-eco-ring-2 { width: 280px; height: 280px; }
  .b-eco-node   { width: 52px; height: 52px; }
  .b-eco-node-icon { font-size: 14px; }
  .b-eco-node-lbl  { display: none; }
  .b-eco-center { width: 74px; height: 74px; }
  .b-eco-center-logo { font-size: 15px; }
  .b-eco-node--1{ top:8%;left:61%;}
  .b-eco-node--1{ top:33%;left:85%;}
  .b-eco-node--1{ top:59%;left:91%;}
  .b-eco-node--1{ top:91%;left:70%;}
  .b-eco-node--1{ top:96%;left:40%;}
  .b-eco-node--1{ top:72%;left:11%;}
  .b-eco-node--1{ top:42%;left:10%;}
  .b-eco-node--1{ top:11%;left:24%;}

  /* ── BENTO ── */
  .b-bento-card { padding: 18px; }
  .b-bento-title { font-size: 15px; }
  .b-bento-big-num { font-size: 32px; }

  /* ── PLATFORM ── */
  .b-platform-row { grid-template-columns: 1fr; gap: 8px; }
  .b-platform-main { padding: 14px; }
  .b-platform-topbar { padding: 0 14px; }
  .b-platform-url { display: none; }

  /* ── INDUSTRIES ── */
  .b-industries-grid { grid-template-columns: 1fr; }

  /* ── WORKFLOW ── */
  .b-workflow-steps { grid-template-columns: 1fr; gap: 28px; }
  .b-wf-num { width: 64px; height: 64px; font-size: 18px; margin-bottom: 16px; }

  /* ── SECURITY ── */
  .b-security-ring:nth-child(3) { display: none; }
  .b-security-shield { width: 100px; height: 100px; font-size: 40px; }
  .b-certs { gap: 8px; }
  .b-cert-badge { font-size: 11px; padding: 5px 11px; }

  /* ── STORIES ── */
  .b-story-card { width: 260px; padding: 22px; }

  /* ── CTA ── */
  .b-cta-inner { padding: 36px 16px; border-radius: 14px; }
  .b-cta-quote { font-size: clamp(22px, 6vw, 32px); }

  /* ── FOOTER ── */
  .b-footer{padding-bottom: 13rem;}
  .b-footer-top {  gap: 28px; }
  .b-footer-desc { max-width: 100%; }
  .b-footer-bottom { gap: 10px; }

  /* ── PAGE HERO ── */
  .pg-hero { padding: calc(var(--nav-h) + 36px) 0 48px; }
  .pg-hero-title { font-size: clamp(28px, 8vw, 44px); }

  /* ── SERVICES PAGE ── */
  .svc-strip-item { padding: 24px 20px; }
  .svc-card { padding: 28px 22px; }
  .svc-card-title { font-size: 18px; }
  .svc-process-track { grid-template-columns: 1fr; gap: 28px; }
  .svc-step-num { width: 64px; height: 64px; font-size: 18px; }
  .svc-card-left { padding: 28px 22px; }
  .svc-card-stat-num { font-size: 26px; }

  /* ── SOLUTIONS PAGE ── */
  .sol-tabs { gap: 6px; }
  .sol-tab  { padding: 8px 12px; font-size: 12px; }
  .sol-panel-visual { min-height: 220px; padding: 18px; }
  .sol-stats { grid-template-columns: 1fr 1fr; }
  .sol-stat  { padding: 24px 14px; }
  .sol-stat-num { font-size: 28px; }
  .sol-int-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-uc-grid  { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .sol-uc-card--lg { grid-column: auto; grid-row: auto; }

  /* ── ABOUT PAGE ── */
  .about-hero { padding: 88px 0 44px; }
  .about-hero__features { grid-template-columns: 1fr; gap: 12px; }
  .about-hero__diagram-card { width: 200px; padding: 20px 22px; }
  .about-hero__icon-group { display: none; }
  .about-mvv__circle { width: 140px; height: 140px; }
  .about-trust__steps { gap: 10px; }
  .about-trust__step { padding: 11px 16px; font-size: 13px; }
  .about-cta__stats { gap: 16px; }
  .about-cta__stat-val { font-size: 26px; }
  .about-cta__stat-divider { display: none; }

  /* ── RESOURCES PAGE ── */
  .res-feat-content { padding: 20px; }
  .res-feat-title { font-size: clamp(18px, 5vw, 24px); }
  .res-blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .res-blog-thumb { height: 170px; }
  .res-filter-btn { font-size: 12px; padding: 7px 14px; }

  .res-faq__q { font-size: 14px; padding: 18px 0; }
  .res-faq__a p { font-size: 14px; }
  .res-newsletter h2 { font-size: clamp(22px, 6vw, 30px); }

  /* Resources hero */
  .rh-hero__cards { grid-template-columns: 1fr; gap: 10px; }
  .rh-hero__card  { padding: 14px 16px; }

  /* ── LOGIN PAGE ── */
  .lp-left { padding: 24px 16px; }
  .lp-form-title { font-size: 24px; }
  .lp-row { grid-template-columns: 1fr; gap: 0; }
  .lp-socials { gap: 8px; }
  .lp-tabs { width: 100%; }
  .lp-tab  { font-size: 12px; padding: 8px 18px; }

  /* ── CONTACT PAGE ── */
  .contact-hero { padding: 72px 0 36px; }
  .contact-form-card { padding: 24px 16px; }
  .contact-row-two { grid-template-columns: 1fr; gap: 0; }
  .contact-info-panel { flex-direction: column; }
  .contact-offices-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── DEMO PAGE ── */
  .demo-hero { padding: 60px 0 48px; }
  .demo-card { padding: 28px 20px; }
  .demo-slots { gap: 6px; }
  .demo-slot  { padding: 7px 12px; font-size: 12px; }
  .demo-features-grid { grid-template-columns: 1fr; gap: 12px; }
  .demo-hero-stats { flex-wrap: wrap; gap: 16px; }
  .demo-stat-divider { display: none; }

  /* ── CHAT / THEME ── */
  .b-chat-btn  { width: 46px; height: 46px; font-size: 18px; }
  .b-chat-bubble { width: calc(100vw - 32px); right: 16px; left: 16px; }
  .b-theme-toggle { width: 64px; height: 32px; }
        .legal-hero { padding: calc(var(--nav-h) + 36px) 0 40px; }
      .legal-body { padding: 48px 0 72px; }
      .legal-section-title { font-size: 19px; }
}

