:root {
  --sgh-ink: #0b0928;
  --sgh-muted: #65677d;
  --sgh-purple: #7c3aed;
  --sgh-purple-dark: #5b21b6;
  --sgh-pink: #ec4899;
  --sgh-blue: #38bdf8;
  --sgh-green: #20c987;
  --sgh-gold: #f7b731;
  --sgh-white: #ffffff;
  --sgh-cream: #fffdf8;
  --sgh-soft: #f6f2ff;
  --sgh-line: rgba(87, 70, 150, .14);
  --sgh-shadow: 0 28px 90px rgba(67, 56, 130, .17);
  --sgh-shadow-strong: 0 46px 140px rgba(67, 56, 130, .22);
  --sgh-radius-xl: 38px;
  --sgh-radius-lg: 28px;
  --sgh-radius-md: 18px;
  --sgh-max: 1250px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sgh-ink);
  background: var(--sgh-cream);
}

body.sgh-menu-open {
  overflow: hidden;
}

.sgh-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--sgh-cream);
}

.sgh-page a {
  color: inherit;
  text-decoration: none;
}

.sgh-page button {
  font: inherit;
}

.sgh-shell {
  width: min(var(--sgh-max), calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Header */
.sgh-header {
  position: fixed;
  inset: 20px 0 auto 0;
  z-index: 100;
  pointer-events: none;
}

.sgh-nav {
  pointer-events: auto;
  width: min(1250px, calc(100% - 46px));
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(32, 26, 77, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 18px 54px rgba(30, 24, 86, .08);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.sgh-header.is-scrolled .sgh-nav {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(32, 26, 77, .12);
  box-shadow: 0 22px 70px rgba(30, 24, 86, .13);
  transform: translateY(-4px);
}

.sgh-brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.sgh-brand img,
.sgh-mobile-top img {
  display: block;
  width: 126px;
  height: auto;
}

.sgh-navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.sgh-navlinks a {
  position: relative;
  padding: 11px 13px;
  font-size: 13px;
  font-weight: 750;
  color: rgba(11, 9, 40, .66);
  transition: color .22s ease;
}

.sgh-navlinks a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sgh-purple), var(--sgh-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.sgh-navlinks a:hover {
  color: var(--sgh-ink);
}

.sgh-navlinks a:hover::after {
  transform: scaleX(1);
}

.sgh-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sgh-login {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(11, 9, 40, .64);
}

.sgh-btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, .18);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, background .28s ease;
}

.sgh-btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -70%;
  width: 50%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
  transition: left .65s cubic-bezier(.22, 1, .36, 1);
}

.sgh-btn:hover::after {
  left: 130%;
}

.sgh-btn-primary {
  color: #fff;
  background: linear-gradient(115deg, var(--sgh-purple), #8b5cf6 46%, var(--sgh-pink));
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(124, 58, 237, .28);
}

.sgh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(124, 58, 237, .35);
}

.sgh-btn-secondary {
  color: var(--sgh-ink);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(11, 9, 40, .14);
  box-shadow: 0 16px 38px rgba(67, 56, 130, .09);
}

.sgh-btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 18px 50px rgba(67, 56, 130, .13);
}

.sgh-actions .sgh-btn {
  min-height: 44px;
  padding: 0 19px;
  font-size: 13px;
}

.sgh-menu-btn,
.sgh-close-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--sgh-ink);
  color: #fff;
  cursor: pointer;
}

.sgh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 7, 24, .45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.sgh-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sgh-mobile-card {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  display: grid;
  gap: 9px;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--sgh-shadow-strong);
  transform: translateY(-18px) scale(.98);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}

.sgh-mobile-menu.is-open .sgh-mobile-card {
  transform: translateY(0) scale(1);
}

.sgh-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sgh-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2edff;
  color: var(--sgh-purple);
}

.sgh-mobile-card a {
  padding: 16px;
  border-radius: 18px;
  background: #faf8ff;
  font-weight: 850;
  color: rgba(11, 9, 40, .82);
}

.sgh-mobile-card .sgh-mobile-cta {
  color: #fff;
  text-align: center;
  background: linear-gradient(115deg, var(--sgh-purple), var(--sgh-pink));
}

/* Hero */
.sgh-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 34%, rgba(124, 58, 237, .12), transparent 28vw),
    radial-gradient(circle at 82% 26%, rgba(56, 189, 248, .14), transparent 30vw),
    linear-gradient(180deg, #fffdf8 0%, #fbf8ff 48%, #eaf7ff 100%);
}

.sgh-ambient {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .72;
}

.sgh-ambient-left {
  width: 38vw;
  height: 38vw;
  left: -16vw;
  top: 22vh;
  background: rgba(124, 58, 237, .20);
}

.sgh-ambient-right {
  width: 38vw;
  height: 38vw;
  right: -14vw;
  top: 18vh;
  background: rgba(56, 189, 248, .22);
}

.sgh-dot-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .52;
  background-image: radial-gradient(circle, rgba(124, 58, 237, .23) 1.4px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at 82% 33%, #000 0 30%, transparent 64%);
  -webkit-mask-image: radial-gradient(ellipse at 82% 33%, #000 0 30%, transparent 64%);
  animation: sgh-dot-drift 20s linear infinite;
}

@keyframes sgh-dot-drift {
  from { background-position: 0 0; }
  to { background-position: 96px -96px; }
}

.sgh-cloud {
  position: absolute;
  z-index: 2;
  width: 295px;
  height: 82px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  filter: blur(8px);
  opacity: .82;
  pointer-events: none;
}

.sgh-cloud::before,
.sgh-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.sgh-cloud::before {
  width: 104px;
  height: 104px;
  left: 46px;
  top: -52px;
}

.sgh-cloud::after {
  width: 146px;
  height: 146px;
  right: 36px;
  top: -78px;
}

.sgh-cloud-left {
  left: -42px;
  top: 41%;
  animation: sgh-cloud-left 18s ease-in-out infinite alternate;
}

.sgh-cloud-right {
  right: -36px;
  top: 37%;
  transform: scale(.92);
  animation: sgh-cloud-right 20s ease-in-out infinite alternate;
}

@keyframes sgh-cloud-left {
  to { transform: translateX(54px) translateY(-8px); }
}

@keyframes sgh-cloud-right {
  to { transform: translateX(-54px) translateY(10px) scale(.92); }
}

.sgh-spline-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}

.sgh-copy {
  position: relative;
  z-index: 6;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sgh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, .16);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 16px 42px rgba(67, 56, 130, .10);
  color: var(--sgh-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sgh-copy h1 {
  margin: 26px auto 0;
  max-width: 1060px;
  font-size: 70px;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: var(--sgh-ink);
}

.sgh-copy h1 span {
  display: block;
}

.sgh-gradient-text {
  background: linear-gradient(100deg, var(--sgh-purple) 0%, #8b5cf6 44%, var(--sgh-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-copy p {
  max-width: 840px;
  margin: 22px auto 0;
  color: var(--sgh-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.72;
}

.sgh-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sgh-proof-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sgh-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(124, 58, 237, .11);
  box-shadow: 0 12px 34px rgba(67, 56, 130, .07);
  color: rgba(11, 9, 40, .66);
  font-size: 12px;
  font-weight: 800;
}

.sgh-proof-row i {
  color: var(--sgh-green);
}

.sgh-visual-wrap {
  position: relative;
  z-index: 5;
  min-height: 580px;
  margin-top: 58px;
}

.sgh-dashboard-frame {
  position: relative;
  width: min(1030px, 82vw);
  height: 520px;
  margin: 0 auto;
  padding: 20px;
  display:contents;
  /* border-radius: 40px 40px 0 0;
  border: 1px solid rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .42);
  box-shadow: var(--sgh-shadow-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); */
  transform-style: preserve-3d;
  transition: transform .16s ease-out;
}



.sgh-window-bar {
  height: 68px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(37, 31, 93, .08);
}









.sgh-window-icons {
  display: flex;
  gap: 14px;
  color: rgba(11, 9, 40, .38);
}







.sgh-mini-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
}

.sgh-mini-logo i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--sgh-purple), var(--sgh-pink));
}









.sgh-growth-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #12805c;
  background: #ddfff2;
  font-size: 12px;
  font-weight: 900;
}





@keyframes sgh-bar-grow {
  from { transform: scaleY(.18); opacity: .5; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes sgh-bar-pulse {
  to { filter: saturate(1.18) brightness(1.04); }
}










.sgh-ai-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.sgh-ai-top i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: #f0abfc;
}


.sgh-dashboard-frame {
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--move-x, 0px), var(--move-y, 0px), 0);
}


.sgh-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sgh-purple), var(--sgh-blue));
}

.sgh-avatar-pink {
  background: linear-gradient(135deg, var(--sgh-pink), var(--sgh-purple));
}



 

.sgh-floating-chip {
  position: absolute;
  z-index: 7;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(37, 31, 93, .12);
  box-shadow: 0 18px 48px rgba(67, 56, 130, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 850;
  color: rgba(11, 9, 40, .72);
  animation: sgh-floating 5.4s ease-in-out infinite;
}

.sgh-chip-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(124, 58, 237, .08);
}

.sgh-purple { background: var(--sgh-purple); }
.sgh-blue { background: var(--sgh-blue); }
.sgh-green { background: var(--sgh-green); }
.sgh-gold { background: var(--sgh-gold); }

.sgh-chip-left-top {
  left: 9%;
  top: 54px;
}

.sgh-chip-left-mid {
  left: 1.4%;
  top: 315px;
  animation-delay: .8s;
}

.sgh-chip-right-top {
  right: 9%;
  top: 70px;
  animation-delay: 1.2s;
}

.sgh-chip-right-mid {
  right: 1.8%;
  top: 328px;
  animation-delay: 1.7s;
}

@keyframes sgh-floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.sgh-trust-strip {
  position: relative;
  z-index: 6;
  max-width: 950px;
  margin: 28px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  align-items: center;
  gap: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(37, 31, 93, .10);
  box-shadow: 0 22px 68px rgba(67, 56, 130, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sgh-trust-strip p {
  margin: 0;
  color: rgba(11, 9, 40, .72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.sgh-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.sgh-trust-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37, 31, 93, .08);
  color: rgba(11, 9, 40, .54);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .78s ease, transform .78s cubic-bezier(.22, 1, .36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .sgh-navlinks,
  .sgh-actions {
    display: none;
  }

  .sgh-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sgh-brand {
    min-width: auto;
  }

  .sgh-dashboard-frame {
    width: min(980px, 92vw);
  }

  
}

@media (max-width: 900px) {
  .sgh-hero {
    padding-top: 132px;
  }

  .sgh-copy h1 {
    font-size: clamp(46px, 10vw, 78px);
  }

  .sgh-visual-wrap {
    min-height: 500px;
    margin-top: 46px;
  }

  .sgh-dashboard-frame {
    height: 470px;
    width: min(780px, 96vw);
    padding: 14px;
  }

 


 
  .sgh-floating-chip {
    font-size: 12px;
  }

  .sgh-chip-left-top { left: 3%; top: 42px; }
  .sgh-chip-left-mid { left: -2%; top: 285px; }
  .sgh-chip-right-top { right: 3%; top: 48px; }
  .sgh-chip-right-mid { right: -2%; top: 300px; }

  .sgh-trust-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sgh-trust-list {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .sgh-shell {
    width: min(100% - 28px, var(--sgh-max));
  }

  .sgh-header {
    inset-top: 12px;
  }

  .sgh-nav {
    width: min(100% - 24px, 1250px);
    min-height: 60px;
    padding: 8px 10px 8px 16px;
  }

  .sgh-brand img,
  .sgh-mobile-top img {
    width: 116px;
  }

  .sgh-hero {
    min-height: auto;
    padding: 112px 0 48px;
  }

  .sgh-badge {
    font-size: 10px;
    letter-spacing: .06em;
  }

  .sgh-copy h1 {
    margin-top: 20px;
    font-size: clamp(42px, 12.5vw, 62px);
    letter-spacing: -.065em;
  }

  .sgh-copy p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .sgh-cta-row {
    gap: 10px;
  }

  .sgh-btn {
    width: 100%;
    max-width: 310px;
  }

  .sgh-proof-row span {
    font-size: 11px;
  }

  .sgh-cloud {
    opacity: .52;
  }

  .sgh-visual-wrap {
    min-height: 555px;
    margin-top: 38px;
  }

  .sgh-dashboard-frame {
    width: 100%;
    height: 520px;
    border-radius: 30px 30px 0 0;
    padding: 10px;
  }

 





  .sgh-window-icons {
    display: none;
  }




  .sgh-floating-chip {
    position: relative;
    inset: auto !important;
    animation: none;
    margin: 6px 3px;
    min-height: 34px;
    font-size: 11px;
  }

  .sgh-visual-wrap::before {
    content: "";
    display: block;
  }

  .sgh-visual-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }

  .sgh-dashboard-frame {
    order: 9;
    margin-top: 14px;
  }

  .sgh-trust-strip {
    margin-top: 20px;
    padding: 16px;
    border-radius: 22px;
  }

  .sgh-trust-list span {
    min-height: 30px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* ================================
   SimplyGiv Hero Logo Trust Strip
================================ */

.sgh-logo-trust {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 40px));
  margin: 54px auto 0;
}

.sgh-logo-trust-inner {
  display: grid;
  grid-template-columns: 255px 1px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 96px;
  padding: 18px 0;
}

.sgh-logo-trust-copy p {
  margin: 0;
  max-width: 220px;
  color: rgba(15, 16, 48, 0.68);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sgh-logo-divider {
  width: 1px;
  height: 74px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(124, 58, 237, 0.28),
    transparent
  );
}

.sgh-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
}

.sgh-logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: sghLogoScroll 24s linear infinite;
  will-change: transform;
}

.sgh-logo-marquee:hover .sgh-logo-track {
  animation-play-state: paused;
}

.sgh-logo-pill {
  flex: 0 0 auto;
  /* min-width: 250px; */
  height: 140px;
  padding: 0 34px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.7); */
  box-shadow:
    0 18px 44px rgba(77, 64, 148, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 16, 38, 0.48);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.sgh-logo-pill:hover {
  transform: translateY(-4px);
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.34);
  box-shadow:
    0 24px 62px rgba(124, 58, 237, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.sgh-logo-pill img {
  /* max-width: 128px;
  max-height: 34px; */
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: grayscale(1); */
  opacity: 1;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.sgh-logo-pill:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes sghLogoScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 900px) {
  .sgh-logo-trust-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .sgh-logo-trust-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .sgh-logo-divider {
    display: none;
  }

  .sgh-logo-pill {
    min-width: 170px;
    height: 62px;
    padding: 0 24px;
    font-size: 12px;
  }
}

/* ================================
   Real SimplyGiv Hero Image Dashboard
================================ */

.sgh-dashboard-image-frame {
  height: auto;
  max-width: 1040px;
  padding: 18px;
  /* border-radius: 42px 42px 0 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.38)),
    rgba(255,255,255,.48);
  box-shadow:
    0 46px 140px rgba(67, 56, 130, .22),
    0 18px 54px rgba(124, 58, 237, .12); */
  overflow: visible;
}

.sgh-dashboard-image-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* border-radius: 30px 30px 0 0;
  border: 1px solid rgba(37, 31, 93, .10);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 45px rgba(67, 56, 130, .08); */
}

.sgh-dashboard-image-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(255,255,255,.72) 100%);
}

.sgh-dashboard-image-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.01);
}

/* Hero scroll / parallax look */
.sgh-hero {
  min-height: 112vh;
}

.sgh-copy {
  will-change: transform, opacity;
}

.sgh-visual-wrap {
  will-change: transform;
}

.sgh-dashboard-frame {
  will-change: transform;
}

/* Better large desktop dashboard position */
@media (min-width: 1100px) {
  .sgh-visual-wrap {
    min-height: 640px;
    margin-top: 62px;
  }

  .sgh-dashboard-image-frame {
    width: min(1080px, 82vw);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .sgh-dashboard-image-frame {
    width: min(820px, 96vw);
    padding: 12px;
    border-radius: 32px 32px 0 0;
  }

  .sgh-dashboard-image-inner {
    border-radius: 24px 24px 0 0;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .sgh-visual-wrap {
    min-height: auto;
  }

  .sgh-dashboard-image-frame {
    order: 9;
    width: 100%;
    height: auto;
    margin-top: 16px;
    padding: 9px;
    border-radius: 26px 26px 0 0;
  }

  .sgh-dashboard-image-inner {
    border-radius: 19px 19px 0 0;
  }

  .sgh-dashboard-image-inner img {
    transform: scale(1.02);
  }
}


/* ================================
   Problem / Storytelling Section
================================ */

.sgh-story-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, 0.09), transparent 30vw),
    radial-gradient(circle at 86% 60%, rgba(236, 72, 153, 0.08), transparent 30vw),
    linear-gradient(180deg, #fffdf8 0%, #fffaf4 48%, #fbf8ff 100%);
}

.sgh-story-bg {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 74%);
  pointer-events: none;
}

.sgh-story-head {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.sgh-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sgh-purple);
  box-shadow: 0 14px 36px rgba(67, 56, 130, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-story-head h2 {
  margin: 22px auto 0;
  max-width: 960px;
  color: var(--sgh-ink);
  font-size: 70px;
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.sgh-story-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sgh-purple), #8b5cf6 44%, var(--sgh-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-story-head p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--sgh-muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}

.sgh-story-flow {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  min-height: 760px;
  margin: clamp(58px, 7vw, 90px) auto 0;
}

.sgh-story-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.sgh-story-path {
  fill: none;
  stroke: url("#sghStoryGradient");
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: 0.72;
}

/* fallback if SVG gradient is not added */
.sgh-story-path {
  stroke: rgba(236, 72, 153, 0.78);
}

.sgh-story-section.is-active .sgh-story-path {
  animation: sghStoryDash 1.6s linear infinite;
}

@keyframes sghStoryDash {
  to {
    stroke-dashoffset: -36;
  }
}

.sgh-story-card,
.sgh-story-final {
  position: absolute;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: flex-start;
  width: min(410px, 42vw);
  min-height: 158px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(37, 31, 93, 0.09);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 76px rgba(67, 56, 130, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transform: translateY(32px) scale(0.96);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.sgh-story-section.is-active .sgh-story-card,
.sgh-story-section.is-active .sgh-story-final {
  opacity: 1;
  /* transform: translateY(0) scale(1); */
}

.sgh-story-section.is-active .sgh-card-1 { transition-delay: 0.05s; }
.sgh-story-section.is-active .sgh-card-2 { transition-delay: 0.22s; }
.sgh-story-section.is-active .sgh-card-3 { transition-delay: 0.39s; }
.sgh-story-section.is-active .sgh-card-4 { transition-delay: 0.56s; }
/* .sgh-story-section.is-active .sgh-story-final { transition-delay: 0.78s; } */

.sgh-story-card:hover,
.sgh-story-final:hover {
  transform: translateY(-1px) scale(1);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow:
    0 32px 90px rgba(124, 58, 237, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.sgh-story-icon,
.sgh-story-final-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--sgh-purple);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.96), transparent 38%),
    linear-gradient(135deg, #f2edff, #fff4fb);
  box-shadow:
    0 18px 44px rgba(124, 58, 237, 0.15),
    0 0 0 8px rgba(255, 255, 255, 0.58);
  font-size: 21px;
}

.sgh-story-card span,
.sgh-story-final span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--sgh-purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sgh-story-card h3,
.sgh-story-final h3 {
  margin: 0 0 8px;
  color: var(--sgh-ink);
  font-size: 23px;
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.sgh-story-card p,
.sgh-story-final p {
  margin: 0;
  color: var(--sgh-muted);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 500;
}

.sgh-card-1 {
  left: 0;
  top: 22px;
}

.sgh-card-2 {
  right: 0;
  top: 118px;
}

.sgh-card-3 {
  left: 0;
  top: 300px;
}

.sgh-card-4 {
  right: 0;
  top: 450px;
}

.sgh-story-final {
  left: 73px;
  bottom: 0;
  width: min(500px, 72vw);
  grid-template-columns: 160px 1fr;
  /* transform: translateX(-50%) translateY(34px) scale(0.96); */
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(245, 240, 255, .88));
}

/* .sgh-story-section.is-active .sgh-story-final {
  transform: translateX(-50%) translateY(0) scale(1);
} */

.sgh-story-final-icon {
  width: 64px;
  height: 64px;
  color: #fff;
  background: linear-gradient(135deg, var(--sgh-purple),  #e6e6e6);
}

.sgh-story-final h3 {
  font-size: 28px;
}

/* Mobile */
@media (max-width: 900px) {
  .sgh-story-flow {
    min-height: auto;
    display: grid;
    gap: 18px;
    margin-top: 46px;
  }

  .sgh-story-lines {
    display: none;
  }

  .sgh-story-card,
  .sgh-story-final {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
  }

  .sgh-card-1,
  .sgh-card-2,
  .sgh-card-3,
  .sgh-card-4 {
    left: auto;
    right: auto;
    top: auto;
  }

  .sgh-story-final {
    left: auto;
    bottom: auto;
    transform: translateY(32px) scale(0.96);
  }

  .sgh-story-section.is-active .sgh-story-final {
    transform: translateY(0) scale(1);
  }

  .sgh-story-card::after {
    content: "";
    position: absolute;
    left: 52px;
    bottom: -20px;
    width: 2px;
    height: 20px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(236, 72, 153, 0.8) 0 6px,
      transparent 6px 12px
    );
  }

  .sgh-card-4::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .sgh-story-section {
    padding: 72px 0;
  }

  .sgh-story-head h2 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -0.065em;
  }

  .sgh-story-card,
  .sgh-story-final {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
  }

  .sgh-story-icon,
  .sgh-story-final-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
    font-size: 18px;
  }

  .sgh-story-card h3 {
    font-size: 20px;
  }

  .sgh-story-final h3 {
    font-size: 22px;
  }

  .sgh-story-card p,
  .sgh-story-final p {
    font-size: 13px;
  }
}


/* ================================
   Before / After Transformation
   Fixed Visible Version
================================ */

.sgh-ba-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(236, 72, 153, 0.08), transparent 30vw),
    radial-gradient(circle at 88% 42%, rgba(56, 189, 248, 0.12), transparent 32vw),
    linear-gradient(180deg, #fbf8ff 0%, #ffffff 48%, #f5fbff 100%);
}

.sgh-ba-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 76%);
}

.sgh-ba-head,
.sgh-ba-compare,
.sgh-ba-bottom {
  position: relative;
  z-index: 3;
  opacity: 1;
  transform: none;
}

.sgh-ba-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sgh-ba-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--sgh-purple);
  box-shadow: 0 14px 36px rgba(67, 56, 130, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-ba-head h2 {
  margin: 22px auto 0;
  max-width: 1040px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--sgh-ink);
}

.sgh-ba-head h2 span {
  display: inline-block;
  background: linear-gradient(100deg, var(--sgh-purple), #8b5cf6 44%, var(--sgh-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-ba-head p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--sgh-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.72;
}

/* Compare wrapper */
.sgh-ba-compare {
  max-width: 1140px;
  margin: clamp(54px, 7vw, 86px) auto 0;
}

.sgh-ba-frame {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(37, 31, 93, 0.11);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 38px 120px rgba(67, 56, 130, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sgh-ba-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(236, 72, 153, 0.08), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(56, 189, 248, 0.13), transparent 30%);
  pointer-events: none;
  z-index: 2;
}

.sgh-ba-panel {
  position: absolute;
  inset: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.sgh-ba-before {
  background:
    radial-gradient(circle at 16% 85%, rgba(236, 72, 153, 0.12), transparent 26%),
    linear-gradient(135deg, #fff7f7 0%, #fffefe 100%);
  color: var(--sgh-ink);
}

.sgh-ba-after {
  background:
    radial-gradient(circle at 85% 78%, rgba(124, 58, 237, 0.12), transparent 28%),
    linear-gradient(135deg, #effaff 0%, #ffffff 54%, #f6f1ff 100%);
  color: var(--sgh-ink);
  clip-path: inset(0 0 0 var(--sgh-ba-pos, 50%));
}

.sgh-ba-content {
  position: relative;
  z-index: 4;
  width: 50%;
  padding: clamp(34px, 5vw, 66px);
}

.sgh-ba-after .sgh-ba-content {
  margin-left: auto;
}

.sgh-ba-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 31, 93, 0.09);
  color: rgba(11, 9, 40, 0.7);
  box-shadow: 0 12px 32px rgba(67, 56, 130, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-ba-before .sgh-ba-label i {
  color: var(--sgh-pink);
}

.sgh-ba-after .sgh-ba-label i {
  color: var(--sgh-green);
}

.sgh-ba-content h3 {
  max-width: 430px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.sgh-ba-content ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sgh-ba-content li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(11, 9, 40, 0.68);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 650;
}

.sgh-ba-before li i {
  color: var(--sgh-pink) !important;
  margin-top: 3px;
}

.sgh-ba-after li i {
  color: var(--sgh-green) !important;
  margin-top: 3px;
}

.sgh-ba-mini-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.sgh-ba-mini-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(236, 72, 153, 0.14);
  color: rgba(11, 9, 40, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.sgh-ba-insight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  margin-top: 28px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.13);
  box-shadow: 0 18px 52px rgba(67, 56, 130, 0.11);
}

.sgh-ba-insight-card i {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
}

.sgh-ba-insight-card strong,
.sgh-ba-insight-card span {
  display: block;
}

.sgh-ba-insight-card strong {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 900;
}

.sgh-ba-insight-card span {
  color: var(--sgh-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

/* Slider divider */
.sgh-ba-divider {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  left: var(--sgh-ba-pos, 50%);
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(124, 58, 237, 0.42),
    rgba(236, 72, 153, 0.52),
    transparent
  );
  pointer-events: none;
}

.sgh-ba-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 18px 56px rgba(67, 56, 130, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 31, 93, 0.12);
  color: var(--sgh-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
}

.sgh-ba-range {
  position: absolute;
  z-index: 10;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

/* Bottom cards */
.sgh-ba-bottom {
  max-width: 1140px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sgh-ba-bottom article {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 31, 93, 0.09);
  box-shadow: 0 20px 58px rgba(67, 56, 130, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.sgh-ba-bottom article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(124, 58, 237, 0.14);
}

.sgh-ba-bottom i {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--sgh-purple);
  background: #f1eaff;
}

.sgh-ba-bottom strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sgh-ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sgh-ba-bottom span {
  color: var(--sgh-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

/* Optional animation only after JS works */
.sgh-ba-section.sgh-animate-ready [data-ba-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgh-ba-section.sgh-animate-ready [data-ba-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .sgh-ba-frame {
    min-height: auto;
    display: grid;
    gap: 18px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .sgh-ba-panel {
    position: relative;
    min-height: auto;
    clip-path: none;
    border-radius: 30px;
    border: 1px solid rgba(37, 31, 93, 0.1);
    box-shadow: 0 24px 76px rgba(67, 56, 130, 0.12);
  }

  .sgh-ba-content,
  .sgh-ba-after .sgh-ba-content {
    width: 100%;
    margin: 0;
    padding: 30px;
  }

  .sgh-ba-divider,
  .sgh-ba-range {
    display: none;
  }

  .sgh-ba-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .sgh-ba-section {
    padding: 72px 0;
  }

  .sgh-ba-head h2 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .sgh-ba-head p {
    font-size: 14.5px;
  }

  .sgh-ba-content {
    padding: 24px;
  }

  .sgh-ba-content h3 {
    font-size: 34px;
  }

  .sgh-ba-content li {
    font-size: 14px;
  }
}

.sgh-ba-frame {
  cursor: ew-resize;
  touch-action: none;
}

.sgh-ba-frame.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.sgh-ba-range {
  pointer-events: none;
}


/* ==========================================
   PREMIUM PLATFORM PILLARS V2
========================================== */

.sgh-pillars-v2 {
  position: relative;
  display:none;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(139, 92, 246, 0.10), transparent 28vw),
    radial-gradient(circle at 88% 76%, rgba(59, 130, 246, 0.10), transparent 32vw),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #fbf8ff 100%);
}

.sgh-pillars-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(113, 95, 182, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 95, 182, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0 52%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0 52%, transparent 82%);
}

.sgh-pillars-v2-head {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sgh-pillars-v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(124, 58, 237, 0.16);
  color: var(--sgh-purple);
  box-shadow: 0 16px 40px rgba(65, 47, 135, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sgh-pillars-v2-head h2 {
  margin: 22px auto 0;
  max-width: 1060px;
  color: var(--sgh-ink);
  font-size: clamp(42px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
}

.sgh-pillars-v2-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sgh-purple), #8b5cf6 44%, var(--sgh-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-pillars-v2-head p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--sgh-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.sgh-pillars-v2-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: clamp(54px, 6vw, 82px) auto 0;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
}

.sgh-pillar-v2 {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1px solid rgba(26, 16, 76, 0.08);
  box-shadow:
    0 26px 80px rgba(51, 37, 110, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
}

.sgh-pillar-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  background:
    radial-gradient(circle at 16% 16%, rgba(124,58,237,.10), transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(236,72,153,.08), transparent 30%);
}

.sgh-pillar-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,.18);
  box-shadow:
    0 34px 110px rgba(76, 54, 153, 0.14),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.sgh-pillar-v2:hover::before {
  opacity: 1;
}

.sgh-pillar-v2-feature {
  min-height: 520px;
}

.sgh-pillar-v2-top,
.sgh-pillar-v2-copy,
.sgh-pillar-v2-visual {
  position: relative;
  z-index: 2;
}

.sgh-pillar-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.sgh-pillar-v2-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sgh-purple);
  background:
    linear-gradient(135deg, #f5f0ff, #fff5fb);
  box-shadow:
    0 18px 46px rgba(124,58,237,.12),
    0 0 0 8px rgba(255,255,255,.58);
  font-size: 20px;
}

.sgh-pillar-v2-no {
  color: rgba(124,58,237,.55);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
}

.sgh-pillar-v2-copy h3 {
  margin: 0 0 10px;
  max-width: 560px;
  color: var(--sgh-ink);
  font-size: clamp(26px, 3vw, 48px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
}

.sgh-pillar-v2-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--sgh-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.sgh-pillar-v2-visual {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  min-height: 190px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(250,248,255,.92), rgba(244,241,255,.74));
  border: 1px solid rgba(40, 25, 91, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
  overflow: hidden;
}

/* card sizes */
.sgh-pillar-v2-giving { min-height: 540px; }
.sgh-pillar-v2-donor { min-height: 400px; }
.sgh-pillar-v2-engage { min-height: 400px; }
.sgh-pillar-v2-reporting { min-height: 540px; }

/* GIVING */
.sgh-give-ui-card {
  position: absolute;
  left: 26px;
  top: 28px;
  width: 260px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(43, 25, 100, .07);
  box-shadow: 0 24px 56px rgba(55, 41, 120, 0.12);
}

.sgh-give-ui-head {
  width: 84px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sgh-purple), var(--sgh-pink));
  margin-bottom: 16px;
}

.sgh-give-ui-line {
  height: 10px;
  border-radius: 999px;
  background: #ece6ff;
  margin-bottom: 9px;
  width: 78%;
}

.sgh-give-ui-line.is-lg { width: 100%; }
.sgh-give-ui-line.is-sm { width: 58%; }

.sgh-give-ui-amounts {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.sgh-give-ui-amounts span {
  min-width: 56px;
  height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  background: #f3efff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sgh-purple);
  font-size: 12px;
  font-weight: 900;
}

.sgh-give-ui-btn {
  width: 100%;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sgh-purple), var(--sgh-pink));
}

.sgh-pill-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(37,31,93,.08);
  box-shadow: 0 18px 46px rgba(61, 45, 136, 0.10);
  color: var(--sgh-ink);
  font-size: 13px;
  font-weight: 850;
}

.sgh-pill-chip i { color: var(--sgh-purple); }

.sgh-pill-chip.chip-a { top: 28px; right: 26px; }
.sgh-pill-chip.chip-b { right: 48px; bottom: 74px; }
.sgh-pill-chip.chip-c { left: 172px; bottom: 22px; }

/* DONOR */
.sgh-donor-profile {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37,31,93,.08);
  box-shadow: 0 18px 48px rgba(57,43,126,.10);
}

.sgh-donor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sgh-purple), var(--sgh-pink));
  box-shadow: 0 10px 24px rgba(124,58,237,.28);
}

.sgh-donor-profile-meta strong,
.sgh-donor-profile-meta small {
  display: block;
}

.sgh-donor-profile-meta strong {
  color: var(--sgh-ink);
  font-size: 14px;
  font-weight: 900;
}

.sgh-donor-profile-meta small {
  margin-top: 3px;
  color: var(--sgh-muted);
  font-size: 12px;
  font-weight: 700;
}

.sgh-donor-lines {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 34px;
  display: grid;
  gap: 12px;
}

.sgh-donor-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #eae4ff;
}

.sgh-donor-lines span:nth-child(2) { width: 80%; }
.sgh-donor-lines span:nth-child(3) { width: 62%; }

.sgh-donor-mini-tag {
  position: absolute;
  right: 24px;
  bottom: 20px;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(37,31,93,.08);
  color: var(--sgh-ink);
  font-size: 12px;
  font-weight: 800;
}

/* ENGAGE */
.sgh-engage-card {
  position: absolute;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(124,58,237,.10);
  box-shadow: 0 18px 48px rgba(57,43,126,.10);
}

.sgh-engage-card.card-1 {
  left: 22px;
  top: 22px;
  width: 230px;
  padding: 18px;
}

.sgh-engage-card.card-1 span,
.sgh-engage-card.card-1 small {
  display: block;
  color: var(--sgh-muted);
  font-size: 12px;
  font-weight: 800;
}

.sgh-engage-card.card-1 strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--sgh-ink);
  font-size: 18px;
  line-height: 1.08;
  font-weight: 900;
}

.sgh-engage-card.card-2 {
  right: 22px;
  bottom: 22px;
  min-height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.sgh-engage-card.card-2 i { color: var(--sgh-purple); }

.sgh-engage-dot {
  position: absolute;
  right: 118px;
  top: 58px;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(139,92,246,.26), rgba(139,92,246,.02) 68%, transparent 70%);
  filter: blur(2px);
}

/* REPORTING */
.sgh-report-chart {
  position: absolute;
  left: 26px;
  top: 28px;
  width: 280px;
  height: 148px;
  padding: 18px;
  display: flex;
  align-items: end;
  gap: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(37,31,93,.08);
  box-shadow: 0 22px 56px rgba(56,42,124,.12);
}

.sgh-report-chart span {
  flex: 1;
  height: var(--bar-h);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--sgh-pink), var(--sgh-purple));
  animation: sghBarFloat 2.2s ease-in-out infinite alternate;
}

.sgh-report-chart span:nth-child(2) { animation-delay: .15s; }
.sgh-report-chart span:nth-child(3) { animation-delay: .30s; }
.sgh-report-chart span:nth-child(4) { animation-delay: .45s; }
.sgh-report-chart span:nth-child(5) { animation-delay: .60s; }

@keyframes sghBarFloat {
  to {
    transform: translateY(-4px);
    filter: saturate(1.08);
  }
}

.sgh-report-ai-card {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 150px;
  min-height: 78px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 18px 48px rgba(61,45,136,.12);
}

.sgh-report-ai-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sgh-purple), var(--sgh-pink));
  box-shadow: 0 12px 26px rgba(124,58,237,.28);
}

.sgh-report-ai-copy strong,
.sgh-report-ai-copy small {
  display: block;
}

.sgh-report-ai-copy strong {
  color: var(--sgh-ink);
  font-size: 14px;
  font-weight: 900;
}

.sgh-report-ai-copy small {
  margin-top: 3px;
  color: var(--sgh-muted);
  font-size: 12px;
  font-weight: 700;
}

.sgh-report-mini-chip {
  position: absolute;
  right: 26px;
  top: 28px;
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(37,31,93,.08);
  box-shadow: 0 16px 42px rgba(61,45,136,.10);
  font-size: 12px;
  font-weight: 850;
  color: var(--sgh-ink);
}

.sgh-report-mini-chip i { color: var(--sgh-purple); }

/* reveal */
.sgh-pillars-v2-head[data-reveal],
.sgh-pillar-v2[data-pillar-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,1,.36,1);
}

.sgh-pillars-v2-head.is-visible,
.sgh-pillar-v2.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* responsive */
@media (max-width: 1100px) {
  .sgh-pillars-v2-grid {
    grid-template-columns: 1fr;
  }

  .sgh-pillar-v2-feature,
  .sgh-pillar-v2-giving,
  .sgh-pillar-v2-reporting,
  .sgh-pillar-v2-donor,
  .sgh-pillar-v2-engage {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .sgh-pillars-v2 {
    padding: 76px 0;
  }

  .sgh-pillars-v2-head h2 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1;
  }

  .sgh-pillar-v2 {
    min-height: auto !important;
    padding: 22px;
    border-radius: 26px;
  }

  .sgh-pillar-v2-copy h3 {
    font-size: 34px;
  }

  .sgh-pillar-v2-no {
    font-size: 38px;
  }

  .sgh-pillar-v2-visual {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    min-height: 240px;
  }

  .sgh-give-ui-card,
  .sgh-report-chart {
    width: calc(100% - 36px);
    left: 18px;
  }

  .sgh-pill-chip.chip-a {
    right: 18px;
    top: 150px;
  }

  .sgh-pill-chip.chip-b {
    left: 18px;
    right: auto;
    bottom: 70px;
  }

  .sgh-pill-chip.chip-c {
    left: 18px;
    bottom: 18px;
  }

  .sgh-donor-profile {
    left: 18px;
    right: 18px;
  }

  .sgh-donor-lines {
    left: 18px;
    right: 18px;
  }

  .sgh-donor-mini-tag {
    right: 18px;
  }

  .sgh-engage-card.card-1 {
    width: calc(100% - 44px);
  }

  .sgh-engage-card.card-2 {
    left: 22px;
    right: auto;
  }

  .sgh-report-ai-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 74px;
  }

  .sgh-report-mini-chip {
    top: 184px;
    right: 18px;
  }
}

/* ================================
   Giving Channels / Tabs Section
================================ */

.sgh-channels-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(124, 58, 237, 0.09), transparent 30vw),
    radial-gradient(circle at 88% 70%, rgba(56, 189, 248, 0.13), transparent 34vw),
    linear-gradient(180deg, #fbf8ff 0%, #ffffff 50%, #f5fbff 100%);
}

.sgh-channels-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.075) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 78%);
}

.sgh-channels-head {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sgh-channels-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--sgh-purple);
  box-shadow: 0 14px 36px rgba(67, 56, 130, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-channels-head h2 {
  margin: 22px auto 0;
  max-width: 1040px;
  color: var(--sgh-ink);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.sgh-channels-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sgh-purple), #8b5cf6 44%, var(--sgh-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-channels-head p {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--sgh-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.72;
}

.sgh-channels-tabs {
  position: relative;
  z-index: 4;
  max-width: 1160px;
  margin: clamp(44px, 5vw, 64px) auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  scrollbar-width: none;
}

.sgh-channels-tabs::-webkit-scrollbar {
  display: none;
}

.sgh-channel-tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 31, 93, 0.09);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(11, 9, 40, 0.62);
  box-shadow: 0 14px 36px rgba(67, 56, 130, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.sgh-channel-tab i {
  color: var(--sgh-purple);
}

.sgh-channel-tab:hover {
  transform: translateY(-2px);
  color: var(--sgh-ink);
  background: #fff;
  box-shadow: 0 18px 48px rgba(67, 56, 130, 0.1);
}

.sgh-channel-tab.is-active {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(115deg, var(--sgh-purple), #8b5cf6 45%, var(--sgh-pink));
  box-shadow: 0 18px 52px rgba(124, 58, 237, 0.28);
}

.sgh-channel-tab.is-active i {
  color: #fff !important;
}

.sgh-channels-panel {
  position: relative;
  z-index: 4;
  max-width: 1180px;
  min-height: 640px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(37, 31, 93, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  box-shadow:
    0 38px 120px rgba(67, 56, 130, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sgh-channels-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(124, 58, 237, 0.12), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(56, 189, 248, 0.12), transparent 34%);
  pointer-events: none;
}

.sgh-channel-info {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(245, 240, 255, 0.72), rgba(255, 255, 255, 0.44));
  border-right: 1px solid rgba(37, 31, 93, 0.08);
}

.sgh-channel-mini-label {
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 14px 36px rgba(67, 56, 130, 0.08);
  color: var(--sgh-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sgh-channel-info h3 {
  max-width: 520px;
  margin: 0;
  color: var(--sgh-ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.sgh-channel-info p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--sgh-muted);
  font-size: 15.5px;
  line-height: 1.72;
  font-weight: 600;
}

.sgh-channel-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sgh-channel-benefits div {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 31, 93, 0.08);
  box-shadow: 0 14px 36px rgba(67, 56, 130, 0.06);
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(11, 9, 40, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.sgh-channel-benefits i {
  color: var(--sgh-green);
}

.sgh-channel-cta {
  width: fit-content;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--sgh-ink);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(11, 9, 40, 0.18);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.sgh-channel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(11, 9, 40, 0.24);
}

.sgh-channel-visual {
  position: relative;
  z-index: 2;
  min-height: 640px;
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sgh-channel-screen {
  position: relative;
  width: min(710px, 100%);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.62));
  border: 1px solid rgba(37, 31, 93, 0.12);
  box-shadow:
    0 32px 100px rgba(67, 56, 130, 0.16),
    inset 0 1px 0 rgba(255,255,255,.96);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.sgh-channel-screen-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(37, 31, 93, 0.08);
  background: rgba(255,255,255,.74);
}

.sgh-channel-screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e6e0ff;
}

.sgh-channel-screen-top span:nth-child(2) {
  background: #fad7ef;
}

.sgh-channel-screen-top span:nth-child(3) {
  background: #d8f5ff;
}

.sgh-channel-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background:
    radial-gradient(circle at 50% 30%, rgba(124, 58, 237, 0.12), transparent 38%),
    #fff;
}

.sgh-channel-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 390px;
  object-fit: contain;
  object-position: center;
  /* transform: scale(1.05); */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.sgh-channel-floating {
  position: absolute;
  min-height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(37,31,93,.1);
  box-shadow: 0 20px 58px rgba(67,56,130,.15);
  color: var(--sgh-ink);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: sghChannelFloat 5.4s ease-in-out infinite;
}

.sgh-channel-floating i {
  color: var(--sgh-purple);
}

.sgh-float-a {
  left: 28px;
  top: 92px;
}

.sgh-float-b {
  right: 36px;
  top: 128px;
  animation-delay: 0.8s;
}

.sgh-float-c {
  left: 74px;
  bottom: 98px;
  animation-delay: 1.4s;
}

@keyframes sghChannelFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.sgh-channels-panel.is-switching .sgh-channel-screen {
  opacity: 0.55;
  transform: translateY(10px) scale(0.985);
}

.sgh-channels-panel.is-switching .sgh-channel-image-wrap img {
  opacity: 0.4;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1000px) {
  .sgh-channels-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sgh-channel-info {
    border-right: 0;
    border-bottom: 1px solid rgba(37, 31, 93, 0.08);
  }

  .sgh-channel-visual {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .sgh-channels-section {
    padding: 72px 0;
  }

  .sgh-channels-head h2 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .sgh-channels-tabs {
    justify-content: flex-start;
    margin-left: -4px;
    margin-right: -4px;
  }

  .sgh-channel-tab {
    min-height: 42px;
    font-size: 12px;
    padding: 0 13px;
  }

  .sgh-channels-panel {
    border-radius: 28px;
  }

  .sgh-channel-info {
    padding: 26px;
  }

  .sgh-channel-info h3 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .sgh-channel-info p {
    font-size: 14px;
  }

  .sgh-channel-benefits div {
    font-size: 12.5px;
    line-height: 1.35;
    padding: 12px 14px;
  }

  .sgh-channel-visual {
    min-height: 390px;
    padding: 22px;
  }

  .sgh-channel-screen {
    border-radius: 24px;
  }

  .sgh-channel-image-wrap,
  .sgh-channel-image-wrap img {
    min-height: 280px;
  }

  .sgh-channel-floating {
    position: relative;
    inset: auto !important;
    margin: 6px;
    animation: none;
    font-size: 12px;
    min-height: 40px;
  }

  .sgh-channel-visual {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .sgh-channel-screen {
    order: 9;
    width: 100%;
  }
}

/* ================================
   SimplyGiv AI Intelligence Studio
================================ */

.sgh-ai4-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 10vw, 160px) 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(124, 58, 237, 0.36), transparent 30vw),
    radial-gradient(circle at 88% 18%, rgba(236, 72, 153, 0.22), transparent 32vw),
    radial-gradient(circle at 50% 115%, rgba(59, 130, 246, 0.22), transparent 38vw),
    linear-gradient(135deg, #070816 0%, #080a21 45%, #15091e 100%);
  color: #fff;
}

.sgh-ai4-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0 58%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 58%, transparent 88%);
}

.sgh-ai4-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.sgh-ai4-glow-a {
  width: 390px;
  height: 390px;
  left: -110px;
  top: 130px;
  background: rgba(124, 58, 237, 0.26);
}

.sgh-ai4-glow-b {
  width: 430px;
  height: 430px;
  right: -130px;
  bottom: 60px;
  background: rgba(236, 72, 153, 0.18);
}

.sgh-ai4-head {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sgh-ai4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #dacfff;
  box-shadow: 0 16px 44px rgba(0,0,0,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-ai4-head h2 {
  margin: 24px auto 0;
  max-width: 1060px;
  color: #fff;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sgh-ai4-head h2 span {
  display: block;
  background: linear-gradient(100deg, #8b5cf6 0%, #a78bfa 42%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-ai4-head p {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
  font-weight: 600;
}

/* Studio layout */
.sgh-ai4-studio {
  position: relative;
  z-index: 3;
  max-width: 1220px;
  margin: clamp(54px, 6vw, 82px) auto 0;
  display: grid;
  grid-template-columns: 330px 1fr 330px;
  gap: 22px;
  align-items: stretch;
}

/* Left rail */
.sgh-ai4-capability-rail {
  display: grid;
  gap: 12px;
}

.sgh-ai4-capability {
  position: relative;
  width: 100%;
  min-height: 92px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  display: grid;
  grid-template-columns: auto 42px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.sgh-ai4-capability::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(124,58,237,0.28), transparent 40%),
    linear-gradient(120deg, rgba(124,58,237,0.24), rgba(236,72,153,0.12));
  transition: opacity 0.32s ease;
}

.sgh-ai4-capability:hover,
.sgh-ai4-capability.is-active {
  transform: translateX(8px);
  border-color: rgba(236,72,153,0.34);
  box-shadow: 0 20px 56px rgba(124,58,237,0.18);
}

.sgh-ai4-capability:hover::before,
.sgh-ai4-capability.is-active::before {
  opacity: 1;
}

.sgh-ai4-capability > * {
  position: relative;
  z-index: 2;
}

.sgh-ai4-capability-no {
  color: rgba(255,255,255,0.34);
  font-size: 12px;
  font-weight: 950;
}

.sgh-ai4-capability > i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(255,255,255,0.10);
  color: #c4b5fd !important;
  display: grid !important;
  place-items: center;
}

.sgh-ai4-capability strong,
.sgh-ai4-capability small {
  display: block;
}

.sgh-ai4-capability strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.sgh-ai4-capability small {
  margin-top: 5px;
  color: rgba(255,255,255,0.58);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 700;
}

/* Center core */
.sgh-ai4-core-area {
  position: relative;
  min-height: 660px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 50% 38%, rgba(124,58,237,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
  box-shadow:
    0 36px 120px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.sgh-ai4-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  border: 1px dashed rgba(167,139,250,0.22);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sgh-ai4-orbit-one {
  width: 430px;
  height: 430px;
  animation: sghAi4Orbit 24s linear infinite;
}

.sgh-ai4-orbit-two {
  width: 560px;
  height: 560px;
  opacity: 0.55;
  animation: sghAi4Orbit 34s linear infinite reverse;
}

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

.sgh-ai4-core-card {
  position: absolute;
  inset: 26px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 25% 12%, rgba(255,255,255,0.15), transparent 28%),
    linear-gradient(145deg, rgba(12,16,42,0.86), rgba(25,17,51,0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.sgh-ai4-core-top {
  height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sgh-ai4-core-top div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 900;
}

.sgh-ai4-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7bf1b3;
  box-shadow: 0 0 0 8px rgba(123,241,179,0.12);
}

.sgh-ai4-core-top small {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 850;
}

.sgh-ai4-core-body {
  position: relative;
  min-height: 560px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  height: 100%; 
}

.sgh-ai4-core-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 24px 70px rgba(124,58,237,0.38);
}

.sgh-ai4-core-body > span {
  margin-top: 28px;
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sgh-ai4-core-body h3 {
  max-width: 520px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.sgh-ai4-core-body p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 650;
}

.sgh-ai4-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sgh-ai4-metrics article {
  min-height: 92px;
  padding: 15px;
  border-radius: 19px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.sgh-ai4-metrics small {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sgh-ai4-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.sgh-ai4-chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
}

.sgh-ai4-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 9px 9px;
  background: linear-gradient(180deg, #60a5fa 0%, #8b5cf6 46%, #ec4899 100%);
  box-shadow: 0 14px 34px rgba(124,58,237,0.32);
  animation: sghAi4Bars 1.8s ease-in-out infinite alternate;
}

.sgh-ai4-chart i:nth-child(2) { animation-delay: .1s; }
.sgh-ai4-chart i:nth-child(3) { animation-delay: .2s; }
.sgh-ai4-chart i:nth-child(4) { animation-delay: .3s; }
.sgh-ai4-chart i:nth-child(5) { animation-delay: .4s; }
.sgh-ai4-chart i:nth-child(6) { animation-delay: .5s; }
.sgh-ai4-chart i:nth-child(7) { animation-delay: .6s; }

@keyframes sghAi4Bars {
  to {
    transform: translateY(-6px);
    filter: brightness(1.12);
  }
}

/* Right answer */
.sgh-ai4-answer-panel {
  display: grid;
  gap: 16px;
}

.sgh-ai4-ask-box,
.sgh-ai4-answer-card,
.sgh-ai4-mini-feed {
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 26px 90px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sgh-ai4-ask-box {
  padding: 18px;
}

.sgh-ai4-ask-box label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-ai4-ask-box div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.sgh-ai4-ask-box span {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(5,8,28,0.34);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.84);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
}

.sgh-ai4-ask-box button {
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(115deg, #7c3aed, #8b5cf6 42%, #ec4899);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.sgh-ai4-answer-card {
  padding: 24px;
}

.sgh-ai4-answer-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sgh-ai4-answer-head i {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid !important;
  place-items: center;
  color: #fff !important;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  box-shadow: 0 18px 46px rgba(124,58,237,0.28);
}

.sgh-ai4-answer-head span,
.sgh-ai4-answer-head strong {
  display: block;
}

.sgh-ai4-answer-head span {
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sgh-ai4-answer-head strong {
  margin-top: 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.sgh-ai4-answer-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 650;
}

.sgh-ai4-next-step {
  margin-top: 18px;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(123,241,179,0.08);
  border: 1px solid rgba(123,241,179,0.16);
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 760;
}

.sgh-ai4-next-step i {
  margin-top: 2px;
  color: #7bf1b3;
}

.sgh-ai4-mini-feed {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.sgh-ai4-mini-feed article {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.76);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
}

.sgh-ai4-mini-feed i {
  color: #7bf1b3;
}

/* Animations */
[data-ai4-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgh-ai4-section.is-visible [data-ai4-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sgh-ai4-section.is-visible [data-ai4-reveal]:nth-child(2) {
  transition-delay: 0.16s;
}

.sgh-ai4-core-card.is-refreshing,
.sgh-ai4-answer-card.is-refreshing {
  animation: sghAi4Refresh 0.48s ease both;
}

@keyframes sghAi4Refresh {
  0% {
    opacity: 0.78;
    transform: scale(0.985);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .sgh-ai4-studio {
    grid-template-columns: 1fr;
  }

  .sgh-ai4-capability-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .sgh-ai4-core-area {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .sgh-ai4-section {
    padding: 78px 0;
  }

  .sgh-ai4-head h2 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .sgh-ai4-capability-rail {
    grid-template-columns: 1fr;
  }

  .sgh-ai4-capability {
    min-height: 82px;
  }

  .sgh-ai4-core-area {
    min-height: auto;
  }

  .sgh-ai4-core-card {
    position: relative;
    inset: auto;
  }

  .sgh-ai4-core-body {
    min-height: auto;
    padding: 24px;
  }

  .sgh-ai4-metrics {
    grid-template-columns: 1fr;
  }

  .sgh-ai4-chart {
    height: 120px;
    margin-top: 28px;
  }

  .sgh-ai4-ask-box div {
    grid-template-columns: 1fr;
  }

  .sgh-ai4-ask-box button {
    width: 100%;
  }
}


/* ================================
   Product Bento V4 - Clean Light Premium
================================ */

.sgh-lite-platform {
  --ink: #080720;
  --muted: #687089;
  --purple: #7c3aed;
  --pink: #ec4899;
  --blue: #60a5fa;
  --green: #10b981;

  position: relative;
  overflow: hidden;
  padding: clamp(70px, 7vw, 112px) 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 58, 237, 0.10), transparent 32vw),
    radial-gradient(circle at 88% 12%, rgba(96, 165, 250, 0.15), transparent 32vw),
    radial-gradient(circle at 72% 92%, rgba(236, 72, 153, 0.08), transparent 28vw),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgh-lite-platform * {
  box-sizing: border-box;
}

.sgh-lite-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0 56%, transparent 86%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 56%, transparent 86%);
}

.sgh-lite-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.sgh-lite-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.sgh-lite-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 42px rgba(47, 39, 102, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgh-lite-head h2 {
  margin: 18px auto 0;
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sgh-lite-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--purple), #8b5cf6 38%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgh-lite-head p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

/* Grid */
.sgh-lite-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.sgh-lite-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(8, 7, 32, 0.08);
  background: rgba(255,255,255,0.88);
  box-shadow:
    0 24px 70px rgba(47, 39, 102, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.92);
  opacity: 0;
  transform: translateY(24px) scale(0.985) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: transform;
}

.sgh-lite-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.sgh-lite-card:hover {
  transform: translateY(-7px) scale(1) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow:
    0 34px 90px rgba(47, 39, 102, 0.15),
    inset 0 1px 0 rgba(255,255,255,1);
}

.sgh-lite-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.55),
    transparent 44%
  );
  transition: opacity 0.26s ease;
}

.sgh-lite-card:hover::after {
  opacity: 1;
}

.sgh-lite-card > * {
  position: relative;
  z-index: 2;
}

/* Balanced card sizes */
.sgh-lite-card-main {
  grid-column: span 7;
  min-height: 420px;
  background:
    radial-gradient(circle at 82% 20%, rgba(236,72,153,0.12), transparent 32%),
    linear-gradient(135deg, #f3edff 0%, #ffffff 100%);
}

.sgh-lite-card-ai {
  grid-column: span 5;
  min-height: 420px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(236,72,153,0.36), transparent 34%),
    linear-gradient(145deg, #0a0927 0%, #1a1450 100%);
  border-color: rgba(255,255,255,0.10);
}

.sgh-lite-card-soft {
  grid-column: span 4;
  background:
    radial-gradient(circle at 80% 18%, rgba(236,72,153,0.13), transparent 32%),
    linear-gradient(135deg, #ffe8f4 0%, #fff8fc 100%);
}

.sgh-lite-card-mint {
  grid-column: span 4;
  background:
    radial-gradient(circle at 82% 18%, rgba(16,185,129,0.12), transparent 32%),
    linear-gradient(135deg, #e4ffdf 0%, #f7fff5 100%);
}

.sgh-lite-card-wide {
  grid-column: span 4;
  background:
    radial-gradient(circle at 82% 18%, rgba(245,158,11,0.12), transparent 32%),
    linear-gradient(135deg, #fff1dc 0%, #fffaf2 100%);
}

/* Titles */
.sgh-lite-card-title {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.sgh-lite-card-title > span {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.sgh-lite-card-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.sgh-lite-card-title p {
  margin: 8px 0 0;
  color: rgba(8,7,32,0.62);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 680;
}

.sgh-lite-card-ai .sgh-lite-card-title h3,
.sgh-lite-card-ai .sgh-lite-card-title p {
  color: #fff;
}

.sgh-lite-card-ai .sgh-lite-card-title p {
  color: rgba(255,255,255,0.72);
}

.sgh-lite-card-ai .sgh-lite-card-title > span {
  color: #d8b4fe;
  background: rgba(255,255,255,0.11);
}

/* Giving UI */
.sgh-lite-giving-ui {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
}

.sgh-lite-giving-menu {
  display: grid;
  gap: 10px;
}

.sgh-lite-giving-menu button {
  min-height: 54px;
  padding: 0 14px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(8,7,32,0.72);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(64,45,120,0.07);
}

.sgh-lite-giving-menu button i {
  color: var(--purple);
}

.sgh-lite-giving-menu button.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.sgh-lite-giving-menu button.is-active i {
  color: #fff !important;
}

.sgh-lite-donation-box {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 18px 46px rgba(64,45,120,0.10);
}

.sgh-lite-donation-box small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.sgh-lite-donation-box strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgh-lite-amounts {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sgh-lite-amounts b {
  min-height: 32px;
  border-radius: 12px;
  background: #f3ecff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 950;
}

.sgh-lite-amounts b.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.sgh-lite-donation-box em {
  min-height: 42px;
  margin-top: 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

/* AI UI */
.sgh-lite-ai-ui {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.sgh-lite-ai-search,
.sgh-lite-ai-result,
.sgh-lite-ai-note {
  border-radius: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
}

.sgh-lite-ai-search {
  min-height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.sgh-lite-ai-search i {
  color: #d8b4fe;
}

.sgh-lite-ai-result {
  padding: 16px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  align-items: end;
}

.sgh-lite-ai-result small,
.sgh-lite-ai-result span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 10.5px;
  font-weight: 850;
}

.sgh-lite-ai-result strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.sgh-lite-ai-result span {
  margin-top: 4px;
  color: #7bf1b3;
}

.sgh-lite-chart {
  min-height: 126px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.sgh-lite-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--purple), var(--pink));
  box-shadow: 0 10px 24px rgba(124,58,237,0.28);
  animation: sghLiteBar 1.8s ease-in-out infinite alternate;
}

.sgh-lite-chart i:nth-child(2) { animation-delay: .12s; }
.sgh-lite-chart i:nth-child(3) { animation-delay: .24s; }
.sgh-lite-chart i:nth-child(4) { animation-delay: .36s; }
.sgh-lite-chart i:nth-child(5) { animation-delay: .48s; }

@keyframes sghLiteBar {
  to {
    transform: translateY(-5px);
    filter: brightness(1.1);
  }
}

.sgh-lite-ai-note {
  padding: 15px;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 760;
}

.sgh-lite-ai-note i {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid !important;
  place-items: center;
  color: #fff !important;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

/* Donor */
.sgh-lite-profile {
  margin-top: 22px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sgh-lite-profile > b {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-size: 13px;
  font-weight: 950;
}

.sgh-lite-profile strong,
.sgh-lite-profile small {
  display: block;
}

.sgh-lite-profile strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.sgh-lite-profile small {
  margin-top: 3px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 850;
}

.sgh-lite-mini-list {
  margin-top: 12px;
  display: grid;
  gap: 9px;
}

.sgh-lite-mini-list span {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.62);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(8,7,32,0.66);
  font-size: 11px;
  font-weight: 850;
}

.sgh-lite-mini-list b {
  color: var(--ink);
}

/* Events */
.sgh-lite-progress {
  margin-top: 24px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.70);
}

.sgh-lite-progress small,
.sgh-lite-progress strong {
  display: block;
}

.sgh-lite-progress small {
  color: rgba(8,7,32,0.58);
  font-size: 11px;
  font-weight: 850;
}

.sgh-lite-progress strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.sgh-lite-progress em {
  display: block;
  height: 9px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8,7,32,0.10);
}

.sgh-lite-progress em b {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

/* Trust */
.sgh-lite-trust-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.sgh-lite-trust-row span {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 15px;
  background: rgba(255,255,255,0.70);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(8,7,32,0.72);
  font-size: 12px;
  font-weight: 850;
}

.sgh-lite-trust-row i {
  color: var(--purple);
}

/* Reveal */
[data-sgh-lite-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgh-lite-platform.is-visible [data-sgh-lite-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1050px) {
  .sgh-lite-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .sgh-lite-card-main,
  .sgh-lite-card-ai {
    grid-column: span 6;
  }

  .sgh-lite-card-soft,
  .sgh-lite-card-mint,
  .sgh-lite-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .sgh-lite-platform {
    padding: 62px 14px;
  }

  .sgh-lite-head h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .sgh-lite-grid {
    grid-template-columns: 1fr;
  }

  .sgh-lite-card-main,
  .sgh-lite-card-ai,
  .sgh-lite-card-soft,
  .sgh-lite-card-mint,
  .sgh-lite-card-wide {
    grid-column: auto;
  }

  .sgh-lite-card {
    min-height: auto;
    padding: 20px;
    border-radius: 26px;
  }

  .sgh-lite-giving-ui,
  .sgh-lite-ai-result {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Donor Journey V2 - Light Premium
================================ */

.sgjv-section {
  --ink: #080720;
  --muted: #66708a;
  --purple: #7c3aed;
  --pink: #ec4899;
  --blue: #60a5fa;
  --green: #10b981;
  --line: rgba(124, 58, 237, 0.18);

  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 116px) 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.10), transparent 32vw),
    radial-gradient(circle at 86% 12%, rgba(96, 165, 250, 0.15), transparent 32vw),
    radial-gradient(circle at 72% 92%, rgba(236, 72, 153, 0.08), transparent 28vw),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 56%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgjv-section * {
  box-sizing: border-box;
}

.sgjv-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0 55%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 55%, transparent 84%);
}

.sgjv-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.sgjv-head {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.sgjv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 42px rgba(47, 39, 102, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgjv-head h2 {
  margin: 18px auto 0;
  max-width: 830px;
  color: var(--ink);
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgjv-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--purple), #8b5cf6 42%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgjv-head p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

/* Board */
.sgjv-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 4vw, 48px);
  border-radius: clamp(30px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 34px 100px rgba(47, 39, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Left Visual */
.sgjv-visual {
  position: relative;
  min-height: 540px;
  border-radius: 36px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 22% 14%, rgba(124, 58, 237, 0.18), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(236, 72, 153, 0.12), transparent 34%),
    linear-gradient(135deg, #f3edff 0%, #ffffff 100%);
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.sgjv-visual-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 68%);
  filter: blur(14px);
  animation: sgjvGlow 5s ease-in-out infinite;
}

@keyframes sgjvGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.65;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.sgjv-donor-card {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 28px auto 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 24px 70px rgba(47, 39, 102, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.sgjv-float {
  animation: sgjvFloat 4.6s ease-in-out infinite;
}

@keyframes sgjvFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.sgjv-donor-top {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
}

.sgjv-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-size: 14px;
  font-weight: 950;
}

.sgjv-donor-top strong,
.sgjv-donor-top span {
  display: block;
}

.sgjv-donor-top strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.sgjv-donor-top span {
  margin-top: 3px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 850;
}

.sgjv-donor-top em {
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--purple);
  background: #f2ecff;
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.sgjv-amount-row {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(96, 165, 250, 0.13), transparent 36%),
    #f9fbff;
  border: 1px solid rgba(8, 7, 32, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.sgjv-amount-row small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.sgjv-amount-row strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgjv-amount-row > span {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #07875c;
  background: #dcfce7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 950;
}

.sgjv-activity {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.sgjv-activity div {
  min-height: 44px;
  padding: 0 13px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(8, 7, 32, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(8, 7, 32, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.sgjv-activity div.is-active {
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(47, 39, 102, 0.08);
}

.sgjv-activity i {
  color: var(--purple);
}

.sgjv-ai-card {
  position: relative;
  z-index: 3;
  max-width: 360px;
  margin: 16px 0 0 auto;
  padding: 16px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(236, 72, 153, 0.35), transparent 34%),
    linear-gradient(145deg, #080720, #1c1554);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(47, 39, 102, 0.18);
  animation: sgjvAiPulse 2.4s ease-in-out infinite;
}

@keyframes sgjvAiPulse {
  0%, 100% {
    box-shadow: 0 24px 70px rgba(47, 39, 102, 0.18);
  }
  50% {
    box-shadow: 0 28px 86px rgba(236, 72, 153, 0.24);
  }
}

.sgjv-ai-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8b4fe;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sgjv-ai-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.sgjv-ai-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 650;
}

.sgjv-mini-stack {
  position: relative;
  z-index: 2;
  margin: 18px auto 0;
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sgjv-mini-stack div {
  min-height: 74px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(8, 7, 32, 0.06);
  color: rgba(8, 7, 32, 0.70);
  display: grid;
  gap: 7px;
  align-content: center;
  justify-items: start;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 850;
}

.sgjv-mini-stack i {
  color: var(--purple);
}

/* Right Content */
.sgjv-content {
  position: relative;
  padding: 10px 0;
}

.sgjv-content-top {
  margin-bottom: 24px;
}

.sgjv-content-top span {
  display: inline-block;
  color: var(--purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgjv-content-top h3 {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sgjv-steps {
  position: relative;
  display: grid;
  gap: 14px;
}

.sgjv-line {
  position: absolute;
  left: 27px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.13);
}

.sgjv-line span {
  display: block;
  width: 100%;
  height: 0%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--purple), var(--pink), var(--blue));
  transition: height 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgjv-section.is-visible .sgjv-line span {
  height: 100%;
}

.sgjv-step {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 92px;
  padding: 16px 18px 16px 74px;
  border: 1px solid rgba(8, 7, 32, 0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 40px rgba(47, 39, 102, 0.06);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.sgjv-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sgjv-step:hover,
.sgjv-step.is-active {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 22px 62px rgba(47, 39, 102, 0.12);
  transform: translateY(-4px);
}

.sgjv-dot {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border-radius: 15px;
  color: var(--purple);
  background: #f2ecff;
  border: 5px solid #fff;
  box-shadow: 0 10px 28px rgba(47, 39, 102, 0.10);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sgjv-step:hover .sgjv-dot,
.sgjv-step.is-active .sgjv-dot {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  transform: translateY(-50%) scale(1.06);
}

.sgjv-number {
  color: rgba(8, 7, 32, 0.30);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.sgjv-step-copy strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.sgjv-step-copy small {
  display: block;
  max-width: 460px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 650;
}

/* Reveal */
[data-sgjv-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgjv-section.is-visible [data-sgjv-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1020px) {
  .sgjv-board {
    grid-template-columns: 1fr;
  }

  .sgjv-visual {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .sgjv-section {
    padding: 64px 14px;
  }

  .sgjv-head h2 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.98;
  }

  .sgjv-board {
    padding: 16px;
    border-radius: 30px;
  }

  .sgjv-visual {
    padding: 18px;
    border-radius: 26px;
  }

  .sgjv-donor-top {
    grid-template-columns: 48px 1fr;
  }

  .sgjv-donor-top em {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .sgjv-amount-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .sgjv-mini-stack {
    grid-template-columns: 1fr;
  }

  .sgjv-step {
    padding: 15px 15px 15px 68px;
    grid-template-columns: 1fr;
  }

  .sgjv-number {
    display: none;
  }
}

/* ================================
   Smart Admin / Reporting / Receipts
================================ */

.sgo-section {
  --sgo-ink: #080720;
  --sgo-muted: #66708a;
  --sgo-purple: #7c3aed;
  --sgo-pink: #ec4899;
  --sgo-blue: #60a5fa;
  --sgo-green: #10b981;

  position: relative;
  overflow: hidden;
  padding: clamp(74px, 7vw, 118px) 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 58, 237, 0.10), transparent 32vw),
    radial-gradient(circle at 86% 12%, rgba(96, 165, 250, 0.15), transparent 32vw),
    radial-gradient(circle at 74% 88%, rgba(236, 72, 153, 0.08), transparent 28vw),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 56%, #ffffff 100%);
  color: var(--sgo-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgo-section * {
  box-sizing: border-box;
}

.sgo-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
}

.sgo-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.sgo-header {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.sgo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sgo-purple);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 42px rgba(47, 39, 102, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgo-header h2 {
  margin: 18px auto 0;
  color: var(--sgo-ink);
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgo-header h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sgo-purple), #8b5cf6 42%, var(--sgo-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgo-header p {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--sgo-muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

/* Main Board */
.sgo-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3.8vw, 48px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 34px 100px rgba(47, 39, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sgo-left {
  padding: clamp(10px, 1.8vw, 18px);
}

.sgo-left-top span {
  display: inline-flex;
  color: var(--sgo-purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgo-left-top h3 {
  margin: 10px 0 0;
  max-width: 520px;
  color: var(--sgo-ink);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sgo-left-top p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--sgo-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

/* Feature Cards */
.sgo-feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sgo-feature {
  position: relative;
  min-height: 104px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(8, 7, 32, 0.07);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.sgo-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sgo-feature:hover,
.sgo-feature.is-active {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 22px 58px rgba(47, 39, 102, 0.12);
  transform: translateY(-4px);
}

.sgo-feature > i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid !important;
  place-items: center;
  color: var(--sgo-purple);
  background: #f2ecff;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sgo-feature:hover > i,
.sgo-feature.is-active > i {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sgo-purple), var(--sgo-pink));
  transform: scale(1.06);
}

.sgo-feature strong,
.sgo-feature small {
  display: block;
}

.sgo-feature strong {
  color: var(--sgo-ink);
  font-size: 14px;
  line-height: 1.12;
  font-weight: 950;
}

.sgo-feature small {
  margin-top: 6px;
  color: var(--sgo-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

/* Dashboard */
.sgo-dashboard-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
}

.sgo-dashboard {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(236, 72, 153, 0.16), transparent 34%),
    radial-gradient(circle at 14% 90%, rgba(96, 165, 250, 0.14), transparent 34%),
    linear-gradient(135deg, #f6f1ff 0%, #ffffff 58%, #f8fbff 100%);
  border: 1px solid rgba(124, 58, 237, 0.13);
  box-shadow:
    0 26px 78px rgba(47, 39, 102, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: perspective(1000px) rotateX(var(--sgo-rx, 0deg)) rotateY(var(--sgo-ry, 0deg));
  transition: transform 0.25s ease;
}

.sgo-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 86%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 86%);
}

.sgo-dashboard > * {
  position: relative;
  z-index: 2;
}

.sgo-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(8, 7, 32, 0.08);
}

.sgo-dash-top span {
  display: block;
  color: var(--sgo-purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgo-dash-top strong {
  display: block;
  margin-top: 5px;
  color: var(--sgo-ink);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.sgo-dash-top em {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #07875c;
  background: #dcfce7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

/* Metrics */
.sgo-metric-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 12px;
}

.sgo-metric-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 7, 32, 0.07);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.07);
}

.sgo-metric-card small,
.sgo-metric-card span {
  display: block;
  color: var(--sgo-muted);
  font-size: 11px;
  font-weight: 800;
}

.sgo-metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--sgo-ink);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.sgo-metric-card span {
  margin-top: 7px;
  color: rgba(8, 7, 32, 0.54);
}

.sgo-metric-card span.is-green {
  color: #07875c;
}

/* Report Card */
.sgo-report-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 12%, rgba(236, 72, 153, 0.35), transparent 34%),
    linear-gradient(145deg, #080720 0%, #1a1450 100%);
  box-shadow: 0 24px 70px rgba(47, 39, 102, 0.16);
}

.sgo-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sgo-report-head small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
}

.sgo-report-head strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}

.sgo-report-head button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sgo-purple), var(--sgo-pink));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

.sgo-chart {
  height: 142px;
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 0 0;
}

.sgo-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 9px 9px;
  background: linear-gradient(180deg, var(--sgo-blue), var(--sgo-purple), var(--sgo-pink));
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.30);
  animation: sgoBarFloat 1.8s ease-in-out infinite alternate;
}

.sgo-chart i:nth-child(2) { animation-delay: .1s; }
.sgo-chart i:nth-child(3) { animation-delay: .2s; }
.sgo-chart i:nth-child(4) { animation-delay: .3s; }
.sgo-chart i:nth-child(5) { animation-delay: .4s; }
.sgo-chart i:nth-child(6) { animation-delay: .5s; }

@keyframes sgoBarFloat {
  to {
    transform: translateY(-5px);
    filter: brightness(1.08);
  }
}

.sgo-report-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.sgo-report-list div {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sgo-report-list span {
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.sgo-report-list span i {
  font-size: 7px;
  color: var(--sgo-pink);
}

.sgo-report-list strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

/* Insight */
.sgo-insight-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 7, 32, 0.07);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.07);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sgo-insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sgo-purple), #11182700);
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.24);
}

.sgo-insight-card span {
  display: block;
  color: var(--sgo-purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sgo-insight-card p {
  margin: 6px 0 0;
  color: var(--sgo-muted);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 650;
}

.sgo-bottom-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sgo-bottom-row div {
  min-height: 66px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 7, 32, 0.06);
  color: rgba(8, 7, 32, 0.70);
  display: grid;
  align-content: center;
  gap: 7px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
}

.sgo-bottom-row i {
  color: var(--sgo-purple);
}

/* Reveal */
[data-sgo-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgo-section.is-visible [data-sgo-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1050px) {
  .sgo-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sgo-section {
    padding: 64px 14px;
  }

  .sgo-header h2 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 0.98;
  }

  .sgo-board {
    padding: 16px;
    border-radius: 30px;
  }

  .sgo-feature-grid,
  .sgo-metric-row,
  .sgo-bottom-row {
    grid-template-columns: 1fr;
  }

  .sgo-dash-top,
  .sgo-report-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sgo-dashboard {
    padding: 16px;
    border-radius: 26px;
  }
}


/* ================================
   Use Cases Section
================================ */

.sguc-section {
  --sguc-ink: #080720;
  --sguc-muted: #65708a;
  --sguc-purple: #7c3aed;
  --sguc-pink: #ec4899;
  --sguc-blue: #60a5fa;
  --sguc-green: #10b981;
  --sguc-orange: #f59e0b;

  position: relative;
  overflow: hidden;
  padding: clamp(74px, 7vw, 118px) 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.10), transparent 32vw),
    radial-gradient(circle at 86% 10%, rgba(96, 165, 250, 0.14), transparent 32vw),
    radial-gradient(circle at 78% 90%, rgba(236, 72, 153, 0.08), transparent 28vw),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #ffffff 100%);
  color: var(--sguc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sguc-section * {
  box-sizing: border-box;
}

.sguc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
}

.sguc-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.sguc-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.sguc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sguc-purple);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 42px rgba(47, 39, 102, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sguc-head h2 {
  margin: 18px auto 0;
  color: var(--sguc-ink);
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sguc-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sguc-purple), #8b5cf6 42%, var(--sguc-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sguc-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--sguc-muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

/* Main Board */
.sguc-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.6vw, 46px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 34px 100px rgba(47, 39, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Selector */
.sguc-selector {
  display: grid;
  gap: 12px;
  align-content: center;
}

.sguc-tab {
  position: relative;
  min-height: 96px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(8, 7, 32, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 13px;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sguc-tab.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sguc-tab:hover,
.sguc-tab.is-active {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 22px 62px rgba(47, 39, 102, 0.12);
  transform: translateY(-4px);
}

.sguc-tab > i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid !important;
  place-items: center;
  color: var(--sguc-purple);
  background: #f2ecff;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sguc-tab:hover > i,
.sguc-tab.is-active > i {
  color: #fff !important;
  background: linear-gradient(135deg, var(--sguc-purple), var(--sguc-pink));
  transform: scale(1.06);
}

.sguc-tab strong,
.sguc-tab small {
  display: block;
}

.sguc-tab strong {
  color: var(--sguc-ink);
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 950;
}

.sguc-tab small {
  margin-top: 7px;
  color: var(--sguc-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 650;
}

/* Visual */
.sguc-visual-wrap {
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.sguc-visual {
  --tone-a: var(--sguc-purple);
  --tone-b: var(--sguc-pink);

  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--tone-b) 20%, transparent), transparent 34%),
    radial-gradient(circle at 12% 88%, color-mix(in srgb, var(--tone-a) 16%, transparent), transparent 34%),
    linear-gradient(135deg, #f7f2ff 0%, #ffffff 58%, #f8fbff 100%);
  border: 1px solid rgba(124, 58, 237, 0.13);
  box-shadow:
    0 26px 78px rgba(47, 39, 102, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: perspective(1000px) rotateX(var(--sguc-rx, 0deg)) rotateY(var(--sguc-ry, 0deg));
  transition:
    transform 0.25s ease,
    background 0.3s ease;
}

.sguc-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 86%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 86%);
}

.sguc-visual > * {
  position: relative;
  z-index: 2;
}

.sguc-visual-top {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
}

.sguc-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #ffffff !important;
  background: linear-gradient(135deg, #e0f2fe, #e0f2fe);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--tone-b) 26%, transparent);
}

.sguc-visual-top span {
  display: block;
  color: var(--tone-a);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sguc-visual-top h3 {
  margin: 5px 0 0;
  color: var(--sguc-ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sguc-visual-top em {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #07875c;
  background: #dcfce7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.sguc-visual > p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--sguc-muted);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 650;
}

.sguc-dashboard {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.sguc-main-card,
.sguc-metric-card,
.sguc-action-card {
  border-radius: 26px;
  border: 1px solid rgba(8, 7, 32, 0.07);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.07);
}

.sguc-main-card {
  grid-row: span 2;
  padding: 18px;
}

.sguc-main-card small {
  display: block;
  color: var(--sguc-muted);
  font-size: 11px;
  font-weight: 850;
}

.sguc-main-card strong {
  display: block;
  margin-top: 9px;
  color: var(--sguc-ink);
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sguc-progress {
  height: 12px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.10);
  overflow: hidden;
}

.sguc-progress span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tone-a), var(--tone-b));
  animation: sgucProgress 2.4s ease-in-out infinite alternate;
}

@keyframes sgucProgress {
  to {
    width: 92%;
  }
}

.sguc-mini-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sguc-mini-row div {
  min-height: 82px;
  padding: 12px;
  border-radius: 18px;
  background: #f9fbff;
  border: 1px solid rgba(8, 7, 32, 0.06);
  display: grid;
  align-content: center;
  gap: 8px;
}

.sguc-mini-row i {
  color: var(--tone-a);
}

.sguc-mini-row b {
  color: rgba(8, 7, 32, 0.78);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
}

.sguc-metric-card {
  padding: 18px;
  min-height: 154px;
  display: grid;
  align-content: center;
}

.sguc-metric-card span {
  color: var(--sguc-ink);
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sguc-metric-card small {
  display: block;
  max-width: 180px;
  margin-top: 10px;
  color: var(--sguc-muted);
  font-size: 12px;
  line-height: 1.38;
  font-weight: 750;
}

.sguc-action-card {
  padding: 18px;
  min-height: 154px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 15%, color-mix(in srgb, var(--tone-b) 38%, transparent), transparent 36%),
    linear-gradient(145deg, #080720 0%, #1a1450 100%);
  border-color: rgba(255, 255, 255, 0.10);
}

.sguc-action-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8b4fe;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sguc-action-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.sguc-workflows {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sguc-workflows div {
  min-height: 74px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 7, 32, 0.06);
  color: rgba(8, 7, 32, 0.70);
  display: grid;
  align-content: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
}

.sguc-workflows i {
  color: var(--tone-a);
}

/* Tone Changes */
.sguc-visual[data-tone="purple"] {
  --tone-a: var(--sguc-purple);
  --tone-b: var(--sguc-pink);
}

.sguc-visual[data-tone="pink"] {
  --tone-a: #d946ef;
  --tone-b: var(--sguc-pink);
}

.sguc-visual[data-tone="blue"] {
  --tone-a: #2563eb;
  --tone-b: var(--sguc-blue);
}

.sguc-visual[data-tone="green"] {
  --tone-a: #059669;
  --tone-b: var(--sguc-green);
}

.sguc-visual[data-tone="orange"] {
  --tone-a: #f97316;
  --tone-b: var(--sguc-orange);
}

/* Reveal */
[data-sguc-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.sguc-section.is-visible [data-sguc-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1050px) {
  .sguc-board {
    grid-template-columns: 1fr;
  }

  .sguc-visual {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .sguc-section {
    padding: 64px 14px;
  }

  .sguc-head h2 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 0.98;
  }

  .sguc-board {
    padding: 16px;
    border-radius: 30px;
  }

  .sguc-visual {
    padding: 16px;
    border-radius: 26px;
  }

  .sguc-visual-top {
    grid-template-columns: 54px 1fr;
  }

  .sguc-visual-top em {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .sguc-dashboard,
  .sguc-mini-row,
  .sguc-workflows {
    grid-template-columns: 1fr;
  }

  .sguc-tab {
    min-height: auto;
  }
}

/* ================================
   Security & Integrations Section
================================ */

.sgsi-section {
  --sgsi-ink: #080720;
  --sgsi-muted: #64708a;
  --sgsi-purple: #7c3aed;
  --sgsi-pink: #ec4899;
  --sgsi-blue: #60a5fa;
  --sgsi-green: #10b981;
  --sgsi-line: rgba(124, 58, 237, 0.14);

  position: relative;
  overflow: hidden;
  padding: clamp(74px, 7vw, 118px) 18px;
  background:
    radial-gradient(circle at 14% 8%, rgba(124, 58, 237, 0.10), transparent 32vw),
    radial-gradient(circle at 88% 14%, rgba(96, 165, 250, 0.14), transparent 34vw),
    radial-gradient(circle at 74% 92%, rgba(236, 72, 153, 0.08), transparent 30vw),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%);
  color: var(--sgsi-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgsi-section * {
  box-sizing: border-box;
}

.sgsi-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
}

.sgsi-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.sgsi-head {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.sgsi-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sgsi-purple);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 42px rgba(47, 39, 102, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgsi-head h2 {
  margin: 18px auto 0;
  color: var(--sgsi-ink);
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgsi-head h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sgsi-purple), #8b5cf6 42%, var(--sgsi-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgsi-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--sgsi-muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

/* Main Board */
.sgsi-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 3.6vw, 46px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 34px 100px rgba(47, 39, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Hub */
.sgsi-hub-wrap {
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.sgsi-hub {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(124, 58, 237, 0.16), transparent 32%),
    radial-gradient(circle at 16% 86%, rgba(96, 165, 250, 0.13), transparent 30%),
    linear-gradient(135deg, #f4f0ff 0%, #ffffff 58%, #f8fbff 100%);
  border: 1px solid rgba(124, 58, 237, 0.13);
  box-shadow:
    0 26px 78px rgba(47, 39, 102, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: perspective(1000px) rotateX(var(--sgsi-rx, 0deg)) rotateY(var(--sgsi-ry, 0deg));
  transition: transform 0.25s ease;
}

.sgsi-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 86%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 86%);
}

.sgsi-hub > * {
  position: relative;
  z-index: 2;
}

.sgsi-hub-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sgsi-hub-top span {
  display: block;
  color: var(--sgsi-purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgsi-hub-top strong {
  display: block;
  margin-top: 6px;
  color: var(--sgsi-ink);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sgsi-hub-top em {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #07875c;
  background: #dcfce7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

/* Orbit Visual */
.sgsi-orbit {
  position: relative;
  height: 300px;
  margin: 36px auto 0;
  display: grid;
  place-items: center;
}

.sgsi-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.sgsi-ring-one {
  width: 260px;
  height: 260px;
  animation: sgsiRotate 18s linear infinite;
}

.sgsi-ring-two {
  width: 178px;
  height: 178px;
  border-style: dashed;
  animation: sgsiRotateReverse 14s linear infinite;
}

@keyframes sgsiRotate {
  to { transform: rotate(360deg); }
}

@keyframes sgsiRotateReverse {
  to { transform: rotate(-360deg); }
}

.sgsi-center-lock {
  width: 92px;
  height: 92px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.35), transparent 36%),
    linear-gradient(135deg, var(--sgsi-purple), var(--sgsi-pink));
  box-shadow:
    0 24px 60px rgba(236, 72, 153, 0.25),
    0 0 0 14px rgba(124, 58, 237, 0.08);
  font-size: 30px;
  animation: sgsiLockPulse 2.8s ease-in-out infinite;
}

@keyframes sgsiLockPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 24px 60px rgba(236, 72, 153, 0.25),
      0 0 0 14px rgba(124, 58, 237, 0.08);
  }
  50% {
    transform: scale(1.045);
    box-shadow:
      0 28px 72px rgba(236, 72, 153, 0.31),
      0 0 0 22px rgba(124, 58, 237, 0.07);
  }
}

.sgsi-node {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  color: var(--sgsi-purple);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow: 0 18px 42px rgba(47, 39, 102, 0.12);
  font-size: 18px;
  animation: sgsiNodeFloat 4s ease-in-out infinite;
}

.sgsi-node-1 { top: 22px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.sgsi-node-2 { right: 84px; top: 78px; animation-delay: .2s; }
.sgsi-node-3 { right: 92px; bottom: 56px; animation-delay: .4s; }
.sgsi-node-4 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: .6s; }
.sgsi-node-5 { left: 84px; bottom: 56px; animation-delay: .8s; }
.sgsi-node-6 { left: 92px; top: 78px; animation-delay: 1s; }

@keyframes sgsiNodeFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

.sgsi-hub-copy {
  max-width: 560px;
  margin: 14px auto 0;
  text-align: center;
}

.sgsi-hub-copy p {
  margin: 0;
  color: var(--sgsi-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.sgsi-trust-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sgsi-trust-row div {
  min-height: 112px;
  padding: 15px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 7, 32, 0.07);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.07);
  display: grid;
  align-content: center;
  gap: 8px;
}

.sgsi-trust-row i {
  color: var(--sgsi-purple);
  font-size: 18px;
}

.sgsi-trust-row strong {
  color: var(--sgsi-ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.sgsi-trust-row small {
  color: var(--sgsi-muted);
  font-size: 11px;
  font-weight: 700;
}

/* Right Content */
.sgsi-content {
  min-width: 0;
  display: grid;
  align-content: center;
}

.sgsi-content-top span {
  display: inline-block;
  color: var(--sgsi-purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgsi-content-top h3 {
  max-width: 520px;
  margin: 9px 0 0;
  color: var(--sgsi-ink);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.sgsi-content-top p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--sgsi-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.sgsi-feature-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.sgsi-feature {
  width: 100%;
  min-height: 92px;
  padding: 15px;
  border-radius: 24px;
  border: 1px solid rgba(8, 7, 32, 0.07);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 13px;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sgsi-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sgsi-feature:hover,
.sgsi-feature.is-active {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 22px 62px rgba(47, 39, 102, 0.12);
  transform: translateY(-4px);
}

.sgsi-feature > i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid !important;
  place-items: center;
  color: var(--sgsi-purple);
  background: #f2ecff;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sgsi-feature:hover > i,
.sgsi-feature.is-active > i {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sgsi-purple), var(--sgsi-pink));
  transform: scale(1.06);
}

.sgsi-feature strong,
.sgsi-feature small {
  display: block;
}

.sgsi-feature strong {
  color: var(--sgsi-ink);
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 950;
}

.sgsi-feature small {
  margin-top: 7px;
  color: var(--sgsi-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 650;
}

/* Connect Strip */
.sgsi-connect-strip {
  margin-top: 16px;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 20%, rgba(236, 72, 153, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 7, 32, 0.07);
  box-shadow: 0 14px 38px rgba(47, 39, 102, 0.06);
}

.sgsi-connect-strip > span {
  display: block;
  color: var(--sgsi-muted);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 12px;
}

.sgsi-connect-strip div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sgsi-connect-strip b {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(8, 7, 32, 0.07);
  color: rgba(8, 7, 32, 0.72);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
}

/* Reveal */
[data-sgsi-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgsi-section.is-visible [data-sgsi-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1050px) {
  .sgsi-board {
    grid-template-columns: 1fr;
  }

  .sgsi-hub {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .sgsi-section {
    padding: 64px 14px;
  }

  .sgsi-head h2 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 0.98;
  }

  .sgsi-board {
    padding: 16px;
    border-radius: 30px;
  }

  .sgsi-hub {
    padding: 16px;
    border-radius: 26px;
  }

  .sgsi-hub-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .sgsi-orbit {
    height: 240px;
    transform: scale(0.88);
  }

  .sgsi-trust-row {
    grid-template-columns: 1fr;
  }

  .sgsi-feature {
    min-height: auto;
  }
}


/* ================================
   FAQ Section
================================ */

.sgfaq-section {
  --sgfaq-ink: #080720;
  --sgfaq-muted: #66708a;
  --sgfaq-purple: #7c3aed;
  --sgfaq-pink: #ec4899;
  --sgfaq-blue: #60a5fa;
  --sgfaq-green: #10b981;

  position: relative;
  overflow: hidden;
  padding: clamp(74px, 7vw, 118px) 18px;
  background:
    radial-gradient(circle at 14% 14%, rgba(124, 58, 237, 0.1), transparent 32vw),
    radial-gradient(circle at 86% 12%, rgba(96, 165, 250, 0.14), transparent 34vw),
    radial-gradient(circle at 76% 90%, rgba(236, 72, 153, 0.08), transparent 30vw),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #ffffff 100%);
  color: var(--sgfaq-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgfaq-section * {
  box-sizing: border-box;
}

.sgfaq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 54%, transparent 84%);
}

.sgfaq-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.sgfaq-left {
  position: sticky;
  top: 110px;
  padding-top: 12px;
}

.sgfaq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sgfaq-purple);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 42px rgba(47, 39, 102, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgfaq-left h2 {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--sgfaq-ink);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgfaq-left h2 span {
  display: block;
  background: linear-gradient(100deg, var(--sgfaq-purple), #8b5cf6 42%, var(--sgfaq-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgfaq-left > p {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--sgfaq-muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 650;
}

.sgfaq-mini-panel {
  margin-top: 26px;
  max-width: 520px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 22px 60px rgba(47, 39, 102, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sgfaq-mini-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255,255,255,0));
  box-shadow: 0 16px 38px rgba(236, 72, 153, 0.24);
}

.sgfaq-mini-panel strong {
  display: block;
  color: var(--sgfaq-ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
}

.sgfaq-mini-panel small {
  display: block;
  margin-top: 7px;
  color: var(--sgfaq-muted);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 650;
}

.sgfaq-cta {
  margin-top: 22px;
  width: max-content;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--sgfaq-purple), var(--sgfaq-pink));
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sgfaq-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(236, 72, 153, 0.3);
}

/* Right Card */
.sgfaq-card {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 7, 32, 0.08);
  box-shadow:
    0 34px 100px rgba(47, 39, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sgfaq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 86% 10%, rgba(236, 72, 153, 0.12), transparent 32%),
    radial-gradient(circle at 10% 86%, rgba(96, 165, 250, 0.13), transparent 32%);
}

.sgfaq-card > * {
  position: relative;
  z-index: 2;
}

.sgfaq-topbar {
  min-height: 56px;
  padding: 0 14px 16px;
  border-bottom: 1px solid rgba(8, 7, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sgfaq-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sgfaq-ink);
  font-size: 13px;
  font-weight: 950;
}

.sgfaq-topbar span i {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  color: var(--sgfaq-purple);
  background: #f2ecff;
  display: inline-grid !important;
  place-items: center;
}

.sgfaq-topbar em {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--sgfaq-purple);
  background: #f2ecff;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Accordion */
.sgfaq-list {
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.sgfaq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 7, 32, 0.07);
  box-shadow: 0 12px 34px rgba(47, 39, 102, 0.055);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.sgfaq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sgfaq-item:hover,
.sgfaq-item.is-open {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 54px rgba(47, 39, 102, 0.1);
}

.sgfaq-question {
  width: 100%;
  min-height: 66px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--sgfaq-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.sgfaq-question span {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.sgfaq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--sgfaq-purple);
  background: #f2ecff;
  display: grid !important;
  place-items: center;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.sgfaq-item.is-open .sgfaq-question i {
  color: #fff !important;
  background: linear-gradient(135deg, var(--sgfaq-purple), var(--sgfaq-pink));
  transform: rotate(45deg);
}

.sgfaq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgfaq-item.is-open .sgfaq-answer {
  grid-template-rows: 1fr;
}

.sgfaq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 18px 0;
  color: var(--sgfaq-muted);
  font-size: 13.5px;
  line-height: 1.68;
  font-weight: 650;
}

.sgfaq-item.is-open .sgfaq-answer p {
  padding-bottom: 18px;
}

/* Reveal */
[data-sgfaq-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgfaq-section.is-visible [data-sgfaq-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 980px) {
  .sgfaq-shell {
    grid-template-columns: 1fr;
  }

  .sgfaq-left {
    position: relative;
    top: auto;
    text-align: center;
  }

  .sgfaq-left h2,
  .sgfaq-left > p,
  .sgfaq-mini-panel {
    margin-left: auto;
    margin-right: auto;
  }

  .sgfaq-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .sgfaq-section {
    padding: 64px 14px;
  }

  .sgfaq-left h2 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 0.98;
  }

  .sgfaq-card {
    border-radius: 28px;
    padding: 14px;
  }

  .sgfaq-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .sgfaq-mini-panel {
    flex-direction: column;
  }

  .sgfaq-question {
    padding: 16px;
  }

  .sgfaq-question span {
    font-size: 14px;
  }
}

/* ================================
   Final CTA Compact Premium
================================ */

.sgctac-section {
  --ink: #080720;
  --purple: #7c3aed;
  --pink: #ec4899;
  --blue: #60a5fa;
  --green: #10b981;

  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 76px) 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(124, 58, 237, 0.09), transparent 30vw),
    radial-gradient(circle at 88% 20%, rgba(96, 165, 250, 0.12), transparent 30vw),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgctac-section * {
  box-sizing: border-box;
}

.sgctac-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0 50%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 50%, transparent 82%);
}

.sgctac-shell {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.sgctac-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 10%, rgba(124, 58, 237, 0.38), transparent 34%),
    radial-gradient(circle at 88% 26%, rgba(236, 72, 153, 0.30), transparent 34%),
    linear-gradient(145deg, #080720 0%, #121038 48%, #261044 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 90px rgba(47, 39, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.sgctac-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.sgctac-glow-one {
  width: 280px;
  height: 280px;
  left: -90px;
  top: -100px;
  background: rgba(124, 58, 237, 0.34);
}

.sgctac-glow-two {
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: -120px;
  background: rgba(236, 72, 153, 0.24);
}

.sgctac-copy,
.sgctac-panel {
  position: relative;
  z-index: 2;
}

.sgctac-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #e9d5ff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgctac-copy h2 {
  max-width: 610px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.sgctac-copy h2 span {
  display: inline-block;
  background: linear-gradient(100deg, #c4b5fd, #a78bfa 40%, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgctac-copy p {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
}

.sgctac-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sgctac-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sgctac-btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.26);
}

.sgctac-btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sgctac-btn:hover {
  transform: translateY(-3px);
}

.sgctac-btn-primary:hover {
  box-shadow: 0 24px 58px rgba(236, 72, 153, 0.34);
}

/* Right Compact Visual */
.sgctac-panel {
  min-height: 285px;
  display: grid;
  place-items: center;
}

.sgctac-mini-dashboard {
  position: relative;
  width: min(100%, 310px);
  padding: 16px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 14%, rgba(236, 72, 153, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: sgctacFloat 4.6s ease-in-out infinite;
}

@keyframes sgctacFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.sgctac-dashboard-top {
  display: flex;
  gap: 7px;
  padding-bottom: 14px;
}

.sgctac-dashboard-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.sgctac-stat-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.sgctac-stat-row small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sgctac-stat-row strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sgctac-stat-row em {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #86efac;
  background: rgba(52, 211, 153, 0.12);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.sgctac-bars {
  height: 104px;
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.sgctac-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--purple), var(--pink));
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.30);
  animation: sgctacBars 1.8s ease-in-out infinite alternate;
}

.sgctac-bars i:nth-child(2) { animation-delay: .12s; }
.sgctac-bars i:nth-child(3) { animation-delay: .24s; }
.sgctac-bars i:nth-child(4) { animation-delay: .36s; }
.sgctac-bars i:nth-child(5) { animation-delay: .48s; }

@keyframes sgctacBars {
  to {
    transform: translateY(-4px);
    filter: brightness(1.12);
  }
}

.sgctac-ai-line {
  margin-top: 14px;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  gap: 11px;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.sgctac-ai-line > i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid !important;
  place-items: center;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.sgctac-ai-line span,
.sgctac-ai-line b {
  display: block;
}

.sgctac-ai-line b {
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.sgctac-ai-line span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 650;
}

.sgctac-chip {
  position: absolute;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: sgctacChipFloat 4s ease-in-out infinite;
}

.sgctac-chip i {
  color: #c4b5fd;
}

.sgctac-chip-one {
  left: 4%;
  top: 58px;
}

.sgctac-chip-two {
  right: 2%;
  bottom: 52px;
  animation-delay: .7s;
}

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

/* Reveal */
[data-sgctac-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.sgctac-section.is-visible [data-sgctac-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 900px) {
  .sgctac-card {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .sgctac-copy h2,
  .sgctac-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .sgctac-actions {
    justify-content: center;
  }

  .sgctac-panel {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .sgctac-section {
    padding: 52px 14px;
  }

  .sgctac-card {
    padding: 24px;
    border-radius: 30px;
  }

  .sgctac-copy h2 {
    font-size: clamp(36px, 12vw, 52px);
    line-height: 0.98;
  }

  .sgctac-actions {
    display: grid;
  }

  .sgctac-btn {
    width: 100%;
  }

  .sgctac-chip {
    display: none;
  }

  .sgctac-panel {
    min-height: auto;
    padding-top: 20px;
  }

  .sgctac-mini-dashboard {
    width: 100%;
  }
}

/* ================================
   CTA Soft Light Premium Override
   Paste After Existing CTA CSS
================================ */

.sgctac-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(124, 58, 237, 0.08), transparent 30vw),
    radial-gradient(circle at 88% 22%, rgba(236, 72, 153, 0.08), transparent 30vw),
    radial-gradient(circle at 50% 100%, rgba(96, 165, 250, 0.10), transparent 34vw),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.sgctac-card {
  min-height: 370px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 58, 237, 0.12), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(236, 72, 153, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, #f5f0ff 48%, #eef7ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow:
    0 30px 90px rgba(47, 39, 102, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.sgctac-glow-one {
  background: rgba(124, 58, 237, 0.18);
}

.sgctac-glow-two {
  background: rgba(236, 72, 153, 0.16);
}

.sgctac-kicker {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 14px 34px rgba(47, 39, 102, 0.07);
}

.sgctac-copy h2 {
  color: var(--ink);
}

.sgctac-copy h2 span {
  background: linear-gradient(100deg, var(--purple), #8b5cf6 42%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgctac-copy p {
  color: rgba(8, 7, 32, 0.68);
}

.sgctac-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.22);
}

.sgctac-btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 7, 32, 0.10);
  display:none;
  box-shadow: 0 12px 30px rgba(47, 39, 102, 0.08);
}

.sgctac-btn-secondary:hover {
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(47, 39, 102, 0.12);
}

/* Right Visual Light Style */
.sgctac-mini-dashboard {
  background:
    radial-gradient(circle at 86% 14%, rgba(236, 72, 153, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow:
    0 26px 76px rgba(47, 39, 102, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.sgctac-dashboard-top span {
  background: rgba(124, 58, 237, 0.22);
}

.sgctac-stat-row small {
  color: rgba(8, 7, 32, 0.48);
}

.sgctac-stat-row strong {
  color: var(--ink);
}

.sgctac-stat-row em {
  color: #07875c;
  background: #dcfce7;
}

.sgctac-ai-line {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(8, 7, 32, 0.08);
}

.sgctac-ai-line b {
  color: var(--ink);
}

.sgctac-ai-line span {
  color: rgba(8, 7, 32, 0.62);
}

.sgctac-chip {
  color: rgba(8, 7, 32, 0.72);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 16px 38px rgba(47, 39, 102, 0.12);
}

.sgctac-chip i {
  color: var(--purple);
}

/* Mobile polish */
@media (max-width: 620px) {
  .sgctac-card {
    min-height: auto;
  }
}

/* =========================================================
   WordPress Approved Dynamic Integration Fix
   Uses approved static CSS above. These rules only adapt it to
   the live WordPress global header/footer and small mobile CTA.
   No page-wide Font Awesome pseudo-element override is used.
========================================================= */
body.simplygiv-homepage-approved-dynamic-active {
  overflow-x: hidden !important;
}

body.simplygiv-homepage-approved-dynamic-active main.sgad-main,
body.simplygiv-homepage-approved-dynamic-active .sgad-main {
  padding-top: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  display: block !important;
}

body.simplygiv-homepage-approved-dynamic-active .sgh-page {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  background: var(--sgh-cream) !important;
}

body.simplygiv-homepage-approved-dynamic-active .sgh-page .hero,
body.simplygiv-homepage-approved-dynamic-active .sgh-page .page-content {
  padding-top: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Global WordPress header spacing. The approved static HTML had its own fixed header;
   live WordPress uses the theme header, so the hero needs this safe top space. */
body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgh-hero {
  padding-top: clamp(138px, 9vw, 170px) !important;
  height: auto !important;
  max-height: none !important;
}

body.admin-bar.simplygiv-homepage-approved-dynamic-active .sgh-page .sgh-hero {
  padding-top: clamp(158px, 10vw, 190px) !important;
}

/* Keep desktop grids stable even when DevTools is open but viewport is still desktop width. */
@media (min-width: 1051px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sguc-board {
    display: grid !important;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
    align-items: stretch !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgsi-board {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) !important;
    align-items: stretch !important;
  }
}

@media (max-width: 1050px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sguc-board,
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgsi-board {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

/* 320px to 4K wrapper control, without changing internal approved section markup. */
@media (min-width: 320px) and (max-width: 374.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: calc(100% - 28px) !important; }
}
@media (min-width: 375px) and (max-width: 479.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: calc(100% - 32px) !important; }
}
@media (min-width: 480px) and (max-width: 639.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: calc(100% - 36px) !important; }
}
@media (min-width: 640px) and (max-width: 767.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: calc(100% - 40px) !important; }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: min(920px, calc(100% - 44px)) !important; }
}
@media (min-width: 1024px) and (max-width: 1279.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: min(1080px, calc(100% - 52px)) !important; }
}
@media (min-width: 1280px) and (max-width: 1535.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: min(1250px, calc(100% - 60px)) !important; }
}
@media (min-width: 1536px) and (max-width: 1919.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgh-lite-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgjv-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgo-shell,
  body.simplygiv-homepage-approved-dynamic-active .sguc-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgsi-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgfaq-shell,
  body.simplygiv-homepage-approved-dynamic-active .sgctac-shell { width: min(1320px, calc(100% - 72px)) !important; }
}
@media (min-width: 1920px) and (max-width: 2559.98px) { :root { --sgh-max: 1360px; } }
@media (min-width: 2560px) and (max-width: 3839.98px) { :root { --sgh-max: 1480px; } }
@media (min-width: 3840px) { :root { --sgh-max: 1600px; } }

/* Final CTA mobile overflow fix. Scoped only to the approved CTA section. */
@media (max-width: 620px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-section {
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
    padding: 28px 18px 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-copy,
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-panel {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-copy h2 {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-wrap: balance !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-copy p {
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-actions {
    display: grid !important;
    justify-items: center !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-btn {
    width: min(100%, 220px) !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-panel {
    min-height: auto !important;
    padding-top: 16px !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-mini-dashboard {
    width: min(100%, 270px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 320px) and (max-width: 374.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgh-hero {
    padding-top: 124px !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgh-copy h1 {
    font-size: 38px !important;
    line-height: .98 !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-copy h2 {
    font-size: 31px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-copy p {
    max-width: 242px !important;
    font-size: 14px !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-mini-dashboard {
    width: 238px !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-stat-row strong {
    font-size: 30px !important;
  }
}

@media (min-width: 375px) and (max-width: 479.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-copy h2 {
    font-size: 38px !important;
  }
  body.simplygiv-homepage-approved-dynamic-active .sgh-page .sgctac-mini-dashboard {
    width: min(100%, 300px) !important;
  }
}


/* Use Case Dynamic Link Button */
body.simplygiv-homepage-approved-dynamic-active .sguc-case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.24);
}

body.simplygiv-homepage-approved-dynamic-active .sguc-case-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(124, 58, 237, 0.32);
}

body.simplygiv-homepage-approved-dynamic-active .sguc-case-link i {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 767.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sguc-case-link {
    width: 100%;
    max-width: 220px;
  }
}


/* =========================================================
   Use Cases Bottom Workflow Pills Fix
   Makes the 4 bottom pills wider and cleaner.
========================================================= */

body.simplygiv-homepage-approved-dynamic-active .sguc-section .sguc-workflows {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 18px !important;
}

body.simplygiv-homepage-approved-dynamic-active .sguc-section .sguc-workflows > div {
  width: 100% !important;
  min-height: 58px !important;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.simplygiv-homepage-approved-dynamic-active .sguc-section .sguc-workflows > div i {
  flex: 0 0 auto !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

body.simplygiv-homepage-approved-dynamic-active .sguc-section .sguc-workflows > div {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

/* Tablet and mobile */
@media (max-width: 767.98px) {
  body.simplygiv-homepage-approved-dynamic-active .sguc-section .sguc-workflows {
    grid-template-columns: 1fr !important;
  }

  body.simplygiv-homepage-approved-dynamic-active .sguc-section .sguc-workflows > div {
    min-height: 52px !important;
  }
}