/*
 * StartyERP — Guida Ecommerce 2026
 * Premium Design System v3.0 — Full Rebuild
 * Brand: #fdc300 · #176482 · #002a3a · #0a1015
 */

/* ============================================================
   BOOTSTRAP LEAK PREVENTION
   Reset Salient header/footer elements that Bootstrap's reboot
   overrides globally (ul, li, a, nav)
   ============================================================ */
#header-outer ul, #header-outer li { display: block; list-style: none; margin: 0; padding: 0; }
#header-outer nav { display: block; }
#header-outer a { text-decoration: none; }
#header-outer .sf-menu > li { float: left; display: list-item; }
#header-outer .sf-menu { display: block; float: right; }
/* Prevent Bootstrap .row/.col flex from leaking into Salient header —
   keep header .row as flex (logo | menu side by side) but stop .col children
   from becoming flex containers that break nav layout. */
#header-outer .row > .col { display: block !important; }
footer ul, footer li, footer nav { display: block; list-style: none; margin: 0; padding: 0; }
footer a { text-decoration: none; }

/* Override Bootstrap container max-width to match Salient site-wide standard (1600px) */
@media (min-width: 1400px) {
  body.page-template-page-guida-ecommerce-php .container,
  body.page-template-page-guida-ecommerce-php .container-lg,
  body.page-template-page-guida-ecommerce-php .container-md,
  body.page-template-page-guida-ecommerce-php .container-sm,
  body.page-template-page-guida-ecommerce-php .container-xl,
  body.page-template-page-guida-ecommerce-php .container-xxl {
    max-width: 1600px !important;
  }
}

/* Mobile: fix logo overlapping menu toggle — Bootstrap .row/.col flex leak
   pushes logo and toggle to same left position. Restore Salient mobile layout. */
@media (max-width: 999px) {
  body.page-template-page-guida-ecommerce-php #header-outer .row .col.span_3 {
    display: block !important;
    flex: none !important;
  }
  body.page-template-page-guida-ecommerce-php #header-outer .slide-out-widget-area-toggle.mobile-icon {
    left: 0 !important;
  }
  body.page-template-page-guida-ecommerce-php #header-outer #logo {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* Fix Salient header layout under Bootstrap flex leak — lay out nav as flex
   (menu + Demo Gratuita button in-flow, right-aligned) at native font size.
   ROOT CAUSE: Bootstrap .row { display:flex } made .col children flex
   containers, breaking Salient's centered-menu absolute positioning; the
   .col > block fix above + this in-flow flex nav gives a clean single-row
   header with no logo/menu/button overlap. Scoped to this page only.
   Verified 2026-07-24: logo→menu 24px gap, menu→button 220px gap, no overlap. */
body.page-template-page-guida-ecommerce-php #header-outer[data-format="centered-menu"] #top nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
body.page-template-page-guida-ecommerce-php #header-outer[data-format="centered-menu"] #top nav > ul.sf-menu:not(.buttons) {
  width: auto !important;
  flex: 0 1 auto !important;
  position: static !important;
  left: auto !important;
}
body.page-template-page-guida-ecommerce-php #header-outer[data-format="centered-menu"] #top nav > ul.buttons {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  margin-left: 20px !important;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --y:        #fdc300;
  --yd:       #e6af00;
  --t:        #176482;
  --td:       #0f4a63;
  --tl:       #dff0f6;
  --navy:     #002a3a;
  --dark:     #0a1015;
  --dark2:    #0d1820;
  --dark3:    #111f28;
  --body:     #2e3c42;
  --grey:     #6b7a80;
  --muted:    #94a3aa;
  --border:   #e2e8ed;
  --light:    #f4f7fa;
  --green:    #16a34a;
  --green-bg: #f0fdf4;
  --red:      #dc2626;
  --red-bg:   #fef2f2;
  --amber:    #d97706;
  --amber-bg: #fffbeb;
  --fh: 'Plus Jakarta Sans', 'Rubik', sans-serif;
  --fb: 'Rubik', sans-serif;
  --r1: 8px; --r2: 14px; --r3: 20px; --r4: 28px; --rpill: 999px;
  --s1: 0 2px 8px rgba(0,0,0,.06);
  --s2: 0 6px 24px rgba(0,0,0,.10);
  --s3: 0 12px 48px rgba(0,0,0,.14);
  --s4: 0 20px 72px rgba(0,0,0,.18);
  --sy: 0 8px 32px rgba(253,195,0,.28);
  --st: 0 8px 32px rgba(23,100,130,.22);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: border-box; }
.startyerp-landing-wrapper section[id] { scroll-margin-top: 88px; }

.gp {
  font-family: var(--fb);
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.gp h1,.gp h2,.gp h3,.gp h4,.gp h5,.gp h6 {
  font-family: var(--fh);
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.gp p.p-lg  { font-size: 1.07rem; line-height: 1.84; color: #3c4c52; margin-bottom: 1.4rem; }
.gp p.p-xl  { font-size: 1.14rem; line-height: 1.78; }
.gp .color--theme { color: var(--y) !important; }
.gp .color--white { color: #fff !important; }
.gp .color--grey  { color: var(--grey) !important; }
.gp .color--black { color: var(--navy) !important; }

/* Buttons */
.gp .btn--theme {
  background: var(--y) !important; border-color: var(--y) !important;
  color: var(--dark) !important; font-weight: 700;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.gp .btn--theme:hover, .gp .hover--theme:hover {
  background: var(--yd) !important; border-color: var(--yd) !important;
  color: var(--dark) !important; transform: translateY(-2px); box-shadow: var(--sy);
}
.gp .btn--tra-black:hover {
  background: var(--y) !important; border-color: var(--y) !important; color: var(--dark) !important;
}
.gp .hover--tra-theme:hover {
  background: transparent !important; border-color: var(--y) !important; color: var(--y) !important;
}
.gp .btn--tra-white { border-color: rgba(255,255,255,.30) !important; color: #fff !important; }
.gp .btn--tra-white:hover {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.55) !important; color: #fff !important;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.g-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: linear-gradient(90deg, var(--y), var(--yd), var(--t));
  z-index: 9999; transition: width .1s linear;
  box-shadow: 0 0 14px rgba(253,195,0,.55), 0 0 28px rgba(253,195,0,.25);
}

/* ============================================================
   HEADER
   ============================================================ */
.g-header {
  background: rgba(255,255,255,.95) !important;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.g-header.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.09); }
.g-header .btn--tra-white {
  background: var(--y) !important; border-color: var(--y) !important;
  color: var(--dark) !important; font-weight: 700;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.g-header .btn--tra-white:hover {
  background: var(--yd) !important; box-shadow: var(--sy); transform: translateY(-1px);
}

/* ============================================================
   HERO — DARK FULL
   ============================================================ */
.g-hero {
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 900px 700px at 90% 0%, rgba(23,100,130,.22) 0%, transparent 65%),
    radial-gradient(ellipse 700px 600px at 0% 100%, rgba(253,195,0,.06) 0%, transparent 65%),
    linear-gradient(150deg, #060c10 0%, #0c1921 50%, #091420 100%);
  position: relative; overflow: hidden;
}

/* Animated grid mesh */
.g-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.020) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

/* Top glow orb */
.g-hero::after {
  content: '';
  position: absolute; top: -160px; right: -160px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(23,100,130,.18) 0%, transparent 58%);
  pointer-events: none;
  animation: glow-pulse 7s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .58; transform: scale(1.10); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(.7deg); }
  66%       { transform: translateY(-8px) rotate(-.4deg); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Breadcrumb */
.g-breadcrumb { margin-bottom: 24px; }
.g-breadcrumb .breadcrumb { background: 0; padding: 0; margin: 0; font-size: .82rem; }
.g-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .15s; }
.g-breadcrumb .breadcrumb-item a:hover { color: var(--y); }
.g-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.22); }
.g-breadcrumb .breadcrumb-item+.breadcrumb-item::before { content: '›'; color: rgba(255,255,255,.18); }

/* Hero badge */
.g-badge-wrap { margin-bottom: 22px; }
.g-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,195,0,.09); color: var(--y);
  border: 1px solid rgba(253,195,0,.30); border-radius: var(--rpill);
  padding: 8px 22px; font-size: .76rem; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase; font-family: var(--fh);
  box-shadow: 0 0 28px rgba(253,195,0,.12), inset 0 0 14px rgba(253,195,0,.04);
}

/* Hero heading */
.g-hero h1 {
  font-size: 3.7rem; font-weight: 800; letter-spacing: -.035em;
  line-height: 1.12; color: #fff !important; font-family: var(--fh);
}
.g-hero h1 .color--theme {
  color: var(--y) !important;
  text-shadow: 0 0 44px rgba(253,195,0,.28);
}
.g-hero .p-xl { color: rgba(255,255,255,.58) !important; font-size: 1.13rem !important; }

/* Meta row */
.g-meta {
  display: flex; flex-wrap: wrap;
  font-size: .83rem; color: rgba(255,255,255,.35); align-items: center;
}
.g-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 18px; border-right: 1px solid rgba(255,255,255,.09);
}
.g-meta span:first-child { padding-left: 0; }
.g-meta span:last-child  { border-right: none; }

/* Buttons */
.g-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.g-btns .btn { font-weight: 700; font-size: .95rem; transition: transform .2s var(--ease), box-shadow .2s; }
.g-btns .btn--theme { box-shadow: 0 6px 28px rgba(253,195,0,.36); }
.g-btns .btn--tra-black {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.82) !important;
}
.g-btns .btn--tra-black:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.38) !important; color: #fff !important;
}

/* Hero image */
.g-hero-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.g-hero-img-wrap::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(23,100,130,.30) 0%, transparent 62%);
  border-radius: 50%; z-index: 0; animation: glow-pulse 5.5s ease-in-out infinite;
}
.g-hero-img {
  position: relative; z-index: 1;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.48)) drop-shadow(0 0 50px rgba(23,100,130,.22));
  max-width: 460px; width: 100%;
  animation: float-y 5.5s ease-in-out infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.g-stats {
  background: linear-gradient(135deg, #060b0f 0%, #0c1820 55%, #08121a 100%);
  padding: 60px 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(253,195,0,.06);
  border-bottom: 1px solid rgba(23,100,130,.10);
}
.g-stats::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 250px at 12% 50%, rgba(253,195,0,.055) 0%, transparent 68%),
    radial-gradient(ellipse 400px 250px at 88% 50%, rgba(23,100,130,.07) 0%, transparent 68%);
  pointer-events: none;
}
.g-stat-item { padding: 24px 36px; position: relative; text-align: center; }
.g-stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); height: 52%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(253,195,0,.14), transparent);
}
.g-stat-num {
  font-size: 3.2rem; font-weight: 800; color: var(--y);
  line-height: 1; margin-bottom: 10px; font-family: var(--fh); letter-spacing: -.035em;
  text-shadow: 0 0 32px rgba(253,195,0,.40), 0 0 64px rgba(253,195,0,.15);
}
.g-stat-label { font-size: .79rem; color: rgba(255,255,255,.45); line-height: 1.48; max-width: 130px; margin: 0 auto; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.g-toc {
  background: linear-gradient(160deg, #edf3f8 0%, #e3ecf3 100%);
  padding: 80px 0; position: relative;
}
.g-toc::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(23,100,130,.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.g-toc-box {
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-radius: var(--r4); padding: 52px 56px;
  box-shadow: var(--s4);
  border-left: 6px solid var(--y);
  border: 1px solid rgba(255,255,255,.95);
  border-left: 6px solid var(--y);
  position: relative; overflow: hidden;
}
.g-toc-box::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(253,195,0,.07) 0%, transparent 70%);
  pointer-events: none;
}
.g-toc-hdr {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.g-toc-hdr h2 { font-size: 1.22rem; font-weight: 800; color: var(--navy); margin: 0; font-family: var(--fh); }
/* TOC shared counter — moved to parent .row so both columns count consecutively */
.g-toc .row { counter-reset: tc; }

.g-toc-list { padding-left: 0; margin: 0; list-style: none; }
.g-toc-list li {
  margin-bottom: 14px; font-size: .96rem; font-weight: 500;
  counter-increment: tc; position: relative; padding-left: 42px;
}
.g-toc-list li::before {
  content: counter(tc, decimal-leading-zero);
  position: absolute; left: 0; top: 1px;
  font-size: .70rem; font-weight: 800; color: var(--yd);
  background: rgba(253,195,0,.13); border-radius: 5px; padding: 2px 6px; line-height: 1.5;
}
.g-toc-list a {
  color: var(--t); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.g-toc-list a:hover { color: var(--navy); border-bottom-color: var(--y); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.g-section { padding: 92px 0; }

.g-section--alt {
  background:
    radial-gradient(ellipse 60% 55% at 95% 8%, rgba(23,100,130,.04) 0%, transparent 68%),
    linear-gradient(160deg, #f2f7fb 0%, #e8eef5 100%);
  position: relative;
}
.g-section--alt::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(23,100,130,.03) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}

.g-section--dark {
  background: linear-gradient(148deg, #070c11 0%, #0b1720 54%, #08121e 100%);
  position: relative; overflow: hidden;
}
.g-section--dark::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(23,100,130,.09) 0%, transparent 58%);
  pointer-events: none;
}
.g-section--dark::after {
  content: ''; position: absolute; bottom: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(253,195,0,.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Chapter label */
.g-cap-label { display: inline-block; margin-bottom: 18px; }
.g-cap-label span {
  background: linear-gradient(135deg, var(--y), #ffd740);
  color: var(--dark); padding: 6px 20px; border-radius: var(--rpill);
  font-size: .70rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px;
  box-shadow: 0 4px 16px rgba(253,195,0,.34); font-family: var(--fh);
}
.g-cap-label--light span {
  background: rgba(253,195,0,.11); color: var(--y);
  box-shadow: 0 0 20px rgba(253,195,0,.14); border: 1px solid rgba(253,195,0,.24);
}

/* Headings */
.g-section h2.h3 { font-size: 2.4rem; font-weight: 800; letter-spacing: -.025em; }
.g-section h3.h4 {
  font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em;
  padding-left: 18px; border-left: 4px solid var(--y);
}
.g-section--dark h3.h4 { color: rgba(255,255,255,.90) !important; }

/* ============================================================
   CALLOUTS
   ============================================================ */
.g-callout { border-radius: var(--r2); padding: 24px 28px; border-left: 4px solid; margin: 44px 0; }
.g-callout p { margin: 0; font-size: 1rem; line-height: 1.74; }
.g-callout--blue  { background: linear-gradient(135deg, #edf5fb, #e0edf6); border-color: var(--t); box-shadow: 0 4px 20px rgba(23,100,130,.08); }
.g-callout--blue p  { color: #0c3850; }
.g-callout--yellow { background: linear-gradient(135deg, #fffde7, #fff6bc); border-color: var(--y); box-shadow: 0 4px 20px rgba(253,195,0,.12); }
.g-callout--yellow p { color: #594000; }
.g-callout--green  { background: linear-gradient(135deg, #f0fdf4, #d6fce0); border-color: var(--green); box-shadow: 0 4px 20px rgba(22,163,74,.09); }
.g-callout--green p { color: #14532d; }
.g-callout--green a { color: var(--t); font-weight: 700; text-decoration: none; }
.g-callout--green a:hover { color: var(--yd); }

/* ============================================================
   STAT CARDS
   ============================================================ */
.g-stat-card {
  background: #fff; border-radius: var(--r3); padding: 36px 28px;
  text-align: center; box-shadow: var(--s2); border: 1px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; overflow: hidden;
}
.g-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--t), var(--y));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.g-stat-card:hover { transform: translateY(-7px); box-shadow: var(--s4); }
.g-stat-card:hover::before { transform: scaleX(1); }
.g-stat-card-num { font-size: 2.3rem; font-weight: 800; color: var(--t); line-height: 1; margin-bottom: 10px; letter-spacing: -.03em; font-family: var(--fh); }
.g-stat-card-label { font-size: .84rem; color: var(--grey); line-height: 1.5; }

/* ============================================================
   TABLES
   ============================================================ */
.g-table { width: 100%; border-radius: var(--r2); overflow: hidden; box-shadow: var(--s3); }
.g-table thead tr { background: linear-gradient(135deg, #09121a, #141f28); }
.g-table thead th {
  padding: 16px 20px; font-size: .78rem; font-weight: 700; letter-spacing: .6px;
  border: none; color: rgb(0 0 0 / 100%); text-transform: uppercase; font-family: var(--fh);
}
.g-table tbody tr { transition: background .15s; }
.g-table tbody tr:nth-child(even) { background: #fafbfc; }
.g-table tbody tr:hover { background: var(--tl); }
.g-table tbody td { padding: 15px 20px; font-size: .91rem; vertical-align: middle; border-bottom: 1px solid var(--border); }
.g-badge-pill { display: inline-block; padding: 4px 14px; border-radius: var(--rpill); font-size: .74rem; font-weight: 700; }
.g-badge-high   { background: var(--red-bg);   color: var(--red);   border: 1px solid rgba(220,38,38,.14); }
.g-badge-med    { background: var(--amber-bg);  color: var(--amber); border: 1px solid rgba(217,119,6,.14); }
.g-badge-low    { background: var(--green-bg);  color: var(--green); border: 1px solid rgba(22,163,74,.14); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.g-feature-card {
  background: #fff; border-radius: var(--r3); padding: 34px 28px;
  text-align: center; box-shadow: var(--s2); border: 1px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s; height: 100%;
  position: relative; overflow: hidden;
}
.g-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--y), var(--t));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.g-feature-card:hover { transform: translateY(-7px); box-shadow: var(--s4); border-color: transparent; }
.g-feature-card:hover::before { transform: scaleX(1); }
.g-feature-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; line-height: 1; }
.g-feature-card h5 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-family: var(--fh); }
.g-feature-card p  { font-size: .88rem; color: var(--grey); margin: 0; line-height: 1.68; }
.g-feature-card--sm { padding: 22px 18px; }
.g-feature-card--sm .g-feature-icon { font-size: 2rem; margin-bottom: 14px; }

/* ============================================================
   PRO / CON
   ============================================================ */
.g-procon { border-radius: var(--r2); padding: 28px; height: 100%; transition: transform .25s var(--ease), box-shadow .25s; }
.g-procon--pro { background: linear-gradient(135deg, #f0fdf4, #d6fce0); border: 1px solid rgba(22,163,74,.26); }
.g-procon--pro:hover { box-shadow: 0 6px 28px rgba(22,163,74,.12); transform: translateY(-3px); }
.g-procon--con { background: linear-gradient(135deg, #fef2f2, #fedfdf); border: 1px solid rgba(220,38,38,.20); }
.g-procon--con:hover { box-shadow: 0 6px 28px rgba(220,38,38,.10); transform: translateY(-3px); }
.g-procon h5 { font-size: .94rem; margin-bottom: 18px; font-weight: 700; font-family: var(--fh); }
.g-procon--pro h5 { color: #14532d; }
.g-procon--con h5 { color: #7f1d1d; }
.g-list { padding-left: 0; margin: 0; list-style: none; }
.g-list li { font-size: .89rem; margin-bottom: 10px; line-height: 1.58; padding-left: 22px; position: relative; }
.g-procon--pro .g-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.g-procon--con .g-list li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.g-list-lg { padding-left: 0; margin: 0; list-style: none; }
.g-list-lg li { font-size: 1rem; margin-bottom: 13px; line-height: 1.70; padding-left: 26px; position: relative; }
.g-list-lg li::before { content: '→'; position: absolute; left: 0; color: var(--t); font-weight: 700; }

/* ============================================================
   WARNING LIST
   ============================================================ */
.g-warn-list { display: flex; flex-direction: column; gap: 16px; }
.g-warn-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border-radius: var(--r2); padding: 22px;
  box-shadow: var(--s1); border: 1px solid var(--border);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.g-warn-item:hover { transform: translateX(4px); box-shadow: var(--s3); }
.g-warn-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.g-warn--red    { color: var(--red); }
.g-warn--yellow { color: #f59e0b; }
.g-warn--orange { color: #f97316; }
.g-warn-content strong { display: block; font-size: .96rem; font-weight: 700; color: var(--body); margin-bottom: 5px; }
.g-warn-content p { font-size: .87rem; color: var(--grey); margin: 0; line-height: 1.62; }

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.g-benefit-card {
  background: #fff; border-radius: var(--r3); padding: 34px;
  box-shadow: var(--s2); border: 1px solid var(--border);
  height: 100%; transition: transform .25s var(--ease), box-shadow .25s;
  position: relative; overflow: hidden;
}
.g-benefit-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--t), var(--y));
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.g-benefit-card:hover { transform: translateY(-6px); box-shadow: var(--s4); }
.g-benefit-card:hover::after { transform: scaleY(1); }
.g-benefit-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.g-benefit-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-family: var(--fh); }
.g-benefit-card p  { font-size: .90rem; color: var(--grey); margin: 0; line-height: 1.64; }

/* ============================================================
   INTEGRATION GRID
   ============================================================ */
.g-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-int-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 14px; background: #fff; border-radius: var(--r2);
  border: 1px solid var(--border); transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
  cursor: default;
}
.g-int-item:hover { transform: translateY(-4px); box-shadow: var(--s3); border-color: var(--y); }
.g-int-item span { font-size: .79rem; font-weight: 600; color: var(--grey); transition: color .2s; }
.g-int-item:hover span { color: var(--navy); font-weight: 700; }
.g-int-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  transition: transform .2s var(--ease);
}
.g-int-item:hover .g-int-icon { transform: scale(1.10); }
.int-amazon  { background: #FF9900; }
.int-ebay    { background: linear-gradient(135deg, #e53238, #c02020); }
.int-shopify { background: linear-gradient(135deg, #96bf48, #6e9636); }
.int-woo     { background: linear-gradient(135deg, #7f54b3, #5e3e87); }
.int-magento { background: linear-gradient(135deg, #f46f25, #d45a12); }
.int-presta  { background: linear-gradient(135deg, #df0067, #b3004f); }
.int-temu    { background: linear-gradient(135deg, #fa5a28, #d43d0e); }
.int-tiktok  { background: linear-gradient(135deg, #010101, #1a1a1a); font-size: .9rem; }

/* ============================================================
   DARK SECTION — CAP 5
   ============================================================ */
.g-section--dark .p-lg { color: rgba(255,255,255,.72) !important; }
.g-section--dark .g-list-lg li { color: rgba(255,255,255,.78); }

.g-target-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r2); padding: 30px 26px; text-align: center;
  height: 100%; transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.g-target-card:hover { background: rgba(253,195,0,.07); border-color: rgba(253,195,0,.28); transform: translateY(-4px); }
.g-target-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.g-target-card h5 { color: #fff !important; font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; font-family: var(--fh); }
.g-target-card p  { color: rgba(255,255,255,.62) !important; font-size: .89rem; margin: 0; line-height: 1.62; }

.g-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.055);
  font-size: .92rem; color: rgba(255,255,255,.78); line-height: 1.52;
  transition: color .15s, padding-left .2s;
}
.g-check-item:hover { color: rgba(255,255,255,.96); padding-left: 4px; }
.g-check-icon { color: var(--y); font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.g-case-box {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r4); padding: 44px;
}
.g-case-badge-wrap { margin-bottom: 20px; }
.g-case-badge {
  background: rgba(253,195,0,.11); color: var(--y);
  border: 1px solid rgba(253,195,0,.24); padding: 5px 16px;
  border-radius: var(--rpill); font-size: .80rem; font-weight: 600; font-family: var(--fh);
}
.g-case-metric { padding: 16px 8px; }
.g-case-num {
  font-size: 2rem; font-weight: 800; color: var(--y);
  line-height: 1; margin-bottom: 6px; letter-spacing: -.03em; font-family: var(--fh);
  text-shadow: 0 0 20px rgba(253,195,0,.30);
}
.g-case-label { font-size: .78rem; color: rgba(255,255,255,.52); line-height: 1.35; }
.g-case-quote { border-left: 3px solid var(--y); padding-left: 20px; margin: 0; }
.g-case-quote p { font-size: .96rem; color: rgba(255,255,255,.72) !important; font-style: italic; margin-bottom: 8px; }
.g-case-quote cite { font-size: .82rem; color: rgba(255,255,255,.40); font-style: normal; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.g-cta-section {
  padding: 92px 0;
  background: linear-gradient(148deg, #060b10 0%, #0a1520 55%, #07101a 100%);
  position: relative; overflow: hidden;
}
.g-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(253,195,0,.055) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.g-cta-section::after {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(253,195,0,.07) 0%, transparent 65%);
  pointer-events: none;
}
.g-cta-box {
  text-align: center; position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}
.g-cta-eyebrow {
  display: inline-block; color: var(--y);
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.3px; margin-bottom: 14px; font-family: var(--fh);
}
.g-cta-box h2 { color: #fff !important; font-size: 2.3rem; font-weight: 800; letter-spacing: -.025em; }
.g-cta-box .p-xl { color: rgba(255,255,255,.55) !important; }
.g-cta-form { max-width: 600px; margin: 0 auto; }

/* ============================================================
   FAQ
   ============================================================ */
.g-faq {
  padding: 92px 0;
  background: linear-gradient(160deg, #f2f7fb 0%, #e8eef5 100%);
  position: relative;
}
.g-faq::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(23,100,130,.03) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.g-accordion { display: flex; flex-direction: column; gap: 12px; }
.g-acc-item {
  background: #fff; border-radius: var(--r2); border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--s1); transition: border-color .2s, box-shadow .2s;
}
.g-acc-item.open { border-color: var(--y); box-shadow: 0 4px 24px rgba(253,195,0,.13); }
.g-acc-title {
  padding: 22px 26px; font-size: 1rem; font-weight: 600; color: var(--body);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  margin: 0; user-select: none; transition: color .2s; list-style: none;
  font-family: var(--fh);
}
.g-acc-title:hover { color: var(--t); }
.g-acc-item.open .g-acc-title { color: var(--t); }
.g-acc-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(23,100,130,.07); color: var(--t);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; flex-shrink: 0;
  transition: background .2s, color .2s, transform .25s var(--ease);
}
.g-acc-item.open .g-acc-toggle {
  background: var(--y); color: var(--dark); transform: rotate(45deg);
}
.g-acc-body {
  overflow: hidden; max-height: 0;
  transition: max-height .35s var(--ease), padding .25s;
  padding: 0 26px;
}
.g-acc-item.open .g-acc-body { max-height: 600px; padding-bottom: 22px; }
.g-acc-body p { font-size: .95rem; line-height: 1.78; color: #424c50; margin: 16px 0 0; }
.g-acc-body ul { padding-left: 20px; margin-top: 8px; }
.g-acc-body ul li { font-size: .90rem; margin-bottom: 7px; line-height: 1.62; color: #424c50; }

/* ============================================================
   CONCLUSION — TREND CARDS
   ============================================================ */
.g-trend-card {
  background: #fff; border-radius: var(--r2); padding: 30px 26px;
  box-shadow: var(--s2); border: 1px solid var(--border); height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s; position: relative; overflow: hidden;
}
.g-trend-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--y), var(--t));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.g-trend-card:hover { transform: translateY(-5px); box-shadow: var(--s4); }
.g-trend-card:hover::before { transform: scaleX(1); }
.g-trend-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.g-trend-card h5 { font-size: 1.02rem; font-weight: 700; color: var(--body); margin-bottom: 10px; font-family: var(--fh); }
.g-trend-card p  { font-size: .89rem; color: var(--grey); margin: 0; line-height: 1.64; }

/* Steps */
.g-steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.g-step {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; border-radius: var(--r2); padding: 24px 26px;
  box-shadow: var(--s2); border: 1px solid var(--border);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.g-step::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--y); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.g-step:hover { transform: translateX(3px); box-shadow: var(--s3); border-color: var(--t); }
.g-step:hover::before { transform: scaleY(1); }
.g-step-num {
  width: 46px; height: 46px; background: var(--y); color: var(--dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(253,195,0,.40); font-family: var(--fh);
}
.g-step-content strong { display: block; font-size: 1rem; font-weight: 700; color: var(--body); margin-bottom: 6px; font-family: var(--fh); }
.g-step-content p { font-size: .90rem; color: var(--grey); margin: 0; line-height: 1.62; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.g-cta-banner {
  background: linear-gradient(135deg, var(--t) 0%, var(--td) 100%);
  padding: 66px 0; position: relative; overflow: hidden;
}
.g-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 500px 300px at 20% 50%, rgba(253,195,0,.09) 0%, transparent 68%);
  pointer-events: none;
}
.g-cta-banner h3 { color: #fff !important; position: relative; z-index: 1; font-family: var(--fh); }
.g-cta-banner .btn { position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.g-footer {
  background: linear-gradient(135deg, #0a1015, #0e1820);
  padding: 68px 0 32px; color: #9da8b0;
}
.g-footer-link { color: #9da8b0; text-decoration: none; font-size: .85rem; transition: color .15s, border-color .15s; border-bottom: 1px solid transparent; }
.g-footer-link:hover { color: var(--y); border-bottom-color: rgba(253,195,0,.4); }
.g-footer-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ============================================================
   INLINE LINK
   ============================================================ */
.g-inline-link {
  color: var(--t); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(23,100,130,.28); transition: color .15s, border-color .15s;
}
.g-inline-link:hover { color: var(--yd); border-color: var(--yd); }

/* ============================================================
   CHAPTER INDICATOR
   ============================================================ */
.g-chapter-indicator {
  position: fixed; bottom: 26px; right: 26px;
  background: rgba(10,16,21,.92); color: rgba(255,255,255,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 10px 20px; border-radius: var(--rpill);
  font-size: .78rem; font-weight: 600; z-index: 1000;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
  border: 1px solid rgba(255,255,255,.09); font-family: var(--fh);
}
.g-chapter-indicator.visible { opacity: 1; transform: translateY(0); }
.g-chapter-indicator span { color: var(--y); margin-right: 6px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .g-hero h1 { font-size: 3.1rem; }
}
@media (max-width: 991px) {
  .g-hero { padding: 110px 0 70px; }
  .g-hero h1 { font-size: 2.6rem !important; }
  .g-section h2.h3 { font-size: 2rem; }
  .g-stat-num { font-size: 2.5rem; }
  .g-toc-box { padding: 32px 28px; }
  .g-cta-box h2 { font-size: 1.9rem; }
  .g-int-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .g-hero { padding: 96px 0 56px; }
  .g-hero h1 { font-size: 2.1rem !important; }
  .g-section { padding: 64px 0; }
  .g-section h3.h4 { font-size: 1.35rem; }
  .g-stat-item:not(:last-child)::after { display: none; }
  .g-stat-num { font-size: 2rem; }
  .g-case-box { padding: 28px 22px; }
  .g-step { gap: 14px; }
  .g-step-num { width: 38px; height: 38px; font-size: 1rem; }
  .g-int-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .g-toc-box { padding: 26px 22px; }
  .g-acc-title { font-size: .92rem; padding: 18px 20px; }
  .g-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .g-meta span { border-right: none; padding-left: 0; }
}
@media (max-width: 575px) {
  .g-btns { flex-direction: column; }
  .g-btns .btn { width: 100%; text-align: center; }
  .g-hero h1 { font-size: 1.9rem !important; }
}
@media print {
  .g-header, .g-progress, .g-chapter-indicator,
  .g-cta-section, .g-cta-banner, .g-footer { display: none !important; }
  .g-section--dark { background: #f5f5f5 !important; }
  .g-section--dark * { color: #000 !important; }
}

/* ============================================================
   HERO V2 — CINEMATIC ORBIT
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes orbit-1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes counter-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes counter-rotate-2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(.6); opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(2.0); opacity: 0; }
}
@keyframes packet-travel {
  0%   { opacity: 0; transform: translate(0,0) scale(.4); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--px), var(--py)) scale(.4); }
}
@keyframes hub-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,195,0,.0), 0 0 40px rgba(23,100,130,.25); }
  50%       { box-shadow: 0 0 0 18px rgba(253,195,0,.07), 0 0 60px rgba(23,100,130,.40); }
}
@keyframes gh2-fadein {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
@keyframes underline-grow {
  from { width: 0; }
  to   { width: 100%; }
}

/* ---- Section shell ---- */
.gh2 {
  position: relative; overflow: hidden;
  padding: 130px 0 80px;
  background: radial-gradient(ellipse 1100px 700px at 110% -10%, rgba(23, 100, 130, .20) 0%, transparent 60%), radial-gradient(ellipse 800px 600px at -10% 110%, rgba(253, 195, 0, .05) 0%, transparent 60%), linear-gradient(160deg, #94b9d6 0%, #293d4a 40%, #25538c 70%, #050c15 100%);
}

/* Ambient blobs */
.gh2-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: .6;
}
.gh2-blob--1 {
  width: 640px; height: 640px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(23,100,130,.18) 0%, transparent 70%);
  animation: glow-pulse 9s ease-in-out infinite;
}
.gh2-blob--2 {
  width: 420px; height: 420px; bottom: -150px; left: -80px;
  background: radial-gradient(circle, rgba(253,195,0,.08) 0%, transparent 70%);
  animation: glow-pulse 11s ease-in-out infinite reverse;
}
.gh2-blob--3 {
  width: 300px; height: 300px; top: 40%; left: 42%;
  background: radial-gradient(circle, rgba(23,100,130,.10) 0%, transparent 70%);
  animation: glow-pulse 7s ease-in-out infinite 2s;
}

/* Noise texture */
.gh2-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .025;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Breadcrumb override for new hero */
.gh2-breadcrumb { margin-bottom: 36px; }
.gh2-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.32) !important; }
.gh2-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.18) !important; }

/* Row */
.gh2-row { min-height: 500px; padding: 20px 0; }

/* ---- Copy column ---- */
.gh2-copy {
  animation: gh2-fadein .8s var(--ease) both;
}

/* Eyebrow */
.gh2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--y); margin-bottom: 24px;
  font-family: var(--fh);
}
.gh2-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--y);
  box-shadow: 0 0 10px rgba(253,195,0,.7), 0 0 20px rgba(253,195,0,.4);
  flex-shrink: 0;
  animation: dot-blink 2.2s ease-in-out infinite;
}

/* H1 */
.gh2-h1 {
  font-family: var(--fh);
  font-size: 4rem; font-weight: 800; letter-spacing: -.04em;
  line-height: 1.08; color: #fff; margin-bottom: 0;
  animation: gh2-fadein .8s var(--ease) .1s both;
}

/* Animated underline accent */
.gh2-underline {
  display: block;
  color: var(--y);
  text-shadow: 0 0 50px rgba(253,195,0,.30);
  position: relative;
}
.gh2-underline::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--y), var(--yd), transparent);
  border-radius: 2px;
  animation: underline-grow 1s var(--ease) .9s forwards;
}

/* Subtitle */
.gh2-sub {
  font-size: 1.12rem; line-height: 1.78; color: rgba(255,255,255,.55);
  margin: 28px 0 0; max-width: 520px;
  animation: gh2-fadein .8s var(--ease) .2s both;
}

/* Trust bar */
.gh2-trust {
  display: flex; align-items: center; gap: 0;
  margin: 36px 0;
  animation: gh2-fadein .8s var(--ease) .3s both;
}
.gh2-trust-item { display: flex; flex-direction: column; align-items: flex-start; padding: 0 28px; }
.gh2-trust-item:first-child { padding-left: 0; }
.gh2-trust-num {
  font-size: 1.55rem; font-weight: 800; color: #fff;
  font-family: var(--fh); letter-spacing: -.03em; line-height: 1;
}
.gh2-trust-label { font-size: .75rem; color: rgba(255,255,255,.40); margin-top: 4px; letter-spacing: .2px; }
.gh2-trust-sep {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
  flex-shrink: 0;
}

/* CTAs */
.gh2-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: gh2-fadein .8s var(--ease) .4s both;
}
.gh2-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--y); color: #060c10 !important;
  font-family: var(--fh); font-size: .97rem; font-weight: 800;
  padding: 15px 32px; border-radius: var(--rpill); text-decoration: none;
  box-shadow: 0 6px 28px rgba(253,195,0,.38), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .22s var(--ease), box-shadow .22s;
  border: 2px solid var(--y);
  letter-spacing: -.01em;
}
.gh2-btn-primary:hover {
  background: var(--yd); color: #060c10 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(253,195,0,.50), 0 4px 16px rgba(0,0,0,.25);
  border-color: var(--yd);
}
.gh2-btn-primary svg { transition: transform .2s var(--ease); flex-shrink: 0; }
.gh2-btn-primary:hover svg { transform: translateX(4px); }

.gh2-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.75) !important;
  font-family: var(--fh); font-size: .97rem; font-weight: 700;
  padding: 15px 32px; border-radius: var(--rpill); text-decoration: none;
  border: 2px solid rgba(255,255,255,.14);
  transition: background .2s, border-color .2s, color .2s, transform .22s var(--ease);
}
.gh2-btn-ghost:hover {
  background: rgba(255,255,255,.12); color: #fff !important;
  border-color: rgba(255,255,255,.32); transform: translateY(-2px);
}

/* Social proof */
.gh2-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
  animation: gh2-fadein .8s var(--ease) .5s both;
}
.gh2-stars { color: var(--y); font-size: 1rem; letter-spacing: 1px; }
.gh2-proof-text { font-size: .85rem; color: rgba(255,255,255,.40); font-style: italic; }

/* ---- Orbit graphic ---- */
.gh2-orbit-col {
  justify-content: center; align-items: center;
  animation: gh2-fadein .9s var(--ease) .2s both;
}

.gh2-orbit-wrap {
  position: relative;
  width: 440px; height: 440px;
  flex-shrink: 0;
}

/* Hub (centre) */
.gh2-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 96px; height: 96px;
  background: linear-gradient(145deg, #0d1e2c, #162d3e);
  border: 2px solid rgba(253,195,0,.30);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  animation: hub-glow 4s ease-in-out infinite;
  box-shadow:
    0 0 0 8px rgba(23,100,130,.12),
    0 0 40px rgba(23,100,130,.25),
    inset 0 1px 0 rgba(255,255,255,.10);
}
.gh2-hub img { filter: brightness(1.1); }
.gh2-hub span {
  font-size: .60rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: rgba(253,195,0,.70); font-family: var(--fh);
}

/* Orbit rings */
.gh2-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px dashed rgba(255,255,255,.08);
}
.gh2-ring--1 {
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  animation: orbit-1 18s linear infinite;
}
.gh2-ring--2 {
  width: 390px; height: 390px;
  margin: -195px 0 0 -195px;
  animation: orbit-2 28s linear infinite;
}

/* Planets (platform icons) */
.gh2-planet {
  position: absolute;
  top: 50%; left: 50%;
  /*
    Place planet on the ring edge using CSS rotate + translate trick.
    --angle is set inline on each planet.
    The planet counter-rotates so its label stays upright.
  */
  transform:
    rotate(var(--angle))
    translateX(50%)   /* half the ring radius — ring--1: 120px, ring--2: 195px */
    rotate(calc(-1 * var(--angle)));
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
}

/* Ring 1 planets need different translateX */
.gh2-ring--1 .gh2-planet {
  transform:
    rotate(var(--angle))
    translateX(120px)
    rotate(calc(-1 * var(--angle)));
}
.gh2-ring--2 .gh2-planet {
  transform:
    rotate(var(--angle))
    translateX(195px)
    rotate(calc(-1 * var(--angle)));
}

/* Counter-rotate to fix label orientation */
.gh2-ring--1 { }
.gh2-ring--1 .gh2-planet {
  animation: counter-rotate 18s linear infinite;
}
.gh2-ring--2 .gh2-planet {
  animation: counter-rotate-2 28s linear infinite;
}

.gh2-planet-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.35), 0 0 0 2px rgba(255,255,255,.10);
  flex-shrink: 0;
  transition: transform .2s;
}
.gh2-planet:hover .gh2-planet-icon { transform: scale(1.15); }
.gh2-planet span {
  font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.50);
  white-space: nowrap; letter-spacing: .3px; text-align: center;
}

/* Pulse rings */
.gh2-pulse {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(253,195,0,.25);
  pointer-events: none;
}
.gh2-pulse--1 {
  width: 130px; height: 130px;
  animation: pulse-ring 3.6s ease-out infinite;
}
.gh2-pulse--2 {
  width: 130px; height: 130px;
  animation: pulse-ring 3.6s ease-out infinite 1.2s;
}
.gh2-pulse--3 {
  width: 130px; height: 130px;
  animation: pulse-ring 3.6s ease-out infinite 2.4s;
}

/* Data packets (tiny animated dots travelling radially) */
.gh2-packet {
  position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--y);
  box-shadow: 0 0 8px rgba(253,195,0,.80), 0 0 16px rgba(253,195,0,.40);
  pointer-events: none;
}
.gh2-packet--1 { --px: 100px;  --py: -80px;  animation: packet-travel 2.8s ease-in-out infinite 0.0s; }
.gh2-packet--2 { --px: -110px; --py: -70px;  animation: packet-travel 2.8s ease-in-out infinite 0.7s; }
.gh2-packet--3 { --px: 80px;   --py: 110px;  animation: packet-travel 2.8s ease-in-out infinite 1.4s; }
.gh2-packet--4 { --px: -90px;  --py: 95px;   animation: packet-travel 2.8s ease-in-out infinite 2.1s; }

/* ---- Feature pills ---- */
.gh2-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  animation: gh2-fadein .8s var(--ease) .6s both;
}
.gh2-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.60);
  padding: 8px 18px; border-radius: var(--rpill);
  font-size: .80rem; font-weight: 600; font-family: var(--fh);
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
  cursor: default;
}
.gh2-pill span { font-size: .9rem; }
.gh2-pill:hover {
  background: rgba(253,195,0,.08);
  border-color: rgba(253,195,0,.25);
  color: rgba(255,255,255,.85);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .gh2-h1 { font-size: 3.4rem; }
  .gh2-orbit-wrap { width: 380px; height: 380px; }
  .gh2-ring--2 { width: 336px; height: 336px; margin: -168px 0 0 -168px; }
  .gh2-ring--2 .gh2-planet { transform: rotate(var(--angle)) translateX(168px) rotate(calc(-1 * var(--angle))); }
}
@media (max-width: 991px) {
  .gh2 { padding: 110px 0 64px; }
  .gh2-h1 { font-size: 2.8rem; }
  .gh2-orbit-col { display: none !important; }
  .gh2-pills { margin-top: 40px; padding-top: 28px; }
}
@media (max-width: 767px) {
  .gh2 { padding: 96px 0 52px; }
  .gh2-h1 { font-size: 2.2rem; }
  .gh2-sub { font-size: 1rem; }
  .gh2-trust { gap: 0; }
  .gh2-trust-item { padding: 0 18px; }
  .gh2-trust-num { font-size: 1.3rem; }
  .gh2-btns { flex-direction: column; }
  .gh2-btn-primary, .gh2-btn-ghost { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
  .gh2-h1 { font-size: 1.85rem; }
  .gh2-trust { flex-wrap: wrap; gap: 16px; }
  .gh2-trust-sep { display: none; }
  .gh2-trust-item { padding: 0; }
  .gh2-pills { gap: 8px; }
  .gh2-pill { font-size: .76rem; padding: 7px 14px; }
}

/* ============================================================
   HERO V2 — FULLSCREEN OVERRIDES
   ============================================================ */

/* Fullscreen layout */
.gh2--fullscreen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

/* Extra blob for fullscreen depth */
.gh2-blob--4 {
  width: 500px; height: 500px;
  top: 30%; right: 5%;
  background: radial-gradient(circle, rgba(253,195,0,.04) 0%, transparent 70%);
  animation: glow-pulse 13s ease-in-out infinite 4s;
}

/* Mesh grid overlay */
.gh2-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 100%);
}

/* Container vertically fills the section */
.gh2-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Centred copy block */
.gh2-center {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  animation: gh2-fadein .8s var(--ease) both;
}

/* Eyebrow centred */
.gh2-center .gh2-eyebrow {
  justify-content: center;
}

/* H1 — white headline + yellow accent */
.gh2-h1 {
  font-family: var(--fh);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gh2-h1-white {
  display: block;
  font-size: 4.6rem;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
  animation: gh2-fadein .8s var(--ease) .1s both;
}
.gh2-underline {
  display: block;
  font-size: 3.6rem;
  color: var(--y);
  text-shadow: 0 0 60px rgba(253,195,0,.35);
  position: relative;
  margin-top: 6px;
}
.gh2-underline::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  height: 3px; width: 0%;
  background: linear-gradient(90deg, transparent, var(--y), transparent);
  border-radius: 2px;
  animation: underline-grow 1s var(--ease) 1s forwards;
}

@keyframes underline-grow {
  from { width: 0; }
  to   { width: 70%; }
}

/* Subtitle centred */
.gh2-sub {
  font-size: 1.14rem; line-height: 1.80;
  color: rgba(255,255,255,.52);
  margin: 30px auto 0;
  max-width: 660px;
  animation: gh2-fadein .8s var(--ease) .25s both;
}

/* CTAs centred */
.gh2-btns--center {
  justify-content: center;
  margin-top: 40px;
  animation: gh2-fadein .8s var(--ease) .4s both;
}

/* Social proof centred */
.gh2-proof--center {
  justify-content: center;
  margin-top: 24px;
  animation: gh2-fadein .8s var(--ease) .5s both;
}

/* Trust bar — full width strip */
.gh2-trust--bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 64px;
  padding: 32px 40px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  max-width: 820px;
  animation: gh2-fadein .8s var(--ease) .55s both;
}
.gh2-trust--bar .gh2-trust-item {
  text-align: center;
  padding: 0 44px;
}
.gh2-trust--bar .gh2-trust-item:first-child { padding-left: 24px; }
.gh2-trust--bar .gh2-trust-item:last-child  { padding-right: 24px; }
.gh2-trust--bar .gh2-trust-num {
  font-size: 1.9rem; font-weight: 800; color: var(--y);
  font-family: var(--fh); letter-spacing: -.03em; line-height: 1; display: block;
}
.gh2-trust--bar .gh2-trust-label {
  font-size: .75rem; color: rgba(255,255,255,.38); margin-top: 5px; display: block;
}
.gh2-trust--bar .gh2-trust-sep {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
  flex-shrink: 0;
}

/* Pills centred */
.gh2-pills {
  justify-content: center;
  margin-top: 28px;
  animation: gh2-fadein .8s var(--ease) .65s both;
}

/* Scroll hint */
.gh2-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.25);
  font-size: .70rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  font-family: var(--fh);
  animation: gh2-fadein 1s var(--ease) 1.2s both;
}
.gh2-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.30), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---- Responsive overrides for fullscreen ---- */
@media (max-width: 1199px) {
  .gh2-h1-white  { font-size: 4rem; }
  .gh2-underline { font-size: 3.1rem; }
}
@media (max-width: 991px) {
  .gh2--fullscreen { min-height: auto; padding: 0; }
  .gh2-container   { padding-top: 110px; padding-bottom: 48px; }
  .gh2-h1-white    { font-size: 3.2rem; }
  .gh2-underline   { font-size: 2.5rem; }
  .gh2-trust--bar  { padding: 24px 20px; }
  .gh2-trust--bar .gh2-trust-item { padding: 0 24px; }
}
@media (max-width: 767px) {
  .gh2-container   { padding-top: 96px; padding-bottom: 40px; }
  .gh2-h1-white    { font-size: 2.5rem; }
  .gh2-underline   { font-size: 2rem; }
  .gh2-sub         { font-size: 1rem; }
  .gh2-btns--center { flex-direction: column; align-items: center; }
  .gh2-btn-primary, .gh2-btn-ghost { width: 100%; max-width: 340px; justify-content: center; }
  .gh2-trust--bar  { flex-wrap: wrap; gap: 20px; padding: 24px 16px; }
  .gh2-trust--bar .gh2-trust-sep { display: none; }
  .gh2-trust--bar .gh2-trust-item { padding: 0 12px; }
  .gh2-scroll-hint { display: none; }
}
@media (max-width: 575px) {
  .gh2-h1-white    { font-size: 2rem; }
  .gh2-underline   { font-size: 1.65rem; }
  .gh2-pills       { gap: 8px; }
  .gh2-pill        { font-size: .74rem; padding: 7px 13px; }
}

/* ============================================================
   SVG ICON SYSTEM
   ============================================================ */
.g-feature-icon svg,
.g-benefit-icon svg,
.g-target-icon svg,
.g-trend-icon svg {
  display: block;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.g-feature-card:hover .g-feature-icon svg,
.g-benefit-card:hover .g-benefit-icon svg,
.g-target-card:hover .g-target-icon svg,
.g-trend-card:hover .g-trend-icon svg {
  transform: scale(1.12);
}
.g-feature-icon,
.g-benefit-icon,
.g-target-icon,
.g-trend-icon {
  margin-bottom: 18px;
}
.g-warn-icon svg {
  display: block;
}
/* Check icon alignment in feature list */
.g-check-icon svg {
  display: inline-block;
  vertical-align: middle;
}
/* Hero pills icon alignment */
.gh2-pill svg,
.gh2-pill span {
  vertical-align: middle;
}

/* ============================================================
   CAP 4 — ECOMMERCE & MARKETPLACE CHANNEL CARDS
   ============================================================ */

/* BindCommerce explainer box */
.cap4-bindcommerce-box {
  display: flex; gap: 24px; align-items: flex-start;
  background: linear-gradient(135deg, #edf5fb, #e2edf6);
  border: 1px solid rgba(23,100,130,.18);
  border-left: 5px solid var(--t);
  border-radius: var(--r3); padding: 32px 36px;
  margin: 36px 0 52px;
  box-shadow: 0 4px 24px rgba(23,100,130,.08);
}
.cap4-bc-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 2px; line-height: 1; }
.cap4-bc-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin: 0 0 10px; font-family: var(--fh); }
.cap4-bc-desc { font-size: .96rem; line-height: 1.78; color: #1c3a4d; margin: 0 0 20px; }
.cap4-bc-flow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 4px;
}
.cap4-bc-node {
  padding: 8px 20px; border-radius: var(--rpill);
  font-size: .82rem; font-weight: 700; font-family: var(--fh);
}
.cap4-bc-node--erp { background: var(--t); color: #fff; }
.cap4-bc-node--bc  { background: var(--y); color: var(--dark); }
.cap4-bc-node--mkt {
  background: rgba(255,255,255,.7); color: var(--navy);
  border: 1px solid rgba(23,100,130,.20);
}
.cap4-bc-arrow { font-size: 1.4rem; color: var(--t); opacity: .5; flex-shrink: 0; }

/* Channel card wrapper */
.cap4-channel {
  background: #fff;
  border-radius: var(--r4);
  border: 1px solid var(--border);
  box-shadow: var(--s2);
  overflow: hidden;
  margin-bottom: 40px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cap4-channel:hover { box-shadow: var(--s4); transform: translateY(-3px); }

/* Channel header */
.cap4-channel-header {
  display: flex; align-items: center; gap: 18px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fafb, #f0f5f8);
}
.cap4-channel-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: var(--s2);
}
.cap4-channel-title { flex: 1; }
.cap4-h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  margin: 0 0 4px; font-family: var(--fh); letter-spacing: -.025em;
  border-left: none !important; padding-left: 0 !important;
}
.cap4-channel-tag { font-size: .78rem; color: var(--grey); font-weight: 500; }
.cap4-channel-badge {
  display: inline-block;
  background: rgba(23,100,130,.09); color: var(--t);
  border: 1px solid rgba(23,100,130,.20);
  padding: 5px 16px; border-radius: var(--rpill);
  font-size: .74rem; font-weight: 700; font-family: var(--fh);
  white-space: nowrap;
}
.cap4-channel-badge--new {
  background: rgba(253,195,0,.10); color: #8a5700;
  border-color: rgba(253,195,0,.35);
}

/* 2026 stats strip */
.cap4-stats-strip {
  display: flex; align-items: center;
  background: linear-gradient(135deg, #060c12 0%, #0c1a24 100%);
  padding: 24px 32px;
}
.cap4-stats-strip--dark {
  background: linear-gradient(135deg, #1a0800 0%, #2d1000 100%);
}
.cap4-stat { flex: 1; text-align: center; }
.cap4-stat-num {
  font-size: 1.9rem; font-weight: 800; color: var(--y);
  line-height: 1; margin-bottom: 6px; font-family: var(--fh);
  letter-spacing: -.03em;
  text-shadow: 0 0 24px rgba(253,195,0,.35);
}
.cap4-stat-label { font-size: .72rem; color: rgba(255,255,255,.50); line-height: 1.4; max-width: 110px; margin: 0 auto; }
.cap4-stat-div {
  width: 1px; height: 44px; flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
}

/* Source line under stats strip */
.cap4-source {
  font-size: .72rem;
  color: var(--grey);
  font-style: italic;
  border-top: 1px solid rgba(23, 100, 130, .12);
  padding-top: 8px;
  margin: 12px 0 0;
  text-align: center;
}
.cap4-source--dark {
  color: #00000073;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

/* Info block (what gets synced) */
.cap4-info-block {
  background: var(--light); border-radius: var(--r2);
  padding: 26px 28px; height: 100%;
  border: 1px solid var(--border);
}
.cap4-info-title {
  font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
  color: var(--t); margin: 0 0 16px; font-family: var(--fh);
}
.cap4-check-list { list-style: none; padding: 0; margin: 0; }
.cap4-check-list li {
  font-size: .91rem; line-height: 1.65; color: var(--body);
  padding: 7px 0 7px 26px; position: relative;
  border-bottom: 1px solid var(--border);
}
.cap4-check-list li:last-child { border-bottom: none; }
.cap4-check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--green); font-weight: 800; font-size: .90rem;
}

/* Insight block (2026 context) */
.cap4-insight-block {
  background: linear-gradient(145deg, #f0f7fb, #e6f0f7);
  border: 1px solid rgba(23,100,130,.16);
  border-radius: var(--r2); padding: 26px 28px; height: 100%;
  position: relative; overflow: hidden;
}
.cap4-insight-block::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(23,100,130,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cap4-insight-block--accent {
  background: linear-gradient(145deg, #fff8f0, #fff0e0);
  border-color: rgba(250,90,40,.18);
}
.cap4-insight-block--accent::before {
  background: radial-gradient(circle, rgba(250,90,40,.07) 0%, transparent 70%);
}
.cap4-insight-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; line-height: 1; }
.cap4-insight-title {
  font-size: .94rem; font-weight: 800; color: var(--navy); margin: 0 0 10px; font-family: var(--fh);
}
.cap4-insight-text {
  font-size: .89rem; line-height: 1.72; color: #2a3f4a; margin: 0 0 12px;
}
.cap4-insight-year {
  font-size: .72rem; color: var(--grey); font-style: italic;
  border-top: 1px solid rgba(23,100,130,.12); padding-top: 8px;
}

/* Card padding for inner content */
.cap4-channel .row { padding: 28px 32px; }

/* Bottom CTA */
.cap4-bottom-cta {
  text-align: center; padding: 32px 0 8px;
  font-size: 1rem; color: var(--grey);
}

/* Responsive */
@media (max-width: 991px) {
  .cap4-stats-strip { flex-wrap: wrap; gap: 16px; padding: 20px 24px; }
  .cap4-stat { min-width: 45%; }
  .cap4-stat-div { display: none; }
  .cap4-bindcommerce-box { flex-direction: column; gap: 16px; padding: 24px; }
  .cap4-channel-header { flex-wrap: wrap; gap: 14px; padding: 22px 24px; }
  .cap4-channel .row { padding: 20px 24px; }
}
@media (max-width: 767px) {
  .cap4-stats-strip { gap: 12px; padding: 16px; }
  .cap4-stat { min-width: calc(50% - 8px); }
  .cap4-stat-num { font-size: 1.5rem; }
  .cap4-channel-badge { font-size: .70rem; padding: 4px 12px; }
  .cap4-h3 { font-size: 1.25rem; }
  .cap4-bc-flow { gap: 8px; }
  .cap4-bc-node { font-size: .76rem; padding: 6px 14px; }
}

/* Cap4 — SVG icon adjustments */
.cap4-channel-icon--svg {
  background: linear-gradient(135deg, rgba(23,100,130,.07), rgba(23,100,130,.03)) !important;
  border: 1.5px solid rgba(23,100,130,.18) !important;
  box-shadow: 0 4px 16px rgba(23,100,130,.10) !important;
}
.cap4-bc-icon svg,
.cap4-channel-icon--svg svg { display: block; }
.cap4-insight-icon svg { display: block; }
.cap4-info-icon { display: inline-flex; vertical-align: middle; margin-right: 6px; }
.cap4-info-title { display: flex; align-items: center; gap: 6px; }
