:root {
  --gbp-red:   #ea4335;
  --gbp-blue:  #4285F4;
  --gbp-green: #34A853;
  --gbp-yellow:#FBBC05;
  --neon:      #06d6a0;
  --neon-b:    #00d4ff;
}

/* ── HERO ── */
.gbp-hero {
  position: relative;
  background: var(--bg-dark, #040b18);
  overflow: hidden;
  padding: 110px 0 90px;
}
.gbp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,214,160,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,214,160,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.gbp-hero .hero-glow1 {
  position: absolute; top: -15%; left: -8%;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(6,214,160,.1) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
  animation: glow-drift 9s ease-in-out infinite;
}
.gbp-hero .hero-glow2 {
  position: absolute; top: 25%; right: -6%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(234,67,53,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: glow-drift 11s ease-in-out infinite reverse;
}
@keyframes glow-drift { 0%,100%{transform:translate(0,0);} 50%{transform:translate(28px,18px);} }

.gbp-hero__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gbp-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm, 'DM Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  color: #06d6a0;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: #06d69e18;
  border: 1px solid rgba(3, 126, 93, 0.07);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 22px;
}
.gbp-hero__kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #06d6a0;
  animation: kicker-pulse 1.8s ease infinite;
}
@keyframes kicker-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.3;transform:scale(.6);} }

.gbp-hero h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 22px;
}
.gbp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #06d6a0, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gbp-hero__sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  margin-bottom: 34px;
}
.gbp-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.zz-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ea4335, #c5221f);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
  border: none;
  cursor: pointer;
}
.zz-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(234,67,53,.35); }
.zz-btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color .22s, color .22s;
}
.zz-btn--ghost-dark:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── HERO RIGHT: GLITCH TERMINAL ── */
.gbp-terminal {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(234,67,53,.12);
}
.gbp-terminal .term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.term-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.term-title { font-family: var(--fm, monospace); font-size: 12px; color: rgba(255,255,255,.45); margin-left: 6px; flex: 1; }
.alert-badge {
  font-family: var(--fm, monospace);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  background: var(--gbp-red);
  border-radius: 50px;
  padding: 2px 9px;
  animation: badge-blink 2s ease infinite;
}
@keyframes badge-blink { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.gbp-terminal__body { padding: 22px 22px 18px; }

.gbp-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.gbp-status-label { font-size: 13px; color: rgba(255,255,255,.6); }
.gbp-status-badge {
  font-family: var(--fm, monospace);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.badge--ok    { background: rgba(52,168,83,.15); color: #34A853; border: 1px solid rgba(52,168,83,.3); }
.badge--warn  { background: rgba(251,188,5,.15); color: #FBBC05; border: 1px solid rgba(251,188,5,.3); }
.badge--error { background: rgba(234,67,53,.15); color: #ea4335; border: 1px solid rgba(234,67,53,.3); }

.gbp-terminal__sep { height: 1px; background: rgba(255,255,255,.08); margin: 14px 0; }
.gbp-terminal__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.gbp-terminal__result-label { color: rgba(255,255,255,.5); }
.gbp-terminal__result-badge {
  font-family: var(--fm, monospace);
  font-size: 12px;
  font-weight: 800;
  color: #FBBC05;
  background: rgba(251,188,5,.12);
  border: 1px solid rgba(251,188,5,.3);
  border-radius: 50px;
  padding: 4px 14px;
}
.gbp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.gbp-hrc {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.gbp-hrc__num { font-size: clamp(16px, 2vw, 22px); font-weight: 800; color: #fff; }
.gbp-hrc__lbl { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 3px; font-family: var(--fm, monospace); letter-spacing: .06em; }

/* ── STAT BAR ── */
.gbp-stat-bar {
  background: #060f20;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.gbp-stat-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gbp-stat-item { text-align: center; }
.gbp-stat-num { font-size: var(--h3); font-weight: 800; color: #fff; line-height: 1; margin-bottom:20px; }
.gbp-stat-num span { color: #06d6a0 ; }
.gbp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 6px; font-family: var(--fm, monospace); }

/* ── CONTENT SECTIONS ── */
.gbp-sec {
  padding: 90px 0;
  position: relative;
}
.gbp-sec--dark  { background: #040b18; }
.gbp-sec--dark2 { background: #060f20; }
.gbp-sec--white { background: #fff; }
.gbp-sec--soft  { background: #f7f9fc; }

.gbp-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.gbp-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.gbp-grid2--flip { }

/* eyebrow */
.gbp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
  font-family: var(--fm, monospace);
}
.gbp-eyebrow--red { color: #06d6a0; }
.gbp-eyebrow--yellow { color:  #06d6a0; }
.gbp-eyebrow--blue { color:  #06d6a0; }

/* headings in dark sections */
.gbp-sec--dark .gbp-h2,
.gbp-sec--dark2 .gbp-h2 { color: #fff; }
.gbp-sec--dark .gbp-h3,
.gbp-sec--dark2 .gbp-h3 { color: #fff; }
.gbp-h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #0b1221;
  margin-bottom: 16px;
}
.gbp-h3 {
  font-size: var(--h3);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.028em;
  color: #0b1221;
  margin-bottom: 16px;
}
.gbp-h2 em, .gbp-h3 em {
  font-style: normal;
  background: linear-gradient(135deg,  #06d6a0, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gbp-hbar {
  width: 48px; height: 3.5px;
  border-radius: 50px;
  background: linear-gradient(90deg, #06d6a0, #00bfff);
  margin-bottom: 24px;
  box-shadow: 0 0 14px rgba(234,67,53,.3);
}

/* body text */
.gbp-body {
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.82;
  color: rgba(255,255,255,.8);
  margin-bottom: 18px;
  text-align: justify;
}
.gbp-body.on-light { color: #374151; }
.gbp-body b { color: #fff; }
.gbp-body.on-light b { color: #0b1221; }

/* checklist */
.gbp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gbp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
}
.gbp-checklist.on-light li { color: #374151; }
.gbp-checklist__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* ── VISUAL CARDS ── */
.gbp-vis-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 28px 24px;
  box-shadow: 0 0 40px rgba(0,0,0,.3);
}
.gbp-vis-card.on-light {
  background: #fff;
  border: 1px solid #e8edf8;
  box-shadow: 0 6px 32px rgba(10,15,30,.08);
}
.gbp-vis-card.on-soft {
  background: #f7f9fc;
  border: 1px solid #e8edf8;
  box-shadow: 0 6px 32px rgba(10,15,30,.07);
}

/* icon grid */
.gbp-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gbp-icon-tile {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: background .22s, border-color .22s, transform .22s;
}
.gbp-icon-tile:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.gbp-icon-tile.on-light { background: #f7f9fc; border-color: #e8edf8; }
.gbp-icon-tile.on-light:hover { background: #eef3fa; }
.gbp-icon-tile__emoji { font-size: 28px; line-height: 1; }
.gbp-icon-tile__label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .04em; }
.gbp-icon-tile.on-light .gbp-icon-tile__label { color: #374151; }

/* dashboard mockup */
.gbp-dash {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
}
.gbp-dash__header {
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gbp-dash__logo {
  display: flex;
  gap: 4px;
}
.gbp-dash__g-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.gbp-dash__title { font-size: 12px; color: rgba(255,255,255,.5); font-family: var(--fm, monospace); }
.gbp-dash__body { padding: 18px 16px; }
.gbp-dash__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}
.gbp-dash__row--ok  { background: rgba(52,168,83,.1); color: #34A853; }
.gbp-dash__row--err { background: rgba(234,67,53,.1); color: #ea4335; }
.gbp-dash__row--warn{ background: rgba(251,188,5,.1); color: #FBBC05; }
.gbp-dash__row-label { font-weight: 600; }
.gbp-dash__row-val { font-family: var(--fm, monospace); font-size: 11px; font-weight: 700; }

/* reason cards (info boxes) */
.gbp-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gbp-reason-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 18px;
  text-align:center;
  transition: background .22s, border-color .22s, transform .22s;
}
.gbp-reason-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.gbp-reason-card.on-light { background: #f7f9fc; border-color: #e8edf8; }
.gbp-reason-card.on-light:hover { background: #eef3fa; }
.gbp-reason-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gbp-reason-card.on-light h4 { color: #0b1221; }
.gbp-reason-card.on-light h5 { color: #0b1221; }
.gbp-reason-card p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.6); }
.gbp-reason-card.on-light p { color: #6b7280; }

/* CTA section */
.gbp-cta-sec {
  padding: 90px 0;
  background: linear-gradient(135deg, #040b18 0%, #060f20 100%);
  position: relative;
  overflow: hidden;
}
.gbp-cta-sec::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 420px;
  background: radial-gradient(ellipse at 50% 0%, rgba(234,67,53,.1) 0%, transparent 68%);
  pointer-events: none;
}
.gbp-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.gbp-cta-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 46px); margin-bottom: 16px; }
.gbp-cta-inner p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.gbp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* expert card */
.gbp-expert-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 0 40px rgba(0,0,0,.3);
}
.gbp-expert-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.gbp-expert-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.gbp-expert-stat__num { font-size: 22px; font-weight: 800; color: #fff; }
.gbp-expert-stat__num span { color: var(--gbp-red); }
.gbp-expert-stat__lbl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; font-family: var(--fm, monospace); }

/* why-us list */
.gbp-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gbp-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  cursor: default;
  transition: background .22s, border-color .22s, transform .22s;
}
.gbp-why-item.on-light { color: #374151; }
.gbp-why-item:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  transform: translateX(5px);
}
.gbp-why-item.on-light:hover {
  background: #f0f4ff;
  border-color: rgba(66,133,244,.2);
}
.gbp-why-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(6,214,160,.1);
  border: 1px solid rgba(6,214,160,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .22s, transform .28s cubic-bezier(.34,1.56,.64,1);
}
.gbp-why-item:hover .gbp-why-icon { background: rgba(6,214,160,.2); transform: rotate(-8deg) scale(1.12); }

/* breadcrumb strip */
.gbp-breadcrumb {
  background: #060f20;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.gbp-breadcrumb__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  font-family: var(--fm, monospace);
}
.gbp-breadcrumb__wrap a { color: rgba(255,255,255,.5); transition: color .2s; }
.gbp-breadcrumb__wrap a:hover { color: #fff; }
.gbp-breadcrumb__sep { color: rgb(255, 255, 255); }

/* quote callout */
.gbp-quote {
  background: rgba(251,188,5,.06);
  border: 1px solid rgba(251,188,5,.2);
  border-left: 4px solid var(--gbp-yellow);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  font-style: italic;
}
.gbp-quote.on-light { color: #374151; background: rgba(251,188,5,.04); }

/* popup */
.popup-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}
.popup-box {
  background: #fff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
}
.popup-box h4 { font-size: 22px; margin-bottom: 10px; }
.popup-box p { color: #6b7280; margin-bottom: 24px; }
.close-btn {
  position: absolute; top: 14px; right: 18px;
  font-size: 22px; cursor: pointer; color: #9ca3af; line-height: 1;
  background: none; border: none;
}
.close-btn:hover { color: #374151; }

/* section img */
.gbp-sec-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.07);
}
.gbp-sec-img.on-light {
  border-color: #e8edf8;
  box-shadow: 0 8px 40px rgba(10,15,30,.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .gbp-hero__wrap,
  .gbp-grid2 { grid-template-columns: 1fr; gap: 40px; }
  .gbp-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .gbp-reason-grid { grid-template-columns: 1fr; }
  .gbp-grid2--flip .gbp-vis-col { order: -1; }
  .gbp-expert-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gbp-hero { padding: 80px 0 60px; }
  .gbp-stat-grid { grid-template-columns: 1fr 1fr; }
  .gbp-hero__stats { grid-template-columns: repeat(3, 1fr); }
  .gbp-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .gbp-cta-btns { flex-direction: column; align-items: center; }
  .gbp-sec { padding: 60px 0; }
  .gbp-wrap { padding: 0 16px; }
  .gbp-hero__wrap { padding: 0 16px; }
}

.zz-grid1{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.zz-grid2{display:grid;grid-template-columns:1fr 1.3fr;gap:60px;align-items:center;}
.zz-grid2.flip .zz-col-img{order:2;} .zz-grid2.flip .zz-col-txt{order:1;}
.zz-grid3{display:grid;grid-template-columns:1.3fr 1fr;gap:60px;align-items:center;}
@media(max-width:900px){
  .zz-grid1,.zz-grid2,.zz-grid3{grid-template-columns:1fr;gap:40px;}
  .zz-grid2.flip .zz-col-img,.zz-grid2.flip .zz-col-txt{order:0;}
}
.zz-grid7{display:grid;grid-template-columns:1fr 1.7fr;gap:60px;align-items:center;}
@media(max-width:900px){
  .zz-grid7{grid-template-columns:1fr;gap:40px;}
}

