:root{
  --zack-purple:#6F4CEE;
  --zack-purple-dark:#291E4F;
  --zack-purple-deep:#1f173a;
  --zack-purple-soft:#efeafe;
  --zack-yellow:#FDDA0B;
  --zack-yellow-soft:#FFF3A6;
  --zack-text:#121212;
  --zack-text-soft:#2b2740;
  --zack-muted:#5f6673;
  --zack-bg:#faf9ff;
  --zack-bg-soft:#f6f3ff;
  --zack-border:rgba(111,76,238,.14);
  --zack-border-strong:rgba(111,76,238,.24);
  --zack-shadow:0 18px 60px rgba(41,30,79,.12);
  --zack-shadow-soft:0 10px 30px rgba(41,30,79,.05);
  --zack-shadow-strong:0 24px 80px rgba(41,30,79,.18);
  --zack-radius:24px;
  --zack-radius-lg:30px;
  --zack-radius-xl:34px;
}

html{
  scroll-behavior:smooth;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

body{
  font-family:'Figtree',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--zack-text);
  background:
    radial-gradient(circle at top right, rgba(253,218,11,.18), transparent 22%),
    radial-gradient(circle at top left, rgba(111,76,238,.10), transparent 30%),
    #fff;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
	cursor: default;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

img{
  max-width:100%;
  height:auto;
}

a{
  text-decoration:none;
  transition:.2s ease;
}

a:hover{
  text-decoration:none;
}

::selection{
  background:rgba(111,76,238,.18);
  color:var(--zack-purple-dark);
}

/* =========================================================
   TOP ANNOUNCEMENT BAR
========================================================= */
.announcement-bar{
  background:linear-gradient(90deg,#291E4F 0%,#6F4CEE 100%);
  color:#fff;
  font-size:.95rem;
  padding:.72rem 0;
  position:relative;
  z-index:1031;
}

.announcement-bar strong{
  font-weight:900;
}

.announcement-bar a{
  color:#fff;
  font-weight:800;
  margin-left:.4rem;
}

.announcement-bar a:hover{
  color:var(--zack-yellow-soft);
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar{
  padding:1rem 0;
  backdrop-filter:saturate(180%) blur(12px);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(17,17,17,.04);
  z-index:1030;
}

.navbar-brand img{
  height:60px;
  width:auto;
  display:block;
}

.navbar-toggler{
  padding:.45rem .6rem;
  border-radius:12px;
}

.navbar-toggler:focus{
  box-shadow:none;
}

.navbar-collapse{
  transition:.2s ease;
}

.nav-link{
  font-weight:700;
  color:var(--zack-text);
  opacity:.86;
  padding:.65rem .85rem !important;
  border-radius:999px;
}

.nav-link:hover,
.nav-link:focus{
  color:var(--zack-purple);
  opacity:1;
  background:rgba(111,76,238,.05);
}

.navbar .btn.btn-zack{
  white-space:nowrap;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  transition:.2s ease;
}

.btn:focus,
.btn:active:focus{
  box-shadow:none !important;
}

.btn-zack{
  background:var(--zack-purple);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:.95rem 1.35rem;
  font-weight:800;
  box-shadow:0 10px 24px rgba(111,76,238,.22);
  transition:.2s ease;
}

.btn-zack:hover,
.btn-zack:focus{
  background:#5e3fe0;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(111,76,238,.28);
}

.btn-zack-outline{
  border:2px solid rgba(111,76,238,.16);
  color:var(--zack-purple);
  background:#fff;
  border-radius:999px;
  padding:.92rem 1.35rem;
  font-weight:800;
  transition:.2s ease;
}

.btn-zack-outline:hover,
.btn-zack-outline:focus{
  border-color:var(--zack-purple);
  background:rgba(111,76,238,.04);
  color:var(--zack-purple);
  transform:translateY(-1px);
}

.btn-light{
  box-shadow:none !important;
}

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative;
  overflow:hidden;
  padding:6rem 0 4rem;
}

.hero::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(111,76,238,.13) 0%, rgba(111,76,238,0) 72%);
  pointer-events:none;
}

.hero-badge,
.eyebrow-soft{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem .95rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--zack-border);
  box-shadow:var(--zack-shadow);
  font-weight:800;
  color:var(--zack-purple-dark);
  margin-bottom:1.25rem;
}

.hero-badge-dot,
.eyebrow-soft .dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:var(--zack-yellow);
  box-shadow:0 0 0 6px rgba(253,218,11,.22);
  display:inline-block;
  flex:0 0 auto;
}

.display-zack{
  font-weight:900;
  letter-spacing:-.05em;
  line-height:.95;
  font-size:clamp(2.8rem, 7vw, 6.6rem);
  margin-bottom:1.25rem;
  color:var(--zack-text);
}

.display-zack2{
  font-weight:900;
  letter-spacing:-.05em;
  line-height:1.1;
  font-size:clamp(1.3rem, 4vw, 3.6rem);
  margin:1.25rem auto 1.25rem auto;
  color:var(--zack-text);
}

.display-zack .accent, .display-zack2 .accent{
  color:var(--zack-purple);
  position:relative;
  display:inline-block;
}

.lead-zack{
  font-size:clamp(1.08rem, 1.5vw, 1.35rem);
  line-height:1.7;
  color:var(--zack-text);
  max-width:52rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  margin-top:1.8rem;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:1rem 1.5rem;
  margin-top:1.6rem;
  color:var(--zack-muted);
  font-weight:700;
}

.hero-meta span{
  display:flex;
  align-items:center;
  gap:.55rem;
}

.hero-proof,
.stack-list,
.compare-list,
.mini-checks,
.price-list,
.audience-list{
  list-style:none;
  padding:0;
  margin:0;
}

.hero-proof li,
.stack-list li,
.compare-list li,
.mini-checks li,
.price-list li,
.audience-list li{
  position:relative;
  padding-left:1.55rem;
  margin-bottom:.7rem;
}

.hero-proof li:last-child,
.stack-list li:last-child,
.compare-list li:last-child,
.mini-checks li:last-child,
.price-list li:last-child,
.audience-list li:last-child{
  margin-bottom:0;
}

.hero-proof li::before,
.stack-list li::before,
.compare-list li::before,
.mini-checks li::before,
.price-list li::before,
.audience-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--zack-purple);
  font-weight:900;
}

.hero-kpis{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.5rem;
}

.hero-kpi{
  padding:1rem 1.1rem;
  background:#fff;
  border:1px solid var(--zack-border);
  border-radius:24px;
  box-shadow:var(--zack-shadow-soft);
}

.hero-kpi strong{
  display:block;
  font-size:1.35rem;
  line-height:1;
  color:var(--zack-purple-dark);
  font-weight:900;
}

.hero-kpi span{
  display:block;
  margin-top:.35rem;
  color:#645a82;
  font-size:.95rem;
  line-height:1.5;
}

/* =========================================================
   HERO PANEL / MOCKUP
========================================================= */
.hero-panel{
  background:linear-gradient(180deg,#ffffff 0%, #f6f3ff 100%);
  border:1px solid var(--zack-border);
  border-radius:32px;
  padding:1.2rem;
  box-shadow:var(--zack-shadow);
}

.ui-window{
  background:#fff;
  border-radius:24px;
  border:1px solid rgba(17,17,17,.06);
  overflow:hidden;
}

.ui-topbar{
  display:flex;
  align-items:center;
  gap:.45rem;
  padding:.9rem 1rem;
  border-bottom:1px solid rgba(17,17,17,.06);
  background:#fcfbff;
}

.ui-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#ddd;
}

.ui-dot:nth-child(1){ background:#ff6159; }
.ui-dot:nth-child(2){ background:#ffbd2e; }
.ui-dot:nth-child(3){ background:#28c840; }

.ui-body{
  padding:1rem;
}

.dashboard-card{
  background:#fff;
  border:1px solid rgba(17,17,17,.06);
  border-radius:20px;
  padding:1rem;
  height:100%;
}

.dashboard-label{
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--zack-muted);
  margin-bottom:.4rem;
}

.dashboard-value{
  font-size:1.45rem;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:.2rem;
  color:var(--zack-purple-dark);
}

.dashboard-note{
  color:var(--zack-muted);
  font-size:.94rem;
}

.tag-pill{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:rgba(111,76,238,.08);
  color:var(--zack-purple);
  padding:.45rem .8rem;
  font-weight:800;
  font-size:.88rem;
  line-height:1.2;
}

/* =========================================================
   SECTION BASICS
========================================================= */
.section{
  padding:5rem 0;
}

.section-sm{
  padding:4rem 0;
}

.section-dark{
  background:#291E4F;
  color:#fff;
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark .eyebrow{
  color:#fff;
}

.section-anchor-offset{
  scroll-margin-top:110px;
}

.eyebrow{
  color:var(--zack-purple);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.84rem;
  margin-bottom:1rem;
}

.section-title{
  font-size:clamp(2rem, 3.8vw, 3.5rem);
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:900;
  margin-bottom:1rem;
  color:var(--zack-text);
}

.section-copy{
  color:var(--zack-muted);
  font-size:1.08rem;
  line-height:1.8;
  max-width:54rem;
}

.section-copy-lg{
  font-size:1.15rem;
  line-height:1.7;
  color:#5f547f;
}

/* =========================================================
   CARDS / BOXES
========================================================= */
.card-zack{
  background:#fff;
  border:1px solid var(--zack-border);
  border-radius:28px;
  padding:1.4rem;
  height:100%;
  box-shadow:var(--zack-shadow-soft);
  transition:.22s ease;
}

.card-zack:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 44px rgba(41,30,79,.10);
  border-color:rgba(111,76,238,.22);
}

.icon-badge{
  width:54px;
  height:54px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:1.1rem;
  background:linear-gradient(135deg,var(--zack-yellow),#ffe774);
  color:#2b2200;
  margin-bottom:1rem;
  box-shadow:inset 0 0 0 1px rgba(43,34,0,.06);
}

.card-zack h3{
  font-size:1.28rem;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:.65rem;
  color:var(--zack-text);
}

.card-zack p{
  margin-bottom:0;
  color:var(--zack-muted);
  line-height:1.75;
}

.problem-box,
.trust-box,
.price-box,
.faq-box,
.info-box{
  background:#fff;
  border:1px solid var(--zack-border);
  border-radius:30px;
  box-shadow:var(--zack-shadow);
}

.problem-box{
  padding:2rem;
  background:linear-gradient(180deg,#fff 0%, #fffdf2 100%);
}

.problem-item{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  padding:1rem 0;
  border-bottom:1px solid rgba(17,17,17,.06);
}

.problem-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.problem-mark{
  flex:0 0 44px;
  width:44px;
  height:44px;
  border-radius:14px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.flow-step,
.step-card{
  position:relative;
  padding:1.5rem;
  border-radius:28px;
  height:100%;
  background:#fff;
  border:1px solid var(--zack-border);
  box-shadow:0 12px 28px rgba(41,30,79,.05);
}

.flow-number{
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  font-weight:900;
  color:#111;
  background:var(--zack-yellow);
  margin-bottom:1rem;
}

.flow-step h3,
.step-card h3{
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:.55rem;
  color:var(--zack-text);
}

.flow-step p,
.step-card p{
  color:var(--zack-muted);
  margin-bottom:0;
  line-height:1.75;
}

.signal-card,
.position-card,
.compare-card,
.audience-card,
.faq-teaser,
.proof-strip,
.metric-card{
  background:#fff;
  border:1px solid var(--zack-border);
  border-radius:24px;
  box-shadow:var(--zack-shadow-soft);
}

.signal-card,
.position-card,
.compare-card,
.audience-card,
.faq-teaser,
.metric-card{
  padding:1.4rem;
  height:100%;
}

.signal-card .big{
  font-size:2.15rem;
  font-weight:900;
  color:var(--zack-purple-dark);
  line-height:1;
  margin-bottom:.45rem;
}

.signal-card .small{
  color:#6c628b;
  line-height:1.6;
}

.position-card h3,
.compare-card h3,
.audience-card h3,
.metric-card h3{
  font-size:1.15rem;
  font-weight:800;
  color:var(--zack-purple-dark);
  margin-bottom:.65rem;
}

.position-card p,
.compare-card p,
.audience-card p,
.metric-card p,
.faq-teaser p{
  color:var(--zack-muted);
  line-height:1.7;
}

.compare-card.bad{
  border-color:rgba(224,98,125,.18);
  background:linear-gradient(180deg,#fff 0%,#fff7f9 100%);
}

.compare-card.good{
  border-color:rgba(111,76,238,.18);
  background:linear-gradient(180deg,#fff 0%,#f8f5ff 100%);
}

.compare-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
}

.compare-badge{
  display:inline-flex;
  align-items:center;
  padding:.45rem .8rem;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  background:#efeafe;
  color:#6F4CEE;
  white-space:nowrap;
}

.compare-badge.badge-bad{
  background:#ffe9ee;
  color:#b14b63;
}

.proof-strip{
  display:flex;
  flex-wrap:wrap;
  gap:1rem 1.25rem;
  align-items:center;
  justify-content:center;
  padding:1.2rem;
}

.proof-pill{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.8rem 1rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--zack-border);
  color:var(--zack-purple-dark);
  font-weight:700;
  box-shadow:0 8px 22px rgba(41,30,79,.04);
}

.proof-pill .dot{
  width:.55rem;
  height:.55rem;
  border-radius:50%;
  background:var(--zack-purple);
  flex:0 0 auto;
}

.price-box{
  padding:2rem;
  height:100%;
  position:relative;
  overflow:hidden;
}

.price-box.featured{
  background:linear-gradient(180deg,#6F4CEE 0%, #5f42d4 100%);
  color:#fff;
  border:none;
  transform:scale(1.02);
}

.price-box.featured .muted,
.price-box.featured .price-list li,
.price-box.featured .price-tagline{
  color:rgba(255,255,255,.86)!important;
}

.price-box.featured .price-value,
.price-box.featured .price-value small{
  color:#fff;
}

.price-box.featured .price-list li::before{
  color:#fff;
}

.price-label{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:.45rem .8rem;
  font-weight:800;
  font-size:.86rem;
  background:rgba(111,76,238,.08);
  color:var(--zack-purple);
  margin-bottom:1rem;
}

.price-box.featured .price-label{
  background:rgba(255,255,255,.15);
  color:#fff;
}

.price-value{
  font-size:3rem;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:900;
  margin-bottom:.45rem;
  color:var(--zack-purple-dark);
}

.price-value small{
  font-size:1rem;
  font-weight:800;
  letter-spacing:0;
}

.price-tagline{
  color:var(--zack-muted);
  margin-bottom:1.2rem;
  line-height:1.7;
}

.price-list{
  margin:0 0 1.4rem;
}

.price-list li{
  color:var(--zack-text);
  font-weight:600;
  line-height:1.6;
  padding-left:1.7rem;
}

.trust-box,
.info-box,
.faq-box{
  padding:2rem;
}

.mini-stat{
  border-radius:22px;
  background:#fff;
  border:1px solid var(--zack-border);
  padding:1.2rem;
  height:100%;
}

.mini-stat strong{
  display:block;
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:.3rem;
  color:var(--zack-purple-dark);
}

.mini-stat span{
  color:var(--zack-muted);
  line-height:1.65;
}

.audience-card ul,
.compare-card ul{
  margin-top:.9rem;
}

/* =========================================================
   FAQ / ACCORDION
========================================================= */
.faq-item{
  padding:1.15rem 0;
  border-bottom:1px solid rgba(17,17,17,.08);
}

.faq-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.faq-item h3{
  font-size:1.12rem;
  font-weight:900;
  letter-spacing:-.02em;
  margin-bottom:.5rem;
  color:var(--zack-text);
}

.faq-item p{
  color:var(--zack-muted);
  margin-bottom:0;
  line-height:1.75;
}

.faq-group-card{
  background:#fff;
  border:1px solid var(--zack-border);
  border-radius:28px;
  padding:1.5rem;
  box-shadow:var(--zack-shadow);
  height:100%;
}

.faq-group-card h3{
  font-size:1.35rem;
  font-weight:900;
  color:var(--zack-purple-dark);
  margin-bottom:.35rem;
}

.faq-group-card p{
  color:#645a82;
  margin-bottom:1rem;
  line-height:1.7;
}

.accordion.zack-accordion .accordion-item{
  border:1px solid var(--zack-border);
  border-radius:20px;
  overflow:hidden;
  margin-bottom:1rem;
  box-shadow:0 14px 36px rgba(41,30,79,.05);
  background:#fff;
}

.accordion.zack-accordion .accordion-item:last-child{
  margin-bottom:0;
}

.accordion.zack-accordion .accordion-button{
  font-weight:800;
  color:var(--zack-purple-dark);
  background:#fff;
  box-shadow:none;
  padding:1.15rem 1.2rem;
  line-height:1.45;
}

.accordion.zack-accordion .accordion-button:not(.collapsed){
  background:#f7f3ff;
  color:var(--zack-purple-dark);
}

.accordion.zack-accordion .accordion-button:focus{
  box-shadow:none;
}

.accordion.zack-accordion .accordion-button::after{
  background-size:1rem;
}

.accordion.zack-accordion .accordion-body{
  padding:1.2rem 1.2rem 1.3rem;
  color:#5f547f;
  line-height:1.7;
  background:#fff;
}

/* =========================================================
   CTA
========================================================= */
.cta-band{
  border-radius:34px;
  background:linear-gradient(135deg, #291E4F 0%, #6F4CEE 64%, #8a6cf0 100%);
  color:#fff;
  padding:2.2rem;
  box-shadow:0 22px 60px rgba(41,30,79,.24);
  position:relative;
  overflow:hidden;
}

.cta-band::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,0));
  pointer-events:none;
}

.cta-band::after{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(253,218,11,.18);
  filter:blur(4px);
}

.cta-band > *{
  position:relative;
  z-index:1;
}

.cta-band h2{
  font-weight:900;
  letter-spacing:-.04em;
  line-height:1.02;
  margin-bottom:.8rem;
  font-size:clamp(1.9rem, 3vw, 3rem);
  color:#fff;
}

.cta-band p{
  color:rgba(255,255,255,.86);
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:0;
  max-width:46rem;
}

/* =========================================================
   FOOTER
========================================================= */
footer{
  padding:2rem 0 3rem;
}

.footer-box{
  background:#0f0d18;
  color:#fff;
  border-radius:30px;
  padding:2rem;
  box-shadow:0 20px 50px rgba(15,13,24,.22);
}

.footer-brand{
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:.45rem;
}

.footer-copy{
  color:rgba(255,255,255,.72);
  line-height:1.75;
  margin-bottom:0;
}

.footer-copy a {
  color:rgba(255,255,255,.72);
}

.footer-copy a:hover {
  color:rgba(255,255,255,1);
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem 1.2rem;
  margin-top:1rem;
}

.footer-links a{
  color:#fff;
  opacity:.88;
  font-weight:700;
}

.footer-links a:hover,
.footer-links a:focus{
  opacity:1;
  color:var(--zack-yellow);
}

/* =========================================================
   MODALS
========================================================= */
.modal{
  --bs-modal-zindex:1055;
}

.modal-backdrop{
  --bs-backdrop-opacity:.62;
}

.modal-content{
  background:#fff !important;
  color:var(--zack-text) !important;
  border:1px solid rgba(17,17,17,.06) !important;
  box-shadow:var(--zack-shadow-strong);
}

.modal-header{
  background:#fff !important;
  color:var(--zack-text) !important;
  border-bottom:1px solid rgba(17,17,17,.08);
  padding:1.15rem 1.35rem;
}

.modal-title{
  color:var(--zack-purple-dark) !important;
  font-weight:900;
  letter-spacing:-.02em;
}

.modal-body{
  background:#fff !important;
  color:var(--zack-text) !important;
  padding:1.35rem;
}

.modal-body,
.modal-body p,
.modal-body li,
.modal-body ul,
.modal-body ol,
.modal-body div{
  color:var(--zack-text) !important;
}

.modal-body a{
  color:var(--zack-purple) !important;
  font-weight:700;
  text-decoration:none;
}

.modal-body a:hover{
  color:#5e3fe0 !important;
  text-decoration:underline;
}

.modal-body strong,
.modal-body b,
.modal-body a,
.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4,
.modal-body h5,
.modal-body h6{
  color:var(--zack-purple-dark) !important;
}

.modal-body h3{
  font-size:1.08rem;
  margin-top:1.35rem;
  margin-bottom:.55rem;
  font-weight:900;
  letter-spacing:-.02em;
}

.modal-body p{
  line-height:1.75;
  margin-bottom:.95rem;
}

.modal-body ul,
.modal-body ol{
  padding-left:1.25rem;
  margin-bottom:1rem;
}

.modal-body li{
  line-height:1.7;
  margin-bottom:.4rem;
}

.modal-body .column-2{
  columns:2;
  column-gap:2rem;
}

.btn-close{
  filter:none;
  opacity:.7;
}

.btn-close:hover{
  opacity:1;
}

/* =========================================================
   HELPERS
========================================================= */
.muted{
  color:var(--zack-muted);
}

.highlight{
  color:var(--zack-purple);
  font-weight:900;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px){
  .price-box.featured{
    transform:none;
  }
}

@media (max-width: 991.98px){
  .hero{
    padding-top:4.8rem;
  }

  .navbar-brand img{
    height:75px;
  }

  .navbar-collapse{
    margin-top:1rem;
    padding:1rem;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--zack-border);
    box-shadow:var(--zack-shadow);
  }

  .hero-kpis{
    grid-template-columns:1fr;
  }

  .compare-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .proof-strip{
    justify-content:flex-start;
  }

  .modal-body .column-2{
    columns:1;
  }
}

@media (max-width: 767.98px){
  .section,
  .section-sm{
    padding:3.6rem 0;
  }

  .hero{
    padding-top:4rem;
    padding-bottom:3rem;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn-zack,
  .btn-zack-outline{
    width:100%;
    text-align:center;
  }

  .hero-panel{
    margin-top:2rem;
  }

  .footer-box,
  .trust-box,
  .info-box,
  .faq-box,
  .problem-box,
  .price-box,
  .faq-group-card{
    padding:1.4rem;
  }

  .container{
    padding-left:1.2rem;
    padding-right:1.2rem;
  }

  .display-zack{
    line-height:.98;
  }

  .section-title{
    line-height:1.05;
  }

  .hero-meta{
    gap:.8rem 1rem;
  }

  .proof-pill{
    width:100%;
    justify-content:flex-start;
  }

  .cta-band{
    padding:1.6rem;
  }

  .cta-band h2{
    font-size:clamp(1.7rem, 8vw, 2.2rem);
  }

  .modal-dialog{
    margin:.75rem;
  }

  .modal-header,
  .modal-body{
    padding:1rem;
  }
}

@media (max-width: 575.98px){
  .navbar-brand img{
    height:64px;
  }

  .display-zack{
    font-size:clamp(2.2rem, 12vw, 3.4rem);
  }

  .price-value{
    font-size:2.4rem;
  }

  .flow-number{
    width:52px;
    height:52px;
    border-radius:16px;
    font-size:1.05rem;
  }

  .signal-card .big{
    font-size:1.8rem;
  }

  .proof-strip{
    padding:1rem;
  }
}
/* =========================================================
   GEO / SEO helpers
========================================================= */
.ai-summary{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.banking-callout a{
  font-weight:800;
}

.hero-panel-copy{
  color:var(--zack-muted);
  line-height:1.6;
}

  @media (min-width: 992px){
    .navbar .navbar-nav .nav-link{
      white-space: nowrap;
      font-size: .98rem;
      padding-left: .2rem;
      padding-right: .2rem;
    }
    .navbar .btn.btn-zack{
      flex: 0 0 auto;
      margin-left: .75rem;
    }
  }
  .hero-gallery-card{
    border:1px solid rgba(111,76,238,.12);
    border-radius:20px;
    background:#fff;
    box-shadow:0 14px 36px rgba(41,30,79,.06);
    overflow:hidden;
  }
  .hero-gallery-head{
    padding:1rem 1rem .25rem;
  }
  .hero-gallery-head h3{
    font-size:1rem;
    font-weight:800;
    color:#291E4F;
    margin:0 0 .25rem;
  }
  .hero-gallery-head p{
    margin:0;
    color:#645a82;
    font-size:.92rem;
    line-height:1.55;
  }
  .hero-shot-slide{
    padding:0 1rem 1rem;
  }
  .hero-shot-trigger{
    display:block;
    text-decoration:none;
    color:inherit;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(111,76,238,.12);
    background:#fff;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .hero-shot-trigger:hover{
    transform:translateY(-3px);
    border-color:rgba(111,76,238,.22);
    box-shadow:0 18px 40px rgba(41,30,79,.10);
  }
  .hero-shot-trigger img{
    width:100%;
    display:block;
    aspect-ratio: 2560 / 1305;
    object-fit:cover;
    background:#f6f4fb;
  }
  .hero-shot-caption{
    padding:.9rem 1rem 1rem;
  }
  .hero-shot-caption strong{
    display:block;
    font-size:.95rem;
    font-weight:800;
    color:#291E4F;
    margin-bottom:.25rem;
  }
  .hero-shot-caption span{
    display:block;
    color:#645a82;
    font-size:.9rem;
    line-height:1.5;
  }
  .hero-gallery-card .carousel-control-prev,
  .hero-gallery-card .carousel-control-next{
    width:44px;
    top:50%;
    bottom:auto;
    transform:translateY(-50%);
    opacity:1;
  }
  .hero-gallery-card .carousel-control-prev{ left:.35rem; }
  .hero-gallery-card .carousel-control-next{ right:.35rem; }
  .hero-gallery-card .carousel-control-prev-icon,
  .hero-gallery-card .carousel-control-next-icon{
    width:2.4rem;
    height:2.4rem;
    border-radius:50%;
    background-color:rgba(41,30,79,.78);
    background-size:1rem 1rem;
  }
  .hero-gallery-card .carousel-indicators{
    position:static;
    margin:.2rem 0 0;
    padding:0 1rem 1rem;
  }
  .hero-gallery-card .carousel-indicators [data-bs-target]{
    width:9px;
    height:9px;
    border-radius:50%;
    border:0;
    background-color:rgba(111,76,238,.28);
    opacity:1;
  }
  .hero-gallery-card .carousel-indicators .active{
    background-color:#6F4CEE;
  }
  .hero-gallery-actions{
    padding:0 1rem 1rem;
  }
  .hero-gallery-actions .btn{
    width:100%;
  }
  .modal-shot-copy h3{
    font-size:1.2rem;
    font-weight:800;
    color:#291E4F;
    margin-bottom:.5rem;
  }
  .modal-shot-copy p{
    color:#5f547f;
    margin-bottom:0;
    line-height:1.7;
  }
  .screenshot-modal-image{
    width:100%;
    border-radius:20px;
    border:1px solid rgba(111,76,238,.12);
    box-shadow:0 18px 46px rgba(41,30,79,.08);
    background:#fff;
  }