/* ═══════════════════════════════════════════════
   g-smarto Sections CSS
═══════════════════════════════════════════════ */

/* ══ NAV ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--ease-slow);
}
#nav.scrolled {
  background: rgba(7,8,15,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
/* LOGO IMAGE — replace logo-placeholder with your actual logo */
.nav-logo-img {
  height: 32px; width: auto;
  display: block;
}
/* Fallback text logo if no image */
.nav-logo-fallback {
  display: flex; align-items: center; gap: 9px;
}
.nav-logo-sq {
  width: 34px; height: 34px;
  background: var(--teal);
  border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  font-size: .92rem; font-weight: 900;
  color: #021a12; flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--ink);
}
.nav-logo-text span { color: var(--teal); }

.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: .78rem; font-weight: 500;
  color: var(--ink2); text-decoration: none;
  padding: 6px 11px; border-radius: var(--r8);
  transition: var(--ease);
}
.nav-links a:hover { color: var(--teal); background: var(--teal-dim); }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-login {
  font-size: .76rem; font-weight: 600;
  color: var(--ink2); text-decoration: none;
  padding: 7px 15px; border: 1px solid var(--border);
  border-radius: var(--r8); transition: var(--ease);
}
.nav-login:hover { border-color: var(--border2); color: var(--ink); }

/* ══ HERO ══ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
  background: var(--bg);
}
.hero-glow-tl {
  position: absolute; top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,160,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-r {
  position: absolute; top: 15%; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,160,.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--teal); font-size: .67rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--r99);
  margin-bottom: 22px;
  animation: fadeUp .5s .1s both;
}
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -.034em; color: var(--ink);
  margin-bottom: 22px;
  animation: fadeUp .5s .22s both;
}
.hero-h1 .teal { color: var(--teal); }
.hero-h1 .serif-dim {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--ink2);
}
.hero-copy {
  font-size: 1.05rem; color: var(--ink2);
  line-height: 1.8; max-width: 490px;
  margin-bottom: 30px;
  animation: fadeUp .5s .33s both;
}
.hero-acts {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px;
  animation: fadeUp .5s .44s both;
}
.hero-micro {
  font-size: .72rem; color: var(--ink3);
  animation: fadeUp .5s .52s both;
}
.hero-micro strong { color: var(--teal); }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; margin-top: 18px;
  border-top: 1px solid var(--border);
  animation: fadeUp .5s .6s both;
  flex-wrap: wrap;
}
.trust-text { font-size: .76rem; color: var(--ink2); }
.trust-text strong { color: var(--ink); }
.stars { color: #f59e0b; font-size: .72rem; letter-spacing: 2px; }

/* Dashboard mockup */
.dash-mockup {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  animation: fadeUp .6s .45s both;
}
.dash-bar {
  background: var(--surface); padding: 10px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid var(--border);
}
.dash-dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-title { font-family: var(--font-mono); font-size: .52rem; color: var(--ink3); margin-left: 6px; }
.dash-body { padding: 14px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.kpi { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 9px; padding: 10px; }
.kpi-val { font-size: 1.35rem; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.kpi-label { font-family: var(--font-mono); font-size: .48rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink3); }
.dash-ai {
  background: rgba(0,212,160,.1); border: 1px solid rgba(0,212,160,.2);
  border-radius: 9px; padding: 10px 12px; margin-bottom: 10px;
}
.dash-ai-tag { font-family: var(--font-mono); font-size: .48rem; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.dash-ai-txt { font-size: .69rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.dash-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.dash-row:last-child { border-bottom: none; }
.dash-av { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .51rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.dash-name { flex: 1; font-size: .66rem; color: var(--ink2); }
.dash-time { font-family: var(--font-mono); font-size: .54rem; color: var(--ink3); }

/* ══ LOGO STRIP ══ */
#logos {
  padding: 28px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); text-align: center; margin-bottom: 18px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.logo-item { display: flex; align-items: center; gap: 7px; opacity: .35; transition: opacity .2s; font-size: .78rem; font-weight: 700; color: var(--ink2); cursor: default; }
.logo-item:hover { opacity: .65; }
.logo-item-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .8rem; }

/* ══ PROBLEM ══ */
#problem { padding: 90px 0; background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 36px; }
.problem-card {
  border-radius: var(--r16); padding: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  transition: var(--ease);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(255,123,61,.15); }
.problem-num { font-size: 2.1rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 7px; }
.problem-card h4 { font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.problem-card p { font-size: .74rem; color: var(--ink3); line-height: 1.65; }

/* ══ PILLARS ══ */
#pillars { padding: 90px 0; background: var(--bg2); }
.pillar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 44px; }
.pillar-card {
  border-radius: var(--r16); padding: 26px;
  background: var(--surface); border: 1px solid var(--border);
  transition: var(--ease); position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--pillar-color, var(--teal));
  opacity: .7; transform: scaleX(0); transform-origin: left; transition: transform .28s;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,.35); }
.pillar-icon { width: 48px; height: 48px; border-radius: var(--r12); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.pillar-sub { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.pillar-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 9px; }
.pillar-card p { font-size: .77rem; color: var(--ink3); line-height: 1.68; }

/* ══ HOW IT WORKS ══ */
#how { padding: 90px 0; background: var(--bg); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.steps-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.step {
  display: flex; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--border);
  border-radius: var(--r12); background: var(--surface);
  transition: var(--ease); cursor: default;
}
.step:hover { border-color: var(--teal-border); background: rgba(0,212,160,.05); transform: translateX(4px); }
.step-num { width: 34px; height: 34px; background: var(--teal); border-radius: var(--r8); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #021a12; flex-shrink: 0; }
.step h4 { font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.step p { font-size: .75rem; color: var(--ink3); line-height: 1.6; }

/* API diagram card */
.api-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r16); padding: 24px; }
.api-label { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 20px; }
.api-diagram { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.api-col { display: flex; flex-direction: column; gap: 7px; min-width: 92px; }
.api-chip {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--r8); padding: 7px 12px;
  font-size: .71rem; font-weight: 600; color: var(--ink2);
  text-align: center; transition: var(--ease);
}
.api-chip:hover { border-color: var(--teal-border); color: var(--teal); }
.api-mid { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.api-core {
  background: var(--teal); color: #021a12;
  font-family: var(--font-mono); font-size: .65rem; font-weight: 700;
  padding: 10px 12px; border-radius: var(--r8);
  text-align: center; line-height: 1.4;
  box-shadow: 0 4px 18px var(--teal-glow);
}
.api-arrow { font-size: .55rem; color: var(--ink3); }
.api-note { background: rgba(0,212,160,.07); border: 1px solid rgba(0,212,160,.15); border-radius: var(--r8); padding: 11px 14px; font-size: .76rem; color: var(--ink2); line-height: 1.58; }
.api-note strong { color: var(--teal); }
.ind-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.ind-pill { font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--teal); background: var(--teal-dim); padding: 3px 9px; border-radius: var(--r4); border: 1px solid var(--teal-border); }

/* ══ HYBRID MODES ══ */
#hybrid { padding: 90px 0; background: var(--bg2); }
.hybrid-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 60px; }
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mode-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 26px;
  transition: var(--ease); position: relative; overflow: hidden;
}
.mode-card.featured {
  background: linear-gradient(145deg, rgba(0,212,160,.1), rgba(0,212,160,.05));
  border-color: var(--teal-border);
  box-shadow: 0 0 50px rgba(0,212,160,.08);
}
.mode-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,.35); }
.mode-card.featured:hover { box-shadow: 0 24px 48px rgba(0,0,0,.35), 0 0 60px rgba(0,212,160,.12); }
.mode-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r99);
  margin-bottom: 14px;
}
.mode-badge.new { background: var(--teal); color: #021a12; }
.mode-badge.remote { background: rgba(125,211,252,.15); color: var(--blue); border: 1px solid rgba(125,211,252,.25); }
.mode-badge.office { background: rgba(167,139,250,.15); color: var(--purple); border: 1px solid rgba(167,139,250,.25); }
.mode-badge.hybrid { background: var(--teal-dim); color: var(--teal); border: 1px solid var(--teal-border); }
.mode-badge.field  { background: rgba(255,123,61,.12); color: var(--orange); border: 1px solid rgba(255,123,61,.2); }
.mode-badge.flex   { background: rgba(240,192,64,.12); color: var(--gold); border: 1px solid rgba(240,192,64,.2); }
.mode-icon-wrap {
  width: 54px; height: 54px;
  border-radius: var(--r12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 14px;
}
.mode-card h3 { font-size: .95rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.mode-card .mode-desc { font-size: .77rem; color: var(--ink3); line-height: 1.68; margin-bottom: 14px; }
.mode-rules { display: flex; flex-direction: column; gap: 6px; }
.mode-rule { display: flex; align-items: flex-start; gap: 7px; font-size: .74rem; color: var(--ink2); line-height: 1.4; }
.mode-rule::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: .68rem; flex-shrink: 0; margin-top: 1px; }
.mode-card.featured .mode-rule { color: rgba(255,255,255,.75); }
.mode-config-note {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: .72rem; color: var(--ink3); line-height: 1.55;
}
.mode-config-note span { color: var(--teal); font-weight: 700; }
.mode-card.featured .mode-config-note { border-top-color: rgba(0,212,160,.2); }

/* Hybrid visual */
.hybrid-visual { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r16); padding: 24px; }
.hv-title { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 18px; }
.hv-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hv-row:last-child { margin-bottom: 0; }
.hv-user { display: flex; align-items: center; gap: 8px; width: 110px; flex-shrink: 0; font-size: .74rem; font-weight: 600; color: var(--ink2); }
.hv-user-av { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .52rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.hv-bar-wrap { flex: 1; display: flex; align-items: center; gap: 8px; }
.hv-layers { display: flex; gap: 4px; flex: 1; }
.hv-layer {
  height: 26px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.hl-qr   { background: rgba(0,212,160,.2);  color: var(--teal);   flex: 1; }
.hl-geo  { background: rgba(125,211,252,.2); color: var(--blue);   flex: 1; }
.hl-both { background: rgba(0,212,160,.18);  color: var(--teal);   flex: 2; border: 1px solid var(--teal-border); }
.hl-free { background: rgba(255,255,255,.06); color: var(--ink3);  flex: 2; }
.hl-none { background: rgba(255,75,61,.1);   color: var(--red);    flex: 1; }
.hv-mode { font-size: .64rem; font-weight: 700; color: var(--ink3); width: 60px; text-align: right; flex-shrink: 0; }

/* ══ AI SECTION ══ */
#ai { padding: 90px 0; background: var(--bg); }
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 44px; }
.ai-terminal { background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--r16); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.ai-term-bar { background: var(--surface); padding: 10px 14px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border); }
.ai-term-body { padding: 18px; }
.ai-insight { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.ai-insight:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ai-tag { font-family: var(--font-mono); font-size: .5rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px; }
.ai-txt { font-size: .74rem; line-height: 1.58; color: var(--ink2); }
.ai-txt strong { color: var(--ink); }
.ai-feats { display: flex; flex-direction: column; gap: 16px; }
.ai-feat { display: flex; gap: 12px; align-items: flex-start; }
.ai-feat-icon { width: 38px; height: 38px; border-radius: var(--r8); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ai-feat h4 { font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ai-feat p { font-size: .75rem; color: var(--ink3); line-height: 1.6; }

/* ══ MOBILE APP ══ */
#app { padding: 90px 0; background: var(--bg2); }
.app-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.app-feats { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.app-feat { display: flex; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--r12); background: var(--surface); transition: var(--ease); }
.app-feat:hover { border-color: var(--teal-border); transform: translateX(4px); }
.app-feat-icon { width: 36px; height: 36px; background: var(--teal-dim); border-radius: var(--r8); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.app-feat h4 { font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.app-feat p { font-size: .74rem; color: var(--ink3); line-height: 1.58; }
.store-btns { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone { width: 234px; background: var(--bg3); border-radius: 34px; border: 5px solid var(--surface2); box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05); overflow: hidden; }
.phone-notch { width: 76px; height: 20px; background: var(--bg3); border-radius: 0 0 13px 13px; margin: 0 auto; position: relative; z-index: 2; }
.phone-screen { padding: 0 10px 14px; }
.phone-status { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: .5rem; color: var(--ink3); padding: 4px 0 8px; }
.phone-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.phone-title { font-size: .92rem; font-weight: 800; color: var(--ink); }
.phone-notif-btn { width: 22px; height: 22px; background: var(--surface); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .62rem; }
.phone-qr-card { background: rgba(0,212,160,.1); border: 1px solid rgba(0,212,160,.22); border-radius: 11px; padding: 12px; text-align: center; margin-bottom: 8px; }
.phone-qr-tag { font-family: var(--font-mono); font-size: .47rem; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.phone-qr-hint { font-size: .62rem; color: var(--ink3); }
.phone-qr-hint span { color: var(--teal); font-weight: 700; }
.phone-geo-card { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 9px 10px; margin-bottom: 8px; }
.phone-geo-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.phone-geo-title { font-size: .63rem; font-weight: 700; color: var(--ink2); }
.phone-geo-ok { font-size: .52rem; font-weight: 700; color: var(--teal); background: rgba(0,212,160,.14); padding: 2px 7px; border-radius: 3px; }
.phone-geo-bar { height: 4px; background: var(--border); border-radius: 3px; overflow: hidden; }
.phone-geo-fill { height: 100%; width: 82%; background: linear-gradient(90deg, var(--teal), #00e8b5); border-radius: 3px; }
.phone-checkin { background: var(--teal); border-radius: 9px; padding: 9px; text-align: center; font-weight: 800; font-size: .82rem; color: #021a12; }
.phone-float { position: absolute; background: var(--surface2); border: 1px solid var(--border2); border-radius: 9px; padding: 7px 11px; font-size: .68rem; font-weight: 700; display: flex; align-items: center; gap: 6px; white-space: nowrap; box-shadow: 0 8px 28px rgba(0,0,0,.4); }
.pf-right { right: -28px; top: 16%; color: var(--teal); }
.pf-left  { left: -22px; bottom: 20%; color: var(--orange); }
.pf-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ══ INDUSTRIES ══ */
#industries { padding: 90px 0; background: var(--bg); }
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 44px; }
.ind-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r16); padding: 24px; transition: var(--ease); position: relative; overflow: hidden; }
.ind-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .26s; }
.ind-card:hover::after { transform: scaleX(1); }
.ind-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,.3); }
.ind-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.ind-card h3 { font-size: .88rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ind-card p { font-size: .75rem; color: var(--ink3); line-height: 1.64; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.ind-tag { font-size: .59rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--teal); background: var(--teal-dim); padding: 2px 7px; border-radius: 3px; border: 1px solid var(--teal-border); }

/* ══ PRICING ══ */
#pricing { padding: 90px 0; background: var(--bg2); }
.price-head { text-align: center; margin-bottom: 44px; }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.05fr .9fr 1fr; gap: 12px; }
.p-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r16); padding: 24px; transition: var(--ease); }
.p-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.p-card.featured { background: linear-gradient(145deg, rgba(0,212,160,.1), rgba(0,212,160,.05)); border-color: var(--teal-border); box-shadow: 0 0 60px rgba(0,212,160,.1); }
.p-card.free-dashed { border-style: dashed; }
.p-tier { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 8px; }
.p-card.featured .p-tier { color: rgba(0,212,160,.7); }
.p-price { line-height: 1; margin-bottom: 4px; }
.p-price-val { font-size: 2.7rem; font-weight: 800; letter-spacing: -.03em; }
.p-price-sym { font-size: 1rem; font-weight: 600; vertical-align: top; margin-top: 7px; display: inline-block; }
.p-price-per { font-size: .64rem; color: var(--ink3); margin-left: 2px; }
.p-price-custom { font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1; margin: 8px 0 4px; }
.p-desc { font-size: .75rem; color: var(--ink3); line-height: 1.62; margin: 10px 0 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.p-card.featured .p-desc { border-color: rgba(0,212,160,.15); }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.p-features li { display: flex; gap: 7px; font-size: .76rem; color: var(--ink2); align-items: flex-start; line-height: 1.38; }
.p-features li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: .68rem; flex-shrink: 0; margin-top: .1rem; }
.p-features li.off { color: var(--ink3); }
.p-features li.off::before { content: '—'; color: var(--border2); }
.p-card.featured .p-features li { color: rgba(255,255,255,.8); }
.p-btn { display: block; text-align: center; text-decoration: none; padding: 11px; border-radius: var(--r8); font-size: .78rem; font-weight: 700; letter-spacing: .02em; transition: var(--ease); font-family: var(--font-sans); cursor: pointer; border: 1.5px solid transparent; }
.p-btn-ghost { background: var(--surface2); color: var(--ink2); border-color: var(--border); }
.p-btn-ghost:hover { border-color: var(--border2); color: var(--ink); }
.p-btn-primary { background: var(--teal); color: #021a12; box-shadow: 0 0 24px var(--teal-glow); border-color: var(--teal); }
.p-btn-primary:hover { background: var(--teal-hover); box-shadow: 0 4px 30px rgba(0,212,160,.38); }
.p-btn-outline { background: transparent; color: var(--teal); border-color: var(--teal-border); }
.p-btn-outline:hover { background: var(--teal-dim); border-color: var(--teal); }

/* ══ PROOF ══ */
#proof { padding: 90px 0; background: var(--bg); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px; }
.q-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r16); padding: 24px; transition: var(--ease); }
.q-card:hover { border-color: var(--border2); box-shadow: 0 16px 36px rgba(0,0,0,.25); }
.q-ind { display: inline-block; font-size: .59rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); background: var(--teal-dim); padding: 2px 8px; border-radius: 3px; margin-bottom: 12px; border: 1px solid var(--teal-border); }
.q-mark { font-size: 2rem; color: var(--teal); line-height: 1; margin-bottom: 6px; opacity: .4; }
.q-quote { font-family: var(--font-serif); font-style: italic; font-size: .88rem; color: var(--ink2); line-height: 1.72; margin-bottom: 16px; }
.q-person { display: flex; align-items: center; gap: 10px; }
.q-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .64rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.q-name { font-size: .78rem; font-weight: 700; color: var(--ink); }
.q-role { font-size: .68rem; color: var(--ink3); }
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r16); overflow: hidden; margin-top: 36px; }
.stat-item { background: var(--surface); padding: 22px; text-align: center; transition: background .2s; }
.stat-item:hover { background: var(--surface2); }
.stat-val { font-size: 2.2rem; font-weight: 800; color: var(--teal); letter-spacing: -.02em; line-height: 1; }
.stat-lbl { font-size: .69rem; color: var(--ink3); margin-top: 5px; }

/* ══ FAQ ══ */
#faq { padding: 90px 0; background: var(--bg2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 40px; }

/* ══ CTA ══ */
#cta { padding: 100px 0; background: var(--bg); text-align: center; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(0,212,160,.07) 0%, transparent 70%); pointer-events: none; }
.cta-h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: var(--ink); margin-bottom: 16px; position: relative; }
.cta-h2 .teal { color: var(--teal); }
.cta-copy { font-size: .98rem; color: var(--ink2); max-width: 440px; margin: 0 auto 32px; line-height: 1.76; position: relative; }
.cta-acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; position: relative; }
.cta-micro { font-size: .71rem; color: var(--ink3); position: relative; }
.cta-micro strong { color: var(--teal); }
.cta-contacts { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border); position: relative; }
.cc { display: flex; flex-direction: column; gap: 3px; }
.cc-label { font-size: .57rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink3); }
.cc-val { font-size: .82rem; font-weight: 700; color: var(--ink2); }
.cc-val a { color: var(--ink2); text-decoration: none; transition: color .18s; }
.cc-val a:hover { color: var(--teal); }

/* ══ FOOTER ══ */
#footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 22px 28px; }
.foot-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-logo { font-size: .95rem; font-weight: 800; color: var(--ink); }
.foot-logo span { color: var(--teal); }
/* Footer logo image slot */
.foot-logo-img { height: 26px; width: auto; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { font-size: .7rem; color: var(--ink3); text-decoration: none; transition: color .18s; }
.foot-links a:hover { color: var(--teal); }
.foot-copy { font-size: .67rem; color: var(--ink3); }

/* ── Responsive for sections ── */
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .how-grid, .app-layout, .ai-layout, .hybrid-intro { grid-template-columns: 1fr; gap: 36px; }
  .dash-mockup { order: -1; }
  .phone-wrap { order: -1; }
  .problem-grid, .pillar-grid, .ind-grid, .mode-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .cta-contacts { gap: 20px; }
}
@media (max-width: 600px) {
  .problem-grid, .pillar-grid, .ind-grid, .mode-grid, .pricing-grid { grid-template-columns: 1fr; }
  .curr-toggle { display: none; }
  .hero-acts { flex-direction: column; }
}
