:root{
  --navy:#1f2733;
  --navy-soft:#333c4a;
  --blue:#1f6fb2;
  --blue-dark:#155084;
  --pink:#e0297f;
  --gray-bg:#eceeef;
  --gray-line:#d7dadd;
  --ink:#2b303a;
  --ink-soft:#5b6270;
  --white:#ffffff;
  --radius:10px;
  --maxw:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Poppins","Segoe UI",Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-weight:400;
  color:var(--navy);
  margin:0 0 .5em 0;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:var(--white);
  border-bottom:1px solid var(--gray-line);
}
.nav-inner{
  max-width:var(--maxw); margin:0 auto; padding:18px 32px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.logo{
  font-size:22px; font-weight:700; letter-spacing:.5px;
  display:flex; align-items:center; gap:6px;
}
.logo .rev{color:var(--navy);}
.logo .new{color:var(--blue);}
.logo svg{width:20px; height:20px; margin-left:2px;}
nav.links{display:flex; align-items:center; gap:32px;}
nav.links a{
  font-size:14.5px; font-weight:600; color:var(--navy-soft);
  transition:color .15s ease;
}
nav.links a:hover{color:var(--blue);}
nav.links a.active{color:var(--blue);}
.cta-btn{
  background:var(--blue); color:var(--white)!important;
  padding:11px 22px; border-radius:6px; font-size:14.5px; font-weight:600; border: none;
  transition:background .15s ease;
  white-space:nowrap;
}
.cta-btn:hover{background:var(--blue-dark);}
.menu-toggle{display:none; background:none; border:none; cursor:pointer; padding:4px;}
.menu-toggle span{display:block; width:24px; height:2px; background:var(--navy); margin:5px 0;}

/* ---------- Hero ---------- */
.hero{
  background:var(--gray-bg);
  padding:96px 0;
  overflow:hidden;
}
.hero-inner{
  max-width:var(--maxw); margin:0 auto; padding:0 32px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:48px;
  text-align:left;
}
.hero-copy{max-width:520px;}
.hero h1{
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.15;
  margin:0 0 18px 0;
  color:var(--navy);
}
.hero h1 .accent{color:var(--blue);}
.hero p.sub{
  font-size:18px; line-height: 28px; color:var(--ink-soft); margin:0 0 34px 0;
}
.hero-btn-row{display:flex; gap:16px; margin-bottom:0; flex-wrap:wrap;}
.btn-primary{
  background:var(--blue); color:var(--white); padding:14px 30px;
  border-radius:6px; font-weight:600; font-size:15px;
}
.btn-outline{
  border:1.5px solid var(--navy-soft); color:var(--navy); padding:13px 28px;
  border-radius:6px; font-weight:600; font-size:15px;
}
.hero-img{max-width:100%;}

/* ---------- Section shells ---------- */
section{padding:84px 0;}
.section-eyebrow{
  text-transform:uppercase; letter-spacing:1.5px; font-size:12.5px;
  font-weight:700; color:var(--blue); margin-bottom:10px; display:block;
}
.section-head{text-align:center; max-width:7000px; margin:0 auto 56px auto;}
.section-head h2{font-size:clamp(26px,3vw,36px);}

/* ---------- Two outcomes ---------- */
.outcomes{display:grid; grid-template-columns:1fr 1fr; gap:28px;}
.outcome-card{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:var(--radius);
  padding:40px 36px;
  transition:box-shadow .2s ease, transform .2s ease;
}
.outcome-card:hover{box-shadow:0 14px 30px rgba(31,39,51,.08); transform:translateY(-3px);}
.outcome-icon{
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.outcome-icon svg{width:26px; height:26px;}
.outcome-tag{
  text-transform:uppercase; font-size:12px; font-weight:700; letter-spacing:1.2px;
  color:var(--ink-soft); margin-bottom:10px; display:block;
}
.outcome-card h3{font-size:21px; margin-bottom:12px;}
.outcome-card p{color:var(--ink-soft); line-height:1.65; font-size:15px; margin:0 0 20px 0;}
.outcome-card .learn{font-weight:700; color:var(--blue); font-size:14.5px;}
.outcome-card .learn:hover{text-decoration:underline;}

/* ---------- How it works (grid cards) ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  max-width:var(--maxw);
  margin:0 auto;
}
.step-card{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:8px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.step-num{
  background:var(--ink-soft); color:var(--white); font-weight:700; font-size:18px;
  width:100%; padding:12px 0; text-align:center;
}
.step-imgslot{
  width:100%;
  background:var(--gray-bg);
  border-bottom:1px solid var(--gray-line);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink-soft);
  font-size:13px;
}
.step-imgslot img{width:60%;}
.step-body{padding:20px 22px 24px 22px;}
.step-text h4{margin:0 0 6px 0; font-size:15.5px; font-weight:700; color:var(--navy);}
.step-text p{margin:0; font-size:14px; color:var(--ink-soft); line-height:1.55;}

/* ---------- Why it works ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.why-card{
  background:var(--gray-bg); border-radius:var(--radius); padding:34px 28px;
  text-align:left;
}
.why-icon{
 width:100%;
 display:flex; align-items:center; justify-content:center;
  
  <!--width:46px; height:46px; margin-bottom:18px;
  color:var(--pink);
  align-items:center; -->
}
.why-icon svg{width:100%; height:100%;}
.why-card h3{font-size:18px; margin-bottom:10px;}
.why-card p{font-size:14.5px; color:var(--ink-soft); line-height:1.6; margin:0;}

/* ---------- Security band ---------- */
.security{
  background:var(--ink-soft); color:var(--white);
  border-radius:var(--radius);
}
.security-inner{padding:50px 50px;}
.security h2{color:var(--white); font-size:26px;}
.security p{color:#c6cbd4; font-size:15.5px; line-height:1.75; max-width:100%; margin:0;}

/* ---------- Testimonials ---------- */
.quote-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
.quote-card{
  background:var(--white); border:1px solid var(--gray-line); border-radius:var(--radius);
  padding:32px; position:relative;
}
.quote-mark{font-size:44px; color:var(--pink); line-height:1; font-family:Georgia,serif; margin-bottom:6px;}
.quote-card p.quote-text{font-size:15.5px; line-height:1.65; color:var(--ink); font-style:italic; margin:0 0 18px 0;}
.quote-attr{font-size:13.5px; font-weight:700; color:var(--navy);}
.quote-attr span{display:block; font-weight:400; color:var(--ink-soft); font-size:13px; margin-top:1px;}
.view-casestudies{text-align:center; margin-top:40px;}
.view-casestudies a{
  font-weight:700; color:var(--blue); font-size:14px; letter-spacing:.5px; text-transform:uppercase;
  border-bottom:2px solid var(--blue); padding-bottom:4px;
}

/* ---------- Contact band ---------- */
.contact{
  background:linear-gradient(135deg,var(--blue) 0%, var(--blue-dark) 100%);
  border-radius:var(--radius); color:var(--white); text-align:center;
  padding:64px 40px;
}
.contact h2{color:var(--white); font-size:28px;}
.contact p{color:#dce8f5; max-width:520px; margin:0 auto 28px auto; font-size:15.5px;}
.contact .btn-primary{background:var(--white); color:var(--blue-dark);}
.contact .btn-primary:hover{background:#eef4fb;}

/* ---------- Calculator band ---------- */
.calculator{
  background:linear-gradient(135deg,var(--blue) 0%, var(--blue-dark) 100%);
  border-radius:var(--radius); color:var(--white); text-align:center;
  padding:64px 40px;
}
.calculator h2{color:var(--white); font-size:28px;}
.calculator p{color:#dce8f5; max-width:520px; margin:0 auto 28px auto; font-size:15.5px;}
.calculator .btn-primary{background:var(--white); color:var(--blue-dark);}
.calculator .btn-primary:hover{background:#eef4fb;}

.calculator .btn-wide{
  display:inline-block;
  width:48%;
  min-width:260px;
  padding:14px 0;
  font-size:15px;
  background: var(--white); 
}
@media (max-width:600px){
  .calculator .btn-wide{width:100%;}
}




/* ---------- Footer ---------- */
footer{background:var(--navy); color:#aab1bd; padding:64px 0 0 0;}
.footer-top{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px;
  padding-bottom:48px; border-bottom:1px solid #333c4a;
}
.footer-logo{display:flex; align-items:center; gap:6px; font-size:20px; font-weight:700; color:var(--white); margin-bottom:14px;}
.footer-logo .new{color:#5fb0ee;}
.footer-col p{font-size:14px; line-height:1; color:#9099a6; max-width:280px;}
.footer-col a.contact-link{display:block; font-size:14px; color:#c6cbd4; margin-top:10px;}
.footer-col a.contact-link:hover{color:var(--white);}
.footer-col h4{color:var(--white); font-size:14px; text-transform:uppercase; letter-spacing:1px; margin-bottom:16px;}
.footer-col ul{list-style:none; margin:0; padding:0;}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul a{font-size:14px; color:#aab1bd;}
.footer-col ul a:hover{color:var(--white);}
.footer-cta h4{margin-bottom:10px;}
.footer-cta p{font-size:13.5px; color:#9099a6; margin-bottom:16px;}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; flex-wrap:wrap; gap:12px; font-size:13px; color:#7d8695;
}
.footer-bottom .legal-links{display:flex; gap:20px;}
.footer-bottom .legal-links a{color:#7d8695;}
.footer-bottom .legal-links a:hover{color:var(--white);}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .outcomes{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .quote-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr; gap:32px;}
  .hero-inner{grid-template-columns:1fr; text-align:center;}
  .hero-copy{max-width:100%; margin:0 auto;}
  .hero-btn-row{justify-content:center;}
  .hero-img{max-width:440px; margin:0 auto;}
  .steps{grid-template-columns:1fr 1fr;}
}
@media (max-width: 760px){
  nav.links{
    position:fixed; top:66px; left:0; right:0; bottom:0;
    background:var(--white);
    flex-direction:column; align-items:flex-start; gap:0;
    padding:12px 32px 32px 32px;
    transform:translateY(-110%); opacity:0;
    transition:transform .25s ease, opacity .2s ease;
    pointer-events:none;
    border-top:1px solid var(--gray-line);
  }
  nav.links.open{transform:translateY(0); opacity:1; pointer-events:auto;}
  nav.links a{padding:14px 0; width:100%; border-bottom:1px solid var(--gray-line);}
  nav.links .cta-btn{margin-top:16px; text-align:center;}
  .menu-toggle{display:block;}
  section{padding:56px 0;}
  .security-inner{padding:36px 24px;}
  .contact{padding:44px 24px;}
  .steps{grid-template-columns:1fr;}
}

/* ---------- Demo Request Modal ---------- */
.modal-overlay{
  display:none;
  position:fixed; inset:0; z-index:200;
  background:rgba(31,39,51,.6);
  align-items:center; justify-content:center;
  padding:24px;
}
.modal-overlay.open{display:flex;}
.modal-box{
  background:var(--white);
  border-radius:var(--radius);
  width:100%; max-width:640px;
  height:90vh;
  max-height:800px;
  position:relative;
  box-shadow:0 24px 60px rgba(0,0,0,.25);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.modal-close{
  position:absolute; top:14px; right:16px;
  background:none; border:none; cursor:pointer;
  font-size:22px; line-height:1; color:var(--ink-soft);
  width:32px; height:32px; border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  z-index:1;
}
.modal-close:hover{background:var(--gray-bg); color:var(--navy);}
.modal-box iframe{
  width:100%;
  flex:1 1 auto;
  border:none;
  display:block;
}
@media (max-width:600px){
  .modal-box iframe{height:70vh;}
}

/* ---------- For Retailers: Strategic Advantages (4-up) ---------- */
.advantages-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.advantage-card{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:var(--radius);
  padding:32px 26px;
  transition:box-shadow .2s ease, transform .2s ease;
}
.advantage-card:hover{box-shadow:0 14px 30px rgba(31,39,51,.08); transform:translateY(-3px);}
.advantage-card h3{font-size:17px; margin-bottom:10px;}
.advantage-card p{color:var(--ink-soft); font-size:14.5px; line-height:1.6; margin:0;}

/* ---------- Alternating feature rows (image + text) ---------- */
.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:56px;
}
.feature-row + .feature-row{margin-top:72px;}
.feature-row.reverse .feature-img{order:2;}
.feature-row.reverse .feature-text{order:1;}
.feature-img img{width:100%; border-radius:var(--radius);}
.feature-text h3{font-size:22px; margin-bottom:14px;}
.feature-text p{color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin:0;}


/* ---------- MASSIVE REACH FEATURE Alternating feature rows (image + text) ---------- */
.feature-row2{
  display:grid;
  grid-template-columns:1fr 2fr;
  align-items:center;
  gap:6px;
}
.feature-row2 + .feature-row{margin-top:72px;}
.feature-img img{width:100%; border-radius:var(--radius);}
.feature-text h3{font-size:22px; margin-bottom:14px;}
.feature-text p{color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin:0;}

.feature-row3{
  display:grid;
  grid-template-columns:2fr 1fr;
  align-items:center;
  gap:6px;
  padding: 30px;
}
.feature-row3 + .feature-row{margin-top:72px;}
.feature-img img{width:100%; border-radius:var(--radius);}
.feature-text h3{font-size:22px; margin-bottom:14px;}
.feature-text p{color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin:0;}


/* ---------- TRUST and TRANSPARENCY Alternating feature rows (image + text) ---------- */
.feature-row4{
  display:grid;
  grid-template-columns:1fr 3fr;
  align-items:center;
  gap:6px;
}
.feature-row4 + .feature-row{margin-top:12px;}
.feature-img img{width:30%; border-radius:var(--radius);}
.feature-text h3{font-size:22px; margin-bottom:14px;}
.feature-text p{color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin:0;}

.feature-row5{
  display:grid;
  grid-template-columns:3fr 1fr;
  align-items:center;
  gap:6px;
  padding: 30px;
}
.feature-row5 + .feature-row{margin-top:72px;}
.feature-img img{width:100%; border-radius:var(--radius);}
.feature-text h3{font-size:22px; margin-bottom:14px;}
.feature-text p{color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin:0;}







/* ---------- Stats band ---------- */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  text-align:center;
}
.stat-card{padding:12px;}
.stat-number{
  font-size:clamp(38px, 5vw, 54px);
  font-weight:700;
  color:var(--blue);
  line-height:1;
  margin-bottom:10px;
}
.stat-label{
  text-transform:uppercase; letter-spacing:1px; font-size:13px; font-weight:700;
  color:var(--navy); margin-bottom:10px;
}
.stat-card p{color:var(--ink-soft); font-size:14.5px; line-height:1.6; margin:0;}

/* ---------- Case study cards ---------- */
.case-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.case-card{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.case-img{padding-top:10px; width:100%; aspect-ratio:16/9; overflow:hidden; background:var(--white); display:flex; justify-content:center;}
.case-img img{width:90%; height:90%; object-fit:contain;}
.case-body{padding:26px 28px 30px 28px;}
.case-tag{
  text-transform:uppercase; letter-spacing:1px; font-size:12px; font-weight:700;
  color:var(--blue); display:block; margin-bottom:10px;
}
.case-card h3{font-size:19px; margin-bottom:10px;}
.case-card p{color:var(--ink-soft); font-size:14.5px; line-height:1.65; margin:0 0 18px 0;}
.case-card .learn{font-weight:700; color:var(--blue); font-size:14.5px;}
.case-card .learn:hover{text-decoration:underline;}

/* ---------- Responsive additions ---------- */
@media (max-width: 900px){
  .advantages-grid{grid-template-columns:1fr 1fr;}
  .feature-row{grid-template-columns:1fr; gap:28px;}
  .feature-row.reverse .feature-img{order:1;}
  .feature-row.reverse .feature-text{order:2;}
  .feature-row + .feature-row{margin-top:48px;}
  .stats-grid{grid-template-columns:1fr;}
  .case-grid{grid-template-columns:1fr;}
}
@media (max-width: 600px){
  .advantages-grid{grid-template-columns:1fr;}
}


/* ---------- For Banks: 6-up stats grid ---------- */
.stats-grid-6{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:24px;
  text-align:center;
}
.stats-grid-6 .stat-number{font-size:clamp(28px, 3.4vw, 38px);}

/* ---------- Highlight stat pair (used inside a feature row) ---------- */
.stat-pair{display:flex; gap:40px; margin:22px 0 28px 0;}
.stat-pair .stat-mini-number{
  font-size:32px; font-weight:700; color:var(--blue); line-height:1;
}
.stat-pair .stat-mini-label{
  font-size:13px; color:var(--ink-soft); margin-top:6px;
}

/* ---------- Mini case study blurbs (text-only, 2-up) ---------- */
.mini-case-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:40px;
}
.mini-case-card{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:var(--radius);
  padding:28px 26px;
}
.mini-case-card h3{font-size:17px; margin-bottom:10px;}
.mini-case-card p{color:var(--ink-soft); font-size:14.5px; line-height:1.65; margin:0;}

/* ---------- Checklist (Zero cost to banks) ---------- */
.checklist{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin:28px 0 32px 0;
}
.checklist-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  font-size:15.5px;
  font-weight:600;
  color:var(--navy);
}
.checklist-item img{width:132px; height:132px;}
/* ---------- Responsive additions ---------- */
@media (max-width: 900px){
  .stats-grid-6{grid-template-columns:repeat(3, 1fr);}
  .mini-case-grid{grid-template-columns:1fr;}
  .stat-pair{gap:32px;}
}
@media (max-width: 600px){
  .stats-grid-6{grid-template-columns:1fr 1fr;}
  .checklist{grid-template-columns:1fr;}
}

/* ---------- Frictionless vs Activation-Based comparison ---------- */
.comparison-row{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  align-items:center;
  gap:56px;
}
.comparison-text h3{color:#fff; font-size:26px; margin-bottom:16px;}
.comparison-text p{color:#c6cbd4; font-size:15.5px; line-height:1.75; margin:0;}
.comparison-closer{
  color:#c6cbd4; font-size:15.5px; line-height:1.75;
  max-width:900px; margin:36px auto 0 auto; text-align:center;
}
.comparison-closer strong{color:#fff;}

.compare-table-wrap{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}
.compare-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.compare-table th, .compare-table td{
  padding:16px 18px;
  text-align:left;
  border-bottom:1px solid var(--gray-line);
}
.compare-table th{
  background:var(--gray-bg);
  color:var(--navy);
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:.6px;
  font-weight:700;
}
.compare-table td{color:var(--ink);}
.compare-table tr:last-child td{border-bottom:none;}
.compare-table td.metric-label{font-weight:600; color:var(--navy);}
.compare-table td.lift-value{color:var(--blue); font-weight:700;}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .comparison-row{grid-template-columns:1fr; gap:32px;}
  .compare-table{font-size:13px;}
  .compare-table th, .compare-table td{padding:12px 10px;}
}

/* ---------- Feature row modifier: smaller icon instead of full image ---------- */
.feature-row.icon-row{align-items:start;}
.feature-row.icon-row .feature-img{
  display:flex; justify-content:center; align-items:flex-start;
}
.feature-row.icon-row .feature-img img{
  width:196px; object-fit:contain; border-radius:0;
}
.feature-row.icon-row.reverse .feature-img{order:1;}
.feature-row.icon-row.reverse .feature-text{order:2;}

/* ---------- 3-up advantages variant ---------- */
.advantages-grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

/* ---------- FAQ accordion ---------- */
.faq-list{
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--gray-line);
  border-radius:8px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  cursor:pointer;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:15.5px;
  font-weight:600;
  color:var(--navy);
}
.faq-question:hover{color:var(--blue);}
.faq-icon{
  flex:none;
  width:20px; height:20px;
  position:relative;
}
.faq-icon::before, .faq-icon::after{
  content:"";
  position:absolute;
  background:var(--blue);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.faq-icon::before{width:14px; height:2px;}
.faq-icon::after{width:2px; height:14px; transition:transform .2s ease;}
.faq-item.open .faq-icon::after{transform:translate(-50%,-50%) scaleY(0);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer-inner{
  padding:0 24px 20px 24px;
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.65;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .advantages-grid-3{grid-template-columns:1fr;}
  .feature-row.icon-row{grid-template-columns:1fr;}
  .feature-row.icon-row.reverse .feature-img{order:1;}
  .feature-row.icon-row.reverse .feature-text{order:2;}
}

/* ---------- Legal / policy content ---------- */
.legal-hero{
  background:var(--gray-bg);
  padding:56px 0 40px 0;
  text-align:center;
}
.legal-hero h1{font-size:clamp(28px,3.6vw,40px);}
.legal-hero p{color:var(--ink-soft); font-size:14.5px; margin-top:8px;}
.legal-content{
  max-width:760px;
  margin:0 auto;
  padding:64px 0;
}
.legal-content h2{
  font-size:20px;
  margin:40px 0 14px 0;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{
  color:var(--ink-soft);
  font-size:15px;
  line-height:1.75;
  margin:0 0 16px 0;
}
.legal-content ul{
  margin:0 0 16px 0;
  padding-left:22px;
  color:var(--ink-soft);
  font-size:15px;
  line-height:1.75;
}
.legal-content ul li{margin-bottom:6px;}
.legal-content a{color:var(--blue); font-weight:600;}
.legal-content a:hover{text-decoration:underline;}

/* ---------- 404 page ---------- */
.error-page{
  min-height:calc(100vh - 400px);
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gray-bg);
  padding:80px 32px;
}
.error-inner{
  text-align:center;
  max-width:560px;
}
.error-code{
  font-size:clamp(72px, 11vw, 120px);
  font-weight:700;
  color:var(--blue);
  line-height:1;
  margin-bottom:8px;
  letter-spacing:-2px;
}
.error-illustration{
  width:120px;
  margin:0 auto 24px auto;
}
.error-inner h1{
  font-size:clamp(22px, 2.6vw, 28px);
  margin-bottom:14px;
  line-height:1.4;
}
.error-inner p.error-sub{
  color:var(--ink-soft);
  font-size:15.5px;
  line-height:1.7;
  margin-bottom:32px;
}
.error-btn-row{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

@media (max-width:600px){
  .error-page{padding:56px 24px;}
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:300;
  background:var(--navy);
  color:#c6cbd4;
  padding:22px 32px;
  box-shadow:0 -10px 30px rgba(0,0,0,.2);
  display:none;
}
.cookie-banner.visible{display:block;}
.cookie-banner-inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cookie-banner-text{
  flex:1 1 420px;
  font-size:13.5px;
  line-height:1.6;
}
.cookie-banner-text strong{color:#fff;}
.cookie-banner-text a{color:#8fc2ea; font-weight:600;}
.cookie-banner-text a:hover{text-decoration:underline;}
.cookie-banner-actions{
  display:flex;
  gap:12px;
  flex:0 0 auto;
  flex-wrap:wrap;
}
.cookie-btn{
  padding:10px 20px;
  border-radius:6px;
  font-size:13.5px;
  font-weight:600;
  cursor:pointer;
  border:1.5px solid transparent;
  white-space:nowrap;
}
.cookie-btn-accept{
  background:var(--blue);
  color:#fff;
}
.cookie-btn-accept:hover{background:var(--blue-dark);}
.cookie-btn-decline{
  background:transparent;
  color:#c6cbd4;
  border-color:#4a5262;
}
.cookie-btn-decline:hover{border-color:#c6cbd4; color:#fff;}

@media (max-width:600px){
  .cookie-banner{padding:18px 20px;}
  .cookie-banner-inner{gap:16px;}
  .cookie-banner-actions{width:100%;}
  .cookie-btn{flex:1 1 0; text-align:center;}
}

/* ---------- Hero calculator CTA strip ---------- */
.hero-calc-cta{
  max-width:var(--maxw);
  margin:40px auto 0 auto;
  padding:0 32px;
  text-align:center;
  border-top:1px solid var(--gray-line);
  padding-top:28px;
}
.hero-calc-cta p{
  font-size:15px;
  color:var(--ink-soft);
  margin:0 0 14px 0;
}
.hero-calc-cta .btn-wide{
  display:inline-block;
  width:48%;
  min-width:260px;
  padding:14px 0;
  font-size:15px;
}
@media (max-width:600px){
  .hero-calc-cta .btn-wide{width:100%;}
}

/* ---------- Case Study: Hero ---------- */
.cs-hero{
  background:var(--gray-bg);
  padding:64px 0;
}
.cs-hero-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:48px;
}
.cs-hero h1{font-size:clamp(30px,4vw,44px); margin-bottom:16px;}
.cs-hero p{font-size:17px; color:var(--ink-soft); line-height:1.7; max-width:520px;}
.cs-hero-art{width:100%; max-width:420px; margin:0 auto;}

/* ---------- Big Wins intro + KPI grid ---------- */
.cs-intro{max-width:640px; margin:0 auto 40px auto; text-align:center;}
.cs-intro h2{font-size:clamp(24px,3vw,32px); color:var(--blue);}
.cs-intro p{color:var(--ink-soft); font-size:15.5px; margin-top:10px;}

.stats-grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
text-align:center;
}
.stats-grid-4 .stat-card{
  background:var(--gray-bg);
  border-radius:var(--radius);
  padding:28px 16px;
}
.stats-grid-4 .stat-number{font-size:clamp(28px,3.4vw,36px);}

/* ---------- See Detailed Results toggle ---------- */
.detail-toggle-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:28px;
}
.detail-toggle-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:14.5px;
  font-weight:700;
  color:var(--blue);
  padding:8px 4px;
}
.detail-toggle-btn:hover{color:var(--blue-dark);}
.detail-toggle-btn .chevron{
  width:9px; height:9px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  transition:transform .2s ease;
}
.detail-toggle-btn.open .chevron{transform:rotate(-135deg);}
.detail-download-link{
  font-size:14.5px;
  font-weight:700;
  color:var(--ink-soft);
}
.detail-download-link:hover{color:var(--navy); text-decoration:underline;}

.detail-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.detail-panel-inner{
  padding-top:36px;
  display:flex;
  flex-direction:column;
  gap:28px;
}
.detail-table-block h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--navy);
  margin-bottom:12px;
}
.detail-note{
  font-size:13px;
  color:var(--ink-soft);
  background:var(--gray-bg);
  border-radius:8px;
  padding:14px 18px;
  line-height:1.6;
}

/* ---------- Case Study: Hero ---------- */
.cs-hero{
  background:var(--gray-bg);
  padding:64px 0;
}
.cs-hero-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:48px;
}
.cs-hero h1{font-size:clamp(30px,4vw,44px); margin-bottom:16px;}
.cs-hero p{font-size:17px; color:var(--ink-soft); line-height:1.7; max-width:520px;}
.cs-hero-art{width:100%; max-width:420px; margin:0 auto;}

/* ---------- Big Wins intro + KPI grid ---------- */
.cs-intro{max-width:640px; margin:0 auto 40px auto; text-align:center;}
.cs-intro h2{font-size:clamp(24px,3vw,32px); color:var(--blue);}
.cs-intro p{color:var(--ink-soft); font-size:15.5px; margin-top:10px;}

.stats-grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.stats-grid-4 .stat-card{
  background:var(--gray-bg);
  border-radius:var(--radius);
  padding:28px 16px;
}
.stats-grid-4 .stat-number{font-size:clamp(28px,3.4vw,36px);}

/* ---------- See Detailed Results toggle ---------- */
.detail-toggle-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:28px;
}
.detail-toggle-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:14.5px;
  font-weight:700;
  color:var(--blue);
  padding:8px 4px;
}
.detail-toggle-btn:hover{color:var(--blue-dark);}
.detail-toggle-btn .chevron{
  width:9px; height:9px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  transition:transform .2s ease;
}
.detail-toggle-btn.open .chevron{transform:rotate(-135deg);}
.detail-download-link{
  font-size:14.5px;
  font-weight:700;
  color:var(--ink-soft);
}
.detail-download-link:hover{color:var(--navy); text-decoration:underline;}

.detail-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.detail-panel-inner{
  padding-top:36px;
  display:flex;
  flex-direction:column;
  gap:28px;
}
.detail-table-block h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--navy);
  margin-bottom:12px;
}
.detail-note{
  font-size:13px;
  color:var(--ink-soft);
  background:var(--gray-bg);
  border-radius:8px;
  padding:14px 18px;
  line-height:1.6;
}

/* ---------- Win blocks (New Customers Walked In / And They Came Back / The Math Works) ---------- */
.win-block{max-width:720px; margin:0 auto; text-align:center;}
.win-block .section-eyebrow{display:block;}
.win-block h2{font-size:clamp(24px,3.4vw,34px); line-height:1.25; margin-bottom:16px;}
.win-block p{color:var(--ink-soft); font-size:15.5px; line-height:1.75;}
.win-block-left{text-align:left; max-width:none;}
.win-block-left .section-eyebrow{text-align:left;}

/* ---------- Horizontal segment bar chart ---------- */
.hbar-chart{display:flex; flex-direction:column; gap:18px;}
.hbar-row{display:grid; grid-template-columns:64px 1fr 56px; align-items:center; gap:14px;}
.hbar-label{font-size:12.5px; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:.5px;}
.hbar-track{background:var(--gray-bg); border-radius:6px; height:30px; overflow:hidden;}
.hbar-fill{height:100%; border-radius:6px; transition:width .6s ease;}
.hbar-value{font-size:14.5px; font-weight:700; color:var(--navy); text-align:right;}
.hbar-caption{margin-top:20px; font-size:13.5px; color:var(--ink-soft); text-align:center; padding-top:16px; border-top:1px solid var(--gray-line);}

/* ---------- Result cards with icon slot (And They Came Back) ---------- */
.result-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px;}
.result-card{background:var(--white); border:1px solid var(--gray-line); border-radius:var(--radius); padding:28px 20px; text-align:center; transition:box-shadow .2s ease, transform .2s ease;}
.result-card:hover{box-shadow:0 14px 30px rgba(31,39,51,.08); transform:translateY(-3px);}
.result-card-icon{width:56px; height:56px; margin:0 auto 16px auto; border-radius:12px; background:var(--gray-bg); display:flex; align-items:center; justify-content:center;}
.result-card-icon img{width:28px; height:28px; object-fit:contain;}
.result-card-number{font-size:28px; font-weight:700; color:var(--blue); line-height:1;}
.result-card-label{font-size:12.5px; color:var(--ink-soft); margin-top:10px; text-transform:uppercase; letter-spacing:.5px; font-weight:600;}

/* ---------- Donut chart (Qualified Sales Distribution) ---------- */
.donut-wrap{display:flex; flex-direction:column; align-items:center; gap:22px;}
.donut{width:180px; height:180px; border-radius:50%; position:relative; flex:none;}
.donut-hole{position:absolute; inset:22%; background:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-direction:column; text-align:center;}
.donut-hole-pct{font-size:20px; font-weight:700; color:var(--navy); line-height:1;}
.donut-hole-label{font-size:10px; color:var(--ink-soft); margin-top:4px; text-transform:uppercase; letter-spacing:.4px;}
.donut-legend{display:flex; flex-direction:column; gap:10px; width:100%; max-width:260px;}
.donut-legend-item{display:flex; align-items:center; justify-content:space-between; font-size:13px; gap:12px;}
.donut-legend-label{display:flex; align-items:center; gap:8px; color:var(--ink-soft);}
.donut-legend-dot{width:10px; height:10px; border-radius:50%; flex:none;}
.donut-legend-value{font-weight:700; color:var(--navy); white-space:nowrap;}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .cs-hero-inner{grid-template-columns:1fr; text-align:center;}
  .cs-hero p{margin:0 auto;}
  .stats-grid-4{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .stats-grid-4{grid-template-columns:1fr;}
  .detail-toggle-row{flex-direction:column; gap:12px;}
  .result-cards{grid-template-columns:1fr;}
  .hbar-row{grid-template-columns:56px 1fr 50px; gap:8px;}
}