/* ============================================================
   GiftM - Corporate redesign (Augmit-style)
   Navy #0a1b3d + Cyan #08b8d1 on light #f5f8fc
   Manrope (headings) + DM Sans (body) + Prata (italic accent)
   ============================================================ */

:root{
  --c-navy:#141f39;
  --c-navy-2:#1c2a4a;
  --c-navy-3:#2c3e5d;
  --c-navy-soft:#f5f6fa;
  /* Primary accent — matches the gold gift-bow in the GiftM logo */
  --c-cyan:#c89a3e;
  --c-cyan-2:#e0b658;
  --c-cyan-soft:#fbf2dd;
  --c-cyan-dark:#a47a26;
  --c-yellow:#ffc83d;
  --c-coral:#ff7f63;
  --c-teal:#1eae98;

  --c-white:#ffffff;
  --c-bg:#f5f8fc;
  --c-bg-alt:#eef3f8;
  --c-border:#e3e9f2;
  --c-border-2:#dde4ee;
  --c-text:#324158;
  --c-text-2:#5c6c83;
  --c-muted:#8794ab;

  --ff-heading:'Manrope',system-ui,sans-serif;
  --ff-body:'DM Sans',system-ui,sans-serif;
  --ff-display:'Prata',Georgia,serif;
  --ff-mono:'JetBrains Mono',ui-monospace,monospace;

  --r-sm:8px;
  --r-md:14px;
  --r-lg:22px;
  --r-xl:32px;
  --r-pill:999px;

  --sh-sm:0 2px 8px rgba(10,27,61,.04);
  --sh-md:0 10px 30px rgba(10,27,61,.06);
  --sh-lg:0 24px 60px rgba(10,27,61,.10);
  --sh-card:0 14px 40px rgba(10,27,61,.07);
  --sh-cyan:0 18px 40px rgba(200,154,62,.28);

  --container:1240px;
  --gutter:24px;
}

/* ---------- RESET ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.65;
  color:var(--c-text);
  background:var(--c-bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none;transition:color .2s ease}
a:hover{color:var(--c-cyan-dark)}
ul{list-style:none;padding:0;margin:0}
button{font-family:inherit;border:none;background:none;cursor:pointer}
input,textarea,select{font-family:inherit;font-size:inherit}

h1,h2,h3,h4,h5,h6{
  font-family:var(--ff-heading);
  color:var(--c-navy);
  margin:0 0 .5em;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.01em;
}
h1{font-size:clamp(2.4rem,4.6vw,3.6rem);font-weight:800;letter-spacing:-.02em}
h2{font-size:clamp(1.9rem,3.2vw,2.6rem)}
h3{font-size:1.35rem;font-weight:700}
h4{font-size:1.1rem;font-weight:700}
h5{font-size:.95rem;font-weight:700}
p{margin:0 0 1em}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}

.bg-mesh,.bg-grid{display:none}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-heading);
  font-weight:700;
  font-size:.95rem;
  padding:14px 26px;
  border-radius:var(--r-pill);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
  cursor:pointer;
  white-space:nowrap;
  border:2px solid transparent;
  line-height:1;
}
.btn svg{width:16px;height:16px;transition:transform .25s ease}
.btn:hover svg{transform:translateX(3px)}

.btn-primary{background:var(--c-cyan);color:#fff;box-shadow:var(--sh-cyan)}
.btn-primary:hover{background:var(--c-cyan-dark);color:#fff;transform:translateY(-2px)}

.btn-ghost{background:transparent;color:var(--c-navy);border-color:var(--c-border)}
.btn-ghost:hover{background:var(--c-navy);color:#fff;border-color:var(--c-navy)}

.btn-dark{background:var(--c-navy);color:#fff}
.btn-dark:hover{background:var(--c-cyan);color:#fff;transform:translateY(-2px)}

.btn-light{background:#fff;color:var(--c-navy);box-shadow:var(--sh-md)}
.btn-light:hover{background:var(--c-cyan);color:#fff;transform:translateY(-2px)}

/* ---------- TOP UTILITY BAR ---------- */
.topbar{
  background:var(--c-navy);
  color:#cfd9ea;
  font-size:.85rem;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:10px;
  padding-bottom:10px;
  gap:24px;
  flex-wrap:wrap;
}
.topbar-left,.topbar-right{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.topbar-item{display:inline-flex;align-items:center;gap:8px;color:#cfd9ea}
.topbar-item svg{width:14px;height:14px;color:var(--c-cyan)}
.topbar-item a:hover{color:var(--c-cyan-2)}
.topbar-socials{display:inline-flex;gap:8px}
.topbar-socials a{
  width:30px;height:30px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);
  color:#cfd9ea;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.topbar-socials a:hover{background:var(--c-cyan);color:#fff;transform:translateY(-1px)}
.topbar-socials svg{width:13px;height:13px;flex:0 0 13px}

/* ---------- MAIN NAV ---------- */
.nav{
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--c-border);
  transition:box-shadow .2s ease;
}
.nav.is-scrolled{box-shadow:0 4px 20px rgba(10,27,61,.06)}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:78px;
}
.logo{display:inline-flex;align-items:center;gap:10px;color:var(--c-navy);font-family:var(--ff-heading);font-weight:800;font-size:1.4rem;letter-spacing:-.02em}
.logo-mark{
  width:36px;height:36px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--c-cyan) 0%,var(--c-navy) 100%);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;
  box-shadow:0 6px 16px rgba(200,154,62,.32);
}
.logo-mark svg{width:20px;height:20px}
.logo{flex-shrink:0;min-width:0}
.logo-img{
  height:44px;width:auto;
  max-width:none;
  display:block;
  flex-shrink:0;
  object-fit:contain;
}
.logo .logo-mark{display:none}
.logo-img-dark{display:block}
.logo-img-light{display:none}
.footer .logo-img-dark{display:none}
.footer .logo-img-light{display:block;height:48px}

.nav-links{display:flex;align-items:center;gap:2px}
.nav-links a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 13px;
  border-radius:var(--r-pill);
  font-family:var(--ff-heading);
  font-weight:600;
  font-size:.92rem;
  color:var(--c-navy-2);
  position:relative;
  white-space:nowrap;
}
.nav-links a .nav-ic{display:none}
.nav-links a:hover{color:var(--c-cyan-dark);background:var(--c-cyan-soft)}
.nav-links a.active{color:var(--c-cyan-dark);background:var(--c-cyan-soft)}

.nav-cta{display:flex;align-items:center;gap:10px}
.nav-cta .btn{padding:12px 22px;font-size:.9rem}
.nav-cta .btn-ghost{padding:12px 18px}

.nav-mobile{
  display:none;
  width:44px;height:44px;border-radius:12px;
  background:var(--c-navy);color:#fff;
  align-items:center;justify-content:center;
}

/* ---------- MOBILE DRAWER ---------- */
.mobile-overlay{
  position:fixed;inset:0;background:rgba(10,27,61,.55);
  opacity:0;pointer-events:none;transition:opacity .25s ease;
  z-index:60;
}
.mobile-overlay.is-open{opacity:1;pointer-events:auto}
.mobile-drawer{
  position:fixed;top:0;right:0;height:100vh;width:88%;max-width:340px;
  background:#fff;padding:80px 24px 24px;
  transform:translateX(100%);transition:transform .3s ease;
  z-index:65;display:flex;flex-direction:column;gap:6px;
  box-shadow:-20px 0 60px rgba(10,27,61,.18);
}
.mobile-drawer.is-open{transform:translateX(0)}
.mobile-drawer .close{
  position:absolute;top:18px;right:18px;
  width:40px;height:40px;border-radius:50%;
  background:var(--c-bg);color:var(--c-navy);
  display:inline-flex;align-items:center;justify-content:center;
}
.mobile-drawer a{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;border-radius:12px;
  font-family:var(--ff-heading);font-weight:600;color:var(--c-navy);
  font-size:1rem;
}
.mobile-drawer a:hover,.mobile-drawer a.active{background:var(--c-cyan-soft);color:var(--c-cyan-dark)}
.mobile-drawer .nav-ic{
  width:34px;height:34px;border-radius:10px;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 34px;
}
.mobile-drawer .nav-ic svg{width:16px;height:16px}
.mobile-drawer .btn{margin-top:14px;justify-content:center}

/* ---------- SECTIONS ---------- */
.section{padding:100px 0;position:relative}
.section-tight{padding:60px 0}
.section-alt{background:#fff}
.section-navy{background:var(--c-navy);color:#cfd9ea}
.section-navy h1,.section-navy h2,.section-navy h3,.section-navy h4{color:#fff}

.section-head{text-align:center;max-width:760px;margin:0 auto 56px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--ff-heading);
  font-weight:600;font-size:.85rem;
  text-transform:uppercase;letter-spacing:.14em;
  color:var(--c-cyan-dark);
  padding:8px 18px;
  border-radius:var(--r-pill);
  background:var(--c-cyan-soft);
  margin-bottom:16px;
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--c-cyan);box-shadow:0 0 0 4px rgba(200,154,62,.18)}
.section-navy .eyebrow{background:rgba(200,154,62,.16);color:var(--c-cyan-2)}

.section-title{font-size:clamp(2rem,3.6vw,2.8rem);font-weight:800;color:var(--c-navy);margin:0 0 16px}
.section-navy .section-title{color:#fff}
.section-sub{color:var(--c-text-2);font-size:1.05rem;line-height:1.7;max-width:640px;margin:0 auto}
.section-navy .section-sub{color:#a8b6d0}

.gradient-text{
  background:linear-gradient(120deg,var(--c-cyan) 0%,var(--c-cyan-2) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  /* Prevent italic-slant + background-clip from clipping last glyph */
  padding-right:.12em;
  margin-right:-.06em;
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}
em.gradient-text,
i.gradient-text{
  padding-right:.18em;
  margin-right:-.08em;
}
.gold-text{
  color:var(--c-cyan-dark);
  position:relative;
  display:inline-block;
}
.gold-text::after{
  content:"";
  position:absolute;left:0;right:0;bottom:-4px;
  height:8px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M0 4 Q 12.5 0 25 4 T 50 4 T 75 4 T 100 4' fill='none' stroke='%23c89a3e' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
}

/* ---------- DECORATIVE SHAPES ---------- */
.dec-dots{
  position:absolute;
  width:120px;height:120px;
  background-image:radial-gradient(circle,var(--c-cyan) 1.5px,transparent 1.5px);
  background-size:14px 14px;
  opacity:.35;
  pointer-events:none;
}
.dec-star{
  position:absolute;width:60px;height:60px;
  color:var(--c-cyan);opacity:.8;pointer-events:none;
}
.dec-arc{
  position:absolute;width:120px;height:60px;
  border:3px solid var(--c-cyan);
  border-bottom:none;border-radius:120px 120px 0 0;
  opacity:.4;pointer-events:none;
}
.dec-wave{
  position:absolute;color:var(--c-cyan);opacity:.5;pointer-events:none;
}
.dec-scratch{
  position:absolute;width:80px;height:80px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><g stroke='%23c89a3e' stroke-width='2' stroke-linecap='round' fill='none'><line x1='10' y1='10' x2='25' y2='10'/><line x1='30' y1='15' x2='45' y2='5'/><line x1='15' y1='25' x2='30' y2='30'/><line x1='35' y1='35' x2='50' y2='30'/><line x1='10' y1='45' x2='25' y2='50'/></g></svg>") no-repeat center/contain;
  opacity:.7;pointer-events:none;
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:90px 0 130px;
  background:linear-gradient(180deg,#fff 0%,var(--c-bg) 70%);
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(900px 600px at -10% 10%,rgba(200,154,62,.12),transparent 60%),
    radial-gradient(700px 500px at 110% 90%,rgba(10,27,61,.06),transparent 60%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-content{position:relative;z-index:2}

.bz-call-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  background:#fff;
  padding:8px 8px 8px 18px;
  border-radius:var(--r-pill);
  box-shadow:var(--sh-sm);
  border:1px solid var(--c-border);
  margin-bottom:24px;
  font-family:var(--ff-heading);font-size:.85rem;font-weight:600;
  color:var(--c-text-2);
}
.bz-call-eyebrow .lbl{color:var(--c-text-2)}
.bz-call-eyebrow .phone{color:var(--c-navy);font-weight:700}
.bz-call-eyebrow .chip{
  width:30px;height:30px;border-radius:50%;
  background:var(--c-cyan);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
}

.hero h1{
  font-size:clamp(2.4rem,4.6vw,3.7rem);
  line-height:1.1;
  margin-bottom:24px;
  color:var(--c-navy);
}
.hero .lead{
  font-size:1.1rem;
  color:var(--c-text-2);
  line-height:1.75;
  margin-bottom:32px;
  max-width:560px;
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:48px}

.hero-trust{display:flex;gap:40px;flex-wrap:wrap;padding-top:32px;border-top:1px solid var(--c-border)}
.hero-trust .stat{font-family:var(--ff-heading);font-size:.9rem;color:var(--c-text-2);font-weight:500}
.hero-trust .stat .num{display:block;font-size:1.9rem;font-weight:800;color:var(--c-navy);letter-spacing:-.02em;line-height:1.1;margin-bottom:2px}

/* Hero visual */
.hero-visual{
  position:relative;
  aspect-ratio:1/1.08;
  display:flex;align-items:center;justify-content:center;
  transition:transform .4s ease;
}
.hero-blob{
  position:absolute;top:-6%;right:-10%;width:96%;height:100%;
  background:
    radial-gradient(circle at 30% 30%,rgba(255,255,255,.35) 0%,transparent 45%),
    linear-gradient(135deg,rgba(224,182,88,.55) 0%,rgba(200,154,62,.55) 55%,rgba(95,84,211,.55) 100%);
  border-radius:46% 54% 38% 62% / 56% 44% 56% 44%;
  z-index:1;
  opacity:.85;
  box-shadow:0 36px 90px rgba(200,154,62,.22);
  animation:blob-morph 18s ease-in-out infinite alternate,blob-float 16s ease-in-out infinite alternate;
  will-change:border-radius,transform;
}
.hero-blob::after{
  content:"";position:absolute;inset:6%;
  border-radius:inherit;
  background:linear-gradient(135deg,rgba(255,255,255,.18),transparent 55%);
  pointer-events:none;
}
@keyframes blob-morph{
  0%   {border-radius:46% 54% 38% 62% / 56% 44% 56% 44%}
  25%  {border-radius:62% 38% 46% 54% / 40% 64% 36% 60%}
  50%  {border-radius:30% 70% 56% 44% / 60% 30% 70% 40%}
  75%  {border-radius:54% 46% 62% 38% / 36% 68% 32% 64%}
  100% {border-radius:38% 62% 52% 48% / 60% 40% 60% 40%}
}
@keyframes blob-float{
  0%   {transform:translate(0,0) scale(1)}
  50%  {transform:translate(-1.5%,-2%) scale(1.02)}
  100% {transform:translate(2%,1.5%) scale(.99)}
}
@keyframes blob-spin{
  from{transform:rotate(0deg)}
  to  {transform:rotate(360deg)}
}
@media (prefers-reduced-motion:reduce){
  .hero-blob{animation:none}
}
.hero-photo{
  width:82%;height:84%;
  border-radius:24px;
  background-image:url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=900&q=80&auto=format&fit=crop");
  background-size:cover;background-position:center;
  box-shadow:0 36px 90px rgba(10,27,61,.22);
  position:relative;
  z-index:3;
  transform:translate(-4%,4%);
}
.hero-frame{
  position:absolute;top:14%;right:-2%;bottom:6%;left:14%;
  border-radius:24px;
  border:2px solid var(--c-cyan);
  opacity:.55;
  z-index:2;
}

/* Floating cards on hero */
.hero-float{
  position:absolute;
  background:#fff;
  padding:14px 18px;
  border-radius:18px;
  box-shadow:var(--sh-lg);
  display:flex;align-items:center;gap:12px;
  z-index:3;
}
.hero-float .arc{
  width:48px;height:48px;border-radius:50%;
  background:var(--c-cyan-soft);
  color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 48px;
  position:relative;
}
.hero-float .arc svg{position:absolute;inset:0;width:100%;height:100%}
.hero-float .ring-bg{fill:none;stroke:rgba(200,154,62,.18);stroke-width:6}
.hero-float .ring-fg{fill:none;stroke:var(--c-cyan);stroke-width:6;stroke-linecap:round;stroke-dasharray:151;stroke-dashoffset:34;transform:rotate(-90deg);transform-origin:center}
.hero-float .v{display:block;font-family:var(--ff-heading);font-weight:800;color:var(--c-navy);font-size:1.05rem;line-height:1}
.hero-float .l{display:block;font-size:.78rem;color:var(--c-text-2);margin-top:4px}

.hero-float.tl{top:18%;left:-8%}
.hero-float.br{bottom:14%;right:-4%}

.hero-badge{
  position:absolute;top:6%;right:6%;
  background:var(--c-navy);color:#fff;
  padding:10px 16px 10px 12px;
  border-radius:var(--r-pill);
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--ff-heading);font-weight:700;font-size:.85rem;
  box-shadow:var(--sh-lg);
  z-index:3;
}
.hero-badge .av{
  width:24px;height:24px;border-radius:50%;
  background:var(--c-yellow);color:var(--c-navy);
  display:inline-flex;align-items:center;justify-content:center;
}
.hero-badge .av svg{width:13px;height:13px}

/* ---------- VALUE BAND MARQUEE ---------- */
.value-band{
  background:var(--c-navy);
  color:#fff;
  overflow:hidden;
  padding:22px 0;
  position:relative;
}
.value-track{
  display:flex;align-items:center;gap:48px;
  white-space:nowrap;
  animation:marquee 30s linear infinite;
  width:max-content;
}
.value-item{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--ff-heading);font-weight:700;font-size:1.05rem;
  color:#fff;text-transform:uppercase;letter-spacing:.06em;
}
.value-item.alt{color:var(--c-cyan-2)}
.value-sparkle{width:18px;height:18px;color:var(--c-yellow)}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---------- FEATURE GRID (3 modules) ---------- */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.feature-card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:40px 32px 36px;
  box-shadow:var(--sh-card);
  position:relative;
  overflow:hidden;
  transition:transform .4s cubic-bezier(.2,.7,.3,1),box-shadow .4s ease,border-color .4s ease;
}
.feature-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--c-cyan),var(--c-cyan-2));
  transform:scaleX(0);transform-origin:left;
  transition:transform .4s ease;
}
.feature-card::after{
  content:"";position:absolute;top:-60px;right:-60px;
  width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.14),transparent 70%);
  opacity:0;transition:opacity .4s ease;
}
.feature-card:hover{transform:translateY(-8px);box-shadow:0 28px 60px rgba(10,27,61,.12);border-color:transparent}
.feature-card:hover::before{transform:scaleX(1)}
.feature-card:hover::after{opacity:1}
.feature-card > *{position:relative;z-index:1}
.fc-icon{
  width:68px;height:68px;
  background:var(--c-cyan-soft);
  color:var(--c-cyan-dark);
  border-radius:20px;
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:24px;
  transition:background .3s ease,color .3s ease,transform .3s ease;
  position:relative;
}
.fc-icon::before{
  content:"";position:absolute;inset:-4px;
  border:2px dashed var(--c-cyan);
  border-radius:24px;
  opacity:0;transform:rotate(0);
  transition:opacity .35s ease,transform .6s ease;
}
.feature-card:hover .fc-icon{background:var(--c-cyan);color:#fff;transform:rotate(-6deg)}
.feature-card:hover .fc-icon::before{opacity:.5;transform:rotate(20deg)}
.feature-card h3{font-size:1.35rem;color:var(--c-navy);margin-bottom:12px}
.feature-card p{color:var(--c-text-2);font-size:.97rem;line-height:1.7;margin-bottom:18px}

.bz-bullets{display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
.bz-bullets li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:.92rem;color:var(--c-text);line-height:1.55;
  padding-left:0;
}
.bz-bullets li::before{
  content:"";flex:0 0 18px;width:18px;height:18px;margin-top:3px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89a3e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/contain;
}

.bz-read{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--ff-heading);font-weight:700;font-size:.92rem;
  color:var(--c-navy);
}
.bz-read .arrow{
  width:30px;height:30px;border-radius:50%;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.bz-read:hover{color:var(--c-cyan-dark)}
.bz-read:hover .arrow{background:var(--c-cyan);color:#fff;transform:translateX(4px)}

/* ---------- STAT BAND (78%) ---------- */
.bz-stat-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  background:#fff;
  border-radius:var(--r-xl);
  padding:64px;
  box-shadow:var(--sh-card);
  border:1px solid var(--c-border);
  position:relative;
  overflow:hidden;
}
.bz-stat-band::before{
  content:"";position:absolute;top:-80px;right:-80px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.10),transparent 70%);
}
.bz-stat-band > *{position:relative;z-index:1}
.bz-stat-band-visual{
  position:relative;
  aspect-ratio:1/1;
  min-height:420px;
}
.bz-collage{
  position:absolute;
  border-radius:22px;
  background-size:cover;background-position:center;
  box-shadow:0 24px 60px rgba(10,27,61,.14);
  transition:transform .5s ease;
}
.bz-collage.c1{
  width:64%;height:70%;top:0;left:0;
  background-image:url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=700&q=80&auto=format&fit=crop");
}
.bz-collage.c2{
  width:56%;height:56%;bottom:0;right:0;
  background-image:url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=600&q=80&auto=format&fit=crop");
  border:6px solid #fff;
}
.bz-stat-band-visual:hover .c1{transform:translate(-4px,-4px)}
.bz-stat-band-visual:hover .c2{transform:translate(4px,4px)}
.bz-stat-band-visual::before{
  content:"";position:absolute;top:-14px;left:-14px;
  width:54px;height:54px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><g fill='%23ffc83d'><circle cx='8' cy='8' r='3'/><circle cx='24' cy='4' r='2.5'/><circle cx='40' cy='10' r='2'/><circle cx='12' cy='22' r='2'/></g></svg>") no-repeat center/contain;
  z-index:3;
}
.bz-stat-big{
  position:absolute;
  left:46%;top:4%;
  background:var(--c-navy);color:#fff;
  padding:22px 28px;border-radius:18px;
  box-shadow:0 24px 60px rgba(10,27,61,.30);
  font-family:var(--ff-heading);
  z-index:4;
  border:1px solid rgba(200,154,62,.3);
}
.bz-stat-big::before{
  content:"";position:absolute;left:-8px;top:50%;transform:translateY(-50%);
  width:0;height:0;
  border-top:8px solid transparent;border-bottom:8px solid transparent;
  border-right:8px solid var(--c-navy);
}
.bz-stat-big .v{display:block;font-size:2.6rem;font-weight:800;line-height:1;color:var(--c-cyan-2);letter-spacing:-.02em}
.bz-stat-big .l{display:block;font-size:.78rem;color:#cfd9ea;margin-top:6px;max-width:180px;line-height:1.4}

.bz-stat-band-content h2{margin-bottom:18px}
.bz-stat-band-content .lead{font-size:1.05rem;color:var(--c-text-2);margin-bottom:30px;line-height:1.75}

.bz-iconpoints{display:flex;flex-direction:column;gap:22px;margin-bottom:28px}
.bz-iconpoints .row{display:flex;gap:18px;align-items:flex-start}
.bz-iconpoints .ic{
  flex:0 0 52px;width:52px;height:52px;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
}
.bz-iconpoints h4{font-size:1.05rem;color:var(--c-navy);margin-bottom:4px}
.bz-iconpoints p{font-size:.92rem;color:var(--c-text-2);margin:0;line-height:1.6}

/* ---------- WHY US (6 cards / dmc-grid) ---------- */
.dmc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.dmc-card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:32px 28px;
  position:relative;
  overflow:hidden;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.dmc-card .glow{
  position:absolute;top:-40px;right:-40px;
  width:140px;height:140px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.18),transparent 70%);
  opacity:0;transition:opacity .35s ease;
}
.dmc-card:hover{transform:translateY(-4px);box-shadow:var(--sh-card);border-color:rgba(200,154,62,.4)}
.dmc-card:hover .glow{opacity:1}
.dmc-card .row{display:flex;gap:18px;align-items:flex-start;position:relative;z-index:2}
.dmc-card .ic{
  flex:0 0 52px;width:52px;height:52px;border-radius:14px;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .3s ease,color .3s ease;
}
.dmc-card:hover .ic{background:var(--c-cyan);color:#fff}
.dmc-card h3{font-size:1.1rem;color:var(--c-navy);margin-bottom:8px}
.dmc-card p{font-size:.92rem;color:var(--c-text-2);margin:0;line-height:1.65}

/* All dmc-card icons use uniform gold tint (inherit from base .dmc-card .ic) */

/* ---------- INDUSTRIES STRIP ---------- */
/* Augmit-style 2-column industries: left text, right card grid */
.industries-grid{
  display:grid;
  grid-template-columns:1fr 1.55fr;
  gap:64px;
  align-items:start;
  position:relative;
}
.industries-info{
  position:relative;
  padding-top:12px;
}
.industries-info .eyebrow{margin-bottom:18px}
.industries-title{
  font-size:clamp(1.9rem,3vw,2.6rem);
  font-weight:800;
  color:var(--c-navy);
  letter-spacing:-.01em;
  line-height:1.15;
  margin:0 0 18px;
}
.industries-sub{
  color:var(--c-text-2);
  font-size:1.02rem;
  line-height:1.7;
  margin:0 0 24px;
  max-width:420px;
}
.industries-scribble{
  width:200px;height:72px;
  margin-top:8px;
  display:block;
  opacity:.9;
}

.industries-strip{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.industry-item{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:30px 26px 28px;
  display:flex;flex-direction:column;align-items:flex-start;gap:0;
  font-family:var(--ff-heading);font-weight:700;font-size:1.1rem;
  color:var(--c-navy);
  transition:transform .4s cubic-bezier(.2,.7,.3,1),box-shadow .4s ease,border-color .4s ease,background .4s ease;
  position:relative;
  overflow:hidden;
  text-align:left;
  min-height:170px;
}
.industry-item::before{
  content:"";position:absolute;top:0;left:0;right:0;height:5px;
  background:linear-gradient(90deg,var(--c-cyan),var(--c-cyan-2));
  transform:scaleX(0);transform-origin:left;
  transition:transform .45s ease;
}
.industry-item::after{
  content:"";position:absolute;bottom:-60px;right:-60px;
  width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.18),transparent 70%);
  opacity:0;transition:opacity .4s ease;
}
.industry-item > *{position:relative;z-index:1}
.industry-item:hover{transform:translateY(-8px);box-shadow:0 26px 60px rgba(20,31,57,.12);border-color:transparent}
.industry-item:hover::before{transform:scaleX(1)}
.industry-item:hover::after{opacity:1}
.industry-item:hover .lic{
  border-radius:42% 58% 48% 52% / 55% 45% 55% 45%;
  transform:translateY(-2px);
}

.industry-item .lic{
  width:72px;height:72px;
  border-radius:50% 40% 55% 45% / 45% 55% 45% 55%;
  background:rgba(200,154,62,.14);
  color:var(--c-cyan);
  border:none;
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 72px;
  margin-bottom:auto;
  box-shadow:none;
  transition:transform .55s ease,border-radius .55s ease;
}
.industry-item .lic svg{width:28px;height:28px;stroke-width:2.2}

/* Augmit-style varied accent colors per card */
/* All industry-item icons use uniform gold tint */
.industry-item .lic{background:rgba(200,154,62,.14);color:var(--c-cyan)}


/* ---------- HOW IT WORKS (process flow) ---------- */
.bz-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  position:relative;
}
.bz-flow-step{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:36px 26px 30px;
  text-align:center;
  position:relative;
  z-index:1;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.bz-flow-step:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(10,27,61,.10);border-color:rgba(200,154,62,.4)}
.bz-flow-step:not(:last-child)::after{
  content:"";position:absolute;
  top:50%;right:-32px;transform:translateY(-50%);
  width:32px;height:24px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'><path d='M2 12 Q 10 4 16 12 T 30 12' stroke='%23c89a3e' stroke-width='2' stroke-linecap='round' fill='none' stroke-dasharray='3,4'/><path d='M26 7 L 31 12 L 26 17' stroke='%23c89a3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") no-repeat center/contain;
  z-index:2;
}
.bz-flow-num{
  width:76px;height:76px;
  background:var(--c-cyan-soft);
  color:var(--c-cyan-dark);
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:800;font-size:1.5rem;
  margin-bottom:22px;
  border:4px solid #fff;
  box-shadow:0 0 0 1px var(--c-border),0 10px 24px rgba(200,154,62,.12);
  transition:background .3s ease,color .3s ease,transform .4s ease;
  position:relative;
}
.bz-flow-step:hover .bz-flow-num{background:var(--c-cyan);color:#fff;transform:scale(1.05)}
.bz-flow-step h4{font-size:1.1rem;margin-bottom:10px}
.bz-flow-step p{font-size:.92rem;color:var(--c-text-2);margin:0;line-height:1.6}

/* ---------- LET'S TALK CTA ---------- */
.bz-lets-talk{
  background:var(--c-navy);
  color:#fff;
  border-radius:var(--r-xl);
  padding:60px 56px;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:48px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.bz-lets-talk::before{
  content:"";position:absolute;top:-100px;right:-100px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.16),transparent 70%);
}
.bz-lets-talk::after{
  content:"";position:absolute;bottom:-80px;left:-60px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,200,61,.10),transparent 70%);
}
.bz-lets-talk > *{position:relative;z-index:2}
.bz-lets-talk h2{color:#fff;font-size:clamp(1.7rem,3vw,2.3rem);margin-bottom:14px}
/* Unified gold + wavy underline for all highlights inside bz-lets-talk CTA */
.bz-lets-talk h2 em,
.bz-lets-talk h2 .gradient-text,
.bz-lets-talk h2 .gold-text{
  font-family:inherit;font-style:normal;font-weight:inherit;
  background:none;-webkit-background-clip:initial;background-clip:initial;
  color:#ffc83d;
  position:relative;display:inline-block;
  padding-bottom:.28em;line-height:1.15;
}
.bz-lets-talk h2 em::after,
.bz-lets-talk h2 .gradient-text::after,
.bz-lets-talk h2 .gold-text::after{
  content:"";position:absolute;left:0;right:0;bottom:0;
  height:.16em;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M0 4 Q 12.5 0 25 4 T 50 4 T 75 4 T 100 4' fill='none' stroke='%23ffc83d' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
  pointer-events:none;
}
.bz-lets-talk p{color:rgba(255,255,255,.9);font-size:1rem;line-height:1.7;margin:0}
.bz-lets-talk .btn-light{background:#fff;color:var(--c-navy)}
.bz-lets-talk .btn-dark{background:var(--c-navy);color:#fff}
.bz-lets-talk-aside{display:flex;flex-direction:column;gap:18px;align-items:flex-start}
.bz-lets-talk-aside .btn{align-self:stretch;justify-content:center}

.phone-card{
  display:flex;align-items:center;gap:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:14px 20px;
  border-radius:18px;
  width:100%;
}
.phone-card .ic{
  width:44px;height:44px;border-radius:50%;
  background:var(--c-cyan);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 44px;
}
.phone-card .l{font-size:.8rem;color:rgba(255,255,255,.85);font-family:var(--ff-heading);font-weight:500}
.phone-card .v{font-size:1.05rem;color:#fff;font-family:var(--ff-heading);font-weight:700}

/* ---------- FOOTER ---------- */
.footer{
  background:var(--c-navy);
  color:#a8b6d0;
  padding:80px 0 30px;
  position:relative;
}
.footer::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--c-cyan),transparent);
  opacity:.3;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr 1.3fr;
  gap:40px;
  margin-bottom:50px;
}
.footer .logo{color:#fff}
.footer .logo .logo-mark{background:linear-gradient(135deg,var(--c-cyan) 0%,#fff 100%);color:var(--c-navy)}
.footer-brand .desc{font-size:.92rem;color:#a8b6d0;line-height:1.7;margin:18px 0 10px}
.footer h5{color:#fff;font-size:.92rem;margin-bottom:18px;text-transform:uppercase;letter-spacing:.06em;font-weight:700}
.footer ul{display:flex;flex-direction:column;gap:10px}
.footer ul a{font-size:.93rem;color:#a8b6d0}
.footer ul a:hover{color:var(--c-cyan-2)}

.newsletter{
  display:flex;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-pill);padding:5px;gap:6px;margin-top:8px;
}
.newsletter input{
  flex:1;background:none;border:none;color:#fff;padding:10px 16px;outline:none;font-size:.9rem;min-width:0;
}
.newsletter input::placeholder{color:#7a89a3}
.newsletter button{
  background:var(--c-cyan);color:#fff;padding:10px 20px;border-radius:var(--r-pill);
  font-family:var(--ff-heading);font-weight:700;font-size:.85rem;
  transition:background .25s ease;
}
.newsletter button:hover{background:var(--c-cyan-dark)}

.socials{display:flex;gap:10px;margin-top:22px}
.socials a{
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.08);color:#cfd9ea;
  border:1px solid rgba(255,255,255,.10);
  display:inline-flex;align-items:center;justify-content:center;
  transition:all .25s ease;
  overflow:hidden;
}
.socials a:hover{background:var(--c-cyan);color:#fff;border-color:transparent;transform:translateY(-2px)}
.socials svg{width:15px !important;height:15px !important;flex:0 0 15px;max-width:15px;max-height:15px}

.contact-info-mini{display:flex;flex-direction:column;gap:8px;margin-top:14px}
.contact-info-mini .row{display:flex;align-items:center;gap:10px;font-size:.88rem;color:#a8b6d0}
.contact-info-mini svg{color:var(--c-cyan);flex:0 0 14px}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;
  display:flex;justify-content:space-between;align-items:center;
  gap:20px;flex-wrap:wrap;
  font-size:.88rem;color:#7a89a3;
}
.footer-bottom a{color:#a8b6d0}
.footer-bottom a:hover{color:var(--c-cyan-2)}

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero{
  background:
    /* RIGHT: 12-point star burst — gold-tinted to match logo accent */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M195 100 L141 111 L182 148 L130 130 L148 182 L111 141 L100 195 L89 141 L52 182 L70 130 L18 148 L59 111 L5 100 L59 89 L18 52 L70 70 L52 18 L89 59 L100 5 L111 59 L148 18 L130 70 L182 52 L141 89 Z' fill='rgba(200,154,62,0.18)'/></svg>") no-repeat,
    /* Soft gold highlights over navy */
    radial-gradient(700px 400px at 20% 20%,rgba(200,154,62,.18),transparent 60%),
    radial-gradient(600px 400px at 80% 80%,rgba(0,0,0,.18),transparent 60%),
    var(--c-navy);
  background-position:
    calc(100% - 30px) center,
    0 0,
    0 0,
    0 0;
  background-size:
    260px 260px,
    auto,
    auto,
    auto;
  color:#fff;
  padding:100px 0 110px;
  position:relative;
  overflow:hidden;
  text-align:center;
}
/* LEFT decorative filler — wavy "MMM" lines + soft circle backdrop */
.page-hero::before{
  content:"";position:absolute;
  left:30px;top:50%;transform:translateY(-50%);
  width:180px;height:160px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 160' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-opacity='0.7'><path d='M20 50 Q 45 26 70 50 T 120 50 T 170 50'/><path d='M20 90 Q 45 66 70 90 T 120 90 T 170 90'/><path d='M20 130 Q 45 106 70 130 T 120 130 T 170 130'/></svg>") no-repeat 18px center/130px auto,
    radial-gradient(circle at 62% 50%,rgba(255,255,255,.10) 0%,rgba(255,255,255,.10) 38%,transparent 39%);
  pointer-events:none;
  z-index:1;
  opacity:.85;
}
/* legacy .page-hero-deco span (auto-injected by linter) — hidden, ::after on .page-hero handles the star */
.page-hero-deco{display:none}
.page-hero > *{position:relative;z-index:2}
.page-hero h1{color:#fff;font-size:clamp(2.2rem,4vw,3.2rem);margin-bottom:14px}
.page-hero p{color:rgba(255,255,255,.9);font-size:1.05rem;max-width:680px;margin:0 auto}
.page-hero .breadcrumb{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.9rem;color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.12);
  padding:8px 18px;border-radius:var(--r-pill);
  margin-bottom:20px;
  border:1px solid rgba(255,255,255,.10);
}
.page-hero .breadcrumb .sep{opacity:.55}
.page-hero .breadcrumb a:hover{color:#fff}
.page-hero .hero-cta{justify-content:center;margin-top:28px;display:flex;gap:14px;flex-wrap:wrap}

/* Override accent text colors on purple hero so they don't blend in */
/* In page-hero, both gradient-text and gold-text render the SAME: solid gold + wavy underline (Augmit-style highlight) */
.page-hero .gradient-text,
.page-hero em.gradient-text,
.page-hero .gold-text{
  background:none;
  -webkit-background-clip:initial;background-clip:initial;
  color:#ffc83d;
  font-style:normal;
  position:relative;
  display:inline-block;
  padding-right:0;
  margin-right:0;
  padding-bottom:.28em; /* room for letter descenders (q, y, g) above the underline */
  line-height:1.15;
}
.page-hero .gradient-text::after,
.page-hero em.gradient-text::after,
.page-hero .gold-text::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;
  height:.16em;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M0 4 Q 12.5 0 25 4 T 50 4 T 75 4 T 100 4' fill='none' stroke='%23ffc83d' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
  pointer-events:none;
}

/* Hero button default + hover handled in the comprehensive rule below (line ~1519) */

/* ---------- SPLIT 2-COL LAYOUT ---------- */
.split{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.split-content .eyebrow{margin-bottom:16px}
.split-content h2{margin-bottom:18px}
.split-content .lead{font-size:1.05rem;color:var(--c-text-2);line-height:1.75;margin-bottom:26px}

.feature-list{display:flex;flex-direction:column;gap:18px;margin:0;padding:0}
.feature-list li{
  display:flex;gap:14px;align-items:flex-start;
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-md);padding:16px 18px;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.feature-list li:hover{transform:translateX(4px);box-shadow:var(--sh-sm);border-color:var(--c-cyan-soft)}
.feature-list .check{
  width:26px;height:26px;border-radius:50%;
  background:var(--c-cyan);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.85rem;flex:0 0 26px;
}
.feature-list strong{display:block;font-family:var(--ff-heading);color:var(--c-navy);font-size:.98rem;margin-bottom:4px}
.feature-list span:not(.check){font-size:.92rem;color:var(--c-text-2);line-height:1.55}

/* ---------- DASHBOARD MOCK ---------- */
.dashboard-mock{
  background:#fff;border:1px solid var(--c-border);border-radius:var(--r-xl);
  padding:24px;box-shadow:var(--sh-card);
  position:relative;overflow:hidden;
}
.dm-top{display:flex;justify-content:space-between;align-items:center;padding-bottom:14px;border-bottom:1px solid var(--c-border)}
.dm-title{font-family:var(--ff-heading);font-weight:700;color:var(--c-navy);font-size:.95rem}
.dm-dots{display:flex;gap:6px}
.dm-dots span{width:10px;height:10px;border-radius:50%;background:var(--c-border)}
.dm-dots span:first-child{background:var(--c-coral)}
.dm-dots span:nth-child(2){background:var(--c-yellow)}
.dm-dots span:last-child{background:var(--c-teal)}
.dm-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0}
.dm-stat{background:var(--c-bg);border-radius:var(--r-md);padding:14px 16px}
.dm-stat .l{font-size:.78rem;color:var(--c-text-2);font-family:var(--ff-heading);font-weight:500}
.dm-stat .v{font-family:var(--ff-heading);font-weight:800;color:var(--c-navy);font-size:1.4rem;letter-spacing:-.01em;margin:2px 0}
.dm-stat .d{font-size:.78rem;color:var(--c-cyan-dark);font-weight:600}
.dm-chart{margin:14px 0;background:var(--c-bg);border-radius:var(--r-md);padding:14px;height:140px}
.dm-chart svg{width:100%;height:100%}
.dm-rows{display:flex;flex-direction:column;gap:10px}
.dm-row{display:flex;justify-content:space-between;align-items:center;padding:10px 14px;background:var(--c-bg);border-radius:var(--r-md);font-size:.85rem}
.dm-row .who{display:flex;align-items:center;gap:10px;color:var(--c-text)}
.dm-row .av{
  width:32px;height:32px;border-radius:50%;
  background:linear-gradient(135deg,var(--c-cyan),var(--c-cyan-dark));color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:700;font-size:.75rem;
}
.dm-row .badge{font-size:.72rem;padding:4px 10px;border-radius:var(--r-pill);font-family:var(--ff-heading);font-weight:600}
.dm-row .badge.ok{background:rgba(30,174,152,.14);color:#0e7c6a}
.dm-row .badge.pn{background:rgba(255,200,61,.18);color:#a07700}
.dm-row .badge.er{background:rgba(255,127,99,.18);color:#c5421f}
.dm-row .badge.go{background:rgba(200,154,62,.14);color:var(--c-cyan-dark)}

/* ---------- STEPS GRID (numbered) ---------- */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.step{
  background:#fff;border:1px solid var(--c-border);border-radius:var(--r-lg);
  padding:30px 24px;text-align:center;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
  position:relative;
}
.step:hover{transform:translateY(-4px);box-shadow:var(--sh-card);border-color:rgba(200,154,62,.4)}
.step .num{
  width:56px;height:56px;border-radius:50%;
  background:var(--c-cyan);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:800;font-size:1.25rem;
  margin-bottom:18px;
  box-shadow:0 10px 26px rgba(200,154,62,.24);
}
.step h4{font-size:1.05rem;margin-bottom:8px}
.step p{font-size:.9rem;color:var(--c-text-2);margin:0;line-height:1.55}

/* ---------- TAG INSIDE CARDS ---------- */
.tag{
  display:inline-block;
  font-size:.72rem;padding:5px 12px;border-radius:var(--r-pill);
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  font-family:var(--ff-heading);font-weight:700;letter-spacing:.04em;
  text-transform:uppercase;
  margin-top:14px;
}

/* ---------- CODE / API BLOCK ---------- */
.code-card{
  background:var(--c-navy);color:#cfd9ea;
  border-radius:var(--r-lg);padding:24px;
  font-family:var(--ff-mono);font-size:.85rem;line-height:1.7;
  overflow:auto;
  box-shadow:var(--sh-lg);
  position:relative;
}
.code-card::before{
  content:"";position:absolute;top:14px;left:14px;width:10px;height:10px;border-radius:50%;
  background:var(--c-coral);
  box-shadow:14px 0 0 var(--c-yellow),28px 0 0 var(--c-teal);
}
.code-card pre{margin:24px 0 0;white-space:pre-wrap;word-break:break-word;color:inherit;font-family:inherit}
.code-card .k{color:#8c84ff}
.code-card .s{color:#1eae98}
.code-card .n{color:#ffc83d}
.code-card .c{color:#7a89a3;font-style:italic}

.api-list{display:flex;flex-direction:column;gap:14px;margin:0;padding:0}
.api-list li{
  display:flex;gap:14px;align-items:center;
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-md);padding:14px 18px;
  font-family:var(--ff-mono);font-size:.9rem;color:var(--c-navy);
  transition:border-color .25s ease,transform .25s ease;
}
.api-list li:hover{border-color:rgba(200,154,62,.4);transform:translateX(4px)}
.api-list .method{
  display:inline-block;padding:4px 10px;border-radius:var(--r-sm);
  font-size:.72rem;font-weight:800;letter-spacing:.04em;font-family:var(--ff-heading);
}
.api-list .method.get{background:rgba(30,174,152,.14);color:#0e7c6a}
.api-list .method.post{background:rgba(200,154,62,.14);color:var(--c-cyan-dark)}
.api-list .method.put{background:rgba(255,200,61,.18);color:#a07700}
.api-list .method.del{background:rgba(255,127,99,.18);color:#c5421f}

/* ---------- REGISTER / CONTACT FORM ---------- */
.register{
  display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:start;
}
.register-info .eyebrow{margin-bottom:16px}
.register-info h2{margin-bottom:16px}
.register-info p{color:var(--c-text-2);line-height:1.7}
.register-points{display:flex;flex-direction:column;gap:14px;margin-top:24px}
.register-points .row{display:flex;gap:14px;align-items:flex-start}
.register-points .ic{
  width:42px;height:42px;border-radius:12px;flex:0 0 42px;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
}
.register-points h4{font-size:1rem;margin-bottom:2px}
.register-points p{font-size:.88rem;margin:0;color:var(--c-text-2);line-height:1.55}

.register-form,.form-card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:36px;
  box-shadow:var(--sh-card);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-row{display:flex;flex-direction:column;gap:6px}
.form-row.full{grid-column:span 2}
.form-row label{font-family:var(--ff-heading);font-weight:600;color:var(--c-navy);font-size:.88rem}
.form-row input,.form-row textarea,.form-row select{
  background:var(--c-bg);border:1px solid var(--c-border);
  border-radius:var(--r-md);padding:12px 16px;
  color:var(--c-text);font-size:.95rem;
  transition:border-color .2s ease,background .2s ease;
}
.form-row input:focus,.form-row textarea:focus,.form-row select:focus{
  outline:none;border-color:var(--c-cyan);background:#fff;
}
.form-row textarea{resize:vertical;min-height:120px}
.form-result{
  margin-top:18px;padding:14px 18px;border-radius:var(--r-md);
  background:rgba(30,174,152,.12);color:#0e7c6a;
  font-size:.92rem;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list{display:flex;flex-direction:column;gap:14px;max-width:880px;margin:0 auto}
.faq-item{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-lg);overflow:hidden;
  transition:border-color .25s ease,box-shadow .25s ease;
}
.faq-item.is-open{border-color:rgba(200,154,62,.4);box-shadow:var(--sh-card)}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:22px 26px;cursor:pointer;
  font-family:var(--ff-heading);font-weight:700;color:var(--c-navy);
  font-size:1.02rem;
}
.faq-q::after{
  content:"+";font-size:1.6rem;font-weight:300;color:var(--c-cyan);
  transition:transform .3s ease;
}
.faq-item.is-open .faq-q::after{transform:rotate(45deg)}
/* FAQ-A: single source of padding on inner div so it aligns with question (26px) */
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .45s cubic-bezier(.2,.7,.3,1);
}
.faq-item.is-open .faq-a{max-height:1200px}
.faq-a > div,.faq-a p{
  padding:0 26px 22px;
  font-size:.95rem;color:var(--c-text-2);
  line-height:1.7;margin:0;
}
.faq-a a{color:var(--c-cyan-dark);text-decoration:underline}
.faq-a strong{color:var(--c-navy)}

/* ============================================================
   AUGMIT SIGNATURE COMPONENTS
   ============================================================ */

/* ---------- ALT-ROW (image + text alternating) ---------- */
.alt-row{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;
  align-items:center;margin-bottom:80px;position:relative;
}
.alt-row:last-child{margin-bottom:0}
.alt-row.reverse{direction:rtl}
.alt-row.reverse > *{direction:ltr}
.alt-row-text .eyebrow{margin-bottom:16px}
.alt-row-text h2{font-size:clamp(1.8rem,2.8vw,2.4rem);margin-bottom:16px}
.alt-row-text .lead{color:var(--c-text-2);font-size:1.05rem;line-height:1.75;margin-bottom:24px}

.alt-row-img{
  position:relative;border-radius:var(--r-xl);overflow:hidden;
  aspect-ratio:1/.88;box-shadow:0 30px 70px rgba(20,31,57,.14);
  background-size:cover;background-position:center;
}
.alt-row-img::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(160deg,rgba(200,154,62,.06),rgba(20,31,57,.10));
}
.alt-row-img .star-deco{
  position:absolute;top:-22px;right:-22px;
  width:80px;height:80px;
  background:var(--c-yellow);
  color:var(--c-navy);
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(255,200,61,.45);
  z-index:2;font-family:var(--ff-heading);font-weight:800;
  font-size:1rem;text-align:center;line-height:1;padding:8px;
}

/* ---------- STATS WITH STARS ---------- */
.stats-stars{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  margin:60px 0;
}
.stats-star-card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:32px 28px;
  text-align:center;
  position:relative;transition:transform .35s ease,box-shadow .35s ease;
}
.stats-star-card:hover{transform:translateY(-4px);box-shadow:var(--sh-card)}
.stats-star-card .stars{
  display:flex;justify-content:center;gap:4px;margin-bottom:14px;
  color:var(--c-yellow);
}
.stats-star-card .stars svg{width:18px;height:18px}
.stats-star-card .big{
  font-family:var(--ff-heading);font-weight:800;
  font-size:2.6rem;color:var(--c-navy);letter-spacing:-.02em;
  line-height:1;margin-bottom:6px;
}
.stats-star-card .lbl{font-size:.92rem;color:var(--c-text-2)}

/* ---------- SERVICE LISTING GRID ---------- */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
}
.service-card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:40px 32px 32px;
  text-align:center;
  position:relative;overflow:hidden;
  transition:transform .4s cubic-bezier(.2,.7,.3,1),box-shadow .4s ease,border-color .4s ease;
}
.service-card::before{
  content:"";position:absolute;top:-80px;right:-80px;
  width:200px;height:200px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.12),transparent 70%);
  opacity:0;transition:opacity .4s ease;
}
.service-card:hover{transform:translateY(-8px);box-shadow:0 28px 60px rgba(20,31,57,.12);border-color:transparent}
.service-card:hover::before{opacity:1}
.service-card > *{position:relative;z-index:1}
.service-card .ic{
  width:78px;height:78px;
  border-radius:50% 40% 55% 45% / 45% 55% 45% 55%;
  background:rgba(200,154,62,.14);color:var(--c-cyan);
  display:inline-flex;align-items:center;justify-content:center;
  margin:0 auto 22px;
  transition:border-radius .55s ease,transform .4s ease;
}
.service-card:hover .ic{
  border-radius:42% 58% 48% 52% / 55% 45% 55% 45%;
  transform:translateY(-2px);
}
.service-card .ic svg{width:32px;height:32px;stroke-width:2.2}
.service-card h3{font-size:1.2rem;margin-bottom:10px}
.service-card p{font-size:.94rem;color:var(--c-text-2);line-height:1.65;margin-bottom:18px}
.service-card .more{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--ff-heading);font-weight:700;font-size:.88rem;
  color:var(--c-cyan-dark);
}
.service-card .more svg{width:14px;height:14px;transition:transform .25s ease}
.service-card:hover .more svg{transform:translateX(4px)}

/* All service-card icons use uniform gold tint (inherit from base) */

/* ---------- WORK PROCESS WITH ARROWS ---------- */
.work-process{
  display:grid;grid-template-columns:repeat(3,1fr);gap:48px;
  position:relative;
}
.work-step{
  text-align:center;position:relative;
}
.work-step .icon-wrap{
  width:96px;height:96px;margin:0 auto 20px;
  border-radius:50% 40% 55% 45% / 45% 55% 45% 55%;
  background:linear-gradient(135deg,var(--c-cyan-soft),#fff);
  border:2px solid var(--c-cyan-soft);
  color:var(--c-cyan);
  display:inline-flex;align-items:center;justify-content:center;
  position:relative;
  box-shadow:0 14px 36px rgba(200,154,62,.12);
}
.work-step .icon-wrap svg{width:36px;height:36px}
.work-step .num{
  position:absolute;top:-8px;right:-8px;
  width:32px;height:32px;border-radius:50%;
  background:var(--c-navy);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:800;font-size:.85rem;
  border:3px solid #fff;
}
.work-step h3{font-size:1.2rem;margin-bottom:8px}
.work-step p{font-size:.94rem;color:var(--c-text-2);line-height:1.65;max-width:280px;margin:0 auto}
.work-step:not(:last-child)::after{
  content:"";position:absolute;
  top:40px;right:-32px;width:64px;height:24px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 24'><path d='M2 12 Q 16 0 32 12 T 60 12' stroke='%23c89a3e' stroke-width='2' stroke-linecap='round' fill='none' stroke-dasharray='4,5'/><path d='M52 6 L 62 12 L 52 18' stroke='%23c89a3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") no-repeat center/contain;
}

/* ---------- TESTIMONIALS GRID ---------- */
.testi-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:28px;
}
.testi-card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:32px 28px;
  position:relative;
  transition:transform .35s ease,box-shadow .35s ease;
}
.testi-card:hover{transform:translateY(-4px);box-shadow:var(--sh-card)}
.testi-card .quote{
  width:46px;height:46px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(200,154,62,.14);color:var(--c-cyan);
  margin-bottom:18px;
}
/* All testi-card quote icons use uniform gold tint */
.testi-card h4{font-size:1.1rem;margin-bottom:8px}
.testi-card .body{font-size:.95rem;color:var(--c-text-2);line-height:1.7;margin-bottom:22px}
.testi-card .who{display:flex;align-items:center;gap:12px;padding-top:18px;border-top:1px solid var(--c-border)}
.testi-card .av{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--c-cyan),var(--c-cyan-dark));color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:700;font-size:.95rem;flex:0 0 44px;
}
.testi-card .name{font-family:var(--ff-heading);font-weight:700;color:var(--c-navy);font-size:.95rem;line-height:1.2}
.testi-card .role{font-size:.82rem;color:var(--c-text-2);margin-top:2px}

/* ---------- NEWSLETTER CTA SECTION ---------- */
.newsletter-cta{
  background:var(--c-navy);color:#fff;
  border-radius:var(--r-xl);padding:60px 56px;text-align:center;
  position:relative;overflow:hidden;
}
.newsletter-cta::before{
  content:"";position:absolute;top:-100px;right:-80px;
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.18),transparent 70%);
}
.newsletter-cta::after{
  content:"";position:absolute;bottom:-100px;left:-80px;
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,200,61,.16),transparent 70%);
}
.newsletter-cta > *{position:relative;z-index:1}
.newsletter-cta h2{color:#fff;font-size:clamp(1.6rem,2.6vw,2.2rem);margin-bottom:14px}
.newsletter-cta h2 em,
.newsletter-cta h2 .gradient-text,
.newsletter-cta h2 .gold-text{
  font-family:inherit;font-style:normal;font-weight:inherit;
  background:none;-webkit-background-clip:initial;background-clip:initial;
  color:#ffc83d;
  position:relative;display:inline-block;
  padding-bottom:.28em;line-height:1.15;
}
.newsletter-cta h2 em::after,
.newsletter-cta h2 .gradient-text::after,
.newsletter-cta h2 .gold-text::after{
  content:"";position:absolute;left:0;right:0;bottom:0;
  height:.16em;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M0 4 Q 12.5 0 25 4 T 50 4 T 75 4 T 100 4' fill='none' stroke='%23ffc83d' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
  pointer-events:none;
}
.newsletter-cta p{color:rgba(255,255,255,.9);max-width:540px;margin:0 auto 26px;line-height:1.7}
.newsletter-cta .nl-form{
  display:flex;background:#fff;
  border-radius:var(--r-pill);padding:6px;gap:6px;
  max-width:480px;margin:0 auto;
  box-shadow:0 12px 32px rgba(0,0,0,.18);
}
.newsletter-cta .nl-form input{
  flex:1;background:none;border:none;outline:none;
  padding:10px 18px;font-size:.95rem;color:var(--c-text);
  min-width:0;
}
.newsletter-cta .nl-form button{
  background:var(--c-navy);color:#fff;padding:10px 22px;border-radius:var(--r-pill);
  font-family:var(--ff-heading);font-weight:700;font-size:.88rem;
  transition:background .25s ease;
}
.newsletter-cta .nl-form button:hover{background:#000}

/* On navy hero/CTA backgrounds, primary CTA needs contrasting style */
.page-hero .btn-primary,
.bz-lets-talk .btn-primary{
  background:var(--c-cyan);              /* solid gold */
  color:#fff;
  box-shadow:0 12px 28px rgba(200,154,62,.32);
}
.page-hero .btn-primary:hover,
.bz-lets-talk .btn-primary:hover{
  background:#fff;
  color:var(--c-cyan-dark);
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(0,0,0,.20);
}
.page-hero .btn-light:hover,
.bz-lets-talk .btn-light:hover{background:var(--c-cyan);color:#fff;border-color:transparent}
.page-hero .btn-dark{background:#fff;color:var(--c-navy)}
.page-hero .btn-dark:hover{background:var(--c-cyan);color:#fff}
.bz-lets-talk .phone-card .ic{background:#fff;color:var(--c-cyan-dark)}

/* ---------- TEAM GRID ---------- */
.team-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.team-card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:28px 22px;
  text-align:center;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
  position:relative;overflow:hidden;
}
.team-card:hover{transform:translateY(-6px);box-shadow:var(--sh-card);border-color:rgba(200,154,62,.4)}
.team-card .avatar{
  width:100px;height:100px;margin:0 auto 16px;
  border-radius:50% 40% 55% 45% / 45% 55% 45% 55%;
  background:linear-gradient(135deg,var(--c-cyan-soft),rgba(224,182,88,.18));
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:800;font-size:1.6rem;
  color:var(--c-cyan-dark);
  transition:border-radius .5s ease;
}
.team-card:hover .avatar{border-radius:42% 58% 48% 52% / 55% 45% 55% 45%}
.team-card h4{font-size:1.05rem;margin-bottom:4px}
.team-card .role{font-size:.85rem;color:var(--c-text-2);margin-bottom:14px}
.team-card .socials-mini{display:flex;justify-content:center;gap:8px}
.team-card .socials-mini a{
  width:30px;height:30px;border-radius:50%;
  background:var(--c-bg);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
  transition:all .25s ease;
}
.team-card .socials-mini a:hover{background:var(--c-cyan);color:#fff;transform:translateY(-2px)}
.team-card .socials-mini svg{width:13px;height:13px}

/* ---------- INTRO 2-COL WITH SIDE IMAGES (Augmit-style overlapping collage) ---------- */
.intro-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.intro-split > *{min-width:0}
.intro-split .text .eyebrow{margin-bottom:16px}
.intro-split .text h2{font-size:clamp(1.9rem,3vw,2.5rem);margin-bottom:18px;line-height:1.18}
.intro-split .text .lead{color:var(--c-text-2);font-size:1.05rem;line-height:1.75;margin-bottom:26px}

.intro-split .imgs{
  position:relative;
  width:100%;
  aspect-ratio:1/1.05;
}
.intro-split .imgs .img1,
.intro-split .imgs .img2{
  position:absolute;
  border-radius:var(--r-xl);
  background-size:cover;background-position:center;
  box-shadow:0 22px 50px rgba(20,31,57,.14);
}
.intro-split .imgs .img1{
  top:0;left:0;
  width:68%;height:72%;
}
.intro-split .imgs .img2{
  bottom:0;right:0;
  width:62%;height:62%;
  border:6px solid #fff;
}
.section-alt .intro-split .imgs .img2{border-color:#fff}
.section:not(.section-alt) .intro-split .imgs .img2{border-color:var(--c-bg)}
.intro-split .imgs .float-badge{
  position:absolute;
  top:48%;left:50%;transform:translate(-50%,-50%);
  background:#fff;padding:14px 18px;border-radius:18px;
  box-shadow:0 24px 60px rgba(20,31,57,.20);
  display:flex;align-items:center;gap:12px;z-index:3;
  font-family:var(--ff-heading);
  max-width:240px;
  width:max-content;
}
.intro-split .imgs .float-badge .ic{
  width:42px;height:42px;border-radius:50%;
  background:var(--c-cyan);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;flex:0 0 42px;
}
.intro-split .imgs .float-badge .v{font-weight:800;color:var(--c-navy);font-size:1.1rem;line-height:1.1}
.intro-split .imgs .float-badge .l{font-size:.74rem;color:var(--c-text-2);line-height:1.35;margin-top:2px}

/* ---------- FEATURED IMAGE BLOCK ---------- */
.featured-image{
  width:100%;height:auto;aspect-ratio:16/8;
  border-radius:var(--r-xl);background-size:cover;background-position:center;
  box-shadow:0 28px 60px rgba(20,31,57,.14);
  position:relative;overflow:hidden;
  margin:40px 0;
}
.featured-image::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(20,31,57,.30) 100%);
}

/* ---------- CENTERED TEXT BLOCK ---------- */
.text-block{
  max-width:820px;margin:0 auto;text-align:center;
}
.text-block h2{margin-bottom:18px}
.text-block p{color:var(--c-text-2);font-size:1.02rem;line-height:1.8}

/* ---------- AUGMIT DECORATIVE SHAPES ---------- */
.augmit-wave,
.augmit-star,
.augmit-dots,
.augmit-circle{z-index:0}
.augmit-wave{
  position:absolute;width:120px;height:30px;pointer-events:none;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 30' fill='none'><path d='M2 15 Q 20 0 40 15 T 80 15 T 118 15' stroke='%23c89a3e' stroke-width='2.5' stroke-linecap='round' fill='none'/></svg>") no-repeat center/contain;
  opacity:.6;
}
.augmit-star{
  position:absolute;width:46px;height:46px;pointer-events:none;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffc83d'><path d='M12 2l2.39 7.36H22l-6.18 4.49L18.21 22 12 17.27 5.79 22l2.39-8.15L2 9.36h7.61z'/></svg>") no-repeat center/contain;
  opacity:.7;
}
.augmit-dots{
  position:absolute;width:110px;height:110px;pointer-events:none;
  background-image:radial-gradient(circle,var(--c-cyan) 1.5px,transparent 1.5px);
  background-size:16px 16px;opacity:.32;
}
.augmit-circle{
  position:absolute;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(200,154,62,.18),transparent 70%);
}
/* Ensure section content (container) always sits above decorations */
.section > .container,
.page-hero > .container{position:relative;z-index:1}
/* Cards inside contact strip / form / lets-talk shouldn't be overlapped by decorations */
.contact-strip,
.form-card,
.bz-lets-talk{position:relative;z-index:1}

/* ---------- LEGAL PAGES ---------- */
.legal{
  width:100%;
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:48px 56px;
  box-shadow:var(--sh-sm);
}
.legal h2{font-size:1.4rem;margin:32px 0 12px;color:var(--c-navy)}
.legal h2:first-child{margin-top:0}
.legal h3{font-size:1.1rem;margin:20px 0 8px}
.legal p,.legal li{font-size:.96rem;line-height:1.75;color:var(--c-text)}
.legal ul,.legal ol{padding-left:22px;margin:10px 0 16px;list-style:disc}
.legal ol{list-style:decimal}
.legal li{margin-bottom:6px}
.legal strong{color:var(--c-navy)}
.legal a{color:var(--c-cyan-dark);text-decoration:underline}
.legal .meta{color:var(--c-muted);font-size:.85rem;margin-bottom:24px}

/* ---------- CONTACT INFO STRIP ---------- */
.contact-strip{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  margin-bottom:60px;
}
.contact-strip .card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-lg);padding:28px 24px;text-align:center;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.contact-strip .card:hover{transform:translateY(-4px);box-shadow:var(--sh-card);border-color:rgba(200,154,62,.3)}
.contact-strip .ic{
  width:56px;height:56px;margin:0 auto 16px;
  border-radius:50% 40% 55% 45% / 45% 55% 45% 55%;
  background:rgba(200,154,62,.14);color:var(--c-cyan);
  display:inline-flex;align-items:center;justify-content:center;
}
.contact-strip h4{font-size:1.05rem;margin-bottom:6px}
.contact-strip p,.contact-strip a{font-size:.92rem;color:var(--c-text-2);margin:0;line-height:1.5}
.contact-strip a:hover{color:var(--c-cyan-dark)}

/* ---------- PRICING TABLE ---------- */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pricing-card{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-xl);padding:36px 32px;
  position:relative;transition:transform .3s ease,box-shadow .3s ease;
}
.pricing-card.featured{border-color:var(--c-cyan);box-shadow:var(--sh-cyan);transform:translateY(-6px)}
.pricing-card.featured::before{
  content:"Most popular";position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--c-cyan);color:#fff;
  padding:6px 16px;border-radius:var(--r-pill);
  font-family:var(--ff-heading);font-weight:700;font-size:.72rem;
  letter-spacing:.08em;text-transform:uppercase;
}
.pricing-card h3{font-size:1.2rem;margin-bottom:6px}
.pricing-card .price{font-family:var(--ff-heading);font-weight:800;font-size:2.4rem;color:var(--c-navy);letter-spacing:-.02em;margin:14px 0 4px}
.pricing-card .price small{font-size:.95rem;font-weight:500;color:var(--c-text-2)}
.pricing-card .desc{font-size:.92rem;color:var(--c-text-2);margin-bottom:18px;line-height:1.55}
.pricing-card ul{display:flex;flex-direction:column;gap:10px;margin:18px 0 26px}
.pricing-card li{display:flex;gap:10px;align-items:flex-start;font-size:.92rem;color:var(--c-text);line-height:1.5}
.pricing-card li::before{
  content:"";width:18px;height:18px;flex:0 0 18px;margin-top:2px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89a3e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/contain;
}
.pricing-card .btn{width:100%;justify-content:center}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.left{transform:translateX(-30px)}
.reveal.right{transform:translateX(30px)}
.reveal.scale{transform:scale(.96)}
.reveal.blur{filter:blur(8px)}
.reveal.in{opacity:1;transform:none;filter:none}
.stagger > *{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.stagger.in > *{opacity:1;transform:none}
.stagger.in > *:nth-child(1){transition-delay:.05s}
.stagger.in > *:nth-child(2){transition-delay:.12s}
.stagger.in > *:nth-child(3){transition-delay:.19s}
.stagger.in > *:nth-child(4){transition-delay:.26s}
.stagger.in > *:nth-child(5){transition-delay:.33s}
.stagger.in > *:nth-child(6){transition-delay:.40s}
.section-head.reveal{opacity:1;transform:none}

/* ---------- LEGACY SHIMS ---------- */
.section-bz{background:transparent}
.amb-blobs,.amb-blob,.bz-shape{display:none}

/* ============================================================
   LEGACY PAGE CLASSES (sub-pages with older markup)
   ============================================================ */

/* ---------- SUB-PAGE HEADER (bz-page-header) ---------- */
.bz-page-header{
  background:var(--c-navy);
  color:#fff;
  padding:80px 0 90px;
  position:relative;
  overflow:hidden;
  text-align:center;
}
.bz-page-header::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(720px 420px at 20% 20%,rgba(200,154,62,.30),transparent 60%),
    radial-gradient(620px 420px at 80% 80%,rgba(224,182,88,.22),transparent 60%);
  pointer-events:none;
}
.bz-page-header .container{position:relative;z-index:2}
.bz-breadcrumb{
  display:inline-flex;align-items:center;gap:10px;
  font-size:.88rem;color:#cfd9ea;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:8px 18px;border-radius:var(--r-pill);
  margin-bottom:22px;
  font-family:var(--ff-heading);font-weight:500;
}
.bz-breadcrumb a{color:#cfd9ea}
.bz-breadcrumb a:hover{color:var(--c-cyan-2)}
.bz-breadcrumb .sep{opacity:.4}
.bz-breadcrumb .here{color:#fff;font-weight:600}
.bz-page-title{
  color:#fff;
  font-size:clamp(2.2rem,4.2vw,3.2rem);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.15;
  margin:0 0 16px;
}
.bz-page-title em{font-family:var(--ff-display);font-style:italic;font-weight:400;color:var(--c-cyan-2)}
.bz-page-sub{
  color:#cfd9ea;
  font-size:1.05rem;
  line-height:1.7;
  max-width:720px;
  margin:0 auto;
}
.bz-page-sub a{color:var(--c-cyan-2);text-decoration:underline}
.bz-page-sub a:hover{color:#fff}

/* ---------- SPLIT LAYOUT ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:60px;
  align-items:center;
}
.split-content h2{margin-bottom:18px}
.split-content .lead{font-size:1.05rem;color:var(--c-text-2);line-height:1.75;margin-bottom:24px}

/* ---------- FEATURE LIST (checkmark bullets) ---------- */
.feature-list{display:flex;flex-direction:column;gap:14px;margin:24px 0 0;padding:0}
.feature-list li{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 18px;
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:14px;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.feature-list li:hover{transform:translateX(4px);border-color:rgba(200,154,62,.35);box-shadow:0 8px 24px rgba(20,31,57,.06)}
.feature-list .check{
  flex:0 0 26px;width:26px;height:26px;
  background:var(--c-cyan);color:#fff;
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.8rem;font-weight:700;
  margin-top:2px;
}
.feature-list li strong{display:block;color:var(--c-navy);font-family:var(--ff-heading);font-weight:700;font-size:1rem;margin-bottom:2px}
.feature-list li span:nth-child(2){display:block;color:var(--c-text-2);font-size:.92rem;line-height:1.55}

/* ---------- DASHBOARD MOCK ---------- */
.dashboard-mock{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:24px;
  box-shadow:var(--sh-lg);
  position:relative;
  overflow:hidden;
}
.dashboard-mock::before{
  content:"";position:absolute;top:-100px;right:-100px;
  width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.12),transparent 70%);
}
.dashboard-mock > *{position:relative;z-index:1}
.dm-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid var(--c-border)}
.dm-title{font-family:var(--ff-heading);font-weight:700;color:var(--c-navy);font-size:.95rem}
.dm-dots{display:flex;gap:6px}
.dm-dots span{width:8px;height:8px;border-radius:50%;background:var(--c-border-2)}
.dm-dots span:first-child{background:var(--c-coral)}
.dm-dots span:nth-child(2){background:var(--c-yellow)}
.dm-dots span:nth-child(3){background:var(--c-teal)}
.dm-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:18px}
.dm-stat{background:var(--c-bg);border-radius:12px;padding:12px 14px}
.dm-stat .l{font-size:.75rem;color:var(--c-text-2);text-transform:uppercase;letter-spacing:.06em;margin-bottom:4px}
.dm-stat .v{font-family:var(--ff-heading);font-size:1.35rem;font-weight:800;color:var(--c-navy);line-height:1}
.dm-stat .d{font-size:.75rem;color:var(--c-teal);margin-top:4px;font-weight:600}
.dm-chart{height:120px;margin-bottom:18px;background:var(--c-bg);border-radius:12px;overflow:hidden}
.dm-chart svg{width:100%;height:100%;display:block}
.dm-chart svg path[fill]{fill:rgba(200,154,62,.14) !important}
.dm-chart svg path[stroke]{stroke:var(--c-cyan) !important}
.dm-rows{display:flex;flex-direction:column;gap:10px}
.dm-row{display:flex;justify-content:space-between;align-items:center;padding:10px 14px;background:var(--c-bg);border-radius:10px}
.dm-row .who{display:flex;align-items:center;gap:10px;font-size:.88rem;color:var(--c-text)}
.dm-row .av{
  width:30px;height:30px;border-radius:50%;
  background:linear-gradient(135deg,var(--c-cyan),var(--c-cyan-dark));
  color:#fff;display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:700;font-size:.7rem;
}
.dm-row .badge{font-family:var(--ff-heading);font-weight:600;font-size:.72rem;padding:4px 10px;border-radius:999px;text-transform:uppercase;letter-spacing:.04em}
.dm-row .badge.ok{background:rgba(30,174,152,.16);color:var(--c-teal)}
.dm-row .badge.pn{background:rgba(255,200,61,.22);color:#a07700}

/* ---------- TAG ---------- */
.tag{
  display:inline-flex;align-items:center;
  background:var(--c-cyan-soft);
  color:var(--c-cyan-dark);
  padding:5px 12px;border-radius:999px;
  font-family:var(--ff-heading);font-weight:600;font-size:.72rem;
  text-transform:uppercase;letter-spacing:.06em;
  margin-top:4px;
}

/* ---------- STEPS ---------- */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.step{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:30px 24px 26px;
  text-align:center;
  position:relative;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.step:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(20,31,57,.10);border-color:rgba(200,154,62,.35)}
.step .num{
  width:54px;height:54px;
  background:var(--c-cyan-soft);
  color:var(--c-cyan-dark);
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:800;font-size:1.3rem;
  margin:0 auto 18px;
  border:3px solid #fff;
  box-shadow:0 0 0 1px var(--c-border);
  transition:background .3s ease,color .3s ease;
}
.step:hover .num{background:var(--c-cyan);color:#fff}
.step h4{font-size:1.05rem;margin-bottom:8px}
.step p{font-size:.9rem;color:var(--c-text-2);margin:0;line-height:1.6}

/* ---------- CONTACT INFO CARDS ---------- */
.bz-contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.bz-contact-card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:32px 28px;
  text-align:left;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.bz-contact-card:hover{transform:translateY(-5px);box-shadow:0 22px 50px rgba(20,31,57,.10);border-color:rgba(200,154,62,.35)}
.bz-contact-card .ic{
  width:54px;height:54px;
  border-radius:50% 40% 55% 45% / 45% 55% 45% 55%;
  background:rgba(200,154,62,.14);
  color:var(--c-cyan);
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
/* All contact card icons use uniform gold tint */
.bz-contact-card .l{
  font-family:var(--ff-heading);font-weight:600;font-size:.78rem;
  color:var(--c-text-2);text-transform:uppercase;letter-spacing:.08em;
  margin-bottom:8px;
}
.bz-contact-card h3{font-size:1.15rem;color:var(--c-navy);margin-bottom:8px;word-wrap:break-word}
.bz-contact-card p{font-size:.92rem;color:var(--c-text-2);line-height:1.6;margin:0}
.bz-contact-card a{color:var(--c-cyan-dark);font-weight:500}
.bz-contact-card a:hover{color:var(--c-cyan)}

/* ---------- FORM CARD ---------- */
.bz-form-card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-xl);
  padding:48px 44px;
  box-shadow:var(--sh-card);
  position:relative;
  overflow:hidden;
}
.bz-form-card::before{
  content:"";position:absolute;top:-100px;right:-100px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,154,62,.10),transparent 70%);
}
.bz-form-card > *{position:relative;z-index:1}
.bz-form-card h2{margin-bottom:8px}
.bz-form-card h2 em{font-family:var(--ff-display);font-style:italic;font-weight:400;color:var(--c-cyan)}
.bz-form-card > p{color:var(--c-text-2);margin-bottom:24px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-field{display:flex;flex-direction:column;gap:6px}
.form-field.full{grid-column:span 2}
.form-field label{font-family:var(--ff-heading);font-weight:600;font-size:.85rem;color:var(--c-navy)}
.form-field input,
.form-field select,
.form-field textarea{
  padding:12px 14px;
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:10px;
  font-size:.95rem;
  color:var(--c-text);
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
  font-family:var(--ff-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{border-color:var(--c-cyan);box-shadow:0 0 0 4px rgba(200,154,62,.14)}
.form-field textarea{resize:vertical;min-height:100px}

/* ---------- FAQ ACCORDION ---------- */
.faq-list{
  display:flex;flex-direction:column;gap:14px;
  max-width:900px;margin:0 auto;
}
.faq-item{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:border-color .25s ease,box-shadow .25s ease;
}
.faq-item.is-open{border-color:rgba(200,154,62,.45);box-shadow:0 14px 40px rgba(20,31,57,.08)}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:18px;
  width:100%;text-align:left;
  padding:20px 26px;
  font-family:var(--ff-heading);font-weight:700;font-size:1.02rem;
  color:var(--c-navy);
  background:none;border:none;cursor:pointer;
}
.faq-q .pl{
  flex:0 0 36px;width:36px;height:36px;border-radius:50%;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .35s ease,background .25s ease,color .25s ease;
}
.faq-q .pl svg{width:14px;height:14px}
.faq-item.is-open .faq-q .pl{transform:rotate(45deg);background:var(--c-cyan);color:#fff}
.faq-a a:hover{color:var(--c-cyan)}

/* ---------- API ENDPOINT LIST ---------- */
.api-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.api-pill{
  display:flex;align-items:center;gap:12px;
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:14px;
  padding:14px 18px;
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.api-pill:hover{transform:translateY(-2px);border-color:rgba(200,154,62,.4);box-shadow:0 12px 30px rgba(20,31,57,.06)}
.api-pill .pic{
  flex:0 0 38px;width:38px;height:38px;border-radius:10px;
  background:var(--c-cyan-soft);color:var(--c-cyan-dark);
  display:inline-flex;align-items:center;justify-content:center;
}
.api-pill .nm{font-family:var(--ff-mono);font-size:.82rem;color:var(--c-navy);font-weight:600;line-height:1.3}
.api-pill .dc{font-size:.78rem;color:var(--c-text-2);margin-top:2px}

/* ---------- CODE CARD ---------- */
.code-card{
  background:var(--c-navy);
  border-radius:var(--r-lg);
  padding:20px 24px;
  color:#cfd9ea;
  font-family:var(--ff-mono);font-size:.85rem;line-height:1.6;
  overflow-x:auto;
  box-shadow:var(--sh-lg);
}
.code-card pre{margin:0;color:inherit;font-family:inherit}
.code-card .ck-key{color:var(--c-cyan-2)}
.code-card .ck-str{color:#9be1a8}
.code-card .ck-num{color:var(--c-yellow)}
.code-card .ck-cm{color:#6e7a99;font-style:italic}

/* ---------- REGISTER / SIGNUP SPLIT ---------- */
.register-info{padding:20px 0}
.register-info h2{margin-bottom:16px}
.register-info .lead{font-size:1.05rem;color:var(--c-text-2);line-height:1.75;margin-bottom:24px}
.register-points{display:flex;flex-direction:column;gap:14px;padding:0;margin:0}
.register-points li{
  display:flex;align-items:flex-start;gap:12px;
  font-size:.95rem;color:var(--c-text);line-height:1.55;
}
.register-points li::before{
  content:"";flex:0 0 22px;width:22px;height:22px;margin-top:1px;
  background:var(--c-cyan) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center/14px;
  border-radius:50%;
}
.register-form{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:36px 32px;
  box-shadow:var(--sh-card);
}
.register-form h3{margin-bottom:18px}

/* ---------- TESTIMONIALS ---------- */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testi-card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:32px 28px;
  position:relative;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.testi-card:hover{transform:translateY(-5px);box-shadow:var(--sh-card);border-color:rgba(200,154,62,.35)}
.testi-card .quote{font-size:2.2rem;font-family:var(--ff-display);color:var(--c-cyan);line-height:1;margin-bottom:8px}
.testi-card p{font-size:.95rem;color:var(--c-text);line-height:1.7;margin-bottom:18px}
.testi-card .who{display:flex;align-items:center;gap:12px}
.testi-card .who .av{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--c-cyan),var(--c-cyan-dark));
  color:#fff;display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ff-heading);font-weight:700;
}
.testi-card .who .nm{font-family:var(--ff-heading);font-weight:700;color:var(--c-navy);font-size:.92rem}
.testi-card .who .ro{font-size:.78rem;color:var(--c-text-2)}

/* ---------- LEGAL PAGES ---------- */
.legal{
  width:100%;
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:48px 56px;
  box-shadow:var(--sh-sm);
}
.legal .meta{
  font-size:.85rem;color:var(--c-text-2);
  padding:10px 16px;background:var(--c-cyan-soft);
  border-radius:10px;display:inline-block;
  margin-bottom:30px;
}
.legal h2{
  color:var(--c-navy);
  font-size:1.35rem;margin:32px 0 14px;
  font-weight:800;
}
.legal h2:first-of-type{margin-top:0}
.legal h3{font-size:1.05rem;margin:22px 0 10px}
.legal p{color:var(--c-text);font-size:.96rem;line-height:1.75;margin-bottom:14px}
.legal ul{padding-left:20px;margin-bottom:16px}
.legal ul li{
  color:var(--c-text);font-size:.95rem;line-height:1.75;
  list-style:disc;margin-bottom:8px;
}
.legal strong{color:var(--c-navy);font-weight:700}
.legal a{color:var(--c-cyan-dark);text-decoration:underline}
.legal a:hover{color:var(--c-cyan)}

/* ---------- LEGACY RESPONSIVE ---------- */
@media (max-width:980px){
  .bz-page-header{padding:60px 0 70px}
  .split{grid-template-columns:1fr;gap:48px}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .bz-contact-cards{grid-template-columns:1fr;gap:16px}
  .bz-form-card{padding:36px 28px}
  .form-grid{grid-template-columns:1fr}
  .form-field.full{grid-column:span 1}
  .api-list{grid-template-columns:repeat(2,1fr)}
  .testi-grid{grid-template-columns:1fr;gap:18px}
  .legal{padding:36px 28px}
}
@media (max-width:640px){
  .bz-page-header{padding:50px 0 60px}
  .bz-page-title{font-size:1.8rem}
  .steps-grid{grid-template-columns:1fr}
  .api-list{grid-template-columns:1fr}
  .feature-list li{padding:12px 14px}
  .bz-form-card{padding:28px 20px}
  .legal{padding:28px 20px}
  .dm-stats{grid-template-columns:1fr}
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1200px){
  :root{--container:1100px}
  .section{padding:88px 0}
  .hero{padding:80px 0 110px}
  .hero h1{font-size:clamp(2.2rem,4.2vw,3.2rem)}
  .feature-grid{gap:22px}
  .feature-card{padding:34px 26px 30px}
}
@media (max-width:1180px){
  .nav-links a{padding:8px 10px;font-size:.88rem}
  .nav-cta .btn{padding:10px 16px;font-size:.85rem}
  .nav-cta .btn-ghost{display:none}
}
@media (max-width:1080px){
  .nav-links{display:none !important}
  .nav-mobile{display:inline-flex !important}
}
@media (max-width:1100px){
  .footer-grid{grid-template-columns:1.6fr 1fr 1fr 1fr}
  .footer-grid > div:nth-child(5){grid-column:span 4}
  .page-hero{background-size:380px 380px,auto,auto,auto;background-position:calc(100% + 60px) center,0 0,0 0,0 0}
  .page-hero::before{width:240px;height:220px;left:-40px;opacity:.5}
}
@media (max-width:980px){
  .section{padding:72px 0}
  .section-head{margin-bottom:42px}
  .hero{padding:50px 0 90px}
  .hero-grid{grid-template-columns:1fr;gap:50px}
  .hero h1{font-size:clamp(2rem,5.6vw,2.8rem)}
  .hero-visual{max-width:480px;margin:0 auto;width:100%}
  .hero-trust{gap:28px}
  .page-hero{padding:70px 0 80px;background-size:280px 280px,auto,auto,auto;background-position:calc(100% + 40px) 50%,0 0,0 0,0 0}
  .page-hero::before{width:180px;height:160px;left:-60px;opacity:.35}
  .split{grid-template-columns:1fr;gap:40px}
  .register{grid-template-columns:1fr;gap:36px}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .alt-row{grid-template-columns:1fr;gap:40px;margin-bottom:60px}
  .alt-row.reverse{direction:ltr}
  .stats-stars{grid-template-columns:1fr;gap:18px;max-width:480px;margin:40px auto}
  .services-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .work-process{grid-template-columns:1fr;gap:48px;max-width:420px;margin:0 auto}
  .work-step:not(:last-child)::after{display:none}
  .testi-grid{grid-template-columns:1fr;gap:18px}
  .team-grid{grid-template-columns:repeat(2,1fr);gap:18px}
  .intro-split{grid-template-columns:1fr;gap:48px}
  .intro-split .imgs{max-width:480px;margin:0 auto;width:100%}
  .intro-split .imgs .float-badge{max-width:200px}
  .intro-split .imgs .float-badge .v{font-size:1rem}
  .intro-split .imgs .float-badge .l{font-size:.7rem}
  .newsletter-cta{padding:44px 28px}
  .newsletter-cta .nl-form{flex-direction:column;padding:8px;border-radius:var(--r-lg);gap:10px}
  .newsletter-cta .nl-form button{width:100%}
  .page-hero::before{width:120px;height:100px;left:10px;opacity:.5}
  .page-hero{background-size:180px 180px,auto,auto,auto;background-position:calc(100% - 10px) center,0 0,0 0,0 0}
  .pricing-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .pricing-card.featured{transform:none}
  .contact-strip{grid-template-columns:1fr;max-width:520px;margin:0 auto 40px}
  .feature-grid,.dmc-grid{grid-template-columns:repeat(2,1fr)}
  .bz-stat-band{grid-template-columns:1fr;padding:44px 36px;gap:48px}
  .bz-stat-band-visual{order:-1;max-width:520px;margin:0 auto;width:100%}
  .bz-flow{grid-template-columns:repeat(2,1fr);row-gap:40px}
  .bz-flow-step:nth-child(2n)::after{display:none}
  .bz-lets-talk{grid-template-columns:1fr;padding:44px 36px;gap:30px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
  .footer-grid > div:nth-child(5){grid-column:span 2}
  .topbar-item:nth-child(3){display:none}
  .industries-grid{grid-template-columns:1fr;gap:40px}
  .industries-info{text-align:center;max-width:640px;margin:0 auto}
  .industries-sub{margin-left:auto;margin-right:auto}
  .industries-scribble{margin-left:auto;margin-right:auto}
  .industries-strip{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:768px){
  .topbar-inner{justify-content:center}
  .topbar-right{display:none}
  .topbar-left{gap:16px;justify-content:center;flex-wrap:wrap}
  .topbar-item{font-size:.78rem}
  .nav-inner{min-height:64px}
  .logo{font-size:1.2rem}
  .logo-mark{width:32px;height:32px}
  .logo-img{height:34px}
  .footer .logo-img-light{height:40px}
  .industries-strip{grid-template-columns:repeat(2,1fr)}
  .industries-grid{gap:32px}
  .hero-float{padding:10px 14px}
  .hero-float .arc{width:40px;height:40px;flex:0 0 40px}
  .hero-float .v{font-size:.95rem}
  .hero-float .l{font-size:.72rem}
}
@media (max-width:640px){
  :root{--gutter:16px}
  .section{padding:60px 0}
  .section-head{margin-bottom:36px}
  h1{font-size:2rem}
  h2{font-size:1.6rem}
  .page-hero{padding:56px 0 64px;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M195 100 L141 111 L182 148 L130 130 L148 182 L111 141 L100 195 L89 141 L52 182 L70 130 L18 148 L59 111 L5 100 L59 89 L18 52 L70 70 L52 18 L89 59 L100 5 L111 59 L148 18 L130 70 L182 52 L141 89 Z' fill='rgba(200,154,62,0.06)'/></svg>"),radial-gradient(700px 400px at 20% 20%,rgba(200,154,62,.10),transparent 60%),radial-gradient(600px 400px at 80% 80%,rgba(0,0,0,.10),transparent 60%),linear-gradient(var(--c-navy),var(--c-navy));background-repeat:no-repeat;background-size:140px 140px,auto,auto,auto;background-position:calc(100% - 10px) 14%,0 0,0 0,0 0}
  .page-hero::before{width:80px;height:70px;left:6px;top:14%;transform:none;opacity:.20}
  .hero{padding:36px 0 80px}
  .hero h1{font-size:2rem;line-height:1.15}
  .hero .lead{font-size:1rem;margin-bottom:24px}
  .hero-cta{margin-bottom:32px;gap:10px}
  .hero-cta .btn{padding:12px 20px;font-size:.88rem}
  .hero-trust{gap:18px;padding-top:24px}
  .hero-trust .stat .num{font-size:1.4rem}
  .hero-trust .stat{font-size:.82rem}
  .bz-call-eyebrow{padding:6px 6px 6px 14px;font-size:.78rem}
  .bz-call-eyebrow .chip{width:26px;height:26px}
  .feature-grid,.dmc-grid{grid-template-columns:1fr}
  .feature-card{padding:30px 24px 26px}
  .steps-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .form-row.full{grid-column:span 1}
  .register-form,.form-card{padding:28px 22px}
  .legal{padding:32px 24px}
  /* Tone down homepage hero blob so text reads cleanly on phone view */
  .hero-blob{opacity:.30}
  .hero-photo{opacity:.85}
  .dec-dots,.dec-star,.dec-scratch,.dec-arc{opacity:.18}
  .services-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr;max-width:280px;margin:0 auto}
  .stats-star-card{padding:24px 20px}
  .stats-star-card .big{font-size:2.1rem}
  .bz-flow{grid-template-columns:1fr;row-gap:24px}
  .bz-flow-step::after{display:none !important}
  .footer-grid{grid-template-columns:1fr}
  .footer-grid > div:nth-child(5){grid-column:span 1}
  .hero-float.tl{left:-2%;top:6%}
  .hero-float.br{right:-2%;bottom:4%}
  .bz-stat-band{padding:28px 22px}
  .bz-stat-band-visual{min-height:300px}
  .bz-stat-big{left:42%;padding:16px 20px}
  .bz-stat-big .v{font-size:2rem}
  .bz-lets-talk{padding:36px 24px}
  .bz-lets-talk h2{font-size:1.5rem}
  .industries-strip{gap:14px}
  .industry-item{padding:26px 22px 22px;font-size:1.05rem;min-height:160px}
  .industry-item .lic{width:60px;height:60px;flex:0 0 60px;border-radius:50% 40% 55% 45% / 45% 55% 45% 55%}
  .industry-item .lic svg{width:24px;height:24px}
  .value-band{padding:18px 0}
  .value-item{font-size:.95rem}
  .value-track{gap:32px}
  .footer{padding:60px 0 24px}
  .footer-bottom{flex-direction:column;text-align:center;gap:14px}
  .phone-card{padding:12px 16px}
  .phone-card .v{font-size:.95rem}
}
@media (max-width:380px){
  .hero h1{font-size:1.75rem}
  .industries-strip{grid-template-columns:1fr}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{justify-content:center}
  .logo-img{height:30px}
  .nav-cta .btn-primary{padding:9px 14px;font-size:.82rem}
  .nav-cta .btn-primary svg{display:none}
  .nav-inner{gap:10px}
  .nav-mobile{width:38px;height:38px}
}
