/* Consolidated production stylesheet. Source order preserved to retain cascade. */

/* ===== style.css ===== */
:root{
  --forest:#0b3d75;
  --forest-2:#0b3d75;
  --emerald:#1877f2;
  --emerald-2:#378bf5;
  --mint:#e7f3ff;
  --mint-2:#f7faff;
  --gold:#378bf5;
  --gold-2:#6faef7;
  --ink:#072346;
  --text:#43554d;
  --muted:#728078;
  --white:#ffffff;
  --paper:#f7faff;
  --line:#e7f3ff;
  --shadow-sm:0 10px 30px rgba(11,61,117,.08);
  --shadow:0 28px 80px rgba(11,61,117,.14);
  --radius:24px;
  --radius-lg:34px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 5% 12%,rgba(55,139,245,.10),transparent 22%),
    radial-gradient(circle at 96% 8%,rgba(55,139,245,.11),transparent 20%);
  z-index:-1;
}
h1,h2,h3,h4,.brand strong{font-family:"Manrope",Arial,sans-serif}
h1,h2,h3,h4{color:var(--ink)}
a{text-decoration:none;color:inherit}
img{width:100%;display:block}
button,input,select,textarea{font:inherit}
.container{width:min(1220px,calc(100% - 44px));margin:auto}

/* Top bar */
.topbar{
  background:linear-gradient(90deg,#072346,var(--forest));
  color:#e7f3ff;
  font-size:12px;
  letter-spacing:.15px;
  padding:9px 0;
}
.topbar-inner{display:flex;justify-content:space-between;align-items:center}
.topbar-inner>span:before{content:"●";color:var(--emerald-2);font-size:9px;margin-right:9px}
.topbar a{margin-left:22px;color:#e7f3ff;transition:.25s}
.topbar a:hover{color:var(--gold-2)}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(11,61,117,.08);
  box-shadow:0 5px 25px rgba(11,61,117,.035);
}
.nav-wrap{height:88px;display:flex;align-items:center;position:relative}
.brand{display:flex;align-items:center;gap:12px;min-width:max-content}
.brand-mark{
  width:52px;height:52px;border-radius:17px;
  background:linear-gradient(145deg,var(--emerald-2),var(--emerald));
  color:#fff;display:grid;place-items:center;
  box-shadow:0 14px 32px rgba(24,119,242,.24);
  overflow:hidden;
  position:relative;
}
.brand-mark:after{
  content:"";
  position:absolute;width:28px;height:28px;border:2px solid rgba(255,255,255,.35);
  border-radius:50% 8px 50% 8px;transform:rotate(-25deg);
}
.brand-mark svg{width:31px;height:31px;position:relative;z-index:2}
.brand strong,.brand small{display:block}
.brand strong{font-size:21px;letter-spacing:-.5px;line-height:1}
.brand small{font-size:9px;letter-spacing:1.55px;text-transform:uppercase;color:var(--muted);margin-top:6px}
.main-nav{margin-left:auto;display:flex;align-items:center;gap:3px}
.main-nav a{
  position:relative;
  font-weight:700;font-size:13px;
  padding:12px 11px;border-radius:12px;
  color:#405149;transition:.25s;
}
.main-nav a:hover,.main-nav a.active{
  color:var(--emerald);background:var(--mint);
}
.main-nav a:not(.nav-cta):after{
  content:"";position:absolute;left:50%;right:50%;bottom:5px;height:2px;
  background:var(--emerald);border-radius:5px;transition:.25s;
}
.main-nav a:hover:after,.main-nav a.active:after{left:24%;right:24%}
.main-nav .nav-cta{
  margin-left:10px;padding:13px 18px;color:#fff;
  background:linear-gradient(135deg,var(--emerald),#0e4f99);
  box-shadow:0 12px 26px rgba(24,119,242,.22);
}
.main-nav .nav-cta:hover{color:#fff;background:linear-gradient(135deg,#0e4f99,#0b3d75);transform:translateY(-2px)}
.nav-toggle{
  display:none;margin-left:auto;border:0;background:var(--mint);
  color:var(--forest);width:44px;height:44px;border-radius:13px;
  font-size:22px;cursor:pointer;
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:50px;padding:13px 21px;border-radius:14px;
  font-weight:800;border:1px solid transparent;transition:.3s;
}
.btn:hover{transform:translateY(-3px)}
.btn.primary{
  background:linear-gradient(135deg,var(--emerald),#0e4f99);
  color:#fff;box-shadow:0 14px 30px rgba(24,119,242,.22)
}
.btn.primary:hover{box-shadow:0 18px 38px rgba(24,119,242,.30)}
.btn.secondary{
  background:#fff;color:var(--forest);border-color:#cbe2ff;box-shadow:var(--shadow-sm)
}
.btn.secondary:hover{border-color:var(--emerald);color:var(--emerald)}
.btn.white{background:#fff;color:var(--forest);box-shadow:var(--shadow-sm)}
.btn.light-btn{background:#fff;color:var(--forest)}
.btn.dark-btn{background:var(--forest);color:#fff}

/* Hero */
.hero,.page-hero{
  position:relative;overflow:hidden;
  background:
    linear-gradient(135deg,rgba(231,243,255,.98),rgba(247,250,255,.97)),
    radial-gradient(circle at 85% 10%,rgba(55,139,245,.2),transparent 28%);
}
.hero:before,.page-hero:before{
  content:"";position:absolute;width:480px;height:480px;border-radius:50%;
  right:-170px;top:-190px;border:1px solid rgba(24,119,242,.15);
  box-shadow:0 0 0 70px rgba(24,119,242,.035),0 0 0 140px rgba(24,119,242,.025);
}
.hero-grid{
  min-height:710px;padding:80px 0 110px;
  display:grid;grid-template-columns:1.03fr .97fr;gap:78px;align-items:center;
}
.pill,.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  padding:9px 14px;border-radius:999px;
  background:rgba(255,255,255,.86);border:1px solid #cbe2ff;
  color:var(--emerald);font-size:11px;font-weight:800;
  text-transform:uppercase;letter-spacing:1.25px;
  box-shadow:0 8px 25px rgba(11,61,117,.05);
}
.pill:before,.eyebrow:before{
  content:"";width:8px;height:8px;border-radius:50%;background:var(--emerald);
  box-shadow:0 0 0 6px rgba(24,119,242,.11)
}
.hero h1,.page-hero h1{
  font-size:clamp(48px,6vw,78px);line-height:1.04;
  letter-spacing:-3.6px;margin:24px 0;color:var(--ink)
}
.hero h1 em,.page-hero h1 em{
  font-style:normal;color:var(--emerald);
  background:linear-gradient(90deg,var(--emerald),#0e4f99);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero p,.page-hero p{
  color:var(--text);font-size:18px;line-height:1.8;max-width:720px
}
.actions{display:flex;gap:13px;flex-wrap:wrap;margin-top:32px}
.trust-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.trust-row span{
  background:rgba(255,255,255,.78);border:1px solid #cbe2ff;
  border-radius:12px;padding:9px 12px;font-size:12px;font-weight:700;color:#364f6f
}
.hero-card{
  position:relative;height:540px;border-radius:var(--radius-lg);
  background:linear-gradient(145deg,#0b3d75,#0b3d75);
  padding:18px;box-shadow:0 38px 90px rgba(7,35,70,.25);
  isolation:isolate;
}
.hero-card:before{
  content:"";position:absolute;inset:0;border-radius:inherit;
  background:radial-gradient(circle at 90% 5%,rgba(111,174,247,.28),transparent 28%);
  z-index:-1
}
.hero-photo{height:410px;border-radius:26px;overflow:hidden}
.hero-photo img{height:100%;object-fit:cover;filter:saturate(.9)}
.gold-tag{
  position:absolute;right:-16px;top:42px;width:112px;height:112px;border-radius:50%;
  display:grid;place-items:center;text-align:center;padding:14px;
  background:linear-gradient(145deg,var(--gold-2),var(--gold));
  color:#0b3d75;font:800 12px "Manrope";
  border:8px solid #cbe2ff;box-shadow:0 20px 45px rgba(24,119,242,.28);z-index:3
}
.wallet-mini{
  position:absolute;left:-28px;bottom:25px;width:295px;padding:23px 24px;
  background:rgba(255,255,255,.96);backdrop-filter:blur(10px);
  border-radius:22px;box-shadow:var(--shadow);border:1px solid rgba(255,255,255,.65)
}
.wallet-mini small,.wallet-mini strong,.wallet-mini span{display:block}
.wallet-mini small{font-size:10px;letter-spacing:1.3px;color:var(--muted);font-weight:800}
.wallet-mini strong{font:800 34px "Manrope";margin:7px 0;color:var(--forest)}
.wallet-mini span{font-size:12px;color:var(--emerald);font-weight:700}
.kg-mini{
  position:absolute;right:20px;bottom:28px;color:#fff;
  background:rgba(7,35,70,.85);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:16px 19px
}
.kg-mini strong,.kg-mini span{display:block}
.kg-mini strong{font-size:22px}.kg-mini span{font-size:11px;color:#cbe2ff}

/* Stats */
.stats{position:relative;margin-top:-54px;z-index:5}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:#fff;border:1px solid var(--line);border-radius:25px;
  box-shadow:var(--shadow);padding:27px 28px
}
.stats-grid div{text-align:center;border-right:1px solid var(--line)}
.stats-grid div:last-child{border-right:0}
.stats-grid strong{display:block;font:800 28px "Manrope";color:var(--emerald)}
.stats-grid span{font-size:12px;color:var(--muted)}

/* Sections */
.section{padding:105px 0;position:relative}
.section.soft{background:linear-gradient(180deg,var(--mint-2),#f7faff)}
.section.dark{
  color:#fff;background:
  radial-gradient(circle at 85% 0,rgba(55,139,245,.18),transparent 26%),
  linear-gradient(145deg,#072346,#0b3d75)
}
.section.dark h2,.section.dark h3{color:#fff}
.section-head{max-width:800px;margin:0 auto 54px;text-align:center}
.section-head.light p{color:#cbe2ff}
.section-head h2,.split h2,.charity-home h2{
  font-size:clamp(36px,4.8vw,57px);line-height:1.12;
  letter-spacing:-2.3px;margin:18px 0
}
.section-head p,.split p,.charity-home p{color:var(--text);font-size:17px;line-height:1.8}
.steps{
  display:grid;grid-template-columns:repeat(5,1fr);gap:16px;position:relative
}
.steps article{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:22px;padding:28px 22px;box-shadow:0 10px 25px rgba(11,61,117,.04);
  transition:.3s
}
.steps article:hover{transform:translateY(-9px);box-shadow:var(--shadow);border-color:#cbe2ff}
.steps article b{position:absolute;right:18px;top:16px;color:#a6b5ad;font-size:12px}
.steps .icon{
  width:58px;height:58px;border-radius:18px;background:var(--mint);
  display:grid;place-items:center;font-size:24px;margin-bottom:22px
}
.steps h3{font-size:19px;margin:0 0 9px}
.steps p{font-size:13px;color:var(--muted);line-height:1.7}
.split{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.reverse .photo-panel{order:2}
.plan-stack{height:420px;position:relative}
.mini-plan{
  position:absolute;left:0;right:0;margin:auto;width:88%;
  border-radius:26px;padding:28px 30px;box-shadow:var(--shadow);
  display:flex;justify-content:space-between;align-items:center
}
.mini-plan span{font:800 27px "Manrope"}.mini-plan small{font-weight:700}
.mini-plan.disabled{background:#eaeff5;color:#829088;top:20px;transform:rotate(-4deg)}
.mini-plan.silver{top:120px;transform:rotate(4deg)}
.mini-plan.active{
  top:225px;background:linear-gradient(145deg,#e7f3ff,var(--gold));color:#072346
}
.mini-plan.active b{background:#0b3d75;color:#fff;padding:7px 10px;border-radius:999px;font-size:10px}
.text-link{font-weight:800;color:var(--emerald);display:inline-flex;gap:7px;align-items:center}
.text-link:hover{gap:12px}
.photo-panel{position:relative}
.photo-panel:before{
  content:"";position:absolute;left:-24px;top:-24px;width:130px;height:130px;
  border-radius:28px;background:var(--mint);z-index:-1
}
.photo-panel img{height:520px;object-fit:cover;border-radius:32px;box-shadow:var(--shadow)}
.photo-badge{
  position:absolute;right:-18px;bottom:28px;background:#fff;padding:18px 23px;
  border-radius:18px;box-shadow:var(--shadow);font-weight:800;color:var(--emerald);
  border:1px solid var(--line)
}
.chips{display:flex;flex-wrap:wrap;gap:10px;margin:28px 0}
.chips span{
  background:#fff;border:1px solid var(--line);border-radius:13px;
  padding:10px 13px;font-weight:700;font-size:12px;box-shadow:0 6px 18px rgba(11,61,117,.035)
}
.credit-loop{
  display:grid;grid-template-columns:1fr auto 1fr auto 1fr;
  gap:20px;align-items:center
}
.credit-loop>div{
  border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);
  padding:31px;border-radius:24px;text-align:center;backdrop-filter:blur(8px)
}
.credit-loop .focus{
  background:linear-gradient(145deg,rgba(111,174,247,.17),rgba(55,139,245,.11));
  border-color:rgba(111,174,247,.35);transform:scale(1.04)
}
.credit-loop span{font-size:31px}.credit-loop p{color:#cbe2ff;font-size:13px}
.credit-loop>i{font-size:28px;color:var(--gold-2)}
.center{text-align:center;margin-top:36px}
.form-mock,.info-card{
  background:#fff;border-radius:26px;padding:30px;box-shadow:var(--shadow);border:1px solid var(--line)
}
.mock-head{display:flex;justify-content:space-between;font-weight:800;margin-bottom:22px}
.mock-head span{color:var(--emerald);font-size:11px;background:var(--mint);padding:5px 9px;border-radius:999px}
.form-mock label{font-size:11px;font-weight:800;display:block;margin:13px 0 6px}
.form-mock>div:not(.mock-head){border:1px solid var(--line);border-radius:12px;padding:12px;background:#f7faff}
.form-mock .muted{color:#9aa6a0}
.form-mock p{font-size:13px}
.form-mock button{
  width:100%;padding:14px;border:0;border-radius:12px;
  background:linear-gradient(135deg,var(--emerald),#0e4f99);color:#fff;font-weight:800
}
.charity-home{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:70px}
.charity-home img{height:450px;object-fit:cover;border-radius:32px;box-shadow:var(--shadow)}

/* CTA */
.cta{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--emerald),#0b3d75);color:#fff;padding:75px 0
}
.cta:after{
  content:"";position:absolute;width:420px;height:420px;border-radius:50%;
  right:-130px;top:-210px;background:rgba(111,174,247,.16)
}
.cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:30px}
.cta span{font-size:11px;text-transform:uppercase;letter-spacing:1.4px;color:#cbe2ff;font-weight:800}
.cta h2{font-size:clamp(32px,4.5vw,52px);margin:10px 0;max-width:810px;color:#fff;letter-spacing:-2px}

/* Interior heroes */
.page-hero{padding:105px 0 95px}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{max-width:920px}
.page-hero p{max-width:760px}
.charity-hero{
  background:
    linear-gradient(135deg,rgba(231,243,255,.96),rgba(231,243,255,.94)),
    url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80") center/cover
}

/* Pricing */
.plans-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:stretch}
.pricing{
  position:relative;border:1px solid var(--line);border-radius:28px;
  padding:34px;background:#fff;box-shadow:0 14px 35px rgba(11,61,117,.055);
  transition:.3s
}
.pricing:hover{transform:translateY(-7px);box-shadow:var(--shadow)}
.pricing h2{font-size:39px;margin:13px 0}
.pricing .price{font:800 27px "Manrope";margin:15px 0;color:var(--forest)}
.pricing p,.pricing li{color:var(--muted);line-height:1.7}
.pricing ul{padding-left:20px;min-height:195px}
.pricing button,.pricing>a{
  width:100%;padding:14px;border:0;border-radius:13px;font-weight:800
}
.pricing.disabled{background:linear-gradient(180deg,#f5f7f6,#e9eef5);color:#78857f}
.silver-card{transform:translateY(-8px)}
.gold-card{
  background:
    radial-gradient(circle at 90% 0,rgba(255,255,255,.65),transparent 28%),
    linear-gradient(145deg,#e7f3ff,var(--gold));
  border-color:#378bf5;transform:translateY(-18px);
  box-shadow:0 32px 75px rgba(24,119,242,.20)
}
.gold-card:hover{transform:translateY(-24px)}
.active-ribbon{
  position:absolute;right:22px;top:22px;background:#0b3d75;color:#fff;
  padding:7px 10px;border-radius:999px;font-size:9px;font-weight:800;letter-spacing:.7px
}
.plan-label{font-size:10px;text-transform:uppercase;letter-spacing:1.3px;font-weight:800;color:var(--emerald)}
.horizontal-flow{display:flex;justify-content:center;align-items:center;gap:13px;flex-wrap:wrap}
.horizontal-flow span{
  background:#fff;border:1px solid var(--line);padding:14px 17px;border-radius:13px;
  font-weight:800;box-shadow:var(--shadow-sm)
}
.horizontal-flow i{color:var(--emerald);font-size:20px}

/* Utility cards/pages */
.item-grid,.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:13px}
.item-grid div{
  border:1px solid var(--line);padding:17px;border-radius:15px;font-weight:700;
  background:#fff;box-shadow:0 7px 20px rgba(11,61,117,.035);transition:.25s
}
.item-grid div:hover{transform:translateY(-4px);border-color:#cbe2ff}
.info-card h3{margin:22px 0 6px;color:var(--forest)}
.info-card p{font-size:14px;color:var(--muted)}
.calculator{
  max-width:720px;margin:auto;background:#fff;border-radius:28px;
  padding:36px;box-shadow:var(--shadow);border:1px solid var(--line)
}
.calculator label{display:block;font-weight:800;margin:15px 0 7px}
.calculator input{
  width:100%;padding:14px;border:1px solid var(--line);border-radius:12px;
  outline:none;transition:.2s;background:#f7faff
}
.calculator input:focus{border-color:var(--emerald);box-shadow:0 0 0 4px rgba(24,119,242,.10)}
.result{
  display:flex;justify-content:space-between;align-items:center;
  background:linear-gradient(135deg,var(--forest),#0b3d75);color:#fff;
  padding:22px;border-radius:16px;margin:22px 0
}
.result strong{font-size:30px;color:var(--gold-2)}
.calculator small{color:var(--muted)}
.form-layout{display:grid;grid-template-columns:1.55fr .7fr;gap:36px;align-items:start}
.real-form,.form-aside{
  border:1px solid var(--line);border-radius:27px;padding:34px;background:#fff;
  box-shadow:0 14px 38px rgba(11,61,117,.06)
}
.real-form h2{font-size:34px;margin-top:0}
.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:17px}
.field-grid label{font-weight:800;font-size:12px;color:#283b53}
.field-grid .full{grid-column:1/-1}
.field-grid input,.field-grid select,.field-grid textarea{
  display:block;width:100%;margin-top:7px;padding:14px;
  border:1px solid #ccd8e7;border-radius:12px;background:#f7faff;outline:none;transition:.2s
}
.field-grid input:focus,.field-grid select:focus,.field-grid textarea:focus{
  border-color:var(--emerald);box-shadow:0 0 0 4px rgba(24,119,242,.10);background:#fff
}
.check{display:flex;gap:10px;margin:17px 0;line-height:1.6;font-size:13px;color:var(--text)}
.check input{margin-top:5px}
.form-aside{background:linear-gradient(180deg,var(--mint),#f7faff)}
.form-aside li{margin:12px 0;line-height:1.6}
.notice{margin-top:22px;background:#e7f3ff;border:1px solid #6faef7;padding:15px;border-radius:13px;font-size:12px}
.success{display:none;margin-top:18px;background:var(--mint);color:#0e4f99;padding:14px;border-radius:12px;font-weight:700}
.success.show{display:block}
.credit-explain,.cash-flow,.feature-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.credit-explain article,.cash-flow article,.feature-grid article{
  border:1px solid var(--line);border-radius:22px;padding:27px;background:#fff;
  box-shadow:0 10px 28px rgba(11,61,117,.045);transition:.3s
}
.credit-explain article:hover,.cash-flow article:hover,.feature-grid article:hover{
  transform:translateY(-7px);box-shadow:var(--shadow)
}
.credit-explain span,.cash-flow span{
  width:46px;height:46px;border-radius:14px;background:var(--mint);
  color:var(--emerald);display:grid;place-items:center;font-weight:800
}
.credit-explain p,.cash-flow p,.feature-grid p{color:var(--muted);line-height:1.7;font-size:14px}
.dashboard{
  margin-top:48px;background:
  radial-gradient(circle at 95% 0,rgba(111,174,247,.20),transparent 25%),
  linear-gradient(145deg,var(--forest),#072346);
  color:#fff;padding:36px;border-radius:30px;box-shadow:var(--shadow)
}
.dashboard h2,.dashboard h3{color:#fff}
.dash-top{display:flex;justify-content:space-between}
.dash-top h2{font-size:48px;margin:8px 0}
.dash-top>span{background:var(--gold-2);color:#0b3d75;padding:8px 12px;border-radius:999px;height:max-content;font-weight:800}
.dash-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.dash-cards div{background:rgba(255,255,255,.08);padding:21px;border-radius:17px;border:1px solid rgba(255,255,255,.08)}
.dash-cards small,.dash-cards strong{display:block}
.dash-cards strong{font-size:25px;margin-top:8px}
.transaction{
  margin-top:15px;background:#fff;color:var(--ink);display:flex;
  justify-content:space-between;padding:18px;border-radius:15px
}
.transaction b{color:var(--emerald)}
.cash-flow{grid-template-columns:repeat(4,1fr)}
.partner-box{
  margin-top:48px;background:linear-gradient(135deg,var(--mint),#e7f3ff);
  border:1px solid var(--line);border-radius:27px;padding:38px;
  display:flex;align-items:center;justify-content:space-between;gap:30px
}
.tick-list{display:grid;gap:12px;margin-top:25px}
.tick-list span{font-weight:700;color:#314765}
.feature-grid{grid-template-columns:repeat(4,1fr)}
.feature-grid article span{font-size:29px}

/* Footer */
.footer{
  background:
  radial-gradient(circle at 90% 0,rgba(55,139,245,.14),transparent 25%),
  linear-gradient(145deg,#072346,#072346);
  color:#fff;padding:78px 0 22px
}
.footer-grid{display:grid;grid-template-columns:1.45fr 1fr 1fr 1.2fr;gap:42px}
.footer .brand strong{color:#fff}.footer .brand small{color:#6faef7}
.footer p,.footer a{display:block;color:#6faef7;line-height:1.75;font-size:13px}
.footer a{margin:9px 0;transition:.25s}
.footer a:hover{color:var(--gold-2);transform:translateX(3px)}
.footer h4{font-size:14px;color:#fff;margin-bottom:16px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);padding-top:20px;margin-top:48px;
  color:#7c99c0;font-size:12px
}

/* Animation */
.reveal{opacity:0;transform:translateY(24px);transition:.75s cubic-bezier(.2,.8,.2,1)}
.reveal.visible{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important}.reveal{opacity:1;transform:none}}

/* Responsive */
@media(max-width:1100px){
  .main-nav{
    position:absolute;top:88px;left:0;right:0;background:#fff;
    padding:16px 22px;display:none;flex-direction:column;align-items:stretch;
    border-top:1px solid var(--line);box-shadow:var(--shadow)
  }
  .main-nav.open{display:flex}
  .main-nav .nav-cta{margin:7px 0 0;text-align:center}
  .nav-toggle{display:block}
  .hero-grid,.split,.charity-home,.form-layout{grid-template-columns:1fr}
  .hero-grid{gap:55px}
  .hero-card{max-width:680px;margin:auto;width:100%}
  .steps{grid-template-columns:repeat(3,1fr)}
  .plans-grid{grid-template-columns:1fr;max-width:760px;margin:auto}
  .pricing,.silver-card,.gold-card,.gold-card:hover{transform:none}
  .credit-loop{grid-template-columns:1fr}
  .credit-loop>i{transform:rotate(90deg);text-align:center}
  .credit-explain,.cash-flow,.feature-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:1fr 1fr;gap:22px}
  .stats-grid div{border-right:0}
  .reverse .photo-panel{order:0}
}
@media(max-width:700px){
  .container{width:min(100% - 28px,1220px)}
  .topbar-inner{justify-content:center}.topbar-inner>div{display:none}
  .nav-wrap{height:78px}.main-nav{top:78px}
  .brand-mark{width:46px;height:46px}.brand strong{font-size:18px}
  .hero-grid{min-height:auto;padding:58px 0 105px}
  .hero h1,.page-hero h1{font-size:42px;letter-spacing:-2.2px}
  .hero p,.page-hero p{font-size:16px}
  .hero-card{height:450px;padding:13px}
  .hero-photo{height:350px}
  .wallet-mini{left:-3px;bottom:16px;width:230px;padding:17px}
  .wallet-mini strong{font-size:27px}
  .kg-mini{display:none}
  .gold-tag{right:-7px;top:28px;width:88px;height:88px;font-size:10px;border-width:6px}
  .stats{margin-top:-45px}
  .stats-grid{padding:22px 14px}
  .steps,.item-grid,.credit-explain,.cash-flow,.feature-grid,.dash-cards,.field-grid{grid-template-columns:1fr}
  .section{padding:76px 0}
  .section-head h2,.split h2,.charity-home h2{font-size:35px;letter-spacing:-1.5px}
  .plan-stack{height:355px}
  .mini-plan{width:96%;padding:23px}
  .photo-panel img,.charity-home img{height:390px}
  .credit-loop .focus{transform:none}
  .cta-inner,.partner-box{align-items:flex-start;flex-direction:column}
  .footer-grid{grid-template-columns:1fr}
  .form-layout{grid-template-columns:1fr}
  .field-grid .full{grid-column:auto}
  .page-hero{padding:75px 0}
  .trust-row{flex-direction:column;gap:8px}
  .dash-top{gap:16px;align-items:flex-start;flex-direction:column}
  .dash-top h2{font-size:37px}
}

/* Bronze Reward Plan */
.bronze-detail-section{background:radial-gradient(circle at 8% 12%,rgba(188,130,77,.10),transparent 24%),linear-gradient(180deg,#fff,#f7faff)}
.bronze-detail-grid{display:grid;grid-template-columns:.78fr 1.1fr 1.1fr;gap:22px;align-items:stretch}
.bronze-price-card,.accept-card,.reject-card{border-radius:28px;padding:32px;border:1px solid var(--line);background:#fff;box-shadow:0 18px 48px rgba(11,61,117,.07)}
.bronze-price-card{color:#fff;background:radial-gradient(circle at 90% 0,rgba(255,255,255,.16),transparent 30%),linear-gradient(145deg,#8a5a38,#bc824d);border-color:#a86f42}
.bronze-price-card .plan-label{color:#ffe4ca}.bronze-price-card h3{color:#fff;font-size:66px;line-height:1;letter-spacing:-3px;margin:20px 0}.bronze-price-card h3 span{font-size:22px;letter-spacing:0;margin-left:5px}.bronze-price-card p{color:#f8e8dc}
.condition-badge{margin-top:28px;padding:13px 15px;border-radius:14px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.22);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.7px}
.list-card-head{display:flex;align-items:center;gap:15px;margin-bottom:24px}.list-card-head small{display:block;color:var(--muted);text-transform:uppercase;letter-spacing:1px;font-size:10px;font-weight:800}.list-card-head h3{margin:3px 0 0;font-size:25px}
.status-icon{width:52px;height:52px;border-radius:16px;display:grid;place-items:center;font-size:26px;font-weight:800}.status-icon.accept{background:#e7f3ff;color:#0e4f99}.status-icon.reject{background:#fff0ef;color:#d64d46}
.styled-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}.styled-list li{position:relative;padding:11px 12px 11px 39px;border-radius:12px;font-size:14px;line-height:1.45}.accept-list li{background:#f7faff;color:#0e4f99}.reject-list li{background:#fff7f6;color:#634541}.styled-list li:before{position:absolute;left:14px;top:10px;font-weight:900}.accept-list li:before{content:"✓";color:#1877f2}.reject-list li:before{content:"×";color:#d64d46;font-size:18px;top:7px}
.quality-warning-card{border-radius:28px;padding:35px;background:radial-gradient(circle at 100% 0,rgba(111,174,247,.22),transparent 35%),linear-gradient(145deg,#0b3d75,#0b3d75);color:#fff;box-shadow:var(--shadow)}.quality-warning-card h3{color:#fff;font-size:30px;margin:18px 0 8px}.quality-warning-card p{color:#cbe2ff}
.warning-icon{width:58px;height:58px;border-radius:18px;display:grid;place-items:center;background:var(--gold-2);color:#0b3d75;font:800 27px "Manrope"}.reject-tags{display:flex;flex-wrap:wrap;gap:9px;margin-top:23px}.reject-tags span{padding:9px 11px;border-radius:10px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.14);font-size:12px;font-weight:700}
@media(max-width:1050px){.bronze-detail-grid{grid-template-columns:1fr 1fr}.bronze-price-card{grid-column:1/-1}}@media(max-width:700px){.bronze-detail-grid{grid-template-columns:1fr}.bronze-price-card{grid-column:auto}.bronze-price-card h3{font-size:52px}}


/* Reward plans final */
.reward-page-hero{background:linear-gradient(135deg,#f7faff,#e7f3ff)}
.reward-plan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
.reward-plan-card{position:relative;border-radius:30px;padding:32px;background:#fff;border:1px solid var(--line);box-shadow:0 20px 50px rgba(11,61,117,.08);overflow:hidden;transition:.3s}
.reward-plan-card:hover{transform:translateY(-8px);box-shadow:var(--shadow)}
.reward-plan-top{display:flex;align-items:center;gap:16px}.reward-plan-top small{display:block;text-transform:uppercase;letter-spacing:1.2px;font-size:10px;font-weight:800;color:var(--muted)}.reward-plan-top h2{margin:3px 0 0;font-size:34px}
.reward-medal{width:62px;height:62px;border-radius:20px;display:grid;place-items:center;font:800 25px Manrope;background:#eee;color:#333}
.bronze-plan{background:linear-gradient(155deg,#fff,#f7e9dc)}.bronze-plan .reward-medal{background:linear-gradient(145deg,#d6a173,#9b633c);color:#fff}.bronze-plan .plan-join-btn{background:#9b633c;color:#fff}
.silver-plan{background:linear-gradient(155deg,#fff,#eef1f3)}.silver-plan .reward-medal{background:linear-gradient(145deg,#e7edf0,#929da5);color:#273238}.silver-plan .plan-join-btn{background:#67747d;color:#fff}
.gold-standard-plan{background:radial-gradient(circle at 100% 0,rgba(255,255,255,.75),transparent 28%),linear-gradient(145deg,#e7f3ff,#378bf5);border-color:#378bf5;transform:translateY(-14px)}
.gold-standard-plan:hover{transform:translateY(-22px)}.gold-standard-plan .reward-medal{background:#0b3d75;color:#6faef7}.gold-standard-plan .plan-join-btn{background:#0b3d75;color:#fff}
.best-plan-ribbon{position:absolute;right:-42px;top:24px;transform:rotate(42deg);background:#0b3d75;color:#cbe2ff;padding:8px 52px;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.8px}
.reward-price{display:flex;align-items:flex-end;gap:6px;margin:28px 0 15px}.reward-price strong{font:800 58px Manrope;line-height:.9}.reward-price span{font-weight:800;color:var(--muted)}
.reward-plan-card p{color:var(--text);min-height:54px}.plan-condition{padding:12px;border-radius:12px;background:rgba(255,255,255,.66);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;margin:24px 0}
.plan-join-btn{width:100%;border:0;cursor:pointer}
.plan-rules-stack{display:grid;gap:32px}.full-plan-detail{border-radius:30px;padding:34px;background:#fff;border:1px solid var(--line);box-shadow:0 18px 50px rgba(11,61,117,.07)}
.full-plan-detail.bronze-detail{border-top:5px solid #a66e44}.full-plan-detail.silver-detail{border-top:5px solid #8d9aa2}.full-plan-detail.gold-detail{border-top:5px solid #378bf5}
.full-plan-header{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom:28px}.full-plan-header span{font-size:11px;text-transform:uppercase;letter-spacing:1.2px;font-weight:800;color:var(--emerald)}.full-plan-header h2{font-size:34px;margin:5px 0}.full-plan-header .btn{background:var(--forest);color:#fff;border:0;cursor:pointer;min-width:145px}
.rules-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.rules-card{padding:25px;border-radius:22px}.rules-card.accepted{background:#f7faff;border:1px solid #cbe2ff}.rules-card.rejected{background:#fff4f2;border:1px solid #f0d1cd}
.rules-title{display:flex;align-items:center;gap:12px}.rules-title span{width:42px;height:42px;border-radius:13px;display:grid;place-items:center;font-size:22px;font-weight:800}.accepted .rules-title span{background:#e7f3ff;color:#0e4f99}.rejected .rules-title span{background:#ffe0dc;color:#ce4e45}.rules-title h3{margin:0}
.rules-card ul{columns:2;column-gap:28px;padding-left:19px;margin:22px 0 0}.rules-card li{break-inside:avoid;margin:0 0 11px;color:#314867;font-size:14px}
.quality-master-note{border-radius:30px;padding:45px;background:linear-gradient(135deg,#0b3d75,#0e4f99);color:#fff;box-shadow:var(--shadow)}.quality-master-note span{text-transform:uppercase;letter-spacing:1px;color:#6faef7;font-size:11px;font-weight:800}.quality-master-note h2{color:#fff;font-size:42px;margin:8px 0}.quality-master-note p{color:#cbe2ff;max-width:800px}

/* Gift Aid modal */
body.modal-open{overflow:hidden}.gift-modal{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:20px}.gift-modal.open{display:flex}.gift-modal-backdrop{position:absolute;inset:0;background:rgba(7,35,70,.68);backdrop-filter:blur(4px)}
.gift-modal-dialog{position:relative;width:min(860px,100%);max-height:calc(100vh - 40px);overflow:auto;background:#fff;border-radius:12px;box-shadow:0 35px 100px rgba(0,0,0,.35)}
.gift-modal-header{display:flex;justify-content:space-between;align-items:center;background:linear-gradient(90deg,#1877f2,#1877f2);color:#fff;padding:20px 24px}.gift-modal-header small{display:block;color:#e7f3ff;font-size:10px;text-transform:uppercase;letter-spacing:1px}.gift-modal-header h2{color:#fff;margin:2px 0 0;font-size:26px}.gift-modal-close{border:0;background:transparent;color:#cbe2ff;font-size:34px;cursor:pointer;line-height:1}
.gift-modal-form{padding:26px}.gift-modal-alert{background:#e7f3ff;border:1px solid #cbe2ff;border-radius:7px;padding:16px;margin-bottom:20px;color:#0b3d75}
.modal-fields{display:grid;grid-template-columns:1fr 1fr;gap:17px}.modal-fields label{font-weight:600;color:#0b3d75}.modal-fields input,.modal-fields textarea{display:block;width:100%;margin-top:7px;padding:12px;border:1px solid #ced9e8;border-radius:7px;outline:none}.modal-fields input:focus,.modal-fields textarea:focus{border-color:#1877f2;box-shadow:0 0 0 3px rgba(24,119,242,.1)}.modal-full{grid-column:1/-1}
.gift-modal-check{display:flex;gap:10px;margin:20px 0;color:#0b3d75}.gift-modal-check input{width:18px;height:18px;margin-top:3px}.modal-plan-summary{display:flex;justify-content:space-between;gap:15px;background:#f7faff;padding:13px 15px;border-radius:8px;font-size:13px}.modal-plan-summary span{color:var(--muted)}
.gift-modal-footer{display:flex;justify-content:flex-end;gap:9px;margin:22px -26px -26px;padding:16px 18px;border-top:1px solid var(--line)}.modal-close-btn{background:#75818a;color:#fff;border:0;cursor:pointer}.modal-submit-btn{background:#0e4f99;color:#fff;border:0;cursor:pointer}.modal-success{display:none;margin-top:17px;padding:13px;background:#e7f3ff;color:#0e4f99;border-radius:7px;font-weight:700}.modal-success.show{display:block}
@media(max-width:950px){.reward-plan-grid{grid-template-columns:1fr}.gold-standard-plan,.gold-standard-plan:hover{transform:none}.rules-card ul{columns:1}}
@media(max-width:700px){.full-plan-header{align-items:flex-start;flex-direction:column}.rules-grid,.modal-fields{grid-template-columns:1fr}.modal-full{grid-column:auto}.gift-modal{padding:8px}.gift-modal-dialog{max-height:calc(100vh - 16px)}.gift-modal-header{padding:16px}.gift-modal-header h2{font-size:21px}.gift-modal-form{padding:18px}.gift-modal-footer{margin:18px -18px -18px}.quality-master-note{padding:28px}.quality-master-note h2{font-size:32px}.reward-price strong{font-size:48px}}


/* ===== Premium contact and social top bar ===== */
.topbar{background:linear-gradient(90deg,#072346,#0b3d75);color:#fff;padding:9px 0;font-size:14px}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;gap:20px}
.top-contact,.top-social{display:flex;align-items:center;gap:18px}
.contact-link{display:inline-flex;align-items:center;gap:8px;color:#f7faff;font-weight:600;transition:.25s}
.contact-link svg{width:18px;height:18px;color:#6faef7;flex:0 0 auto}
.contact-link:hover{color:#6faef7}
.follow-label{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:#cbe2ff;font-weight:700}
.top-social{gap:9px}
.top-social a{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;color:#fff;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12);transition:.3s}
.top-social a svg{width:16px;height:16px}
.top-social a:hover{background:#6faef7;color:#0b3d75;transform:translateY(-3px);border-color:#6faef7}
@media(max-width:850px){.topbar-inner{flex-direction:column;gap:8px}.top-contact{gap:14px;flex-wrap:wrap;justify-content:center}.follow-label{display:none}}
@media(max-width:520px){.topbar{padding:8px 0}.top-contact{font-size:12px}.top-contact .contact-link:nth-child(2){display:none}.top-social a{width:30px;height:30px}.top-social a svg{width:14px;height:14px}}

/* Official GoGreenDragon logo */
.brand{display:flex;align-items:center;min-width:0;line-height:0}
.brand-logo{display:block;width:auto;object-fit:contain}
.brand-logo-header{height:66px;max-width:380px}
.footer-brand{display:inline-flex;margin-bottom:18px}
.brand-logo-footer{height:76px;max-width:100%;filter:none}
@media (max-width:1100px){
  .brand-logo-header{height:58px;max-width:300px}
}
@media (max-width:767px){
  .brand-logo-header{height:48px;max-width:235px}
  .brand-logo-footer{height:62px}
}
@media (max-width:420px){
  .brand-logo-header{height:42px;max-width:200px}
}

/* ===== Refined Solid blue UI ===== */
:root{
  --forest:#0b3d75;
  --forest-2:#0e4f99;
  --emerald:#0e4f99;
  --emerald-2:#1877f2;
  --mint:#f7faff;
  --mint-2:#f7faff;
  --gold:#378bf5;
  --ink:#072346;
  --text:#314867;
  --muted:#6d8177;
  --line:#e7f3ff;
}
body{font-size:18px;background:#fff;color:var(--ink)}
p,li,label,input,select,textarea,button,a{font-size:inherit}
.container{width:min(1240px,calc(100% - 48px))}

/* clean solid top area */
.topbar{background:#0b3d75;color:#fff;padding:10px 0;font-size:16px}
.topbar:after{display:none!important}
.contact-link{font-size:16px}
.site-header{background:#fff;backdrop-filter:none;-webkit-backdrop-filter:none;box-shadow:0 4px 20px rgba(11,61,117,.08)}
.nav-wrap{height:94px}
.brand-logo-header{height:68px;max-width:390px;filter:none}
.main-nav{gap:5px}
.main-nav a{font-size:15px;padding:12px 10px;color:#0e4f99}
.main-nav a:hover,.main-nav a.active{background:#f7faff;color:#0e4f99}
.main-nav .nav-cta{background:#0e4f99;box-shadow:none}
.main-nav .nav-cta:hover{background:#0b3d75;transform:none}

/* solid blue hero with subtle pattern */
.hero,.page-hero{
  background-color:#0e4f99;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    radial-gradient(circle at 78% 25%,rgba(255,255,255,.10),transparent 32%);
  background-size:36px 36px,36px 36px,auto;
}
.hero:before,.page-hero:before{display:none}
.hero-grid{min-height:650px;padding:72px 0 102px;gap:64px}
.pill,.eyebrow{font-size:13px}
.hero .pill,.page-hero .pill,.page-hero .eyebrow{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.25);color:#fff;box-shadow:none}
.hero .pill:before,.page-hero .pill:before,.page-hero .eyebrow:before{background:#6faef7;box-shadow:none}
.hero h1,.page-hero h1{font-size:clamp(50px,5.6vw,67px);letter-spacing:-1px;color:#fff;margin:22px 0}
.hero h1 em,.page-hero h1 em{color:#6faef7;background:none;-webkit-text-fill-color:initial}
.hero p,.page-hero p{font-size:20px;line-height:1.72;color:#e7f3ff}
.hero .trust-row span{font-size:14px;background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.20);color:#fff}
.btn{font-size:16px;min-height:52px;border-radius:12px;box-shadow:none!important}
.btn.primary{background:#fff;color:#0e4f99}
.btn.primary:hover{background:#6faef7;color:#0b3d75}
.hero .btn.secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.hero .btn.secondary:hover{background:#fff;color:#0e4f99}
.hero-card{height:520px;background:#0b3d75;border:1px solid rgba(255,255,255,.18);box-shadow:0 24px 55px rgba(0,0,0,.22);transform:none}
.hero-card:hover{transform:none}
.hero-photo{height:392px}
.gold-tag{animation:none}

/* typography and spacing */
.section{padding:92px 0}
.section-head h2,.split h2,.charity-home h2{font-size:clamp(38px,4.4vw,54px);letter-spacing:-2px}
.section-head p,.split p,.charity-home p{font-size:19px}
.steps article h3,.credit-loop h3,.info-card h3{font-size:22px}
.steps article p,.credit-loop p,.info-card p,.footer p,.footer a{font-size:15px}
.stats-grid strong{font-size:30px}.stats-grid span{font-size:14px}

/* clean cards */
.steps article,.info-card,.form-mock,.reward-plan-card,.bronze-price-card,.accept-card,.reject-card{border-radius:18px;box-shadow:0 10px 30px rgba(11,61,117,.07)}
.steps article:hover,.info-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(11,61,117,.11)}
.section.soft{background:#f7faff}
.section.dark{background:#0b3d75}
.cta{background:#0e4f99}
.footer{background:#0b3d75}
.footer h4{font-size:16px}.footer p,.footer a{color:#cbe2ff}
.footer-brand img{filter:none}

/* responsive balance */
@media(max-width:1100px){
  .main-nav a{font-size:14px;padding:10px 8px}
  .brand-logo-header{height:58px;max-width:310px}
}
@media(max-width:900px){
  .nav-wrap{height:78px}
  .hero-grid{min-height:auto;padding:58px 0 90px}
  .hero h1,.page-hero h1{font-size:46px;letter-spacing:-2px}
  .hero p,.page-hero p{font-size:18px}
  .hero-card{height:450px}
}
@media(max-width:700px){
  body{font-size:17px}
  .container{width:min(100% - 28px,1240px)}
  .topbar{font-size:14px}
  .brand-logo-header{height:47px;max-width:235px}
  .hero-grid{padding:48px 0 82px}
  .hero h1,.page-hero h1{font-size:39px;letter-spacing:-1.5px}
  .hero p,.page-hero p{font-size:17px}
  .section{padding:70px 0}
  .section-head h2,.split h2,.charity-home h2{font-size:34px;letter-spacing:-1.2px}
  .section-head p,.split p,.charity-home p{font-size:17px}
}


/* ===== Dedicated How It Works page ===== */
.how-page-hero{position:relative;overflow:hidden;padding:88px 0 96px}
.how-page-hero:after{content:"";position:absolute;right:-90px;bottom:-150px;width:430px;height:430px;border:80px solid rgba(255,255,255,.055);border-radius:50%;pointer-events:none}
.how-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:70px;position:relative;z-index:1}
.how-page-hero h1{margin-bottom:18px}
.how-page-hero p{max-width:710px;margin:0}
.how-hero-art{position:relative;min-height:350px;display:grid;place-items:center}
.hero-process-icon{width:158px;height:158px;border-radius:42px;background:#fff;color:var(--emerald);display:grid;place-items:center;box-shadow:0 28px 65px rgba(7,35,70,.30);transform:rotate(-4deg);position:relative;z-index:3}
.hero-process-icon svg{width:82px;height:82px}
.orbit{position:absolute;border:1px solid rgba(255,255,255,.26);border-radius:50%}
.orbit-one{width:285px;height:285px}.orbit-two{width:375px;height:375px;border-style:dashed;animation:how-spin 30s linear infinite}
.art-chip{position:absolute;z-index:4;padding:11px 17px;border-radius:999px;background:rgba(255,255,255,.94);color:var(--forest);font-weight:800;font-size:13px;box-shadow:0 12px 30px rgba(7,35,70,.18)}
.chip-one{left:3%;top:22%}.chip-two{right:0;top:39%}.chip-three{left:19%;bottom:13%}
@keyframes how-spin{to{transform:rotate(360deg)}}
.how-process-section{background:linear-gradient(180deg,#fff 0%,#f7faff 100%)}
.how-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:46px;position:relative}
.how-process-grid:before{content:"";position:absolute;left:10%;right:10%;top:58px;border-top:2px dashed #cbe2ff;z-index:0}
.how-step-card{position:relative;z-index:1;background:#fff;border:1px solid var(--line);border-radius:24px;padding:31px 25px 28px;min-height:345px;box-shadow:0 14px 34px rgba(11,61,117,.07);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;overflow:hidden}
.how-step-card:after{content:"";position:absolute;right:-34px;bottom:-50px;width:120px;height:120px;border-radius:50%;background:#f7faff;transition:.3s}
.how-step-card:hover{transform:translateY(-9px);box-shadow:0 24px 48px rgba(11,61,117,.13);border-color:#cbe2ff}
.how-step-card:hover:after{transform:scale(1.25);background:#e7f3ff}
.step-count{position:absolute;right:20px;top:18px;color:#cbe2ff;font:800 40px/1 Manrope,sans-serif}
.how-step-icon{width:76px;height:76px;border-radius:22px;background:linear-gradient(145deg,var(--forest-2),var(--emerald-2));display:grid;place-items:center;color:#fff;margin-bottom:27px;box-shadow:0 12px 25px rgba(14,79,153,.20)}
.how-step-icon svg{width:42px;height:42px}
.how-step-card h3{position:relative;z-index:1;font-size:23px;margin:0 0 13px;color:var(--forest)}
.how-step-card p{position:relative;z-index:1;font-size:16px;line-height:1.72;margin:0;color:var(--text)}
.how-summary-section{padding-top:0;background:#f7faff}
.how-summary-card{position:relative;overflow:hidden;background:linear-gradient(115deg,var(--forest),var(--emerald));border-radius:30px;padding:44px 50px;display:flex;align-items:center;justify-content:space-between;gap:32px;color:#fff;box-shadow:0 24px 55px rgba(11,61,117,.17)}
.how-summary-card:after{content:"";position:absolute;right:17%;top:-75px;width:220px;height:220px;border-radius:50%;border:45px solid rgba(255,255,255,.055)}
.how-summary-card h2{position:relative;z-index:1;color:#fff;font-size:clamp(32px,4vw,48px);margin:7px 0 0;letter-spacing:-1.5px}
.how-summary-card .eyebrow{color:#6faef7}.how-summary-card .eyebrow:before{background:#6faef7}
.how-summary-card .btn{position:relative;z-index:1;white-space:nowrap}
@media(max-width:1050px){.how-process-grid{grid-template-columns:repeat(2,1fr)}.how-process-grid:before{display:none}.how-hero-grid{gap:35px}}
@media(max-width:850px){.how-hero-grid{grid-template-columns:1fr}.how-hero-art{min-height:300px}.how-page-hero{padding:65px 0 75px}.how-summary-card{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.how-process-grid{grid-template-columns:1fr}.how-step-card{min-height:auto}.how-hero-art{min-height:255px}.hero-process-icon{width:125px;height:125px;border-radius:34px}.hero-process-icon svg{width:66px}.orbit-one{width:220px;height:220px}.orbit-two{width:280px;height:280px}.art-chip{font-size:11px;padding:9px 12px}.chip-one{left:0}.chip-two{right:-3%}.chip-three{left:8%;bottom:8%}.how-summary-card{padding:32px 25px;border-radius:22px}}

/* =========================
   Bronze Text
========================= */

.bronze-plan{
    background:linear-gradient(135deg,#8b5a2b,#b87333,#378bf5);
    color:#fff;
}

.bronze-plan h2,
.bronze-plan h3,
.bronze-plan h4,
.bronze-plan p,
.bronze-plan span,
.bronze-plan small,
.bronze-plan strong,
.bronze-plan .reward-price,
.bronze-plan .plan-condition{
    color:#fff;
}

.bronze-plan .btn{
    background:#fff;
    color:#8b5a2b;
}


/* =========================
   Silver Text
========================= */

.silver-plan{
    background:linear-gradient(135deg,#8c98a4,#c7d0d9,#f4f7fa);
    color:#243447;
}

.silver-plan h2,
.silver-plan h3,
.silver-plan h4,
.silver-plan p,
.silver-plan span,
.silver-plan small,
.silver-plan strong,
.silver-plan .reward-price,
.silver-plan .plan-condition{
    color:#243447;
}

.silver-plan .btn{
    background:#243447;
    color:#fff;
}


/* =========================
   Gold Text
========================= */

.gold-standard-plan{
    background:linear-gradient(135deg,#1877f2,#378bf5,#378bf5);
    color:#072346;
}

.gold-standard-plan h2,
.gold-standard-plan h3,
.gold-standard-plan h4,
.gold-standard-plan p,
.gold-standard-plan span,
.gold-standard-plan small,
.gold-standard-plan strong,
.gold-standard-plan .reward-price,
.gold-standard-plan .plan-condition{
    color:#072346;
}

.gold-standard-plan .btn{
    background:#072346;
    color:#378bf5;
}


/* =====================================================
   PLAN RULES SECTION
===================================================== */

.plan-rules-section{
    padding:90px 0;
    background:#f2f5f9;
}

.plan-rules-stack{
    display:flex;
    flex-direction:column;
    gap:42px;
}

.full-plan-detail{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 22px 55px rgba(15,23,42,.14);
    transition:transform .35s ease, box-shadow .35s ease;
    isolation:isolate;
}

.full-plan-detail:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 70px rgba(15,23,42,.20);
}

.full-plan-detail::before{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    top:-120px;
    right:-90px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    z-index:-1;
}

.full-plan-detail::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    bottom:-100px;
    left:-70px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    z-index:-1;
}


/* =====================================================
   PLAN HEADER
===================================================== */

.full-plan-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:34px 38px;
    border-bottom:1px solid rgba(255,255,255,.22);
}

.full-plan-header > div{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.full-plan-header span{
    display:inline-block;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.4px;
    text-transform:uppercase;
    opacity:.88;
}

.full-plan-header h2{
    margin:0;
    font-size:clamp(27px,3vw,40px);
    line-height:1.15;
    font-weight:800;
    letter-spacing:-1px;
}

.full-plan-header .btn{
    min-width:150px;
    padding:15px 24px;
    border:0;
    border-radius:12px;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(0,0,0,.16);
    transition:all .3s ease;
}

.full-plan-header .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(0,0,0,.24);
}


/* =====================================================
   RULES GRID
===================================================== */

.rules-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    padding:30px;
}

.rules-card{
    position:relative;
    padding:28px;
    border:1px solid rgba(255,255,255,.30);
    border-radius:20px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 14px 30px rgba(0,0,0,.10);
    transition:transform .3s ease, box-shadow .3s ease;
}

.rules-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(0,0,0,.16);
}

.rules-title{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(255,255,255,.22);
}

.rules-title span{
    flex:0 0 44px;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    font-size:23px;
    font-weight:900;
    box-shadow:0 8px 20px rgba(0,0,0,.14);
}

.rules-title h3{
    margin:0;
    font-size:21px;
    line-height:1.3;
    font-weight:800;
}

.rules-card ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:12px;
}

.rules-card li{
    position:relative;
    padding-left:25px;
    font-size:15px;
    line-height:1.65;
    font-weight:500;
}

.rules-card li::before{
    position:absolute;
    left:0;
    top:1px;
    font-size:14px;
    font-weight:900;
}

.rules-card.accepted li::before{
    content:"✓";
}

.rules-card.rejected li::before{
    content:"×";
    font-size:18px;
    top:-2px;
}

.rules-card strong{
    font-weight:800;
}


/* =====================================================
   BRONZE PLAN
===================================================== */

.bronze-detail{
    background:#a86532;
    color:#fff;
}

.bronze-detail .full-plan-header{
    background:#8b4f25;
}

.bronze-detail .full-plan-header span,
.bronze-detail .full-plan-header h2,
.bronze-detail .rules-title h3,
.bronze-detail .rules-card li,
.bronze-detail .rules-card strong{
    color:#fff;
}

.bronze-detail .accepted{
    background:#b97947;
}

.bronze-detail .rejected{
    background:#78401f;
}

.bronze-detail .accepted .rules-title span{
    background:#fff;
    color:#8b4f25;
}

.bronze-detail .rejected .rules-title span{
    background:#2f1a0e;
    color:#fff;
}

.bronze-detail .accepted li::before{
    color:#fff;
}

.bronze-detail .rejected li::before{
    color:#ffd6bd;
}

.bronze-detail .btn{
    background:#fff;
    color:#8b4f25;
}

.bronze-detail .btn:hover{
    background:#f8e7da;
    color:#6d3617;
}


/* =====================================================
   SILVER PLAN
===================================================== */

.silver-detail{
    background:#c9d0d7;
    color:#1f2937;
}

.silver-detail .full-plan-header{
    background:#5f6b76;
}

.silver-detail .full-plan-header span,
.silver-detail .full-plan-header h2{
    color:#fff;
}

.silver-detail .rules-card{
    border-color:rgba(31,41,55,.15);
}

.silver-detail .accepted{
    background:#eef2f5;
}

.silver-detail .rejected{
    background:#aab3bd;
}

.silver-detail .rules-title{
    border-bottom-color:rgba(31,41,55,.14);
}

.silver-detail .rules-title h3,
.silver-detail .rules-card li,
.silver-detail .rules-card strong{
    color:#1f2937;
}

.silver-detail .accepted .rules-title span{
    background:#2f3b46;
    color:#fff;
}

.silver-detail .rejected .rules-title span{
    background:#6b1f1f;
    color:#fff;
}

.silver-detail .accepted li::before{
    color:#0e4f99;
}

.silver-detail .rejected li::before{
    color:#7f1d1d;
}

.silver-detail .btn{
    background:#fff;
    color:#36414c;
}

.silver-detail .btn:hover{
    background:#e5e9ed;
    color:#111827;
}


/* =====================================================
   GOLD PLAN
===================================================== */

.gold-detail{
    background:#378bf5;
    color:#072346;
}

.gold-detail .full-plan-header{
    background:#0e4f99;
}

.gold-detail .full-plan-header span,
.gold-detail .full-plan-header h2{
    color:#e7f3ff;
}

.gold-detail .accepted{
    background:#6faef7;
}

.gold-detail .rejected{
    background:#1877f2;
}

.gold-detail .rules-title h3,
.gold-detail .rules-card li,
.gold-detail .rules-card strong{
    color:#072346;
}

.gold-detail .rejected .rules-title h3,
.gold-detail .rejected li,
.gold-detail .rejected strong{
    color:#e7f3ff;
}

.gold-detail .accepted .rules-title span{
    background:#072346;
    color:#6faef7;
}

.gold-detail .rejected .rules-title span{
    background:#6b1f1f;
    color:#fff;
}

.gold-detail .accepted li::before{
    color:#0e4f99;
}

.gold-detail .rejected li::before{
    color:#cbe2ff;
}

.gold-detail .btn{
    background:#e7f3ff;
    color:#0e4f99;
}

.gold-detail .btn:hover{
    background:#fff;
    color:#0b3d75;
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:900px){

    .rules-grid{
        grid-template-columns:1fr;
    }

    .full-plan-header{
        align-items:flex-start;
    }
}

@media(max-width:640px){

    .plan-rules-section{
        padding:60px 0;
    }

    .plan-rules-stack{
        gap:28px;
    }

    .full-plan-detail{
        border-radius:20px;
    }

    .full-plan-header{
        flex-direction:column;
        padding:26px 22px;
    }

    .full-plan-header h2{
        font-size:27px;
    }

    .full-plan-header .btn{
        width:100%;
    }

    .rules-grid{
        padding:18px;
        gap:18px;
    }

    .rules-card{
        padding:22px 18px;
        border-radius:16px;
    }

    .rules-title h3{
        font-size:19px;
    }

    .rules-card li{
        font-size:14px;
    }
}
/* Public User and Subscribe navigation buttons */
.main-nav .nav-public,
.main-nav .nav-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 17px;
  border-radius:999px;
  font-weight:800;
  white-space:nowrap;
}
.main-nav .nav-public {
  border:1px solid #0e4f99;
  background:#f7faff;
  color:#0b3d75;
}
.main-nav .nav-public:hover {
  background:#e7f3ff;
  color:#0b3d75;
}
.main-nav .nav-cta {
  border:1px solid #0b3d75;
  background:#0b3d75;
  color:#fff;
  box-shadow:0 10px 24px rgba(11,61,117,.18);
}
.main-nav .nav-cta:hover {
  background:#0e4f99;
  border-color:#0e4f99;
  color:#fff;
  transform:translateY(-1px);
}

/* UK Public User coming-soon page */
.public-coming-page {
  min-height:calc(100vh - 210px);
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(111,174,247,.22), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(24,119,242,.20), transparent 28%),
    linear-gradient(135deg,#0b3d75 0%,#0e4f99 52%,#1877f2 100%);
}
.public-coming-page::before,
.public-coming-page::after {
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.public-coming-page::before {
  width:360px;height:360px;right:-150px;top:-130px;
  border:58px solid rgba(255,255,255,.07);
}
.public-coming-page::after {
  width:220px;height:220px;left:-95px;bottom:-95px;
  background:rgba(255,255,255,.06);
}
.public-coming-card {
  position:relative;
  z-index:2;
  max-width:820px;
  margin:0 auto;
  padding:58px 48px;
  text-align:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:30px;
  background:rgba(255,255,255,.10);
  box-shadow:0 30px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(12px);
}
.public-coming-logo {
  width:min(290px,75%);
  height:auto;
  margin:0 auto 30px;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.16));
}
.public-coming-card .pill {
  margin-bottom:22px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
}
.public-coming-card h1 {
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(48px,8vw,86px);
  line-height:1;
  letter-spacing:-.04em;
}
.public-coming-card p {
  max-width:610px;
  margin:0 auto 34px;
  color:rgba(255,255,255,.86);
  font-size:19px;
  line-height:1.75;
}
.public-coming-actions {
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.public-coming-actions .btn {
  min-width:170px;
}
.public-coming-actions .btn-light {
  background:#fff;
  color:#0b3d75;
}
.public-coming-actions .btn-outline-white {
  border:1px solid rgba(255,255,255,.55);
  background:transparent;
  color:#fff;
}
@media(max-width:767px){
  .public-coming-page{padding:65px 0}
  .public-coming-card{padding:42px 22px;border-radius:23px}
  .public-coming-card p{font-size:17px}
  .main-nav .nav-public,.main-nav .nav-cta{width:100%;margin-top:4px}
}

.books-rus-company{
margin:15px auto;
padding:12px 16px;
max-width:420px;
text-align:center;
background:#f7faff;
border:1px solid #e7f3ff;
border-left:4px solid #0e4f99;
border-radius:10px;
font-size:15px;
line-height:1.7;
font-weight:500;
}

/* Company registration block readability fix */
.books-rus-company,
.books-rus-company strong,
.books-rus-company br {
    color: #111111 !important;
}

.books-rus-company {
    background: #ffffff !important;
}

/* C4C complete Gold plan */
.c4c-gold-overview{background:#fff}.c4c-gold-summary{display:grid;grid-template-columns:.75fr 1.4fr 1fr;gap:0;border:1px solid #cbe2ff;border-radius:24px;overflow:hidden;box-shadow:0 20px 55px rgba(11,61,117,.09)}.c4c-gold-summary>div{padding:34px}.c4c-gold-price{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;background:linear-gradient(145deg,#1877f2,#378bf5);color:#fff}.c4c-gold-price span{text-transform:uppercase;font-weight:800;letter-spacing:.1em}.c4c-gold-price strong{font-size:78px;line-height:1;margin:12px 0}.c4c-gold-price small{font-weight:800;letter-spacing:.12em}.c4c-gold-benefits h3,.c4c-gold-action h3{margin-top:0}.c4c-gold-benefits ul{list-style:none;padding:0;margin:0}.c4c-gold-benefits li{padding:9px 0 9px 27px;border-bottom:1px solid #e7f3ff;position:relative}.c4c-gold-benefits li:before{content:'✓';position:absolute;left:0;color:#0e4f99;font-weight:900}.c4c-gold-action{background:#f7faff;display:flex;flex-direction:column;justify-content:center}.c4c-gold-action .btn{margin-top:9px;text-align:center}.c4c-login-link{display:block;text-align:center;margin-top:13px;color:#0e4f99;font-weight:700}.c4c-rules-section .quality-master-note{margin-top:28px}.c4c-full-journey .cash-flow{margin-top:20px}
@media(max-width:900px){.c4c-gold-summary{grid-template-columns:1fr 1fr}.c4c-gold-action{grid-column:1/-1}}@media(max-width:620px){.c4c-gold-summary{grid-template-columns:1fr}.c4c-gold-action{grid-column:auto}.c4c-gold-summary>div{padding:25px}}
.c4c-gold-action .status-pill{align-self:flex-start;padding:7px 12px;border-radius:99px;background:#e7f3ff;color:#0e4f99;font-size:12px;font-weight:800;margin-bottom:16px}

/* Credit 4 Clothes plan labels */
.gold-gift-label{display:inline-flex;width:auto;margin-top:10px;padding:7px 12px;border:1px solid #378bf5;border-radius:999px;background:#e7f3ff;color:#0e4f99;font-size:12px;font-weight:800;letter-spacing:.04em}

/* Unified site navigation and UX */
.topbar{padding:0!important;background:linear-gradient(90deg,#0b3d75,#0b3d75)!important}.topbar-inner{min-height:40px;display:flex;align-items:center;justify-content:space-between;gap:18px}.topbar .contact-link{display:inline-flex;align-items:center;gap:8px;margin:0;color:#fff;font-weight:700;text-decoration:none}.topbar .contact-link:hover{color:#6faef7}.topbar-trust{display:flex;align-items:center;gap:11px;color:#e7f3ff;font-size:12px;font-weight:700}.topbar-trust i{width:4px;height:4px;border-radius:50%;background:#6faef7}.top-social{display:flex;align-items:center;gap:7px}.top-social .follow-label{margin-right:4px;color:#cbe2ff;font-size:11px;text-transform:uppercase;letter-spacing:.1em}.top-social a{width:26px;height:26px;margin:0;display:grid;place-items:center;border:1px solid rgba(255,255,255,.24);border-radius:50%;color:#fff;font-size:11px;font-weight:800;text-decoration:none}.top-social a:hover{border-color:#6faef7;background:#6faef7;color:#0b3d75}.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97)!important;border-bottom:1px solid #e7f3ff;box-shadow:0 8px 28px rgba(11,61,117,.08)!important}.nav-wrap{height:84px!important;display:flex;align-items:center;gap:18px}.brand{flex:0 0 auto}.brand-logo-header{display:block;width:auto;height:58px;max-width:245px!important;object-fit:contain}.main-nav{margin-left:auto;display:flex;align-items:center;gap:2px}.main-nav a{position:relative;display:flex;align-items:center;min-height:42px;padding:10px 9px!important;border-radius:9px;color:#0e4f99!important;font-size:13px!important;font-weight:700;line-height:1.15;text-align:center;text-decoration:none;white-space:nowrap}.main-nav a:after{display:none!important}.main-nav a:hover,.main-nav a.active{background:#f7faff!important;color:#0e4f99!important}.main-nav a.active{box-shadow:inset 0 0 0 1px #cbe2ff}.main-nav .nav-public,.main-nav .nav-cta{padding:10px 13px!important}.main-nav .nav-public{border:1px solid #cbe2ff;background:#fff;color:#0e4f99!important}.main-nav .nav-cta{border:1px solid #0e4f99;background:#0e4f99!important;color:#fff!important;box-shadow:0 7px 16px rgba(14,79,153,.18)}.main-nav .nav-cta:hover,.main-nav .nav-cta.active{background:#0b3d75!important;color:#fff!important;transform:translateY(-1px)}.nav-toggle{display:none;width:46px;height:46px;padding:11px;border:1px solid #cbe2ff;border-radius:11px;background:#f7faff;color:#0b3d75;cursor:pointer}.nav-toggle span{display:block;width:22px;height:2px;margin:4px auto;border-radius:2px;background:currentColor;transition:transform .2s,opacity .2s}.nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}.nav-toggle.open span:nth-child(2){opacity:0}.nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
@media(max-width:1180px){.nav-wrap{height:78px!important}.brand-logo-header{height:52px}.main-nav a{padding:9px 7px!important;font-size:12px!important}.main-nav .nav-public,.main-nav .nav-cta{padding:9px 10px!important}}
@media(max-width:1100px){body.nav-open{overflow:hidden}.topbar-trust{display:none}.nav-toggle{display:block;margin-left:auto;flex:0 0 46px}.main-nav{position:absolute;top:78px!important;left:auto!important;right:0!important;width:min(390px,calc(100vw - 28px));max-height:calc(100dvh - 96px)!important;margin:0;padding:14px!important;display:none;flex-direction:column;align-items:stretch;gap:4px;overflow-y:auto;border:1px solid #cbe2ff;border-radius:0 0 16px 16px;background:#fff;box-shadow:0 24px 45px rgba(7,35,70,.2)}.main-nav.open{display:flex}.main-nav a{width:100%;min-height:46px;padding:12px 14px!important;justify-content:flex-start;text-align:left;font-size:14px!important}.main-nav .nav-public,.main-nav .nav-cta{justify-content:center;margin-top:4px}.main-nav .nav-cta{min-height:48px}}
@media(max-width:700px){.topbar-inner{min-height:34px;justify-content:center}.topbar .contact-link{font-size:12px}.top-social{display:none}.nav-wrap{height:70px!important}.brand-logo-header{height:45px;max-width:205px!important}.main-nav{top:70px!important;right:-2px!important;width:calc(100vw - 28px)}.nav-toggle{width:43px;height:43px;flex-basis:43px}}
@media(max-width:380px){.topbar .contact-link span{font-size:11px}.brand-logo-header{height:40px;max-width:178px!important}.nav-wrap{height:66px!important}.main-nav{top:66px!important;width:calc(100vw - 20px)}}

/* Simplified topbar */
.topbar-trust{display:none!important}.topbar .contact-link{gap:9px}.topbar .email-icon{width:19px;height:19px;flex:0 0 19px}

/* Screenshot overlap fix: keep page content clear of the navigation */
.site-header,.portal-body .site-header{position:relative!important;top:auto!important}.section[id],.page-hero[id]{scroll-margin-top:24px}#journey{padding-top:112px;overflow:hidden}#journey .section-head{position:relative;z-index:2;margin-bottom:48px}#journey .steps{grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}#journey .steps article{min-width:0;min-height:340px;padding:30px 26px}#journey .steps h3{font-size:22px;line-height:1.35}#journey .steps p{font-size:15px;line-height:1.72}
@media(max-width:900px){#journey{padding-top:80px}#journey .steps{grid-template-columns:repeat(2,minmax(0,1fr))}#journey .steps article{min-height:290px}}
@media(max-width:700px){#journey{padding-top:68px}#journey .section-head{margin-bottom:34px}#journey .steps{grid-template-columns:1fr}#journey .steps article{min-height:0;padding:25px 22px}}

/* C4C page UI refresh */
.cashin-page-hero{position:relative;overflow:hidden;padding:86px 0;background:radial-gradient(circle at 85% 12%,rgba(111,174,247,.18),transparent 27%),linear-gradient(128deg,#072346 0%,#0b3d75 58%,#0e4f99 100%)}
.cashin-page-hero:before,.cashin-page-hero:after{content:"";position:absolute;border-radius:50%;pointer-events:none}.cashin-page-hero:before{width:430px;height:430px;border:70px solid rgba(255,255,255,.045);right:-160px;top:-210px}.cashin-page-hero:after{width:260px;height:260px;background:rgba(255,255,255,.035);left:-140px;bottom:-170px}
.cashin-hero-shell{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.4fr) minmax(300px,.6fr);align-items:center;gap:70px}.cashin-hero-content{max-width:750px}.cashin-hero-content .pill{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);color:#e7f3ff}.cashin-hero-content h1{margin:23px 0 20px;color:#fff;font-size:clamp(48px,5.7vw,78px);line-height:1.02;letter-spacing:-3.5px}.cashin-hero-content h1 em{display:block;color:#6faef7;font-style:normal}.cashin-hero-content p{max-width:680px;margin:0;color:#cbe2ff;font-size:19px;line-height:1.75}.cashin-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}.cashin-hero-actions .btn{padding:15px 23px;border-radius:10px}.c4c-hero-primary{background:#6faef7;color:#0b3d75}.c4c-hero-primary:hover{background:#fff;color:#0b3d75}.c4c-hero-secondary{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.35);color:#fff}.c4c-hero-secondary:hover{background:#fff;color:#0b3d75}.cashin-trust-row{display:flex;flex-wrap:wrap;gap:17px;margin-top:25px;color:#cbe2ff;font-size:13px}.cashin-trust-row span{display:flex;align-items:center;gap:6px}
.cashin-hero-card{position:relative;padding:27px;border-radius:24px;background:rgba(255,255,255,.97);box-shadow:0 28px 75px rgba(0,0,0,.26);transform:rotate(1.5deg)}.cashin-hero-card:before{content:"";position:absolute;inset:7px;border:1px solid #6faef7;border-radius:18px;pointer-events:none}.hero-card-badge{display:inline-block;padding:6px 10px;border-radius:6px;background:#0b3d75;color:#6faef7;font-size:11px;font-weight:900;letter-spacing:.12em}.hero-card-rate{display:flex;align-items:flex-end;gap:9px;padding:23px 0;border-bottom:1px solid #dfe6ef}.hero-card-rate strong{font:800 65px/1 Manrope;color:#0b3d75}.hero-card-rate span{padding-bottom:7px;color:#64766f;font-weight:700}.hero-card-line{display:flex;justify-content:space-between;gap:12px;padding:11px 0;border-bottom:1px solid #e9eef5;font-size:13px}.hero-card-line span{color:#78857e}.hero-card-line strong{text-align:right;color:#0b3d75}.hero-card-link{display:block;margin-top:17px;color:#0e4f99;font-size:13px;font-weight:800;text-decoration:none}
.c4c-gold-overview,.c4c-rules-section,.c4c-full-journey,.c4c-final-cta{padding-top:95px;padding-bottom:95px}.c4c-gold-overview .section-head,.c4c-rules-section .section-head,.c4c-full-journey .section-head{margin-bottom:42px}.c4c-gold-summary{border-radius:28px;box-shadow:0 25px 70px rgba(11,61,117,.11)}.c4c-gold-price{position:relative;background:linear-gradient(145deg,#0e4f99,#378bf5)}.c4c-gold-price:after{content:"G";position:absolute;font:900 170px Manrope;color:rgba(255,255,255,.07);right:-5px;bottom:-48px}.c4c-gold-benefits h3,.c4c-gold-action h3{font-size:24px}.c4c-gold-benefits li:last-child{border-bottom:0}.c4c-gold-action .btn{padding:14px 18px;border-radius:10px}.c4c-rules-section{background:#f7faff}.c4c-rules-section .rules-grid{gap:24px}.c4c-rules-section .rules-card{padding:32px;border-radius:24px;background:#fff;box-shadow:0 12px 35px rgba(11,61,117,.055)}.c4c-rules-section .rules-card.accepted{border-top:5px solid #1877f2}.c4c-rules-section .rules-card.rejected{border-top:5px solid #d36b5f}.c4c-rules-section .rules-card li{padding-top:9px;padding-bottom:9px}.c4c-rules-section .quality-master-note{display:grid;grid-template-columns:auto 1fr;column-gap:20px;align-items:center;padding:25px 30px;border-radius:17px;background:#0b3d75;color:#fff}.c4c-rules-section .quality-master-note span{grid-row:1/3;align-self:center;padding:9px 12px;border-radius:8px;background:#6faef7;color:#0b3d75}.c4c-rules-section .quality-master-note h2{font-size:27px;color:#fff;margin:0}.c4c-rules-section .quality-master-note p{color:#e7f3ff;margin:4px 0 0}.c4c-full-journey{background:#fff}.c4c-full-journey .cash-flow{position:relative;gap:18px}.c4c-full-journey .cash-flow article{position:relative;border:1px solid #e7f3ff;border-radius:18px;box-shadow:none}.c4c-full-journey .cash-flow article:hover{transform:translateY(-5px);box-shadow:0 15px 35px rgba(11,61,117,.1)}.c4c-full-journey .cash-flow span{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:#e7f3ff;color:#0e4f99;font-size:13px}.c4c-final-cta{padding-top:30px;background:#fff}.c4c-cta-panel{display:flex;align-items:center;justify-content:space-between;gap:35px;padding:48px 52px;border-radius:26px;background:radial-gradient(circle at 85% 15%,rgba(111,174,247,.2),transparent 25%),linear-gradient(125deg,#072346,#0e4f99);color:#fff}.c4c-cta-panel>div:first-child{max-width:670px}.c4c-cta-panel span{color:#6faef7;font-size:12px;font-weight:900;letter-spacing:.13em}.c4c-cta-panel h2{margin:8px 0;color:#fff;font-size:clamp(34px,4vw,51px);letter-spacing:-2px}.c4c-cta-panel p{margin:0;color:#cbe2ff;font-size:17px}.c4c-cta-actions{display:flex;gap:10px;flex-wrap:wrap;min-width:max-content}.c4c-cta-primary{background:#6faef7;color:#0b3d75}.c4c-cta-outline{border:1px solid rgba(255,255,255,.42);color:#fff;background:transparent}
@media(max-width:980px){.cashin-hero-shell{grid-template-columns:1fr;gap:45px}.cashin-hero-card{max-width:500px;width:100%;transform:none}.c4c-cta-panel{align-items:flex-start;flex-direction:column}.c4c-cta-actions{min-width:0}}
@media(max-width:700px){.cashin-page-hero{padding:62px 0}.cashin-hero-content h1{font-size:45px;letter-spacing:-2px}.cashin-hero-content p{font-size:17px}.cashin-trust-row{gap:10px;flex-direction:column}.cashin-hero-card{padding:23px}.hero-card-rate strong{font-size:55px}.c4c-gold-overview,.c4c-rules-section,.c4c-full-journey,.c4c-final-cta{padding-top:65px;padding-bottom:65px}.c4c-gold-summary>div{padding:26px}.c4c-rules-section .rules-card{padding:24px}.c4c-rules-section .quality-master-note{display:block;padding:25px}.c4c-rules-section .quality-master-note span{display:inline-block;margin-bottom:15px}.c4c-cta-panel{padding:34px 25px}.c4c-cta-actions{width:100%;flex-direction:column}.c4c-cta-actions .btn{text-align:center}}

/* Global responsive and cross-browser hardening */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%}body{min-width:320px}img,svg,video,canvas{max-width:100%;height:auto}button,a,input,select,textarea{-webkit-tap-highlight-color:transparent}button,.btn,.main-nav a{touch-action:manipulation}.container{max-width:1220px}.table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.real-form input,.real-form select,.real-form textarea,.gift-modal-form input,.gift-modal-form select,.gift-modal-form textarea{min-width:0}.gift-modal-dialog{width:min(760px,calc(100vw - 32px))}
@supports not (backdrop-filter:blur(1px)){.site-header{background:#fff}.gift-modal-backdrop{background:rgba(7,35,70,.82)}}
@supports (-webkit-backdrop-filter:blur(1px)){.site-header{-webkit-backdrop-filter:blur(18px)}}

@media(max-width:1200px){.container{width:calc(100% - 48px)}.hero-grid{gap:48px}.footer-grid{gap:30px}.reward-plan-grid{gap:18px}.brand-logo-header{max-width:300px}.main-nav a{padding-left:9px;padding-right:9px}}
@media(max-width:1100px){.site-header{position:sticky}.nav-wrap{height:80px}.brand-logo-header{height:56px;max-width:270px}.main-nav{top:80px;max-height:calc(100vh - 80px);max-height:calc(100dvh - 80px);overflow-y:auto;-webkit-overflow-scrolling:touch;padding-bottom:max(18px,env(safe-area-inset-bottom))}.main-nav a{width:100%;padding:13px 15px}.main-nav a:after{display:none}.nav-toggle{min-width:44px;flex:0 0 44px}.reward-plan-grid,.plans-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-width:none}.gold-standard-plan{grid-column:1/-1}.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.form-layout{gap:26px}}
@media(max-width:900px){.container{width:calc(100% - 36px)}.hero-grid,.split,.charity-home,.form-layout,.how-hero-grid{grid-template-columns:minmax(0,1fr)}.steps{grid-template-columns:repeat(2,minmax(0,1fr))}.reward-plan-grid,.plans-grid{grid-template-columns:1fr;max-width:720px}.gold-standard-plan{grid-column:auto}.rules-grid,.bronze-detail-grid{grid-template-columns:1fr}.full-plan-detail{padding:30px}.c4c-gold-summary{grid-template-columns:1fr 1fr}.c4c-gold-action{grid-column:1/-1}.cashin-hero-shell{gap:35px}.footer-grid{gap:26px}.gift-modal-dialog{max-height:calc(100vh - 24px);max-height:calc(100dvh - 24px)}}
@media(max-width:700px){.container{width:calc(100% - 28px)}.topbar{padding:7px 0}.topbar-inner{min-height:24px}.nav-wrap{height:72px}.brand-logo-header{height:45px;max-width:220px}.main-nav{top:72px;max-height:calc(100vh - 72px);max-height:calc(100dvh - 72px);left:-14px;right:-14px}.section,.c4c-gold-overview,.c4c-rules-section,.c4c-full-journey,.c4c-final-cta{padding-top:64px;padding-bottom:64px}.page-hero{padding:62px 0}.hero h1,.page-hero h1,.cashin-hero-content h1{font-size:clamp(38px,11vw,48px);line-height:1.06;letter-spacing:-2px;overflow-wrap:anywhere}.section-head{margin-bottom:34px}.section-head h2,.split h2,.charity-home h2{font-size:clamp(31px,9vw,38px);line-height:1.12}.section-head p,.split p,.charity-home p{font-size:16px;line-height:1.7}.steps,.credit-explain,.cash-flow,.feature-grid,.dash-cards,.stats-grid,.footer-grid{grid-template-columns:1fr}.reward-plan-card,.full-plan-detail,.rules-card,.real-form,.form-aside{border-radius:18px}.full-plan-header{align-items:flex-start;flex-direction:column}.full-plan-header .btn{width:100%}.c4c-gold-summary{grid-template-columns:1fr}.c4c-gold-action{grid-column:auto}.cashin-hero-card{max-width:100%}.cashin-hero-actions,.public-coming-actions{flex-direction:column}.cashin-hero-actions .btn,.public-coming-actions .btn{width:100%}.c4c-cta-panel{border-radius:20px}.footer{padding-top:58px}.footer-grid{gap:32px}.footer-bottom{text-align:center}.gift-modal{padding:8px}.gift-modal-dialog{width:calc(100vw - 16px);max-height:calc(100vh - 16px);max-height:calc(100dvh - 16px);border-radius:16px}.gift-modal-header{position:sticky;top:0;z-index:2}.gift-modal-footer{position:sticky;bottom:0}.gift-modal-footer .btn{flex:1}.real-form input,.real-form select,.real-form textarea,.gift-modal-form input,.gift-modal-form select,.gift-modal-form textarea{font-size:16px}.books-rus-company{max-width:100%;margin-left:0;margin-right:0}}
@media(max-width:480px){.container{width:calc(100% - 22px)}.brand-logo-header{height:40px;max-width:188px}.nav-toggle{width:42px;height:42px;min-width:42px}.cashin-page-hero{padding:52px 0}.cashin-hero-content h1{font-size:38px}.cashin-hero-card{padding:20px;border-radius:18px}.hero-card-rate strong{font-size:49px}.c4c-gold-summary>div,.full-plan-detail,.rules-card{padding:21px}.c4c-gold-price strong{font-size:62px}.quality-master-note{padding:22px}.quality-master-note h2{font-size:27px}.c4c-cta-panel{padding:28px 20px}.c4c-cta-panel h2{font-size:32px}.footer-grid{gap:28px}.btn{width:100%}.top-social .follow-label{display:none}}
@media(max-width:360px){.container{width:calc(100% - 18px)}.brand-logo-header{max-width:165px}.cashin-hero-content h1{font-size:34px}.page-hero h1{font-size:35px}.nav-wrap{height:68px}.main-nav{top:68px}.gift-modal-header h2{font-size:18px}}
@media(orientation:landscape) and (max-height:520px){.main-nav{max-height:calc(100vh - 68px);max-height:calc(100dvh - 68px)}.cashin-page-hero,.page-hero{padding-top:44px;padding-bottom:44px}.gift-modal-dialog{max-height:96vh;max-height:96dvh}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.btn:hover,.cashin-hero-card,.c4c-full-journey .cash-flow article:hover{transform:none}}

/* Client demo policy pages and clean topbar note */
.legal-content{max-width:900px}.legal-content h2{margin:30px 0 8px;color:var(--pg)}.legal-content h2:first-child{margin-top:0}.legal-content p{color:var(--muted);line-height:1.75}.legal-content a{color:var(--pg);font-weight:700}.top-social-note{font-weight:700;color:inherit}

/* Accessible social media icon buttons */
.top-social{display:flex;align-items:center;gap:8px}.top-social .follow-label{margin-right:3px}.top-social a{width:30px;height:30px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.35);border-radius:50%;color:#fff;text-decoration:none;transition:background .2s,border-color .2s,transform .2s}.top-social a:hover{background:#fff;color:#0e4f99;border-color:#fff;transform:translateY(-1px)}.top-social a:focus-visible{outline:3px solid #6faef7;outline-offset:2px}.top-social svg{width:15px;height:15px;display:block}.top-social-note{display:none}
@media(max-width:560px){.top-social .follow-label{display:none}.top-social{gap:6px}.top-social a{width:28px;height:28px}}

/* Exact changes from GOGREENDRAGON CHANGES.docx */
.reward-plan-card{display:flex;flex-direction:column}
.reward-plan-card>.plan-scroll-btn,.reward-plan-card>.plan-card-action{margin-top:auto}
.reward-plan-card .plan-scroll-btn{min-width:150px;min-height:50px;padding:13px 22px;display:inline-flex;align-items:center;justify-content:center;font-size:15px}
.plan-card-action{display:flex;align-items:center;gap:15px;flex-wrap:wrap}
.gift-aid-enabled{display:inline-flex;align-items:center;min-height:44px;color:#0b3d75;font-size:13px;font-weight:900;letter-spacing:.035em;text-transform:uppercase}

.gold-hero .pill,.gold-hero h1 em{color:#fff}
.gold-hero-action,.gold-detail-action{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:24px}
.gold-hero-action .gift-aid-enabled{color:#fff}
.gold-join-btn,.gold-detail-action .plan-join-btn{width:auto!important;min-width:145px;min-height:54px;padding:14px 34px;font-size:18px}
.gold-detail{border:5px solid #fff;outline:8px solid #4b2e12;outline-offset:0;box-shadow:0 22px 55px rgba(66,38,12,.22)}
.gold-detail-action{margin-top:0;justify-content:flex-end}

.member-journey-line{display:flex;align-items:center;gap:9px;flex-wrap:wrap}
.member-journey-line strong{color:#fff}
.member-journey-line span{color:#6faef7;font-weight:900}
.footer-bottom-company{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer-bottom-company span{font:inherit;color:inherit}
.contact-form-layout{grid-template-columns:minmax(0,900px);justify-content:center}
#contactForm{width:100%}

@media(max-width:900px){.gold-detail{outline-width:5px}.gold-detail-action{justify-content:flex-start}}
@media(max-width:700px){.plan-card-action,.gold-hero-action,.gold-detail-action{align-items:stretch;flex-direction:column}.plan-card-action .btn,.gold-hero-action .btn,.gold-detail-action .btn{width:100%!important}.gift-aid-enabled{justify-content:center}.footer-bottom-company{justify-content:center;text-align:center}}

/* Single-colour page headers: all banner title text is white */
.hero h1,
.hero h1 em,
.page-hero h1,
.page-hero h1 em,
.cashin-hero-content h1,
.cashin-hero-content h1 em,
.public-coming-card h1,
.portal-hero h1{
  color:#fff!important;
  background:none!important;
  -webkit-background-clip:initial!important;
  background-clip:initial!important;
  -webkit-text-fill-color:#fff!important;
}

/* Privacy Notice and Terms & Conditions */
.legal-hero{padding-bottom:68px}
.legal-hero p{max-width:760px}
.legal-meta{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.legal-meta span{display:inline-flex;align-items:center;gap:7px;padding:10px 14px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(255,255,255,.1);color:#fff;font-size:13px}
.legal-meta strong{color:#6faef7}
.legal-section{background:#f7faff;padding-top:72px}
.legal-shell{display:grid;grid-template-columns:250px minmax(0,1fr);gap:34px;align-items:start}
.legal-toc{position:sticky;top:24px;padding:24px;border:1px solid #cbe2ff;border-radius:18px;background:#fff;box-shadow:0 12px 34px rgba(11,61,117,.06)}
.legal-toc>span{display:block;margin-bottom:14px;color:#0b3d75;font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.legal-toc nav{display:grid;gap:2px;max-height:68vh;overflow-y:auto;padding-right:5px}
.legal-toc a{padding:8px 10px;border-radius:8px;color:#52685e;font-size:13px;font-weight:650;text-decoration:none}
.legal-toc a:hover{background:#e7f3ff;color:#0e4f99}
.legal-document{display:grid;gap:20px;min-width:0}
.legal-document article{position:relative;padding:34px 38px;border:1px solid #e7f3ff;border-radius:20px;background:#fff;box-shadow:0 12px 34px rgba(11,61,117,.055);scroll-margin-top:24px}
.legal-document h2{margin:0 0 16px;padding-right:54px;color:#0b3d75;font-size:clamp(25px,3vw,34px);letter-spacing:-.8px}
.legal-document h3{margin:24px 0 10px;color:#0e4f99;font-size:18px}
.legal-document p{margin:0 0 16px;color:#53675e;font-size:16px;line-height:1.78}
.legal-document p:last-child{margin-bottom:0}
.legal-document ul{display:grid;gap:8px;margin:12px 0 18px;padding-left:22px;color:#334b6b}
.legal-document li{padding-left:4px;line-height:1.62}
.legal-document a{color:#0e4f99}
.legal-number{position:absolute;right:28px;top:27px;display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#e7f3ff;color:#0e4f99;font:900 12px Manrope}
.legal-subgrid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.legal-subgrid section{padding:21px;border:1px solid #e7f3ff;border-radius:14px;background:#f7faff}
.legal-subgrid h3{margin-top:0}
.legal-subgrid ul{margin-bottom:0}
.legal-highlight{display:flex;align-items:center;justify-content:space-between;gap:15px;flex-wrap:wrap;margin:18px 0;padding:17px 19px;border-left:4px solid #0e4f99;border-radius:10px;background:#f7faff;color:#0b3d75;line-height:1.6}
.legal-highlight.secure{background:#e7f3ff}
.legal-highlight.warning{border-left-color:#1877f2;background:#e7f3ff;color:#0e4f99}
.legal-contact-card{background:linear-gradient(130deg,#0b3d75,#0e4f99)!important;border-color:#0e4f99!important}
.legal-contact-card h2,.legal-contact-card p{color:#fff}
.legal-contact-card .legal-number{background:#6faef7;color:#0b3d75}
.legal-contact-card .btn{margin-top:8px}
@media(max-width:980px){.legal-shell{grid-template-columns:1fr}.legal-toc{position:relative;top:auto}.legal-toc nav{grid-template-columns:repeat(2,minmax(0,1fr));max-height:none}}
@media(max-width:700px){.legal-hero{padding-bottom:54px}.legal-meta{flex-direction:column}.legal-meta span{width:100%;justify-content:flex-start}.legal-section{padding-top:44px}.legal-toc{padding:20px}.legal-toc nav{grid-template-columns:1fr}.legal-document article{padding:28px 22px}.legal-document h2{padding-right:48px;font-size:25px}.legal-number{right:18px;top:21px;width:38px;height:38px}.legal-subgrid{grid-template-columns:1fr}.legal-highlight{align-items:flex-start;flex-direction:column}}

/* 7 Aug 2026 document changes */
.reward-plan-card.bronze-plan{background:linear-gradient(180deg,#f6a04d 0%,#f08a2e 52%,#d96a00 100%)!important;box-shadow:0 16px 36px rgba(217,106,0,.4)!important;color:#fff!important}
.reward-plan-card.bronze-plan :is(h2,h3,h4,p,span,small,strong,.reward-price,.plan-condition){color:#fff!important}
.reward-plan-card.silver-plan{background:linear-gradient(180deg,#e5e5e5 0%,#d6d6d6 52%,#c4c4c4 100%)!important;border-color:#bdbdbd!important;color:#555!important}
.reward-plan-card.silver-plan :is(h2,h3,h4,p,span,small,strong,.reward-price,.plan-condition){color:#555!important}
.reward-plan-card.gold-standard-plan{background:linear-gradient(180deg,#378bf5 0%,#378bf5 52%,#378bf5 100%)!important;box-shadow:0 16px 36px rgba(55,139,245,.4)!important;color:#fff!important}
.reward-plan-card.gold-standard-plan :is(h2,h3,h4,p,span,small,strong,.reward-price,.plan-condition){color:#fff!important}
.plan-card-action{display:flex;align-items:stretch;gap:12px}.gift-aid-enabled{display:inline-flex!important;align-items:center;justify-content:center;padding:12px 18px;border:2px solid #fff!important;border-radius:8px;background:#378bf5!important;color:#fff!important;white-space:nowrap}.gold-hero-action,.gold-detail-action{display:flex!important;align-items:stretch!important;gap:12px!important;flex-wrap:nowrap!important}.gold-hero-action .btn,.gold-detail-action .btn{min-width:145px;text-align:center}.gold-detail{background:#378bf5!important;border:2px solid #fff!important}.gold-detail .full-plan-header{background:#378bf5!important;border:2px solid #fff!important}.gold-detail .accepted{background:#6faef7!important;border:2px solid #fff!important}.gold-detail .rejected{background:#378bf5!important;border:2px solid #fff!important}.gold-detail .rules-title h3,.gold-detail .rules-card li,.gold-detail .rules-card strong,.gold-detail .rejected .rules-title h3,.gold-detail .rejected li,.gold-detail .rejected strong{color:#fff!important}
@media(max-width:520px){.gold-hero-action,.gold-detail-action,.plan-card-action{flex-wrap:wrap!important}.gold-hero-action>* ,.gold-detail-action>* ,.plan-card-action>*{width:100%}}

/* Client change request — 11 Aug 2026 */
/* Make the Gold Gift Aid action larger and easier to notice. */
.gift-aid-enabled{
  min-height:54px!important;
  padding:14px 24px!important;
  border-radius:10px!important;
  font-size:17px!important;
  line-height:1.1!important;
  font-weight:900!important;
  letter-spacing:.045em!important;
}

/* Plans: use black text across the plan cards for stronger readability. */
.reward-plans-section .reward-plan-card,
.reward-plans-section .reward-plan-card :is(h2,h3,h4,p,span,small,strong,.reward-price,.plan-condition){
  color:#000!important;
}
.reward-plans-section .reward-plan-card .plan-scroll-btn{
  color:#000!important;
}

@media(max-width:700px){
  .gift-aid-enabled{
    min-height:52px!important;
    padding:14px 18px!important;
    font-size:16px!important;
  }
}

/* Gold plan CTA alignment refinement — 11 Aug 2026 */
.reward-plans-section .gold-standard-plan .plan-card-action{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  align-items:stretch!important;
  gap:12px!important;
  flex-wrap:nowrap!important;
}
.reward-plans-section .gold-standard-plan .plan-card-action .plan-scroll-btn,
.reward-plans-section .gold-standard-plan .plan-card-action .gift-aid-enabled{
  width:100%!important;
  min-width:0!important;
  min-height:58px!important;
  margin:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
}
.reward-plans-section .gold-standard-plan .plan-card-action .plan-scroll-btn{
  color:#fff!important;
}
@media(max-width:520px){
  .reward-plans-section .gold-standard-plan .plan-card-action{
    grid-template-columns:1fr!important;
  }
}

/* Gift Aid font size adjustment — 11 Aug 2026 */
.gift-aid-enabled{font-size:16px!important;}

/* Final Plans colour refinements — 11 Aug 2026 */
.reward-plans-section .silver-plan .plan-scroll-btn{
  color:#fff!important;
}
.reward-plans-section .gold-standard-plan .reward-medal{
  color:#fff!important;
}

/* ===== FINAL GOLD PAGE TEXT COLOUR OVERRIDE =====
   Requested: every visible text element inside the Gold plan design is black. */
.gold-page .gold-detail.gold-detail,
.gold-page .gold-detail.gold-detail * {
  color: #000000 !important;
}

/* Preserve action alignment requested earlier */
.gold-page .gold-detail .gold-detail-action {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}
.gold-page .gold-detail .gold-detail-action .plan-join-btn,
.gold-page .gold-detail .gold-detail-action .gift-aid-enabled {
  margin: 0 !important;
  min-width: 190px !important;
  min-height: 58px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  color: #000000 !important;
}
.gold-page .gold-detail .gold-detail-action .gift-aid-enabled {
  font-size: 16px !important;
}
@media (max-width: 700px) {
  .gold-page .gold-detail .gold-detail-action {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }
  .gold-page .gold-detail .gold-detail-action > * {
    flex: 1 1 180px !important;
    min-width: 0 !important;
  }
}


/* ===== Full Bronze / Silver / Gold details on Plans page ===== */
.reward-plans-section .inline-plan-details{
  margin:20px 0 22px;
  padding:18px;
  border-radius:16px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(0,0,0,.12);
}
.reward-plans-section .inline-plan-details,
.reward-plans-section .inline-plan-details *{
  color:#000 !important;
}
.reward-plans-section .inline-plan-details-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom:13px;
  margin-bottom:14px;
  border-bottom:1px solid rgba(0,0,0,.14);
}
.reward-plans-section .inline-plan-details-head h3{
  margin:0;
  font-size:18px;
  line-height:1.25;
}
.reward-plans-section .inline-plan-details-head strong{
  font-size:13px;
  white-space:nowrap;
}
.reward-plans-section .inline-plan-rules{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.reward-plans-section .inline-plan-rule{
  padding:14px;
  border-radius:13px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.09);
}
.reward-plans-section .inline-plan-rule h4{
  margin:0 0 9px;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:7px;
}
.reward-plans-section .inline-rule-icon{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background:rgba(0,0,0,.08);
}
.reward-plans-section .inline-plan-rule ul{
  margin:0;
  padding-left:20px;
  display:grid;
  gap:6px;
}
.reward-plans-section .inline-plan-rule li{
  font-size:13px;
  line-height:1.45;
}
.reward-plans-section .inline-plan-note{
  margin:14px 0 0 !important;
  min-height:0 !important;
  font-size:12px !important;
  line-height:1.5;
  font-weight:700;
}

/* User requested all plan information text in black */
.reward-plans-section .reward-plan-card,
.reward-plans-section .reward-plan-card :is(h2,h3,h4,p,span,small,strong,li,.reward-price,.plan-condition){
  color:#000 !important;
}

/* Preserve readable CTA labels on dark buttons */
.reward-plans-section .silver-plan .plan-scroll-btn,
.reward-plans-section .gold-standard-plan .plan-scroll-btn{
  color:#fff !important;
}
.reward-plans-section .gold-standard-plan .gift-aid-enabled{
  color:#000 !important;
  font-size:16px !important;
}

@media(max-width:700px){
  .reward-plans-section .inline-plan-details{
    padding:15px;
  }
  .reward-plans-section .inline-plan-details-head{
    flex-direction:column;
  }
}

/* ===== Premium stable-hover How It Works dropdown ===== */
.main-nav .nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
  padding-bottom:10px; /* creates hover bridge to dropdown */
  margin-bottom:-10px;
}
.main-nav .nav-dropdown-trigger{
  display:flex;
  align-items:center;
  gap:2px;
  border-radius:10px;
}
.main-nav .nav-dropdown-link{
  display:inline-flex;
  align-items:center;
  padding-right:2px !important;
}
.main-nav .nav-dropdown-button{
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  color:inherit;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  border-radius:7px;
  padding:0;
  transition:background .18s ease,color .18s ease;
}
.main-nav .nav-dropdown-button:hover,
.main-nav .nav-dropdown-button:focus-visible{
  background:rgba(24,119,242,.12);
  outline:none;
}
.main-nav .nav-dropdown-chevron{
  display:block;
  font-size:12px;
  line-height:1;
  transition:transform .2s ease;
}

.main-nav .nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  width:300px;
  padding:9px;
  background:#ffffff;
  border:1px solid rgba(7,35,70,.09);
  border-radius:14px;
  box-shadow:0 16px 38px rgba(7,35,70,.14);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%,6px);
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease;
  z-index:99999;
}

/* invisible hover bridge so menu stays open while cursor travels downward */
.main-nav .nav-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
  background:transparent;
}

.main-nav .nav-dropdown-item{
  display:grid !important;
  grid-template-columns:38px 1fr;
  gap:10px;
  align-items:center;
  padding:10px 11px !important;
  border-radius:10px;
  color:#072346 !important;
  text-decoration:none;
  transition:background .16s ease,transform .16s ease;
}
.main-nav .nav-dropdown-item + .nav-dropdown-item{margin-top:4px}
.main-nav .nav-dropdown-item:hover,
.main-nav .nav-dropdown-item:focus-visible{
  background:#f7faff;
  transform:translateX(2px);
  outline:none;
}
.main-nav .nav-dropdown-icon{
  width:38px;
  height:38px;
  border-radius:10px;
  background:#e7f3ff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0e4f99 !important;
  font-size:11px;
  font-weight:800;
}
.main-nav .nav-dropdown-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.main-nav .nav-dropdown-copy strong{
  color:#072346 !important;
  font-size:13px;
  line-height:1.2;
}
.main-nav .nav-dropdown-copy small{
  color:#667a72 !important;
  font-size:10.5px;
  line-height:1.35;
  font-weight:500;
}

@media (min-width:1101px){
  .main-nav .nav-dropdown:hover .nav-dropdown-menu,
  .main-nav .nav-dropdown:focus-within .nav-dropdown-menu,
  .main-nav .nav-dropdown.open .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
  }
  .main-nav .nav-dropdown:hover .nav-dropdown-chevron,
  .main-nav .nav-dropdown:focus-within .nav-dropdown-chevron,
  .main-nav .nav-dropdown.open .nav-dropdown-chevron{
    transform:rotate(180deg);
  }
}

@media (max-width:1100px){
  .main-nav .nav-dropdown{
    display:block;
    width:100%;
    padding-bottom:0;
    margin-bottom:0;
  }
  .main-nav .nav-dropdown-trigger{
    width:100%;
    justify-content:space-between;
  }
  .main-nav .nav-dropdown-link{
    flex:1 1 auto;
  }
  .main-nav .nav-dropdown-button{
    width:42px;
    height:42px;
    flex:0 0 42px;
    margin-right:4px;
  }
  .main-nav .nav-dropdown-menu{
    position:static;
    width:auto;
    margin:4px 8px 8px;
    padding:7px;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
    box-shadow:none;
    display:none;
    border-radius:11px;
  }
  .main-nav .nav-dropdown-menu::before{display:none}
  .main-nav .nav-dropdown.open .nav-dropdown-menu{display:block}
  .main-nav .nav-dropdown.open .nav-dropdown-chevron{transform:rotate(180deg)}
}

/* Simple How It Works dropdown: text only */
.main-nav .nav-dropdown-menu{
  width:210px !important;
  padding:7px !important;
  text-align:left !important;
}
.main-nav .nav-dropdown-menu .nav-dropdown-item{
  display:block !important;
  width:100% !important;
  padding:11px 13px !important;
  margin:0 !important;
  text-align:left !important;
  color:#072346 !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.25 !important;
  border-radius:9px !important;
  transform:none !important;
}
.main-nav .nav-dropdown-menu .nav-dropdown-item + .nav-dropdown-item{
  margin-top:3px !important;
}
.main-nav .nav-dropdown-menu .nav-dropdown-item:hover,
.main-nav .nav-dropdown-menu .nav-dropdown-item:focus-visible{
  background:#f7faff !important;
  color:#0e4f99 !important;
}
@media(max-width:1100px){
  .main-nav .nav-dropdown-menu{
    width:auto !important;
    text-align:left !important;
  }
}

/* ===== Home: GoGreenDragon LFZ Credit Engine infographic ===== */
.lfz-spew-section{position:relative;overflow:hidden;padding:clamp(70px,7vw,104px) 0;background:radial-gradient(circle at 12% 20%,rgba(55,139,245,.11),transparent 31%),radial-gradient(circle at 88% 22%,rgba(55,139,245,.12),transparent 28%),linear-gradient(180deg,#f7faff 0%,#fff 100%)}
.lfz-spew-section:before,.lfz-spew-section:after{content:"";position:absolute;width:280px;height:280px;border-radius:50%;background:rgba(14,79,153,.05);pointer-events:none}.lfz-spew-section:before{left:-130px;top:70px}.lfz-spew-section:after{right:-120px;bottom:40px}
.lfz-spew-head{max-width:860px;margin:0 auto 42px;text-align:center}.lfz-spew-pill{margin-bottom:18px}.lfz-spew-head h2{margin:0;color:#072346;font-size:clamp(2.1rem,4.2vw,4rem);line-height:1.03;letter-spacing:-.04em}.lfz-spew-head p{max-width:760px;margin:18px auto 0;color:#5e746b;font-size:clamp(1rem,1.6vw,1.15rem);line-height:1.7}
.lfz-spew-value-row{display:grid;grid-template-columns:minmax(180px,.8fr) minmax(240px,1fr) 74px minmax(240px,1fr);gap:20px;align-items:center;margin:0 0 32px}.lfz-join-chip{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:64px;padding:0 24px;border-radius:999px;background:linear-gradient(135deg,#0e4f99,#0b3d75);color:#fff!important;font-weight:800;letter-spacing:.08em;box-shadow:0 16px 34px rgba(14,79,153,.18);text-decoration:none}.lfz-join-chip span{opacity:.55;font-weight:400;letter-spacing:0}
.lfz-value-box,.lfz-cash-box{min-height:180px;padding:26px 28px;border-radius:28px;display:flex;flex-direction:column;justify-content:center;border:1px solid rgba(7,35,70,.1);box-shadow:0 18px 45px rgba(7,35,70,.1)}.lfz-value-box{background:linear-gradient(145deg,#e7f3ff,#f7faff)}.lfz-cash-box{background:linear-gradient(145deg,#cbe2ff,#cbe2ff)}.lfz-value-box small,.lfz-cash-box small{color:#405e85;font-size:11px;font-weight:800;letter-spacing:.11em}.lfz-value-box strong,.lfz-cash-box strong{margin-top:10px;color:#072346;font-size:clamp(2rem,4vw,3.5rem);line-height:1}.lfz-value-box span,.lfz-cash-box span{margin-top:8px;color:#0e4f99;font-size:13px;line-height:1.4}.lfz-equals,.lfz-flow-eq{display:flex;align-items:center;justify-content:center;color:#0e4f99;font-size:30px;font-weight:900}
.lfz-spew-flow{display:grid;grid-template-columns:1fr 54px 1fr 54px 1fr 54px 1fr;gap:14px;align-items:stretch}.lfz-flow-card{min-height:220px;padding:26px;border-radius:22px;background:#fff;border:1px solid rgba(7,35,70,.1);box-shadow:0 14px 35px rgba(7,35,70,.07);display:flex;flex-direction:column}.lfz-flow-icon{width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:#e7f3ff;color:#0e4f99;font-size:13px;font-weight:900;letter-spacing:.05em}.lfz-flow-card h3{margin:20px 0 8px;color:#072346;font-size:20px}.lfz-flow-card p{margin:0;color:#63776f;line-height:1.65;font-size:14px}
.lfz-spew-footer{margin-top:34px;padding:22px 26px;border-radius:20px;background:#0b3d75;display:grid;grid-template-columns:72px 1fr 72px;gap:20px;align-items:center}.lfz-dragon-badge{width:72px;height:72px;border-radius:18px;background:#fff;display:flex;align-items:center;justify-content:center}.lfz-dragon-badge span{font-size:28px;font-weight:900;color:#0e4f99}.lfz-spew-caption{text-align:center;display:flex;flex-direction:column;gap:5px}.lfz-spew-caption strong{color:#fff;font-size:clamp(1rem,2vw,1.25rem)}.lfz-spew-caption span{color:#cbe2ff;font-size:13px;letter-spacing:.04em}
@media(max-width:1100px){.lfz-spew-value-row{grid-template-columns:1fr 1fr}.lfz-join-chip{grid-column:1/-1}.lfz-equals{display:none}.lfz-spew-flow{grid-template-columns:1fr 1fr}.lfz-flow-eq{display:none}}
@media(max-width:700px){.lfz-spew-section{padding:56px 0}.lfz-spew-value-row,.lfz-spew-flow{grid-template-columns:1fr}.lfz-value-box,.lfz-cash-box,.lfz-flow-card{min-height:auto}.lfz-spew-footer{grid-template-columns:1fr;text-align:center}.lfz-dragon-badge{margin:0 auto}.lfz-spew-caption{order:2}.lfz-spew-footer .lfz-dragon-badge:last-child{display:none}}

/* ===== SIMPLE SINGLE-IMAGE LFZ BANNER ===== */
.lfz-dragon-banner{
  position:relative !important;
  display:block !important;
  width:100% !important;
  min-height:0 !important;
  height:auto !important;
  padding:0 !important;
  overflow:hidden !important;
  background:transparent !important;
  border-radius:20px !important;
}
.lfz-dragon-banner::before,
.lfz-dragon-banner::after{
  content:none !important;
  display:none !important;
}
.lfz-dragon-banner > img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:contain !important;
  border-radius:20px !important;
}
.lfz-dragon-art,
.lfz-dragon-center,
.lfz-banner-icon{
  display:none !important;
}
@media(max-width:767.98px){
  .lfz-dragon-banner,
  .lfz-dragon-banner > img{
    border-radius:12px !important;
  }
}


/* ===== LIQUIDITY JOURNEY HEADING ===== */
.liquidity-journey-heading{
  max-width:980px !important;
  margin:0 auto 22px !important;
  padding:0 20px !important;
  text-align:center !important;
  font-size:clamp(38px,4.2vw,68px) !important;
  line-height:1.08 !important;
  letter-spacing:-0.035em !important;
  font-weight:700 !important;
  text-wrap:balance !important;
}

@media(max-width:991.98px){
  .liquidity-journey-heading{
    max-width:800px !important;
    font-size:clamp(34px,5.4vw,54px) !important;
    line-height:1.12 !important;
    margin-bottom:18px !important;
  }
}

@media(max-width:575.98px){
  .liquidity-journey-heading{
    max-width:100% !important;
    padding:0 12px !important;
    font-size:clamp(30px,8.2vw,40px) !important;
    line-height:1.14 !important;
    letter-spacing:-0.025em !important;
    margin-bottom:16px !important;
  }
}


/* ===== HOME SHOPPING VISUAL SECTION ===== */
.home-shopping-visual{
  padding:40px 0 !important;
  background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
}
.home-shopping-visual-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:34px;
  align-items:center;
  padding:34px;
  border-radius:26px;
  background:#ffffff;
  border:1px solid rgba(7,35,70,.10);
  box-shadow:0 16px 40px rgba(7,35,70,.08);
}
.home-shopping-visual-copy{
  min-width:0;
}
.home-shopping-visual-eyebrow{
  display:inline-block;
  margin-bottom:12px;
  color:#0e4f99;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}
.home-shopping-visual-copy h2{
  margin:0;
  color:#072346;
  font-size:clamp(2.25rem,4.5vw,4.7rem);
  line-height:.98;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.home-shopping-visual-payline{
  display:inline-block;
  margin:22px 0 0;
  padding:12px 18px;
  border-radius:14px;
  background:linear-gradient(135deg,#0e4f99,#1877f2);
  color:#fff !important;
  font-size:clamp(1.1rem,2vw,1.7rem);
  font-weight:900;
  font-style:italic;
  line-height:1.15;
}
.home-shopping-visual-subcopy{
  margin:18px 0 0;
  color:#395376;
  font-size:clamp(1rem,1.5vw,1.16rem);
  line-height:1.6;
}
.home-shopping-mini-flow{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:24px;
}
.home-shopping-mini-step{
  min-width:0;
  padding:12px;
  border-radius:14px;
  background:#f7faff;
  border:1px solid rgba(7,35,70,.08);
  text-align:center;
}
.home-shopping-mini-icon{
  display:flex;
  width:38px;
  height:38px;
  margin:0 auto 8px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e7f3ff;
  font-size:19px;
}
.home-shopping-mini-step strong{
  display:block;
  color:#072346;
  font-size:13px;
}
.home-shopping-mini-step small{
  display:block;
  margin-top:4px;
  color:#6a7d75;
  font-size:10px;
  line-height:1.35;
}
.home-shopping-visual-media{
  min-width:0;
}
.home-shopping-visual-media img{
  display:block;
  width:100%;
  height:auto;
  border-radius:20px;
  object-fit:cover;
}

@media(max-width:991.98px){
  .home-shopping-visual-grid{
    grid-template-columns:1fr;
    gap:26px;
    padding:28px;
  }
  .home-shopping-visual-copy{
    text-align:center;
  }
  .home-shopping-visual-copy h2{
    max-width:760px;
    margin-inline:auto;
  }
  .home-shopping-visual-subcopy{
    max-width:700px;
    margin-inline:auto;
    margin-top:18px;
  }
}

@media(max-width:700px){
  .home-shopping-visual{
    padding:30px 0 !important;
  }
  .home-shopping-visual-grid{
    padding:22px 18px;
    border-radius:20px;
  }
  .home-shopping-mini-flow{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:479.98px){
  .home-shopping-visual-grid{
    padding:18px 14px;
  }
  .home-shopping-visual-copy h2{
    font-size:clamp(2rem,10vw,3rem);
  }
  .home-shopping-mini-flow{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .home-shopping-mini-step{
    padding:10px;
  }
}

/* Marketing section: avoid duplicated text; artwork carries the message */
.home-shopping-visual-grid{
  grid-template-columns:1fr !important;
  max-width:1180px;
  margin-inline:auto;
}
.home-shopping-visual-media{
  width:100%;
  max-width:100%;
}
.home-shopping-visual-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Journey section centered */
#journey{text-align:center}
#journey .container{width:min(1180px,calc(100% - 32px));margin-inline:auto}
#journey .section-head{max-width:920px;margin:0 auto 36px;text-align:center}
#journey .section-head .eyebrow{display:inline-flex;margin-inline:auto}
#journey .liquidity-journey-heading{max-width:900px;margin:14px auto 16px;text-align:center;text-wrap:balance}
#journey .section-head>p{max-width:760px;margin:0 auto;text-align:center;line-height:1.65}
#journey .steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;max-width:1050px;margin:0 auto;align-items:stretch}
#journey .steps article{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;height:100%;padding:30px 24px;text-align:center}
#journey .steps article b{display:block;margin:0 auto 14px}
#journey .steps article .icon{display:flex;align-items:center;justify-content:center;margin:0 auto 18px}
#journey .steps article h3{width:100%;margin:0 auto 12px;text-align:center}
#journey .steps article p{max-width:280px;margin:0 auto;text-align:center;line-height:1.6}
@media(max-width:767.98px){
 #journey .section-head{margin-bottom:28px}
 #journey .steps{grid-template-columns:1fr;max-width:520px}
 #journey .steps article{width:100%;padding:26px 20px}
}
@media(max-width:479.98px){
 #journey .container{width:min(100% - 24px,1180px)}
 #journey .liquidity-journey-heading{font-size:clamp(1.9rem,9vw,2.6rem)}
}


/* =========================================================
   EXACT REFERENCE PLANS PAGE
   Rebuilt from scratch to match the supplied concept
   ========================================================= */

.exact-plans-page{
  background:#ffffff;
}

.exact-plans-section{
  padding:38px 0 70px;
}

.exact-plans-heading{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.exact-plans-heading h1{
  margin:8px 0 8px;
  color:#072346;
  font-size:clamp(2.5rem,4.5vw,4rem);
  line-height:1;
  letter-spacing:-.035em;
}

.exact-plans-heading p{
  margin:0;
  color:#65766f;
  font-size:1.05rem;
}

/* 3 equal plan columns */
.exact-plan-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:68px;
  max-width:1220px;
  margin:0 auto;
  align-items:start;
}

/* Per-plan colour */
.exact-plan-card{
  --plan-color:#e57373;
  position:relative;
  padding-top:118px;
  min-width:0;
}

.exact-silver{
  --plan-color:#bdbdbd;
}

.exact-gold{
  --plan-color:#378bf5;
}

/* Raised top cap */
.exact-plan-top{
  position:absolute;
  top:0;
  left:46px;
  right:46px;
  height:162px;
  padding:18px 18px 62px;
  border-radius:52px 52px 0 0;
  background:var(--plan-color);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  z-index:1;
}

.exact-plan-name{
  width:100%;
  min-height:58px;
  padding:8px 14px;
  border-radius:999px;
  background:#ffffff;
  color:#111111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:clamp(1.55rem,2.2vw,2.15rem);
  font-weight:500;
  line-height:1;
  letter-spacing:.02em;
}

.exact-gold-top{
  height:176px;
  padding-top:8px;
  gap:8px;
}

.exact-gold-top .exact-plan-name{
  min-height:50px;
}

.exact-plan-standard{
  font-size:clamp(1.35rem,1.9vw,1.8rem);
}

/* Main tall rounded body */
.exact-plan-frame{
  position:relative;
  z-index:2;
  min-height:710px;
  padding:22px 22px 24px;
  border:18px solid var(--plan-color);
  border-radius:56px;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:stretch;
}

/* OPEN / ENABLE GIFT AID */
.exact-plan-open{
  width:100%;
  min-height:78px;
  padding:12px 18px;
  border-radius:999px;
  background:var(--plan-color);
  color:#111111 !important;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:clamp(1.25rem,2vw,1.7rem);
  font-weight:500;
  line-height:1.1;
}

.exact-gift-aid{
  font-size:clamp(1.05rem,1.55vw,1.35rem);
  font-weight:600;
  white-space:nowrap;
}

/* SUBSCRIBE NOW */
.exact-plan-frame h2{
  margin:34px auto 22px;
  color:#ef5b16;
  text-align:center;
  font-size:clamp(2.1rem,3vw,3rem);
  font-weight:400;
  line-height:1.18;
  letter-spacing:.02em;
}

/* Actual plan details fit inside the large blank area */
.exact-plan-content{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
  padding:10px 8px 4px;
  text-align:center;
}

.exact-plan-price{
  margin-top:2px;
  color:#111111;
  font-size:clamp(3.2rem,4.2vw,4.5rem);
  font-weight:800;
  line-height:1;
}

.exact-plan-price small{
  font-size:.28em;
  font-weight:700;
}

.exact-plan-content > p{
  max-width:300px;
  min-height:86px;
  margin:24px auto 0;
  color:#222222;
  font-size:1rem;
  line-height:1.55;
  display:flex;
  align-items:center;
  justify-content:center;
}

.exact-plan-meta{
  width:100%;
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.exact-plan-meta span{
  color:#555;
  font-size:.9rem;
  font-weight:600;
}

.exact-plan-meta strong{
  width:100%;
  padding:13px 10px;
  border-radius:12px;
  background:#f6f6f6;
  color:#111111;
  font-size:.75rem;
  line-height:1.35;
  text-transform:uppercase;
}

.exact-plan-view{
  width:100%;
  min-height:54px;
  margin-top:16px;
  border-radius:12px;
  background:#072346;
  color:#ffffff !important;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* Tablet */
@media(max-width:1050px) and (min-width:768px){
  .exact-plan-grid{
    gap:24px;
  }

  .exact-plan-card{
    padding-top:96px;
  }

  .exact-plan-top{
    left:24px;
    right:24px;
    height:138px;
    padding:14px 14px 48px;
  }

  .exact-gold-top{
    height:152px;
  }

  .exact-plan-name{
    min-height:50px;
    font-size:1.55rem;
  }

  .exact-plan-standard{
    font-size:1.3rem;
  }

  .exact-plan-frame{
    min-height:650px;
    padding:18px 14px 18px;
    border-width:13px;
    border-radius:42px;
  }

  .exact-plan-open{
    min-height:64px;
    font-size:1.1rem;
  }

  .exact-gift-aid{
    font-size:.86rem;
  }

  .exact-plan-frame h2{
    margin-top:28px;
    font-size:2.15rem;
  }

  .exact-plan-content > p{
    font-size:.9rem;
  }
}

/* Mobile */
@media(max-width:767.98px){
  .exact-plans-section{
    padding:30px 0 54px;
  }

  .exact-plans-heading{
    margin-bottom:34px;
  }

  .exact-plan-grid{
    grid-template-columns:1fr;
    max-width:460px;
    gap:44px;
  }

  .exact-plan-card{
    padding-top:98px;
  }

  .exact-plan-top{
    left:34px;
    right:34px;
    height:140px;
  }

  .exact-gold-top{
    height:154px;
  }

  .exact-plan-frame{
    min-height:630px;
    border-width:14px;
    border-radius:44px;
  }
}

/* Small mobile */
@media(max-width:420px){
  .exact-plan-grid{
    max-width:100%;
  }

  .exact-plan-card{
    padding-top:86px;
  }

  .exact-plan-top{
    left:22px;
    right:22px;
    height:126px;
    border-radius:36px 36px 0 0;
  }

  .exact-gold-top{
    height:140px;
  }

  .exact-plan-name{
    min-height:46px;
    font-size:1.5rem;
  }

  .exact-plan-standard{
    font-size:1.18rem;
  }

  .exact-plan-frame{
    min-height:590px;
    border-width:11px;
    border-radius:36px;
    padding:16px 12px 16px;
  }

  .exact-plan-open{
    min-height:58px;
  }

  .exact-plan-frame h2{
    font-size:2rem;
  }
}


/* Global H2 font size */
h2 {
  font-size: 50px !important;
}


/* ===== BALANCED RESPONSIVE H2 TYPOGRAPHY ===== */
/* Replaces the previous oversized 50px treatment */
h2{
  font-size:clamp(30px, 3vw, 42px) !important;
  line-height:1.15 !important;
  letter-spacing:-0.025em !important;
  font-weight:700 !important;
  text-wrap:balance;
}

/* Large feature/section headings can breathe without becoming oversized */
.section-head h2,
.quality-master-note h2,
.home-shopping-visual h2{
  font-size:clamp(32px, 3.2vw, 44px) !important;
}

/* Card H2s should stay compact */
article h2,
.card h2,
.exact-plan-frame h2{
  font-size:clamp(26px, 2.4vw, 34px) !important;
  line-height:1.18 !important;
}

/* Mobile */
@media(max-width:767.98px){
  h2,
  .section-head h2,
  .quality-master-note h2,
  .home-shopping-visual h2{
    font-size:clamp(28px, 7vw, 36px) !important;
    line-height:1.18 !important;
  }

  article h2,
  .card h2,
  .exact-plan-frame h2{
    font-size:clamp(24px, 6vw, 30px) !important;
  }
}

/* ===== FINAL INDEX NAV ALL PAGES ===== */
.site-header .nav-wrap{
  min-height:82px !important;
  display:flex !important;
  align-items:center !important;
  gap:20px !important;
}

.site-header .brand-logo-header{
  width:auto !important;
  max-height:58px !important;
}

.site-header .main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px !important;
  margin-left:auto;
}

.site-header .main-nav > a,
.site-header .main-nav .nav-dropdown-link{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:44px !important;
  padding:10px 13px !important;
  font-size:15.5px !important;
  font-weight:700 !important;
  line-height:1.15 !important;
  border-radius:10px !important;
  white-space:nowrap !important;
}

.site-header .nav-dropdown-trigger{
  display:flex !important;
  align-items:center !important;
}

.site-header .nav-dropdown-button{
  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  min-height:34px !important;
}

.site-header .nav-public{
  padding-left:16px !important;
  padding-right:16px !important;
}

.site-header .nav-dropdown-menu{
  min-width:220px !important;
}

.site-header .nav-dropdown-menu .nav-dropdown-item{
  min-height:44px !important;
  padding:11px 14px !important;
  font-size:14.5px !important;
  font-weight:700 !important;
  text-align:left !important;
}

@media(max-width:1200px) and (min-width:1101px){
  .site-header .main-nav{
    gap:4px !important;
  }

  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown-link{
    padding:9px 10px !important;
    font-size:14px !important;
  }
}

@media(max-width:1100px){
  .site-header .nav-wrap{
    min-height:72px !important;
  }

  .site-header .brand-logo-header{
    max-height:50px !important;
  }

  .site-header .main-nav{
    gap:4px !important;
  }

  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown,
  .site-header .main-nav .nav-dropdown-trigger,
  .site-header .main-nav .nav-dropdown-link{
    width:100% !important;
  }

  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown-link{
    min-height:48px !important;
    padding:12px 14px !important;
    justify-content:flex-start !important;
    font-size:16px !important;
  }

  .site-header .nav-dropdown-trigger{
    justify-content:space-between !important;
  }

  .site-header .nav-dropdown-button{
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    min-height:46px !important;
  }

  .site-header .nav-dropdown-menu{
    width:100% !important;
    min-width:0 !important;
  }

  .site-header .nav-dropdown-menu .nav-dropdown-item{
    font-size:15.5px !important;
    padding:12px 16px !important;
  }
}

@media(max-width:575.98px){
  .site-header .nav-wrap{
    min-height:66px !important;
  }

  .site-header .brand-logo-header{
    max-height:44px !important;
  }
}


/* Journey cards — all text blue */
#journey .steps article,
#journey .steps article b,
#journey .steps article .icon,
#journey .steps article h3,
#journey .steps article p {
  color: #0e4f99 !important;
}



/* ===== JOURNEY FOUR STEPS blue ===== */
#journey .steps{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:20px !important;
}

#journey .steps article,
#journey .steps article b,
#journey .steps article .icon,
#journey .steps article h3,
#journey .steps article p{
  color:#0e4f99 !important;
}

@media(max-width:900px){
  #journey .steps{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media(max-width:575.98px){
  #journey .steps{
    grid-template-columns:1fr !important;
  }
}


/* ===== AUTHORITATIVE LAYOUT + FORMS SYSTEM ===== */
:root{
  --gg-max:1180px;
  --gg-x:24px;
  --gg-section:46px;
  --gg-card-pad:24px;
  --gg-gap:20px;
  --gg-field-gap:16px;
  --gg-field-h:48px;
}

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

html,body{
  width:100%;
  max-width:100%;
  margin:0;
  overflow-x:hidden;
}

img,svg,video,canvas,iframe{
  display:block;
  max-width:100%;
  height:auto;
}

/* ---------- CONTAINERS ---------- */
.container{
  width:calc(100% - (var(--gg-x) * 2)) !important;
  max-width:var(--gg-max) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* Nested containers inside custom components should not lose their own padding */
.dashboard.container,
.portal-shell.container,
.form-shell.container{
  width:calc(100% - (var(--gg-x) * 2)) !important;
}

/* ---------- SECTIONS ---------- */
main > section,
main > .section{
  margin:0 !important;
  padding-top:var(--gg-section) !important;
  padding-bottom:var(--gg-section) !important;
}

main > section + section{
  margin-top:0 !important;
}

.section-head,
.section-header,
.page-header,
.portal-section-header{
  margin-top:0 !important;
  margin-bottom:26px !important;
}

.section-head > :first-child,
.section-header > :first-child,
.page-header > :first-child,
.portal-section-header > :first-child{
  margin-top:0 !important;
}

.section-head > :last-child,
.section-header > :last-child,
.page-header > :last-child,
.portal-section-header > :last-child{
  margin-bottom:0 !important;
}

/* ---------- GENERIC CARDS ---------- */
.portal-card,
.rules-card,
.quality-master-note{
  padding:var(--gg-card-pad) !important;
}

.portal-card > :first-child,
.rules-card > :first-child,
.quality-master-note > :first-child{
  margin-top:0 !important;
}

.portal-card > :last-child,
.rules-card > :last-child,
.quality-master-note > :last-child{
  margin-bottom:0 !important;
}

/* ---------- GRIDS ---------- */
.steps,
.feature-grid,
.cash-flow,
.portal-grid,
.dashboard-grid,
.reward-plan-grid{
  gap:var(--gg-gap) !important;
  align-items:stretch;
}

.steps > *,
.feature-grid > *,
.cash-flow > *,
.portal-grid > *,
.dashboard-grid > *,
.reward-plan-grid > *{
  min-width:0;
}

/* ---------- FORMS ---------- */
form,
.portal-form,
.real-form{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
}

.form-grid,
.field-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  column-gap:20px !important;
  row-gap:var(--gg-field-gap) !important;
  align-items:start !important;
  width:100% !important;
}

.form-grid > *,
.field-grid > *{
  min-width:0 !important;
}

.form-grid .full,
.field-grid .full,
.span-two,
.full-width{
  grid-column:1 / -1 !important;
}

/* Field wrappers */
.form-group,
.form-field,
.portal-field,
.field,
.control-group{
  min-width:0 !important;
  margin:0 0 var(--gg-field-gap) !important;
}

/* Labels */
form label,
.portal-form label,
.real-form label{
  display:block !important;
  min-width:0 !important;
  margin:0 0 var(--gg-field-gap) !important;
  line-height:1.35 !important;
}

.form-grid > label,
.field-grid > label{
  margin-bottom:0 !important;
}

form label > span:first-child:not(.icon),
.portal-form label > span:first-child:not(.icon),
.real-form label > span:first-child:not(.icon){
  display:block;
}

/* Inputs/selects/textareas */
form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
form select,
form textarea,
.portal-form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
.portal-form select,
.portal-form textarea,
.real-form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
.real-form select,
.real-form textarea{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  margin:7px 0 0 !important;
  border-radius:12px !important;
  box-sizing:border-box !important;
  line-height:1.3 !important;
}

form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
form select,
.portal-form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
.portal-form select,
.real-form input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
.real-form select{
  height:var(--gg-field-h) !important;
  min-height:var(--gg-field-h) !important;
  padding:10px 14px !important;
}

form textarea,
.portal-form textarea,
.real-form textarea{
  min-height:120px !important;
  height:auto !important;
  padding:12px 14px !important;
  resize:vertical !important;
}

form select,
.portal-form select,
.real-form select{
  padding-right:38px !important;
}

/* Small help text */
form label small,
.portal-form label small,
.real-form label small{
  display:block;
  margin-top:6px;
  line-height:1.4;
}

/* Fieldsets */
fieldset{
  min-width:0 !important;
  margin:0 0 20px !important;
  padding:18px !important;
  border-radius:14px !important;
}

fieldset legend{
  padding:0 8px !important;
  font-weight:800 !important;
}

fieldset > :last-child{
  margin-bottom:0 !important;
}

/* Checkbox/radio rows */
label.check,
.checkbox-row,
.check-row,
.consent-row,
.agree-row,
.portal-check{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  margin-bottom:14px !important;
}

label.check input,
.checkbox-row input,
.check-row input,
.consent-row input,
.agree-row input,
.portal-check input{
  width:18px !important;
  height:18px !important;
  min-width:18px !important;
  min-height:18px !important;
  margin:2px 0 0 !important;
  flex:0 0 18px !important;
}

label.check span,
.checkbox-row span,
.check-row span,
.consent-row span,
.agree-row span,
.portal-check span{
  min-width:0 !important;
}

/* Buttons */
.form-actions,
.portal-form-actions,
.button-row,
.cta-row,
.plan-card-action,
.gold-detail-action{
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  margin-top:4px !important;
}

button,
.btn,
.portal-btn{
  min-height:46px;
  line-height:1.2 !important;
}

/* ---------- PORTAL / AUTH SPECIFIC ---------- */
.portal-form > h2{
  margin:0 0 10px !important;
}

.portal-form > p{
  margin:0 0 18px !important;
}

.portal-form > .form-grid{
  margin-bottom:18px !important;
}

.portal-form > fieldset{
  margin-top:4px !important;
}

/* ---------- CREDITS DASHBOARD ---------- */
.credits-page .dashboard.container{
  width:calc(100% - (var(--gg-x) * 2)) !important;
  max-width:var(--gg-max) !important;
  margin:28px auto 0 !important;
  padding:30px !important;
}

.credits-page main > section.section:last-child{
  padding-bottom:24px !important;
}

/* ---------- HOME ---------- */
body.home-page main > section{
  padding-top:40px !important;
  padding-bottom:40px !important;
}

body.home-page .section-head{
  margin-bottom:24px !important;
}

#journey .steps{
  gap:18px !important;
}

/* ---------- PLANS ---------- */
.exact-plans-section{
  padding-top:40px !important;
  padding-bottom:52px !important;
}

.exact-plans-heading{
  margin-bottom:34px !important;
}

.plan-note-section{
  padding-top:28px !important;
  padding-bottom:42px !important;
}

/* ---------- FOOTER ---------- */
.footer{
  margin-top:0 !important;
  padding-top:44px !important;
  padding-bottom:30px !important;
}

.footer-grid{
  gap:24px !important;
}

/* ---------- TABLES ---------- */
.table-wrap,
.table-responsive,
.ledger-wrap{
  width:100% !important;
  overflow-x:auto !important;
  -webkit-overflow-scrolling:touch;
}

table{
  width:100% !important;
  border-collapse:collapse;
}

/* ---------- TABLET ---------- */
@media(max-width:900px){
  :root{
    --gg-x:18px;
    --gg-section:36px;
    --gg-card-pad:20px;
    --gg-gap:16px;
    --gg-field-gap:14px;
  }

  .form-grid,
  .field-grid{
    grid-template-columns:1fr !important;
    column-gap:0 !important;
  }

  .form-grid .full,
  .field-grid .full,
  .span-two,
  .full-width{
    grid-column:auto !important;
  }

  .section-head,
  .section-header,
  .page-header,
  .portal-section-header{
    margin-bottom:22px !important;
  }

  .credits-page .dashboard.container{
    padding:24px !important;
    margin-top:22px !important;
  }
}

/* ---------- MOBILE ---------- */
@media(max-width:575.98px){
  :root{
    --gg-x:12px;
    --gg-section:28px;
    --gg-card-pad:16px;
    --gg-gap:14px;
    --gg-field-gap:12px;
    --gg-field-h:46px;
  }

  .container{
    width:calc(100% - 24px) !important;
  }

  main > section,
  main > .section{
    padding-top:28px !important;
    padding-bottom:28px !important;
  }

  .section-head,
  .section-header,
  .page-header,
  .portal-section-header{
    margin-bottom:18px !important;
  }

  .portal-card,
  .rules-card,
  .quality-master-note{
    padding:16px !important;
  }

  fieldset{
    padding:14px !important;
  }

  .form-actions,
  .portal-form-actions,
  .button-row,
  .cta-row,
  .plan-card-action,
  .gold-detail-action{
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .form-actions > *,
  .portal-form-actions > *,
  .button-row > *,
  .cta-row > *,
  .plan-card-action > *,
  .gold-detail-action > *{
    width:100% !important;
    min-width:0 !important;
  }

  .credits-page .dashboard.container{
    width:calc(100% - 24px) !important;
    margin-top:18px !important;
    padding:18px !important;
  }

  body.home-page main > section{
    padding-top:28px !important;
    padding-bottom:28px !important;
  }

  .footer{
    padding-top:32px !important;
    padding-bottom:22px !important;
  }
}


/* ===== LFZ TAX CREDIT FLOW ALL blue ===== */
.lfz-tax-credit-flow-blue,
.lfz-tax-credit-flow-blue h1,
.lfz-tax-credit-flow-blue h2,
.lfz-tax-credit-flow-blue h3,
.lfz-tax-credit-flow-blue h4,
.lfz-tax-credit-flow-blue p,
.lfz-tax-credit-flow-blue span,
.lfz-tax-credit-flow-blue strong,
.lfz-tax-credit-flow-blue b,
.lfz-tax-credit-flow-blue small,
.lfz-tax-credit-flow-blue li,
.lfz-tax-credit-flow-blue .icon{
  color:#0e4f99 !important;
}


/* ===== JOURNEY SECTION HEADER ALL blue ===== */
#journey .section-head,
#journey .section-head .eyebrow,
#journey .section-head h2,
#journey .section-head p {
  color:#0e4f99 !important;
}

/* ===== TESTED ORIGINAL-HEADER MOBILE NAV FIX ===== */

/* Desktop keeps the original navigation appearance */
@media (min-width:1101px){
  body .site-header .nav-toggle{
    display:none !important;
  }

  body .site-header #primary-navigation.main-nav{
    display:flex !important;
    position:static !important;
    width:auto !important;
    max-height:none !important;
    overflow:visible !important;
  }
}

/* Phones + tablets */
@media (max-width:1100px){
  body .site-header{
    position:sticky !important;
    top:0 !important;
    z-index:99999 !important;
  }

  body .site-header .nav-wrap{
    position:relative !important;
  }

  body .site-header .nav-toggle{
    display:block !important;
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    min-height:46px !important;
    margin-left:auto !important;
    flex:0 0 46px !important;
    cursor:pointer !important;
    touch-action:manipulation !important;
    -webkit-tap-highlight-color:transparent !important;
    position:relative !important;
    z-index:100002 !important;
  }

  /* HARD CLOSED STATE */
  body .site-header #primary-navigation.main-nav{
    display:none !important;
    position:absolute !important;
    top:100% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-height:calc(100vh - 76px) !important;
    max-height:calc(100dvh - 76px) !important;
    margin:0 !important;
    padding:10px !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:4px !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch !important;
    background:#fff !important;
    border:1px solid #cbe2ff !important;
    border-top:0 !important;
    border-radius:0 0 14px 14px !important;
    box-shadow:0 18px 36px rgba(7,35,70,.18) !important;
    z-index:100001 !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    pointer-events:auto !important;
  }

  /* Only this class opens the menu */
  body .site-header #primary-navigation.main-nav.gg-menu-open{
    display:flex !important;
  }

  body.gg-menu-lock{
    overflow:hidden !important;
  }

  body .site-header #primary-navigation.main-nav > a,
  body .site-header #primary-navigation.main-nav .nav-dropdown,
  body .site-header #primary-navigation.main-nav .nav-dropdown-trigger,
  body .site-header #primary-navigation.main-nav .nav-dropdown-link{
    width:100% !important;
  }

  body .site-header #primary-navigation.main-nav > a,
  body .site-header #primary-navigation.main-nav .nav-dropdown-link{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    min-height:48px !important;
    padding:12px 14px !important;
    text-align:left !important;
    white-space:normal !important;
    font-size:16px !important;
  }

  body .site-header #primary-navigation.main-nav .nav-dropdown{
    display:block !important;
  }

  body .site-header #primary-navigation.main-nav .nav-dropdown-trigger{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  body .site-header #primary-navigation.main-nav .nav-dropdown-button{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    min-height:46px !important;
    flex:0 0 46px !important;
    margin:0 !important;
    cursor:pointer !important;
    touch-action:manipulation !important;
  }

  /* Disable every old hover/open rule on touch layouts */
  body .site-header #primary-navigation.main-nav .nav-dropdown-menu,
  body .site-header #primary-navigation.main-nav .nav-dropdown:hover .nav-dropdown-menu,
  body .site-header #primary-navigation.main-nav .nav-dropdown:focus-within .nav-dropdown-menu,
  body .site-header #primary-navigation.main-nav .nav-dropdown.open .nav-dropdown-menu{
    display:none !important;
    position:static !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    margin:4px 0 6px !important;
    padding:6px !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:none !important;
    box-shadow:none !important;
    background:#f7faff !important;
    border-radius:10px !important;
  }

  body .site-header #primary-navigation.main-nav .nav-dropdown.gg-submenu-open .nav-dropdown-menu,
  body .site-header #primary-navigation.main-nav .nav-dropdown.gg-submenu-open:hover .nav-dropdown-menu,
  body .site-header #primary-navigation.main-nav .nav-dropdown.gg-submenu-open:focus-within .nav-dropdown-menu{
    display:block !important;
  }

  body .site-header #primary-navigation.main-nav .nav-dropdown-menu .nav-dropdown-item{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    min-height:44px !important;
    padding:11px 14px !important;
    font-size:15px !important;
    text-align:left !important;
    white-space:normal !important;
  }

  body .site-header #primary-navigation.main-nav .nav-dropdown.gg-submenu-open .nav-dropdown-chevron{
    transform:rotate(180deg) !important;
  }
}

@media(max-width:575.98px){
  body .site-header #primary-navigation.main-nav{
    padding:8px !important;
  }
}

/* ===== NATIVE DETAILS MOBILE MENU FINAL ===== */

/* Desktop uses the original nav */
.gg-desktop-nav-wrap{
  margin-left:auto;
}
.gg-mobile-menu{
  display:none;
}

/* Native details summary reset */
.gg-mobile-menu > summary,
.gg-mobile-submenu > summary{
  list-style:none;
}
.gg-mobile-menu > summary::-webkit-details-marker,
.gg-mobile-submenu > summary::-webkit-details-marker{
  display:none;
}

@media(max-width:1100px){
  .site-header{
    position:sticky !important;
    top:0 !important;
    z-index:99999 !important;
    background:#fff !important;
  }

  .site-header .nav-wrap{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
  }

  /* Hide original desktop navigation completely */
  .gg-desktop-nav-wrap{
    display:none !important;
  }

  /* Native browser-controlled mobile menu */
  .gg-mobile-menu{
    display:block !important;
    margin-left:auto !important;
    position:static !important;
  }

  .gg-mobile-menu-toggle{
    width:48px !important;
    height:48px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px solid rgba(14,79,153,.20) !important;
    border-radius:14px !important;
    background:#f7faff !important;
    cursor:pointer !important;
    -webkit-tap-highlight-color:transparent !important;
    touch-action:manipulation !important;
  }

  .gg-mobile-menu-toggle span{
    display:block !important;
    width:22px !important;
    height:2px !important;
    margin:3px auto !important;
    background:#0e4f99 !important;
    border-radius:999px !important;
    transition:transform .18s ease, opacity .18s ease !important;
  }

  .gg-mobile-menu[open] .gg-mobile-menu-toggle span:nth-child(1){
    transform:translateY(5px) rotate(45deg) !important;
  }
  .gg-mobile-menu[open] .gg-mobile-menu-toggle span:nth-child(2){
    opacity:0 !important;
  }
  .gg-mobile-menu[open] .gg-mobile-menu-toggle span:nth-child(3){
    transform:translateY(-5px) rotate(-45deg) !important;
  }

  .gg-mobile-menu-panel{
    position:absolute !important;
    top:100% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-height:calc(100dvh - 72px) !important;
    padding:10px !important;
    display:flex !important;
    flex-direction:column !important;
    gap:4px !important;
    background:#fff !important;
    border-top:1px solid rgba(7,35,70,.08) !important;
    box-shadow:0 16px 32px rgba(7,35,70,.14) !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch !important;
    z-index:100000 !important;
  }

  /* Browser itself controls open/closed state */
  .gg-mobile-menu:not([open]) .gg-mobile-menu-panel{
    display:none !important;
  }
  .gg-mobile-menu[open] .gg-mobile-menu-panel{
    display:flex !important;
  }

  .gg-mobile-menu-panel > a,
  .gg-mobile-submenu > summary{
    width:100% !important;
    min-height:50px !important;
    padding:12px 14px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    border-radius:10px !important;
    color:#0b3d75 !important;
    background:#fff !important;
    font-size:16px !important;
    font-weight:700 !important;
    line-height:1.2 !important;
    text-decoration:none !important;
    cursor:pointer !important;
  }

  .gg-mobile-submenu{
    width:100% !important;
  }

  .gg-mobile-submenu > summary{
    position:relative !important;
    padding-right:44px !important;
  }

  .gg-mobile-submenu > summary::after{
    content:"▾" !important;
    position:absolute !important;
    right:16px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    color:#0e4f99 !important;
  }

  .gg-mobile-submenu[open] > summary::after{
    transform:translateY(-50%) rotate(180deg) !important;
  }

  .gg-mobile-submenu-panel{
    padding:6px !important;
    margin:4px 0 6px !important;
    background:#f7faff !important;
    border-radius:10px !important;
  }

  .gg-mobile-submenu:not([open]) .gg-mobile-submenu-panel{
    display:none !important;
  }

  .gg-mobile-submenu[open] .gg-mobile-submenu-panel{
    display:block !important;
  }

  .gg-mobile-submenu-panel a{
    display:flex !important;
    align-items:center !important;
    min-height:46px !important;
    padding:11px 14px !important;
    border-radius:8px !important;
    color:#0b3d75 !important;
    font-size:15px !important;
    font-weight:700 !important;
    text-decoration:none !important;
  }

  .gg-mobile-submenu-panel a + a{
    margin-top:3px !important;
  }

  .gg-mobile-cashout{
    justify-content:center !important;
    margin-top:4px !important;
    background:#0e4f99 !important;
    color:#fff !important;
  }
}

@media(max-width:575.98px){
  .gg-mobile-menu-panel{
    padding:8px !important;
  }
}

/* ===== CREDIT ENGINE MASTER BOX ===== */
.credit-engine-master-box{
  width:min(100%,1320px);
  margin:0 auto;
  padding:clamp(22px,3vw,42px);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(14,79,153,.18);
  border-radius:28px;
  box-shadow:0 22px 55px rgba(11,61,117,.10);
  overflow:hidden;
}
.credit-engine-master-box > .container{
  width:100% !important;
  max-width:none !important;
  padding-left:0 !important;
  padding-right:0 !important;
}
@media(max-width:767.98px){
  .credit-engine-master-box{padding:16px;border-radius:20px;}
}
@media(max-width:420px){
  .credit-engine-master-box{padding:12px;border-radius:16px;}
}


/* ===== TOP CREDIT STATS MASTER BOX ===== */
.credit-stats-master-box{
  width:min(100%,1320px);
  margin:0 auto clamp(22px,3vw,36px);
  padding:12px;
  background:#fff;
  border:1px solid rgba(14,79,153,.20);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(11,61,117,.08);
  overflow:hidden;
}

.credit-stats-master-box > *{
  margin-top:0 !important;
  margin-bottom:0 !important;
}

@media(max-width:767.98px){
  .credit-stats-master-box{
    padding:8px;
    border-radius:18px;
  }
}


/* ===== REVISED CREDIT ENGINE BOXES ===== */

/* Top stats strip */
.credit-stats-master-box{
  width:min(100%,1180px) !important;
  margin:0 auto 24px !important;
  padding:10px 14px !important;
  background:#ffffff !important;
  border:1px solid rgba(14,79,153,.16) !important;
  border-radius:18px !important;
  box-shadow:0 10px 26px rgba(11,61,117,.07) !important;
  overflow:hidden !important;
}

/* Main credit engine box */
.credit-engine-master-box{
  width:min(100%,1180px) !important;
  margin:0 auto !important;
  padding:30px !important;
  background:#ffffff !important;
  border:1px solid rgba(14,79,153,.16) !important;
  border-radius:22px !important;
  box-shadow:0 16px 36px rgba(11,61,117,.08) !important;
  overflow:hidden !important;
}

/* Keep internal content centered and aligned */
.credit-engine-master-box > .container,
.credit-stats-master-box > .container{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* Improve spacing between internal rows/cards */
.credit-engine-master-box .lfz-spew-value-row,
.credit-engine-master-box .lfz-spew-grid,
.credit-engine-master-box .lfz-spew-footer{
  margin-top:20px !important;
}

.credit-engine-master-box .lfz-spew-grid{
  gap:18px !important;
}

/* Tablet */
@media(max-width:900px){
  .credit-stats-master-box{
    width:calc(100% - 32px) !important;
    padding:10px !important;
    margin-bottom:18px !important;
    border-radius:16px !important;
  }

  .credit-engine-master-box{
    width:calc(100% - 32px) !important;
    padding:22px !important;
    border-radius:18px !important;
  }
}

/* Mobile */
@media(max-width:575.98px){
  .credit-stats-master-box{
    width:calc(100% - 24px) !important;
    margin-bottom:14px !important;
    padding:8px !important;
    border-radius:14px !important;
  }

  .credit-engine-master-box{
    width:calc(100% - 24px) !important;
    padding:16px !important;
    border-radius:16px !important;
  }

  .credit-engine-master-box .lfz-spew-grid{
    gap:12px !important;
  }
}


/* ===== SCREENSHOT DESIGN CONVERTED TO EDITABLE HTML/CSS ===== */
.ref-credit-engine{padding:32px 0 44px;background:#f7faff}
.ref-engine-box{max-width:1180px;margin:auto;padding:16px 18px 18px;background:#fff;border:1px solid #e7f3ff;border-radius:24px;box-shadow:0 18px 45px rgba(11,61,117,.07)}
.ref-stats{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #cbe2ff;border-radius:18px;background:#fff;overflow:hidden}
.ref-stats>div{min-height:82px;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;text-align:center;padding:12px}
.ref-stats>div:not(:last-child):after{content:"";position:absolute;right:0;top:20%;height:60%;width:1px;background:#cbe2ff}
.ref-stats strong{font-size:22px;color:#0e4f99;line-height:1;margin-bottom:8px}
.ref-stats span{font-size:11px;color:#708078}
.ref-engine-head{text-align:center;padding:56px 15px 30px}
.ref-pill{display:inline-block;padding:7px 13px;border:1px solid #cbe2ff;border-radius:999px;color:#0e4f99;font-size:10px;font-weight:800;letter-spacing:.12em;background:#fff}
.ref-engine-head h2{margin:16px 0 12px;color:#0e4f99;font-size:38px;line-height:1.08}
.ref-engine-head p{margin:0;color:#0e4f99;font-size:14px;line-height:1.7}
.ref-value-row{display:grid;grid-template-columns:.8fr 1fr 42px 1fr;gap:18px;align-items:center;margin:8px 0 26px}
.ref-join{display:flex;align-items:center;min-height:58px;padding:0 22px;border-radius:999px;background:linear-gradient(90deg,#0e4f99,#0e4f99);color:#fff;text-decoration:none;font-weight:800;font-size:14px}
.ref-value{min-height:150px;padding:28px;border-radius:20px;border:1px solid #cbe2ff;display:flex;flex-direction:column;justify-content:center}
.ref-value small{font-size:9px;font-weight:800;letter-spacing:.1em;color:#0e4f99}
.ref-value strong{font-size:42px;line-height:1.1;color:#0e4f99;margin:10px 0 4px}
.ref-value span{font-size:9px;color:#0e4f99}
.ref-credit{background:linear-gradient(135deg,#f7faff,#e7f3ff)}
.ref-cash{background:linear-gradient(135deg,#e7f3ff,#cbe2ff);border-color:#6faef7}
.ref-cash strong{letter-spacing:.03em}
.ref-equal{text-align:center;color:#0e4f99;font-size:22px;font-weight:900}
.ref-process{display:grid;grid-template-columns:1fr 34px 1fr 34px 1fr 34px 1fr;align-items:center;gap:8px}
.ref-process article{min-height:210px;padding:20px;border:1px solid #e7f3ff;border-radius:17px;background:#fff;box-shadow:0 8px 20px rgba(11,61,117,.05)}
.ref-process article b{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:11px;background:#e7f3ff;color:#0e4f99;font-size:11px}
.ref-process h3{font-size:17px;line-height:1.35;color:#0e4f99;margin:20px 0 10px}
.ref-process p{font-size:12px;line-height:1.65;color:#0e4f99;margin:0}
.ref-process>i{font-style:normal;text-align:center;color:#0e4f99;font-size:20px;font-weight:900}
.ref-dragon-banner{margin-top:12px;min-height:170px;display:grid;grid-template-columns:1fr 2.5fr 1fr;align-items:center;overflow:hidden;border:1px solid #0e4f99;border-radius:16px;background:linear-gradient(90deg,#0b3d75,#0b3d75 50%,#0b3d75);position:relative}
.ref-dragon-side{height:100%;position:relative;background:radial-gradient(circle at center,#0e4f99 0,#0b3d75 68%);opacity:.95}
.ref-dragon-side:before{content:"🐉";position:absolute;top:50%;font-size:92px;transform:translateY(-50%);filter:saturate(1.2)}
.ref-left:before{left:22px}
.ref-right:before{right:22px;transform:translateY(-50%) scaleX(-1)}
.ref-icon{position:absolute;bottom:18px;width:52px;height:52px;border-radius:12px;background:#fff;display:flex;align-items:center;justify-content:center;font-size:25px;z-index:2;box-shadow:0 8px 18px rgba(0,0,0,.18)}
.ref-left .ref-icon{left:24px}.ref-right .ref-icon{right:24px}
.ref-dragon-copy{text-align:center;z-index:2;padding:20px}
.ref-dragon-copy strong{display:block;color:#fff;font-size:21px;line-height:1.3;margin-bottom:14px}
.ref-dragon-copy span{display:block;color:#1877f2;font-size:20px;font-weight:800}

@media(max-width:900px){
 .ref-value-row{grid-template-columns:1fr 1fr}
 .ref-equal{display:none}
 .ref-process{grid-template-columns:1fr 1fr;gap:14px}
 .ref-process>i{display:none}
 .ref-dragon-banner{grid-template-columns:.8fr 2fr .8fr}
 .ref-engine-head h2{font-size:32px}
}
@media(max-width:575.98px){
 .ref-credit-engine{padding:20px 0 28px}
 .ref-engine-box{padding:10px;border-radius:17px}
 .ref-stats{grid-template-columns:1fr 1fr}
 .ref-stats>div:nth-child(2):after{display:none}
 .ref-stats>div:nth-child(-n+2){border-bottom:1px solid #cbe2ff}
 .ref-engine-head{padding:32px 8px 22px}
 .ref-engine-head h2{font-size:27px}
 .ref-engine-head p{font-size:13px}.desktop-only{display:none}
 .ref-value-row{grid-template-columns:1fr;gap:12px}
 .ref-value{min-height:125px;padding:22px}
 .ref-value strong{font-size:34px}
 .ref-process{grid-template-columns:1fr}
 .ref-process article{min-height:0}
 .ref-dragon-banner{grid-template-columns:1fr;min-height:auto}
 .ref-dragon-side{display:none}
 .ref-dragon-copy{padding:24px 12px}
 .ref-dragon-copy strong{font-size:17px}
 .ref-dragon-copy span{font-size:15px}
}

/* ===== EXACT REFERENCE DESIGN AS-IS ===== */
.ggx-section{
  padding:10px 0 34px !important;
  background:#f7faff;
}
.ggx-wrap{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

/* top white stats box */
.ggx-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border:1px solid #e7f3ff;
  border-radius:17px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(11,61,117,.04);
}
.ggx-stat{
  min-height:84px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  text-align:center;
  padding:12px 16px;
}
.ggx-stat:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:18px;
  bottom:18px;
  width:1px;
  background:#cbe2ff;
}
.ggx-stat strong{
  color:#0e4f99;
  font-size:22px;
  font-weight:800;
  line-height:1;
  margin-bottom:9px;
}
.ggx-stat span{
  color:#66796f;
  font-size:10px;
  line-height:1.3;
}

/* heading area */
.ggx-head{
  text-align:center;
  padding:54px 16px 28px;
}
.ggx-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:28px;
  padding:5px 12px;
  border:1px solid #cbe2ff;
  border-radius:999px;
  background:#fff;
  color:#0e4f99;
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
}
.ggx-pill i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1877f2;
  box-shadow:0 0 0 4px #e7f3ff;
}
.ggx-head h2{
  margin:17px 0 12px;
  color:#0e4f99 !important;
  font-size:37px !important;
  line-height:1.08 !important;
  letter-spacing:-.025em !important;
  font-weight:700 !important;
}
.ggx-head p{
  margin:0;
  color:#0e4f99 !important;
  font-size:13px;
  line-height:1.7;
}

/* join + values */
.ggx-value-row{
  display:grid;
  grid-template-columns:190px 1fr 42px 1fr;
  align-items:center;
  gap:18px;
  margin:2px 0 22px;
}
.ggx-join{
  min-height:58px;
  display:flex;
  align-items:center;
  padding:0 22px;
  border-radius:999px;
  background:linear-gradient(90deg,#0e4f99,#0e4f99);
  color:#fff !important;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}
.ggx-value-card{
  min-height:144px;
  border-radius:20px;
  padding:28px 28px 24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ggx-credit-card{
  background:linear-gradient(135deg,#f7faff,#e7f3ff);
  border:1px solid #cbe2ff;
}
.ggx-cash-card{
  background:linear-gradient(135deg,#e7f3ff,#cbe2ff);
  border:1px solid #6faef7;
}
.ggx-value-card small{
  color:#0e4f99;
  font-size:8px;
  font-weight:800;
  letter-spacing:.12em;
}
.ggx-value-card strong{
  margin:10px 0 4px;
  color:#0e4f99;
  font-size:41px;
  line-height:1;
  font-weight:800;
  white-space:nowrap;
}
.ggx-cash-card strong{
  letter-spacing:.02em;
}
.ggx-value-card span{
  color:#0e4f99;
  font-size:8px;
  line-height:1.35;
}
.ggx-eq{
  text-align:center;
  color:#0e4f99;
  font-size:22px;
  font-weight:900;
}

/* four cards */
.ggx-process{
  display:grid;
  grid-template-columns:1fr 34px 1fr 34px 1fr 34px 1fr;
  gap:8px;
  align-items:center;
}
.ggx-process article{
  min-height:196px;
  padding:18px 18px 20px;
  border:1px solid #e7f3ff;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(11,61,117,.05);
}
.ggx-process article b{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:11px;
  background:#e7f3ff;
  color:#0e4f99;
  font-size:10px;
}
.ggx-process article h3{
  margin:20px 0 10px;
  color:#0e4f99;
  font-size:16px;
  line-height:1.32;
  font-weight:700;
}
.ggx-process article p{
  margin:0;
  color:#0e4f99;
  font-size:11px;
  line-height:1.55;
}
.ggx-process>i{
  font-style:normal;
  text-align:center;
  color:#0e4f99;
  font-size:18px;
  font-weight:900;
}

/* bottom banner */
.ggx-banner{
  position:relative;
  min-height:166px;
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 2.5fr 1fr;
  align-items:center;
  overflow:hidden;
  border:1px solid #0e4f99;
  border-radius:15px;
  background:linear-gradient(90deg,#0b3d75,#0b3d75 50%,#0b3d75);
}
.ggx-dragon{
  display:flex;
  align-items:center;
  height:100%;
  font-size:92px;
  opacity:.92;
}
.ggx-dragon-left{
  justify-content:flex-start;
  padding-left:18px;
}
.ggx-dragon-right{
  justify-content:flex-end;
  padding-right:18px;
  transform:scaleX(-1);
}
.ggx-banner-copy{
  text-align:center;
  z-index:2;
  padding:16px;
}
.ggx-banner-copy strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1.35;
  margin-bottom:12px;
}
.ggx-banner-copy span{
  display:block;
  color:#1877f2;
  font-size:19px;
  line-height:1.2;
  font-weight:800;
}
.ggx-banner-icon{
  position:absolute;
  bottom:16px;
  width:48px;
  height:48px;
  border-radius:12px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  z-index:3;
}
.ggx-banner-icon-left{left:24px}
.ggx-banner-icon-right{right:24px}

/* tablet */
@media(max-width:900px){
  .ggx-value-row{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .ggx-eq{display:none}
  .ggx-process{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .ggx-process>i{display:none}
  .ggx-banner{
    grid-template-columns:.8fr 2fr .8fr;
  }
  .ggx-head h2{font-size:32px !important}
}

/* mobile */
@media(max-width:575.98px){
  .ggx-section{padding:8px 0 24px !important}
  .ggx-stats{
    grid-template-columns:1fr 1fr;
    border-radius:14px;
  }
  .ggx-stat:nth-child(1),
  .ggx-stat:nth-child(2){
    border-bottom:1px solid #cbe2ff;
  }
  .ggx-stat:nth-child(2)::after{display:none}
  .ggx-head{padding:34px 10px 22px}
  .ggx-head h2{font-size:27px !important}
  .ggx-head p{font-size:12px}
  .ggx-head p br{display:none}
  .ggx-value-row{
    grid-template-columns:1fr;
    gap:12px;
  }
  .ggx-value-card{
    min-height:120px;
    padding:22px;
  }
  .ggx-value-card strong{
    font-size:34px;
  }
  .ggx-process{
    grid-template-columns:1fr;
  }
  .ggx-process article{
    min-height:0;
  }
  .ggx-banner{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .ggx-dragon{display:none}
  .ggx-banner-copy{padding:22px 12px}
  .ggx-banner-copy strong{font-size:16px}
  .ggx-banner-copy span{font-size:14px}
  .ggx-banner-icon{
    width:40px;
    height:40px;
    font-size:20px;
    bottom:10px;
  }
}


/* ===== NEW GENERATED REFERENCE DESIGN IMPLEMENTED ===== */
.new-credit-engine-section{
  padding:28px 0 42px !important;
  background:#f7faff;
}

.new-credit-engine{
  max-width:1180px;
  margin:0 auto;
}

/* top stat strip */
.new-stats-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border:1px solid #cbe2ff;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(11,61,117,.05);
  overflow:hidden;
}

.new-stat{
  min-height:112px;
  padding:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
}

.new-stat:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:22px;
  bottom:22px;
  width:1px;
  background:#cbe2ff;
}

.new-stat strong{
  margin-bottom:14px;
  color:#0e4f99;
  font-size:33px;
  line-height:1;
  font-weight:800;
}

.new-stat span{
  color:#566a60;
  font-size:14px;
  line-height:1.3;
}

/* heading */
.new-credit-engine-head{
  padding:56px 16px 42px;
  text-align:center;
}

.new-engine-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:7px 14px;
  border:1px solid #cbe2ff;
  border-radius:999px;
  background:#fff;
  color:#0e4f99;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  box-shadow:0 5px 14px rgba(11,61,117,.05);
}

.new-engine-pill i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#1877f2;
  box-shadow:0 0 0 4px #e7f3ff;
}

.new-credit-engine-head h2{
  margin:26px 0 18px;
  color:#0e4f99 !important;
  font-size:46px !important;
  line-height:1.08 !important;
  letter-spacing:-.03em !important;
  font-weight:700 !important;
}

.new-credit-engine-head p{
  margin:0;
  color:#0e4f99 !important;
  font-size:16px;
  line-height:1.7;
}

/* value row */
.new-value-row{
  display:grid;
  grid-template-columns:240px 1fr 52px 1fr;
  align-items:center;
  gap:20px;
  margin:8px 0 34px;
}

.new-join-btn{
  min-height:68px;
  padding:0 30px;
  display:flex;
  align-items:center;
  border-radius:999px;
  background:linear-gradient(90deg,#0e4f99,#0e4f99);
  color:#fff !important;
  text-decoration:none;
  font-size:18px;
  font-weight:800;
  box-shadow:0 10px 22px rgba(14,79,153,.18);
}

.new-value-card{
  min-height:190px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius:24px;
}

.new-credit-card{
  background:linear-gradient(135deg,#f7faff,#e7f3ff);
  border:1px solid #cbe2ff;
}

.new-cash-card{
  background:linear-gradient(135deg,#e7f3ff,#cbe2ff);
  border:1px solid #6faef7;
}

.new-value-card small{
  color:#0e4f99;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}

.new-value-card strong{
  margin:18px 0 10px;
  color:#0e4f99;
  font-size:56px;
  line-height:1;
  font-weight:800;
  white-space:nowrap;
}

.new-value-card span{
  color:#0e4f99;
  font-size:12px;
  line-height:1.4;
}

.new-equals{
  text-align:center;
  color:#0e4f99;
  font-size:28px;
  font-weight:900;
}

/* process cards */
.new-process-grid{
  display:grid;
  grid-template-columns:1fr 40px 1fr 40px 1fr 40px 1fr;
  gap:10px;
  align-items:center;
}

.new-process-grid article{
  min-height:380px;
  padding:34px 28px;
  border:1px solid #d6e0ec;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 24px rgba(11,61,117,.06);
}

.new-process-grid article b{
  width:50px;
  height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  background:#e7f3ff;
  color:#0e4f99;
  font-size:14px;
}

.new-process-grid article h3{
  margin:42px 0 24px;
  color:#0e4f99;
  font-size:24px;
  line-height:1.45;
  font-weight:700;
}

.new-process-grid article p{
  margin:0;
  color:#0e4f99;
  font-size:16px;
  line-height:1.85;
}

.new-process-grid > i{
  font-style:normal;
  text-align:center;
  color:#0e4f99;
  font-size:25px;
  font-weight:900;
}

/* dragon banner */
.new-dragon-banner{
  position:relative;
  min-height:300px;
  margin-top:34px;
  display:grid;
  grid-template-columns:1fr 2.1fr 1fr;
  align-items:center;
  overflow:hidden;
  border:1px solid #0e4f99;
  border-radius:22px;
  background:
    radial-gradient(circle at center,rgba(14,79,153,.18),transparent 46%),
    linear-gradient(90deg,#072346,#0b3d75 50%,#072346);
}

.new-dragon{
  width:100%;
  max-height:300px;
  object-fit:contain;
  align-self:end;
}

.new-dragon-left{
  justify-self:start;
}

.new-dragon-right{
  justify-self:end;
}

.new-banner-copy{
  position:relative;
  z-index:3;
  padding:20px;
  text-align:center;
}

.new-banner-copy strong{
  display:block;
  margin-bottom:28px;
  color:#fff;
  font-size:23px;
  line-height:1.4;
}

.new-banner-copy span{
  display:block;
  color:#1877f2;
  font-size:27px;
  line-height:1.25;
  font-weight:800;
}

.new-banner-icon{
  position:absolute;
  bottom:24px;
  width:74px;
  height:74px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:#fff;
  font-size:34px;
  box-shadow:0 10px 24px rgba(0,0,0,.20);
  z-index:4;
}

.new-banner-icon-left{left:30px}
.new-banner-icon-right{right:30px}

/* tablet */
@media(max-width:900px){
  .new-credit-engine-head h2{
    font-size:38px !important;
  }

  .new-value-row{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }

  .new-equals{
    display:none;
  }

  .new-process-grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }

  .new-process-grid > i{
    display:none;
  }

  .new-process-grid article{
    min-height:300px;
  }

  .new-dragon-banner{
    grid-template-columns:.8fr 2fr .8fr;
  }
}

/* mobile */
@media(max-width:575.98px){
  .new-credit-engine-section{
    padding:18px 0 28px !important;
  }

  .new-stats-strip{
    grid-template-columns:1fr 1fr;
    border-radius:16px;
  }

  .new-stat{
    min-height:96px;
  }

  .new-stat:nth-child(1),
  .new-stat:nth-child(2){
    border-bottom:1px solid #cbe2ff;
  }

  .new-stat:nth-child(2)::after{
    display:none;
  }

  .new-credit-engine-head{
    padding:38px 8px 28px;
  }

  .new-credit-engine-head h2{
    font-size:30px !important;
  }

  .new-credit-engine-head p{
    font-size:14px;
  }

  .desktop-only{
    display:none;
  }

  .new-value-row{
    grid-template-columns:1fr;
    gap:14px;
  }

  .new-value-card{
    min-height:150px;
    padding:26px;
  }

  .new-value-card strong{
    font-size:42px;
  }

  .new-process-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .new-process-grid article{
    min-height:0;
    padding:24px 20px;
  }

  .new-process-grid article h3{
    margin:24px 0 14px;
    font-size:20px;
  }

  .new-process-grid article p{
    font-size:14px;
    line-height:1.65;
  }

  .new-dragon-banner{
    min-height:220px;
    grid-template-columns:1fr;
  }

  .new-dragon{
    display:none;
  }

  .new-banner-copy{
    padding:38px 18px 70px;
  }

  .new-banner-copy strong{
    font-size:18px;
    margin-bottom:18px;
  }

  .new-banner-copy span{
    font-size:18px;
  }

  .new-banner-icon{
    width:52px;
    height:52px;
    bottom:14px;
    font-size:24px;
  }

  .new-banner-icon-left{left:18px}
  .new-banner-icon-right{right:18px}
}


/* ===== COMPLETE CREDIT ENGINE IN ONE OUTER BOX ===== */
.new-credit-engine{
  max-width:1180px !important;
  margin:0 auto !important;
  padding:18px !important;
  background:#ffffff !important;
  border:1px solid #cbe2ff !important;
  border-radius:24px !important;
  box-shadow:0 18px 42px rgba(11,61,117,.08) !important;
  overflow:hidden !important;
}

@media(max-width:900px){
  .new-credit-engine{
    padding:14px !important;
    border-radius:20px !important;
  }
}

@media(max-width:575.98px){
  .new-credit-engine{
    padding:10px !important;
    border-radius:16px !important;
  }
}


/* Exact supplied LFZ journey banner image */
.new-dragon-banner-image{
  width:100%;
  margin-top:34px;
  overflow:hidden;
  border-radius:16px;
}
.new-dragon-banner-image img{
  display:block;
  width:100%;
  height:auto;
  margin:0;
}
@media(max-width:575.98px){
  .new-dragon-banner-image{
    margin-top:18px;
    border-radius:12px;
  }
}


/* How It Works bottom CTA - bring content slightly inward from both sides */
body:has(.cta-band) .cta-band .container,
body:has(.cta) .cta .container{
  padding-left:32px !important;
  padding-right:32px !important;
}

@media(max-width:767.98px){
  body:has(.cta-band) .cta-band .container,
  body:has(.cta) .cta .container{
    padding-left:20px !important;
    padding-right:20px !important;
  }
}


/* How It Works CTA - white background and blue text */
.cta-band,
.cta{
  background:#ffffff !important;
}

.cta-band .eyebrow,
.cta .eyebrow{
  color:#0e4f99 !important;
}

.cta-band h2,
.cta h2{
  color:#0e4f99 !important;
}


/* Match bottom CTA outer spacing to Member Wallet card */
.cta-band,
.cta{
  width:calc(100% - 80px) !important;
  max-width:1440px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  border-radius:34px !important;
  overflow:hidden !important;
}

.cta-band .container,
.cta .container{
  max-width:none !important;
  width:100% !important;
  padding-left:38px !important;
  padding-right:38px !important;
}

/* keep CTA content comfortably inset */
.cta-band .cta-inner,
.cta .cta-inner{
  padding-left:0 !important;
  padding-right:0 !important;
}

@media(max-width:991.98px){
  .cta-band,
  .cta{
    width:calc(100% - 48px) !important;
    border-radius:26px !important;
  }
  .cta-band .container,
  .cta .container{
    padding-left:28px !important;
    padding-right:28px !important;
  }
}

@media(max-width:575.98px){
  .cta-band,
  .cta{
    width:calc(100% - 28px) !important;
    border-radius:20px !important;
  }
  .cta-band .container,
  .cta .container{
    padding-left:18px !important;
    padding-right:18px !important;
  }
}


/* ===== EXACT HOW IT WORKS SUMMARY CARD SPACING FIX ===== */
/* Real element: <div class="container how-summary-card"> */

.how-summary-section{
  padding-left:0 !important;
  padding-right:0 !important;
}

.how-summary-section .how-summary-card{
  width:calc(100% - 80px) !important;
  max-width:1440px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding:44px 50px !important;
  border-radius:30px !important;
}

/* Keep text/button away from outer edges */
.how-summary-section .how-summary-card > div{
  min-width:0 !important;
}

.how-summary-section .how-summary-card .btn{
  margin-left:24px !important;
  flex:0 0 auto !important;
}

@media(max-width:991.98px){
  .how-summary-section .how-summary-card{
    width:calc(100% - 48px) !important;
    padding:36px 32px !important;
    border-radius:26px !important;
  }

  .how-summary-section .how-summary-card .btn{
    margin-left:0 !important;
  }
}

@media(max-width:767.98px){
  .how-summary-section .how-summary-card{
    width:calc(100% - 32px) !important;
    padding:30px 24px !important;
    border-radius:22px !important;
  }
}

@media(max-width:575.98px){
  .how-summary-section .how-summary-card{
    width:calc(100% - 24px) !important;
    padding:24px 18px !important;
    border-radius:20px !important;
  }
}

/* ===== portal.css ===== */
:root{--pg:#0b3d75;--pg2:#0e4f99;--ink:#0b3d75;--muted:#64766f;--line:#e7f3ff;--soft:#f7faff;--gold:#378bf5}
*{box-sizing:border-box}.hidden{display:none!important}.portal-body{margin:0;background:#f7faff;color:var(--ink);font-family:"DM Sans",sans-serif}.portal-header{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:20}.portal-header-inner{height:78px;display:flex;align-items:center;justify-content:space-between}.portal-header img{width:185px;display:block}.portal-header-inner>div{display:flex;align-items:center;gap:18px}.portal-header a{color:var(--pg);font-weight:700;text-decoration:none}.portal-logout{border:0;background:#e7f3ff;color:var(--pg);font-weight:700;padding:10px 15px;border-radius:9px;cursor:pointer}.portal-hero{padding:54px 0;background:linear-gradient(125deg,#0b3d75,#0e4f99);color:#fff}.portal-hero span,.portal-kicker{font-size:12px;letter-spacing:.15em;font-weight:800;color:#378bf5}.portal-hero h1{max-width:780px;margin:10px 0 12px;font-size:clamp(34px,5vw,58px);line-height:1.05;color:#fff}.portal-hero p{max-width:720px;color:#e7f3ff;font-size:18px;margin:0}.portal-section{padding-top:42px;padding-bottom:60px}.auth-layout,.redemption-layout{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:1020px;margin:auto}.portal-card{background:#fff;border:1px solid var(--line);border-radius:20px;padding:26px;box-shadow:0 12px 34px rgba(11,61,117,.06)}.auth-copy{background:linear-gradient(145deg,#0b3d75,#0b3d75);color:#fff}.auth-copy h2{color:#fff;font-size:34px;margin:10px 0 25px}.auth-copy ol{list-style:none;padding:0;counter-reset:flow}.auth-copy li{counter-increment:flow;display:flex;gap:12px;align-items:center;border-top:1px solid #ffffff26;padding:16px 0}.auth-copy li:before{content:counter(flow);width:30px;height:30px;border-radius:50%;background:#ffffff1f;display:grid;place-items:center;color:#6faef7;font-weight:800}.auth-tabs{display:flex;border-bottom:1px solid var(--line);margin:-4px 0 24px}.auth-tabs button{flex:1;border:0;background:none;padding:14px;color:var(--muted);font-weight:800;cursor:pointer;border-bottom:3px solid transparent}.auth-tabs button.active{color:var(--pg);border-color:var(--pg2)}.auth-pane{display:none}.auth-pane.active{display:grid}.portal-form{display:grid;gap:16px}.portal-form h2,.portal-card h3{margin:0}.portal-form p{color:var(--muted);margin:-7px 0 3px}.portal-form label{display:grid;gap:7px;font-size:14px;font-weight:700}.portal-form input,.portal-form select{width:100%;padding:13px 14px;border:1px solid #cbe2ff;border-radius:10px;font:inherit;color:var(--ink);background:#fff}.portal-form input:focus,.portal-form select:focus{outline:3px solid #15934f20;border-color:var(--pg2)}.portal-btn{border:0;border-radius:10px;padding:14px 18px;background:var(--pg2);color:#fff;font-weight:800;font:700 15px "DM Sans";cursor:pointer}.portal-btn:hover{background:var(--pg)}.portal-btn:disabled{opacity:.45;cursor:not-allowed}.portal-btn.secondary{background:#e7f3ff;color:var(--pg)}.portal-btn.outline{background:#fff;color:var(--pg);border:1px solid #6faef7}.portal-btn.compact{padding:10px 15px}.form-note{font-size:12px!important;background:var(--soft);padding:12px;border-radius:9px}.form-wide{max-width:800px;margin:auto}.step-badge,.status-pill{display:inline-block;border-radius:99px;padding:7px 12px;background:#e7f3ff;color:var(--pg);font-size:12px;font-weight:800}.check-row{display:flex!important;grid-template-columns:auto 1fr!important;align-items:flex-start!important;gap:10px!important;font-weight:500!important;line-height:1.5}.check-row input{width:auto;margin-top:4px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.dashboard-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}.dashboard-head h2{font-size:36px;margin:7px 0}.dashboard-head p{margin:0;color:var(--muted)}.status-pill.admin{background:#e7f3ff;color:#0e4f99}.metric-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:20px}.metric-grid article{background:#fff;padding:22px;border:1px solid var(--line);border-radius:17px}.metric-grid span,.metric-grid small{display:block;color:var(--muted)}.metric-grid strong{display:block;font:800 27px Manrope;margin:8px 0}.dashboard-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.span-two{grid-column:1/-1}.card-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}.card-title h3{margin-top:6px}.empty-state{border:1px dashed #cbe2ff;border-radius:12px;padding:20px;color:var(--muted);background:var(--soft);margin-top:18px}.bag-ticket{display:grid;grid-template-columns:150px 1fr;gap:22px;align-items:center;padding:18px;border:1px solid var(--line);border-radius:14px;background:#f7faff}.fake-qr{display:grid;grid-template-columns:repeat(9,1fr);aspect-ratio:1;background:#fff;border:9px solid #fff;box-shadow:0 0 0 1px #cbe2ff}.fake-qr i{background:#fff}.fake-qr i.on{background:#0b3d75}.bag-ticket strong{display:block;font-size:22px;margin:5px 0}.bag-ticket button{margin-top:12px}.table-wrap{overflow:auto}table{width:100%;border-collapse:collapse;min-width:680px}th,td{text-align:left;padding:13px 12px;border-bottom:1px solid var(--line);font-size:13px}th{color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.08em}.table-status{display:inline-block;padding:5px 8px;border-radius:20px;background:#e7f3ff;color:var(--pg);font-weight:800}.calculation{padding:15px;border-radius:11px;background:#f7faff;color:var(--pg);font-weight:800}.customer-found strong{display:block;font-size:20px}.wallet-large{text-align:center;border-radius:15px;padding:25px;background:linear-gradient(145deg,#0b3d75,#0e4f99);color:#fff;margin-bottom:20px}.wallet-large span,.wallet-large small{display:block;color:#e7f3ff}.wallet-large strong{font:800 38px Manrope;display:block;margin:6px}.security-note{margin-top:20px;border-left:4px solid var(--gold);background:#f7faff;padding:15px;color:#0e4f99}.security-note p{margin:6px 0 0}.portal-toast{position:fixed;right:24px;bottom:24px;background:#072346;color:#fff;padding:14px 18px;border-radius:11px;box-shadow:0 12px 35px #0003;transform:translateY(100px);opacity:0;transition:.25s;z-index:50}.portal-toast.show{transform:none;opacity:1}
@media(max-width:800px){.auth-layout,.redemption-layout,.dashboard-grid{grid-template-columns:1fr}.metric-grid{grid-template-columns:1fr}.span-two{grid-column:auto}.dashboard-head{align-items:flex-start;gap:14px;flex-direction:column}.form-grid{grid-template-columns:1fr}.portal-hero{padding:40px 0}.portal-header img{width:150px}.portal-header-inner>div>a{display:none}.bag-ticket{grid-template-columns:110px 1fr}}

.gift-summary{padding:16px 18px;border-radius:12px;background:var(--soft);border:1px solid var(--line);line-height:1.55}.user-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}.user-summary>div{background:#fff;border:1px solid var(--line);border-radius:14px;padding:16px;min-width:0}.user-summary span{display:block;color:var(--muted);font-size:12px;margin-bottom:6px}.user-summary strong{display:block;overflow:hidden;text-overflow:ellipsis}.important-id{font-size:22px!important;color:var(--pg);font-family:Manrope}.qr-card{text-align:center}.qr-card>h3{margin:7px 0 18px}.user-qr{width:276px;height:276px;padding:12px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:12px;display:grid;place-items:center}.user-qr img,.user-qr canvas{width:252px!important;height:252px!important}.qr-user-id{display:block;font:800 25px Manrope;margin:15px 0;color:var(--pg)}.qr-actions,.counter-actions,.support-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}.counter-actions .portal-btn{flex:1}.cash-button{background:#1877f2}.cash-button:hover{background:#0e4f99}.support-actions{justify-content:flex-start;margin-top:20px}.support-actions a{text-decoration:none}.portal-form label small{font-weight:500;color:var(--muted)}
@media(max-width:900px){.user-summary{grid-template-columns:1fr 1fr}}@media(max-width:560px){.user-summary{grid-template-columns:1fr}.user-qr{width:242px;height:242px}.user-qr img,.user-qr canvas{width:218px!important;height:218px!important}}
@media print{body *{visibility:hidden}.qr-card,.qr-card *{visibility:visible}.qr-card{position:absolute;inset:0;border:0;box-shadow:none}.qr-actions,.portal-header,.form-note{display:none!important}}

/* UK localisation and UX refinement */
.uk-service-bar{background:#072346;color:#e7f3ff;font-size:12px}.uk-service-bar .container{min-height:32px;display:flex;align-items:center;justify-content:space-between;gap:16px}.uk-service-bar span:first-child{font-weight:800;color:#fff}.portal-hero-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:48px;align-items:center}.uk-trust-panel{padding:22px;border:1px solid #ffffff2b;border-radius:16px;background:#ffffff12;backdrop-filter:blur(8px)}.uk-trust-panel strong{display:block;font-size:18px;color:#fff}.uk-trust-panel ul{margin:12px 0 0;padding:0;list-style:none}.uk-trust-panel li{padding:7px 0 7px 24px;position:relative;color:#e7f3ff}.uk-trust-panel li:before{content:'✓';position:absolute;left:0;color:#6faef7;font-weight:900}.auth-layout{align-items:start}.auth-copy{position:sticky;top:132px}.auth-price{margin-top:18px;padding:18px;border-radius:13px;background:#ffffff12;border:1px solid #ffffff20}.auth-price span,.auth-price small{display:block;color:#cbe2ff}.auth-price strong{display:block;color:#fff;font:800 28px Manrope;margin:5px 0}.portal-form fieldset{margin:0;padding:18px;border:1px solid var(--line);border-radius:13px;display:grid;gap:16px}.portal-form legend{padding:0 8px;color:var(--pg);font-weight:800}.form-progress{display:flex;align-items:center;margin:0 0 24px}.form-progress span{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#e7f3ff;color:#718078;font-weight:800;position:relative;flex:none}.form-progress span b{position:absolute;top:42px;white-space:nowrap;font-size:10px;color:#718078}.form-progress span.active,.form-progress span.done{background:var(--pg2);color:#fff}.form-progress span.active b,.form-progress span.done b{color:var(--pg)}.form-progress i{height:2px;flex:1;background:#cbe2ff}.auth-card .form-progress{margin-bottom:42px}.privacy-note{font-size:12px!important;line-height:1.5;margin:0!important;color:#687970!important}.gift-legal{padding:18px;border-left:4px solid var(--gold);background:#f7faff;border-radius:0 11px 11px 0;color:#0e4f99}.gift-legal p{margin:7px 0 0!important;color:#0e4f99!important;line-height:1.55}.card-intro{color:var(--muted);margin:8px 0 18px}.postcode-input{text-transform:uppercase}.portal-btn,.auth-tabs button,.portal-logout,.portal-form input,.portal-form select,a{transition:box-shadow .2s,border-color .2s,background .2s,transform .2s}.portal-btn:active{transform:translateY(1px)}:focus-visible{outline:3px solid #6faef7!important;outline-offset:3px!important}.portal-form input:invalid:not(:placeholder-shown){border-color:#c75959}.portal-form input:valid:not(:placeholder-shown){border-color:#378bf5}
@media(max-width:800px){.portal-hero-grid{grid-template-columns:1fr;gap:24px}.uk-trust-panel{display:none}.auth-copy{position:static}.uk-service-bar .container{justify-content:center}.uk-service-bar span:last-child{display:none}.portal-header-inner>div a{display:none}.portal-card{padding:21px}.auth-card .form-progress{margin-top:3px}}
.compliance-callout{display:grid;gap:5px;padding:14px 16px;border:1px solid #6faef7;border-radius:11px;background:#f7faff;font-size:12px;line-height:1.5;color:#0e4f99}.compliance-callout strong{font-size:13px}

/* Portal responsive and browser compatibility */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%}.portal-body{min-width:320px}.portal-main,.portal-card,.dashboard-grid>*{min-width:0}.portal-form input,.portal-form select,.portal-form textarea{min-width:0;max-width:100%;-webkit-appearance:none;appearance:none}.portal-form select{background-image:linear-gradient(45deg,transparent 50%,#1877f2 50%),linear-gradient(135deg,#1877f2 50%,transparent 50%);background-position:calc(100% - 18px) 50%,calc(100% - 13px) 50%;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:36px}.table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;overscroll-behavior-inline:contain}.portal-toast{max-width:min(380px,calc(100vw - 32px))}.portal-btn,.portal-logout,.auth-tabs button{min-height:44px;touch-action:manipulation}.check-row input{flex:0 0 auto;width:18px!important;height:18px!important;min-height:18px;margin-top:2px}.user-qr canvas,.user-qr img{image-rendering:auto}
@supports not (backdrop-filter:blur(1px)){.uk-trust-panel{background:rgba(255,255,255,.18)}}@supports (-webkit-backdrop-filter:blur(1px)){.uk-trust-panel{-webkit-backdrop-filter:blur(8px)}}
@media(max-width:1100px){.portal-header-inner,.portal-section,.portal-hero-grid,.uk-service-bar .container{width:calc(100% - 42px)}.auth-layout,.redemption-layout{max-width:900px}.dashboard-grid{gap:18px}.portal-card{padding:24px}}
@media(max-width:900px){.portal-header-inner,.portal-section,.portal-hero-grid,.uk-service-bar .container{width:calc(100% - 34px)}.portal-header-inner{height:72px}.portal-header img{width:165px}.portal-header-inner>div a{display:none}.portal-hero{padding:44px 0}.auth-layout,.redemption-layout,.dashboard-grid{grid-template-columns:minmax(0,1fr)}.auth-copy{position:static}.metric-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.metric-grid article:last-child{grid-column:1/-1}.user-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.span-two{grid-column:auto}.dashboard-head{align-items:flex-start}.table-wrap table{min-width:650px}}
@media(max-width:700px){.portal-header-inner,.portal-section,.portal-hero-grid,.uk-service-bar .container{width:calc(100% - 26px)}.uk-service-bar .container{min-height:30px}.portal-header-inner{height:66px}.portal-header img{width:145px}.portal-header-inner>div{gap:8px}.portal-logout{padding:9px 12px}.portal-hero{padding:36px 0}.portal-hero h1{font-size:clamp(34px,10vw,46px);letter-spacing:-1.5px}.portal-hero p{font-size:16px;line-height:1.6}.uk-trust-panel{display:none}.portal-section{padding-top:30px;padding-bottom:45px}.portal-card{padding:20px;border-radius:16px}.auth-copy h2,.dashboard-head h2{font-size:30px}.form-grid,.metric-grid,.user-summary{grid-template-columns:1fr}.metric-grid article:last-child{grid-column:auto}.portal-form input,.portal-form select,.portal-form textarea{font-size:16px;min-height:48px}.portal-btn{width:100%}.card-title{align-items:flex-start;flex-direction:column}.card-title .portal-btn{width:100%}.qr-actions,.counter-actions,.support-actions{flex-direction:column}.qr-actions .portal-btn,.counter-actions .portal-btn,.support-actions .portal-btn{width:100%}.user-qr{width:min(276px,100%);height:auto;aspect-ratio:1}.user-qr img,.user-qr canvas{width:100%!important;height:100%!important}.table-wrap{margin-left:-20px;margin-right:-20px;width:calc(100% + 40px);padding-left:20px;padding-right:20px}.portal-toast{left:13px;right:13px;bottom:13px;max-width:none;text-align:center}.form-progress span b{font-size:9px}.form-progress span{width:32px;height:32px}.form-progress span b{top:38px}.auth-card .form-progress{margin-bottom:39px}.gift-legal,.compliance-callout,.security-note{font-size:13px}.wallet-large strong{font-size:32px}}
@media(max-width:420px){.portal-header-inner,.portal-section,.portal-hero-grid,.uk-service-bar .container{width:calc(100% - 20px)}.portal-header img{width:128px}.portal-logout{font-size:12px}.uk-service-bar{font-size:11px}.portal-card{padding:17px}.table-wrap{margin-left:-17px;margin-right:-17px;width:calc(100% + 34px);padding-left:17px;padding-right:17px}.auth-tabs button{padding:12px 6px;font-size:13px}.form-progress span b{display:none}.auth-card .form-progress{margin-bottom:25px}.portal-hero h1{font-size:34px}.important-id{font-size:19px!important}.qr-user-id{font-size:21px}.gift-summary{padding:14px}.dashboard-head{margin-bottom:18px}.dashboard-head h2{font-size:27px}.portal-card h3{font-size:19px}}
@media(orientation:landscape) and (max-height:520px){.portal-header{position:static}.portal-hero{padding:28px 0}.portal-section{padding-top:24px}.auth-copy{position:static}}
@media(prefers-reduced-motion:reduce){.portal-toast{transition:none}.portal-btn:active{transform:none}}

/* Dummy payment gateway */
.payment-shell{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:24px;max-width:1040px;margin:auto;align-items:start}.payment-checkout{padding:0;overflow:hidden}.demo-payment-banner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 25px;background:#e7f3ff;color:#0b3d75;font-size:12px}.demo-payment-banner strong{letter-spacing:.11em}.payment-steps{display:flex;gap:7px;padding:22px 25px 0;color:#78857e;font-size:11px;font-weight:800}.payment-steps span{flex:1;padding:8px;border-bottom:3px solid #d8e1ec;text-align:center}.payment-steps .done{color:#0e4f99;border-color:#378bf5}.payment-steps .active{color:#0b3d75;border-color:#0b3d75}.payment-heading{display:flex;justify-content:space-between;align-items:start;gap:20px;padding:28px 30px 12px}.payment-heading h2{margin:6px 0 0}.payment-lock{padding:7px 10px;border-radius:8px;background:#e7f3ff;color:#0e4f99;font-size:12px;font-weight:800}.payment-form{padding:14px 30px 30px}.payment-methods{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.payment-methods button{min-height:45px;border:1px solid #ccd8e7;border-radius:10px;background:#fff;color:#64766f;font-weight:800}.payment-methods button.active{border-color:#0e4f99;background:#f7faff;color:#0e4f99}.payment-methods button:disabled{opacity:.42}.card-input-wrap{position:relative}.card-input-wrap input{padding-right:70px}.card-input-wrap span{position:absolute;right:12px;top:50%;transform:translateY(-50%);padding:4px 7px;border-radius:5px;background:#173e8c;color:#fff;font-size:10px;font-weight:900;font-style:italic}.payment-submit{display:flex;justify-content:space-between;align-items:center;width:100%;font-size:16px}.payment-submit strong{font-size:17px}.payment-security{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;color:#718078;font-size:11px}.order-summary{position:sticky;top:125px}.order-summary h3{font-size:27px;margin:8px 0 24px}.order-product{display:grid;grid-template-columns:54px 1fr auto;gap:13px;align-items:center;padding:17px 0;border-block:1px solid var(--line)}.order-icon{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(145deg,#1877f2,#378bf5);color:#fff;font:800 24px Manrope}.order-product small{display:block;color:var(--muted)}.order-summary ul{padding:0;margin:20px 0;list-style:none}.order-summary li{padding:7px 0 7px 24px;position:relative;color:#3a567a}.order-summary li:before{content:'✓';position:absolute;left:0;color:#0e4f99;font-weight:900}.order-total{display:flex;justify-content:space-between;align-items:center;padding-top:17px;border-top:1px solid var(--line)}.order-total strong{font:800 22px Manrope}.demo-tax{display:block;margin-top:8px;color:var(--muted)}.payment-spinner{width:20px;height:20px;border:3px solid #ffffff55;border-top-color:#fff;border-radius:50%;animation:paymentSpin .75s linear infinite}@keyframes paymentSpin{to{transform:rotate(360deg)}}.payment-success{max-width:760px;margin:auto;text-align:center;padding:45px}.success-check{width:76px;height:76px;border-radius:50%;display:grid;place-items:center;margin:0 auto 22px;background:#e7f3ff;color:#0e4f99;font-size:40px;font-weight:900}.payment-success h2{font-size:38px;margin:7px 0}.payment-success>p{color:var(--muted)}.receipt-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;text-align:left;margin:27px 0}.receipt-grid div{padding:15px;border:1px solid var(--line);border-radius:11px;background:var(--soft)}.receipt-grid span,.receipt-grid strong{display:block}.receipt-grid span{font-size:11px;color:var(--muted);margin-bottom:4px}.success-actions{display:flex;gap:10px;justify-content:center}.demo-chip{padding:6px 9px;border-radius:99px;background:#e7f3ff;color:#0e4f99;font-size:11px;font-weight:800}
@media(max-width:900px){.payment-shell{grid-template-columns:1fr}.order-summary{position:static;order:-1}.payment-checkout{order:0}}
@media(max-width:700px){.demo-payment-banner{padding:10px 17px}.payment-steps{padding:17px 17px 0}.payment-steps span{font-size:9px;padding:7px 2px}.payment-heading{padding:23px 20px 10px;flex-direction:column}.payment-form{padding:12px 20px 22px}.payment-methods{grid-template-columns:1fr}.payment-methods button:not(.active){display:none}.payment-security{align-items:flex-start;flex-direction:column;gap:5px}.order-product{grid-template-columns:48px 1fr auto}.order-icon{width:48px;height:48px}.payment-success{padding:32px 20px}.payment-success h2{font-size:31px}.receipt-grid{grid-template-columns:1fr}.success-actions{flex-direction:column}.success-actions .portal-btn{width:100%}}
@media print{.portal-body>*{display:none!important}#paymentView{display:block!important}.payment-success{display:block!important;box-shadow:none;border:0}.success-actions{display:none}}
.demo-card-help{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;padding:10px;border-radius:9px;background:#f4f6f9;color:#66776f;font-size:10px}.demo-card-help strong{color:#0b3d75}

/* Portal control inside unified public navigation */
.main-nav .portal-logout{min-height:42px;padding:10px 13px;border:1px solid #cbe2ff;border-radius:9px;background:#f7faff;color:#0b3d75;font:700 13px "DM Sans",sans-serif;cursor:pointer;white-space:nowrap}.main-nav .portal-logout:hover{background:#e7f3ff}.portal-body .site-header{top:0}.portal-body .portal-hero{margin-top:0}
@media(max-width:1100px){.main-nav .portal-logout{width:100%;min-height:46px;margin-top:4px}}

/* LFZ GBP payout request confirmation */
.redemption-success{max-width:800px;margin:auto;text-align:center;padding:44px}.redemption-success h2{font-size:38px;margin:7px 0}.redemption-success>p{color:var(--muted)}.payout-timeline{display:grid;grid-template-columns:repeat(3,1fr);margin:30px 0;position:relative}.payout-timeline:before{content:'';position:absolute;top:20px;left:16.66%;right:16.66%;height:3px;background:#e7f3ff}.payout-timeline div{position:relative;z-index:1;display:grid;justify-items:center;gap:9px;color:var(--muted);font-size:12px;font-weight:800}.payout-timeline i{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#eaeff5;border:3px solid #e7f3ff;color:#718078;font-style:normal}.payout-timeline .done i{background:#0e4f99;border-color:#0e4f99;color:#fff}.payout-timeline .active i{background:#f7faff;border-color:var(--gold);color:#0e4f99}.payout-timeline .done{color:var(--pg)}.payout-timeline .active{color:#0e4f99}.table-status.pending{background:#e7f3ff;color:#0e4f99}
.table-status.transferred{background:#e7f3ff;color:#0e4f99}.transfer-action{white-space:nowrap;min-height:38px;padding:8px 12px}.transfer-action .payment-spinner{width:16px;height:16px;display:inline-block;vertical-align:middle;margin-right:5px}
.pending-check{background:#e7f3ff;color:#0e4f99;font-size:30px}.demo-transfer-note{display:flex;align-items:center;gap:12px;margin:22px 0;padding:14px 16px;border:1px solid #6faef7;border-radius:12px;background:#f7faff;text-align:left}.demo-transfer-note strong{flex:none;color:#0e4f99}.demo-transfer-note span{color:#6e6650;font-size:12px}.demo-complete-btn{min-width:260px}.transfer-processing,.transfer-complete{max-width:800px;margin:auto;text-align:center;padding:44px}.transfer-processing h2,.transfer-complete h2{font-size:38px;margin:9px 0}.transfer-processing>p,.transfer-complete>p{color:var(--muted)}.bank-processing-icon{width:82px;height:82px;margin:0 auto 22px;border-radius:50%;display:grid;place-items:center;background:#e7f3ff;position:relative}.bank-processing-icon:before,.bank-processing-icon:after{content:'';position:absolute;inset:-7px;border:2px solid #0e4f99;border-radius:50%;border-top-color:transparent;animation:paymentSpin 1.2s linear infinite}.bank-processing-icon:after{inset:-14px;border-color:#6faef7;border-bottom-color:transparent;animation-direction:reverse;animation-duration:1.8s}.bank-processing-icon span{font:800 37px Manrope;color:#0e4f99}.processing-bar{height:9px;margin:30px 0 27px;border-radius:99px;background:#e7f3ff;overflow:hidden}.processing-bar i{display:block;width:0;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0e4f99,#378bf5);transition:width .65s ease}.processing-checks{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:24px}.processing-checks div{display:grid;justify-items:center;gap:9px;color:var(--muted);font-size:12px;font-weight:800}.processing-checks i{width:39px;height:39px;display:grid;place-items:center;border:2px solid #cbe2ff;border-radius:50%;background:#f7faff;font-style:normal}.processing-checks .done{color:#0e4f99}.processing-checks .done i{border-color:#0e4f99;background:#0e4f99;color:#fff}.processing-checks .active{color:#0e4f99}.processing-checks .active i{border-color:#378bf5;background:#e7f3ff;color:#0e4f99}.secure-processing-note{padding:12px;border-radius:10px;background:#f7faff;color:#69776f;font-size:11px}.transfer-amount{margin:25px 0;padding:24px;border-radius:16px;background:linear-gradient(135deg,#0b3d75,#0e4f99);color:#fff}.transfer-amount span,.transfer-amount small{display:block;color:#e7f3ff}.transfer-amount strong{display:block;margin:6px 0;font:800 38px Manrope}.completed-status{color:#0e4f99}.completed-timeline:before{background:#6faef7}.transfer-check{box-shadow:0 0 0 10px #e7f3ff}.transfer-complete .success-actions{flex-wrap:wrap}
@media(max-width:700px){.redemption-success{padding:32px 20px}.redemption-success h2{font-size:30px}.payout-timeline{margin:26px 0}.payout-timeline span{max-width:88px}.payout-timeline i{width:38px;height:38px}.payout-timeline:before{top:18px}}
@media(max-width:700px){.demo-transfer-note{align-items:flex-start;flex-direction:column}.demo-complete-btn{min-width:0}.transfer-processing,.transfer-complete{padding:32px 20px}.transfer-processing h2,.transfer-complete h2{font-size:30px}.processing-checks{gap:5px}.processing-checks span{max-width:86px}.transfer-amount strong{font-size:31px}}

/* Native checkbox visibility and click fix */
.portal-form .check-row{cursor:pointer;user-select:none;-webkit-user-select:none}.portal-form .check-row input[type="checkbox"]{-webkit-appearance:checkbox!important;appearance:auto!important;accent-color:#0e4f99!important;display:inline-block!important;width:20px!important;height:20px!important;min-width:20px!important;min-height:20px!important;max-width:20px!important;padding:0!important;margin:2px 0 0!important;border:1px solid #7796be!important;border-radius:4px!important;background:#fff!important;box-shadow:none!important;cursor:pointer;opacity:1!important;visibility:visible!important}.portal-form .check-row input[type="checkbox"]:focus-visible{outline:3px solid rgba(14,79,153,.25)!important;outline-offset:3px}.portal-form .check-row span{cursor:pointer}

/* Separate account actions and refined registration form */
.auth-layout{grid-template-columns:minmax(270px,.72fr) minmax(0,1.28fr);max-width:1120px}
.auth-card{padding:30px}
.auth-choice{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:-2px 0 28px}
.auth-choice button{display:flex;align-items:center;gap:12px;min-width:0;min-height:68px;border:1px solid #cbe2ff;border-radius:14px;background:#f7faff;padding:13px 14px;text-align:left;color:var(--ink);cursor:pointer;transition:.2s}
.auth-choice button:hover{border-color:#378bf5;background:#f7faff}
.auth-choice button.active{border-color:var(--pg2);background:#e7f3ff;box-shadow:0 0 0 3px rgba(14,79,153,.09)}
.auth-choice-icon{display:grid;place-items:center;flex:0 0 38px;width:38px;height:38px;border-radius:10px;background:#fff;border:1px solid #e7f3ff;color:var(--pg);font-size:21px;font-weight:800}
.auth-choice button.active .auth-choice-icon{background:var(--pg2);border-color:var(--pg2);color:#fff}
.auth-choice button>span:last-child{min-width:0}.auth-choice strong,.auth-choice small{display:block}.auth-choice strong{font-size:15px}.auth-choice small{margin-top:2px;color:var(--muted);font-size:11px;font-weight:600;line-height:1.35}
.auth-form-heading{padding-bottom:2px}.auth-form-heading h2{margin:5px 0 8px}.auth-form-heading p{margin:0!important}.auth-submit{display:flex;align-items:center;justify-content:space-between}
@media(max-width:900px){.auth-layout{grid-template-columns:1fr;max-width:760px}.auth-copy{position:static}}
@media(max-width:560px){.auth-card{padding:18px}.auth-choice{grid-template-columns:1fr;gap:9px;margin-bottom:24px}.auth-choice button{min-height:62px}.auth-copy{display:none}}

.simple-auth-nav a{display:flex;align-items:center;gap:12px;min-width:0;min-height:68px;border:1px solid #cbe2ff;border-radius:14px;background:#f7faff;padding:13px 14px;text-align:left;color:var(--ink);text-decoration:none;transition:.2s}
.simple-auth-nav a:hover{border-color:#378bf5;background:#f7faff}
.simple-auth-nav a.active{border-color:var(--pg2);background:#e7f3ff;box-shadow:0 0 0 3px rgba(14,79,153,.09)}
.simple-auth-nav a.active .auth-choice-icon{background:var(--pg2);border-color:var(--pg2);color:#fff}
@media(max-width:560px){.simple-auth-nav a{min-height:62px}}

/* Keep paired registration fields perfectly aligned */
.portal-form .form-grid{align-items:start}
.portal-form .form-grid>.field-aligned{display:flex;flex-direction:column;align-self:start;gap:7px;width:100%;min-width:0}
.portal-form .form-grid>.field-aligned>span{display:block;min-height:20px;line-height:20px}
.portal-form .form-grid>.field-aligned>input{margin:0;min-height:48px}
.portal-form .form-grid>.field-aligned>small{display:block;margin-top:0;line-height:1.4}
.dashboard-status-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
@media(max-width:700px){.dashboard-status-actions{width:100%;justify-content:flex-start}.dashboard-status-actions .portal-logout{width:auto}}

/* 7 Aug backend placement */
.staff-access-head{justify-content:flex-start!important;align-items:flex-start!important;gap:18px}.staff-access-head .status-pill.admin{flex:0 0 auto;margin-top:8px}.staff-access-head>div{flex:1}
@media(max-width:700px){.staff-access-head{flex-direction:column!important}.staff-access-head .status-pill.admin{margin-top:0}}

/* ===== rebank.css ===== */
/* ReBank module — intentionally inherits the existing GoGreenDragon portal design. */
.rebank-app .rb-eyebrow{display:inline-block;margin-bottom:10px;font:800 12px/1 Manrope,sans-serif;letter-spacing:.13em;color:#cbe2ff}.rebank-app button{font-family:inherit}.rb-metric-grid{grid-template-columns:repeat(4,1fr)}.rb-chart{min-height:230px;padding:14px 0}.rb-chart svg{width:100%;height:220px;display:block}.rb-chart .grid{stroke:#e7f3ff;stroke-width:1}.rb-chart .line{fill:none;stroke:#0e4f99;stroke-width:4;stroke-linecap:round;stroke-linejoin:round}.rb-chart .dot{fill:#fff;stroke:#0e4f99;stroke-width:3}.rb-chart text{font-size:11px;fill:#678074}.rb-item-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:18px 0}.rb-item{border:1px solid #cbe2ff;background:#fff;border-radius:16px;padding:22px 14px;display:flex;flex-direction:column;align-items:center;gap:5px;color:#0b3d75;cursor:pointer}.rb-item.active{border:2px solid #0e4f99;background:#f7faff;box-shadow:0 8px 22px rgba(14,79,153,.08)}.rb-item-icon{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;background:#e7f3ff;color:#0e4f99;font-size:27px}.rb-item strong{font-size:18px}.rb-item small{color:#698075}.rb-calc{display:grid;gap:0;border:1px solid #e7f3ff;border-radius:14px;overflow:hidden;margin-top:18px}.rb-calc>div{display:flex;justify-content:space-between;gap:20px;padding:15px 17px;border-bottom:1px solid #e7f3ff}.rb-calc>div:last-child{border:0}.rb-calc span{color:#6a7e73}.rb-calc-total{background:#f7faff}.rb-calc-total strong{color:#0e4f99;font-size:22px}.rb-input-action{display:grid;grid-template-columns:1fr auto;gap:8px}.rb-input-action button{border:0;border-radius:10px;padding:0 13px;background:#e7f3ff;color:#0e4f99;font-weight:800}.rb-review-check{margin:24px 0 15px}.rb-paypal-amount{border:1px solid #e7f3ff;background:#f7faff;border-radius:16px;padding:20px;display:flex;flex-direction:column;gap:5px;margin:18px 0}.rb-paypal-amount strong{font:800 31px/1.2 Manrope,sans-serif;color:#0b3d75}.rb-paypal-buttons{min-height:55px;margin:18px 0}.rb-auth-pane{display:none}.rb-auth-pane.active{display:block}.simple-auth-nav button{all:unset;box-sizing:border-box;cursor:pointer;display:flex!important;align-items:center;gap:10px;padding:12px!important;border-radius:12px;color:#0b3d75}.simple-auth-nav button.active{background:#f7faff}.rebank-app .hidden{display:none!important}@media(max-width:900px){.rb-metric-grid{grid-template-columns:1fr 1fr}}@media(max-width:620px){.rb-metric-grid{grid-template-columns:1fr}.rb-item-grid{grid-template-columns:1fr}.rb-chart{overflow:auto}.rb-chart svg{min-width:620px}}

/* ReBank final workflow polish */
.rb-flow-wrap{padding-top:20px}.rb-flow-strip{display:grid;grid-template-columns:repeat(9,1fr);border:1px solid #e7f3ff;border-radius:16px;background:#fff;overflow:hidden;box-shadow:0 8px 26px rgba(11,61,117,.06)}.rb-flow-step{position:relative;min-width:0;padding:12px 8px;display:flex;align-items:center;justify-content:center;gap:7px;color:#718078;border-right:1px solid #e7f3ff}.rb-flow-step:last-child{border-right:0}.rb-flow-step b{width:24px;height:24px;border-radius:50%;display:grid;place-items:center;background:#e7f3ff;color:#405e85;font-size:12px}.rb-flow-step small{font-weight:800;font-size:11px;white-space:nowrap}.rb-flow-step.active{background:#e7f3ff;color:#0e4f99}.rb-flow-step.active b,.rb-flow-step.done b{background:#0e4f99;color:#fff}.rb-flow-step.done{color:#0e4f99}.rb-member-meta{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:10px;color:#6d7f75;font-size:13px}.rb-member-meta strong{color:#0e4f99}.rb-guide{display:flex;flex-direction:column;gap:4px;margin-top:17px;padding:15px;border:1px solid #e7f3ff;border-radius:13px;background:#f7faff;color:#3e5c82}.rb-guide strong{color:#0b3d75}.rb-error-text{color:#a33b35;font-weight:700}.rb-payment-status-card{max-width:760px;margin:0 auto;text-align:center}.rb-status-icon{width:72px;height:72px;border-radius:50%;display:grid;place-items:center;margin:0 auto 16px;font-size:34px;font-weight:800}.rb-status-icon.cancel{background:#e7f3ff;color:#0e4f99}.rb-status-icon.fail{background:#fdeaea;color:#a83232}.rb-payment-status-card .demo-transfer-note{text-align:left;max-width:560px;margin:22px auto}.rb-ledger-summary{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;margin-bottom:16px}.rb-ledger-summary article{border:1px solid #e7f3ff;background:#fff;border-radius:15px;padding:17px 19px;display:flex;justify-content:space-between;align-items:center;gap:20px}.rb-ledger-summary span{color:#6d7f75}.rb-ledger-summary strong{font:800 20px/1.2 Manrope,sans-serif;color:#0b3d75}.rb-admin-metrics{grid-template-columns:repeat(3,1fr);margin-bottom:18px}.rb-reset-btn{margin-top:12px}.portal-btn:disabled{opacity:.48;cursor:not-allowed;pointer-events:none}
@media(max-width:900px){.rb-flow-strip{grid-template-columns:repeat(3,1fr)}.rb-flow-step{border-bottom:1px solid #e7f3ff}.rb-admin-metrics{grid-template-columns:repeat(3,1fr)}}
@media(max-width:620px){.rb-flow-strip{grid-template-columns:repeat(2,1fr)}.rb-flow-step small{white-space:normal}.rb-ledger-summary,.rb-admin-metrics{grid-template-columns:1fr}.rb-member-meta{display:grid;gap:4px}}

/* ReBank v3 functionality polish */
.rb-flow-step{border:0;background:transparent;font:inherit;color:inherit;cursor:pointer;text-align:center}
.rb-flow-step:focus-visible{outline:3px solid rgba(24,119,242,.25);outline-offset:-3px}
.rb-flow-step.admin-step{cursor:pointer}
.rb-local-paypal{margin-top:16px;display:grid;gap:12px}
.rb-local-paypal.hidden{display:none!important}
.rb-demo-pay-actions{display:flex;gap:10px;flex-wrap:wrap}
.rb-demo-pay-actions .portal-btn{flex:1 1 160px}
@media (max-width:767px){.rb-flow-step{min-width:92px}.rb-demo-pay-actions{display:grid;grid-template-columns:1fr}}

/* Step-by-step workflow guidance */
.rb-flow-help{margin:10px 6px 0;color:#415f87;font-size:13px;text-align:center}
.rb-flow-help strong{color:#0b3d75}
.rb-next-note{margin-top:16px;padding:12px 14px;border:1px solid #cbe2ff;background:#f7faff;border-radius:10px;color:#0e4f99}
.rb-flow-step:disabled{opacity:.48;cursor:not-allowed}

.rb-flow-step.locked{opacity:.5}.rb-flow-step.locked:not(.active){background:#f7faff}.rb-flow-step.locked small:after{content:'  🔒';font-size:10px}

/* ===== flow-clean.css ===== */
:root{
  --flow-blue:#0b3d75;
  --flow-blue-2:#0e4f99;
  --flow-lime:#1877f2;
  --flow-ink:#0b3d75;
  --flow-muted:#66776f;
  --flow-line:#e7f3ff;
  --flow-soft:#f7faff;
  --flow-cream:#f7faff;
  --flow-white:#fff;
  --flow-danger:#a3423c;
  --flow-shadow:0 18px 46px rgba(11,61,117,.08);
}

/* Clean application shell */
.rebank-app{background:linear-gradient(180deg,#f7faff 0,#fff 22%,#f7f9fb 100%);padding:0 0 44px}
.rebank-app .portal-hero{display:none}
.rebank-app .container{width:min(1180px,calc(100% - 40px));max-width:none}
.rebank-app .portal-section{padding:28px 0 0}
.rebank-app .portal-card{border:1px solid var(--flow-line);border-radius:20px;background:#fff;box-shadow:0 10px 28px rgba(11,61,117,.055)}
.rebank-app .portal-card:hover{box-shadow:0 14px 34px rgba(11,61,117,.075)}

/* Main stepper: clean, compact, readable */
.rb-flow-wrap{padding-top:30px!important;position:relative}
.rb-flow-wrap:before{content:'ReBank cash-in journey';display:block;margin:0 0 12px;font:800 12px/1 Manrope,sans-serif;letter-spacing:.12em;text-transform:uppercase;color:var(--flow-blue)}
.rb-flow-strip{display:flex!important;align-items:stretch;gap:0;border:1px solid var(--flow-line)!important;border-radius:18px!important;background:#fff!important;overflow:visible!important;box-shadow:var(--flow-shadow)!important;padding:8px!important}
.rb-flow-step{flex:1 1 0;min-width:0!important;min-height:64px;padding:8px 6px!important;border:0!important;border-radius:12px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;background:transparent!important;color:#718079!important;position:relative!important;transition:.2s ease}
.rb-flow-step:not(:last-child):after{content:'›';position:absolute;right:-5px;top:50%;transform:translateY(-50%);color:#b9c8c0;font-size:19px;font-weight:600;z-index:2}
.rb-flow-step b{width:30px!important;height:30px!important;flex:0 0 30px;border-radius:50%!important;background:#e7f3ff!important;color:#5f7469!important;font:800 12px/30px Manrope,sans-serif!important;box-shadow:inset 0 0 0 1px #e7f3ff}
.rb-flow-step small{font:700 11px/1.15 DM Sans,sans-serif!important;color:inherit;white-space:normal!important;text-align:left}
.rb-flow-step.active{background:#f7faff!important;color:var(--flow-blue)!important;box-shadow:inset 0 0 0 1px #e7f3ff}
.rb-flow-step.active b{background:linear-gradient(135deg,var(--flow-blue-2),var(--flow-blue))!important;color:#fff!important;box-shadow:0 6px 14px rgba(14,79,153,.2)}
.rb-flow-step.done{color:#0e4f99!important}
.rb-flow-step.done b{font-size:0!important;background:var(--flow-blue)!important;color:#fff!important}
.rb-flow-step.done b:after{content:'✓';font-size:13px}
.rb-flow-step.locked{opacity:.48!important}
.rb-flow-step.locked small:after{content:''!important}
.rb-flow-step.admin-step{flex:0 0 72px;border-left:1px solid #e5ebf2!important;margin-left:4px;border-radius:0 12px 12px 0!important}
.rb-flow-step.admin-step small{font-size:10px!important}
.rb-flow-help{margin:12px 4px 0!important;padding:10px 14px;border-radius:11px;background:#f7faff;color:#62766c!important;text-align:left!important;font-size:12px!important;line-height:1.5}
.rb-flow-help strong{color:var(--flow-blue)!important}

/* Headings and section framing */
.dashboard-head{align-items:flex-start!important;gap:20px;margin-bottom:18px!important;padding-bottom:16px;border-bottom:1px solid #e5ebf2}
.dashboard-head h2,.portal-card h2{color:var(--flow-ink);letter-spacing:-.025em}
.dashboard-head p,.card-intro,.privacy-note,.form-note{color:var(--flow-muted)!important;line-height:1.6}
.portal-kicker{color:var(--flow-blue-2)!important;letter-spacing:.1em!important;font-size:11px!important}

/* Auth */
.auth-layout{grid-template-columns:minmax(0,.85fr) minmax(420px,1.15fr)!important;gap:20px!important;align-items:stretch}
.auth-copy{background:linear-gradient(145deg,#0b3d75 0,#0b3d75 100%)!important;color:#fff!important;position:relative;overflow:hidden}
.auth-copy:after{content:'';position:absolute;width:220px;height:220px;border-radius:50%;right:-80px;bottom:-90px;background:radial-gradient(circle,rgba(24,119,242,.35),rgba(24,119,242,0) 70%)}
.auth-copy .portal-kicker,.auth-copy h2,.auth-copy li,.auth-copy .auth-price span,.auth-copy .auth-price strong{color:#fff!important}
.auth-copy ol{display:grid;gap:12px;margin-top:20px;padding-left:20px}
.auth-copy li::marker{color:#378bf5;font-weight:800}
.auth-price{margin-top:24px!important;background:rgba(255,255,255,.1)!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:14px!important}
.auth-card{padding:18px!important}
.auth-choice.simple-auth-nav{background:#f7faff!important;border:1px solid #e7f3ff!important;border-radius:14px!important;padding:5px!important;margin-bottom:20px!important}
.auth-choice.simple-auth-nav button{border-radius:10px!important;padding:11px 13px!important}
.auth-choice.simple-auth-nav button.active{background:#fff!important;box-shadow:0 5px 14px rgba(11,61,117,.08)!important;color:var(--flow-blue)!important}
.rb-auth-pane h2{font-size:23px!important;margin-bottom:18px!important}

/* Forms */
.portal-form{gap:15px!important}
.portal-form label{font-weight:700!important;color:#0e4f99!important;font-size:13px!important}
.portal-form input,.portal-form select,.portal-form textarea{min-height:48px!important;border:1px solid #d2dce9!important;border-radius:11px!important;background:#f7faff!important;padding:11px 13px!important;box-shadow:none!important;transition:.18s ease}
.portal-form input:focus,.portal-form select:focus,.portal-form textarea:focus{border-color:#378bf5!important;background:#fff!important;box-shadow:0 0 0 4px rgba(14,79,153,.09)!important;outline:0}
.portal-btn{min-height:46px!important;border-radius:11px!important;background:linear-gradient(135deg,#0e4f99,#0b3d75)!important;box-shadow:0 8px 18px rgba(11,61,117,.14)!important;font-weight:800!important}
.portal-btn:hover{transform:translateY(-1px);box-shadow:0 11px 22px rgba(11,61,117,.18)!important}
.portal-btn.secondary,.portal-btn.outline{background:#fff!important;color:var(--flow-blue)!important;border:1px solid #cbe2ff!important;box-shadow:none!important}
.portal-btn.compact{min-height:38px!important;padding:8px 13px!important}

/* Dashboard */
.metric-grid.rb-metric-grid{gap:14px!important}
.metric-grid.rb-metric-grid article{border:1px solid var(--flow-line)!important;border-radius:16px!important;background:#fff!important;padding:18px!important;box-shadow:0 8px 22px rgba(11,61,117,.045)!important}
.metric-grid.rb-metric-grid article:first-child{background:linear-gradient(145deg,#0b3d75,#0e4f99)!important;border-color:transparent!important}
.metric-grid.rb-metric-grid article:first-child span,.metric-grid.rb-metric-grid article:first-child strong,.metric-grid.rb-metric-grid article:first-child small{color:#fff!important}
.metric-grid strong{letter-spacing:-.03em}
.dashboard-grid{gap:16px!important}
.dashboard-grid .portal-card{padding:20px!important}
.card-title{gap:16px!important}
.demo-chip,.status-pill{border-radius:999px!important;background:#e7f3ff!important;color:#0e4f99!important;border:1px solid #e7f3ff!important}

/* Deposit */
.redemption-layout{gap:18px!important;align-items:start}
.rb-item-grid{gap:12px!important}
.rb-item{border:1px solid #e7f3ff!important;border-radius:15px!important;background:#f7faff!important;min-height:126px!important;transition:.2s ease!important}
.rb-item:hover{transform:translateY(-2px);border-color:#6faef7!important}
.rb-item.active{background:#f7faff!important;border-color:#6faef7!important;box-shadow:0 0 0 3px rgba(14,79,153,.08)!important}
.rb-item-icon{width:48px;height:48px;display:grid;place-items:center;margin:0 auto 8px;border-radius:14px;background:#fff;border:1px solid #e7f3ff;font-size:24px!important}
.rb-calc{border:1px solid #dde4ee!important;border-radius:14px!important;overflow:hidden;background:#fafbfd!important}
.rb-calc>div{padding:13px 15px!important;border-bottom:1px solid #e5ebf2!important}
.rb-calc-total{background:linear-gradient(135deg,#f7faff,#f7faff)!important}
.rb-calc-total strong{color:var(--flow-blue)!important;font-size:24px!important}
.rb-next-note{padding:12px 14px;border-radius:11px;background:#f7faff;margin-top:14px!important}

/* Cash out + review */
.wallet-large{border-radius:17px!important;background:linear-gradient(145deg,#0b3d75,#0e4f99)!important;padding:22px!important;box-shadow:0 14px 28px rgba(11,61,117,.15)!important}
.wallet-large span,.wallet-large strong,.wallet-large small{color:#fff!important}
.rb-input-action{border:1px solid #d2dce9!important;border-radius:11px!important;overflow:hidden;background:#f7faff!important}
.rb-input-action input{border:0!important;border-radius:0!important;background:transparent!important}
.rb-input-action button{border:0!important;border-left:1px solid #d2dce9!important;background:#e7f3ff!important;color:var(--flow-blue)!important;font-weight:800!important;padding:0 14px!important}
.calculation{border-radius:12px!important;background:#f7faff!important;border:1px solid #e7f3ff!important;color:#0b3d75!important;padding:13px 14px!important;font-weight:700}
.security-note,.demo-transfer-note{border-radius:13px!important;border:1px solid #e7f3ff!important;background:#f7faff!important;padding:15px!important}
.receipt-grid{gap:10px!important}
.receipt-grid>div{border:1px solid #dbe3ee!important;border-radius:12px!important;background:#fafbfd!important;padding:14px!important}
.receipt-grid>div:last-child{background:#f7faff!important;border-color:#cbe2ff!important}
.check-row.rb-review-check{padding:13px 14px;border-radius:11px;background:#f7faff;border:1px solid #dbe3ee;margin:16px 0!important}

/* PayPal */
.payment-shell{gap:18px!important;align-items:start}
.payment-checkout{overflow:hidden!important}
.demo-payment-banner{margin:-20px -20px 20px!important;padding:11px 20px!important;background:#e7f3ff!important;border-bottom:1px solid #cbe2ff!important;color:#0e4f99!important}
.payment-lock{border-radius:999px!important;background:#f7faff!important;border:1px solid #e7f3ff!important;color:var(--flow-blue)!important}
.rb-paypal-amount{border:1px solid #e7f3ff!important;border-radius:15px!important;background:#f7faff!important;padding:18px!important}
.order-summary .summary-row{padding:12px 0!important;border-bottom:1px solid #eaeff5!important}
.order-summary .summary-row.total{margin-top:4px;padding:14px 12px!important;border:0!important;border-radius:11px;background:#f7faff!important}

/* Processing + success */
.transfer-processing,.transfer-complete{max-width:820px!important;margin:0 auto!important;text-align:center!important;padding:32px!important}
.bank-processing-icon,.success-check.transfer-check{width:72px!important;height:72px!important;border-radius:50%!important;display:grid!important;place-items:center!important;margin:0 auto 16px!important;background:#e7f3ff!important;color:var(--flow-blue)!important;box-shadow:0 0 0 8px #f7faff!important}
.processing-bar{height:9px!important;border-radius:999px!important;background:#e7f3ff!important;overflow:hidden!important}
.processing-bar i{background:linear-gradient(90deg,#0e4f99,#1877f2)!important}
.processing-checks{gap:10px!important;margin-top:22px!important}
.processing-checks>div{border-radius:12px!important;border:1px solid #e7f3ff!important;background:#fafbfd!important;padding:12px!important}
.transfer-amount{max-width:420px;margin:18px auto!important;border-radius:16px!important;background:linear-gradient(145deg,#0b3d75,#0e4f99)!important;color:#fff!important;padding:18px!important}
.transfer-amount span,.transfer-amount strong,.transfer-amount small{color:#fff!important}
.completed-status{display:inline-flex;padding:6px 10px;border-radius:999px;background:#e7f3ff;color:#0e4f99!important;font-size:11px!important}
.success-actions{justify-content:center!important;gap:10px!important}

/* Ledger */
.rb-ledger-summary{gap:12px!important}
.rb-ledger-summary article{border-radius:14px!important;border:1px solid #dbe3ee!important;background:#fff!important;box-shadow:0 7px 18px rgba(11,61,117,.04)!important}
.table-wrap{border:1px solid #e7f3ff;border-radius:14px;overflow:auto;background:#fff}
.table-wrap table{margin:0!important}
.table-wrap th{background:#f7faff!important;color:#0e4f99!important;font-size:11px!important;text-transform:uppercase;letter-spacing:.04em;white-space:nowrap}
.table-wrap td{border-color:#eaeff5!important;color:#344c6b!important}

/* Keep public concept neat and make app feel separate */
.concept-shell{padding-bottom:28px!important}
.concept-shell + .rebank-app{border-top:1px solid #e0e7f0}

@media(max-width:1000px){
  .rb-flow-strip{overflow-x:auto!important;justify-content:flex-start!important;scroll-snap-type:x proximity}
  .rb-flow-step{flex:0 0 118px!important;scroll-snap-align:start}
  .rb-flow-step.admin-step{flex:0 0 76px!important}
  .auth-layout{grid-template-columns:1fr!important}
}
@media(max-width:720px){
  .rebank-app .container{width:min(100% - 24px,1180px)}
  .rb-flow-wrap{padding-top:20px!important}
  .rb-flow-strip{border-radius:14px!important;padding:6px!important}
  .rb-flow-step{min-height:56px!important;flex-basis:105px!important;justify-content:flex-start!important;padding:7px!important}
  .rb-flow-step b{width:27px!important;height:27px!important;flex-basis:27px;line-height:27px!important}
  .rb-flow-help{font-size:11px!important}
  .rebank-app .portal-section{padding-top:20px}
  .portal-card{border-radius:16px!important}
  .dashboard-head{display:grid!important}
  .dashboard-status-actions{justify-content:flex-start!important}
  .form-grid{grid-template-columns:1fr!important}
  .metric-grid.rb-metric-grid{grid-template-columns:1fr 1fr!important}
  .redemption-layout,.payment-shell{grid-template-columns:1fr!important}
  .receipt-grid{grid-template-columns:1fr!important}
}
@media(max-width:480px){
  .metric-grid.rb-metric-grid{grid-template-columns:1fr!important}
  .auth-card{padding:14px!important}
  .auth-choice.simple-auth-nav button{padding:9px!important}
  .portal-form input{min-height:46px!important}
  .success-actions{display:grid!important;grid-template-columns:1fr!important}
}

/* ===== concept-ui.css ===== */
:root{--c-forest:#0b3d75;--c-deep:#072346;--c-blue:#0e4f99;--c-leaf:#1877f2;--c-cream:#f7faff;--c-line:#e7f3ff;--c-text:#0b3d75;--c-muted:#6c7d73}
.webuyany-branded{background:var(--c-cream)!important}
.webuyany-branded .cis-header{background:#fff!important;border-top:4px solid var(--c-forest)!important;border-bottom:1px solid #e7ece8!important;box-shadow:0 8px 24px rgba(11,61,117,.06)!important}
.webuyany-branded .cis-header-inner{min-height:78px!important;width:min(1380px,calc(100% - 40px))!important}
.webuyany-branded .cis-brand{color:var(--c-forest)!important}.webuyany-branded .cis-logo-mark{background:linear-gradient(145deg,var(--c-blue),var(--c-leaf))!important}
.webuyany-branded .cis-brand-copy strong{color:var(--c-forest)!important}.webuyany-branded .cis-brand-copy small{color:#486994!important}
.webuyany-branded .header-action{border-radius:8px!important;min-height:44px!important}.webuyany-branded .header-action-outline{background:var(--c-blue)!important;color:#fff!important;border-color:var(--c-blue)!important}.webuyany-branded .header-action-solid{background:#fff!important;color:var(--c-forest)!important;border:1px solid #8ca6c8!important}
.webuyany-branded>.cis-hero{display:none!important}
.concept-wrap{width:min(1380px,calc(100% - 32px));margin:16px auto 0}.concept-card{background:#fff;border:1px solid var(--c-line);border-radius:18px;box-shadow:0 12px 36px rgba(11,61,117,.06)}
.concept-hero{min-height:410px;display:grid;grid-template-columns:1.02fr .98fr;overflow:hidden;background:linear-gradient(115deg,#fff 0%,#f7faff 55%,#e7f3ff 100%);position:relative}
.concept-hero:before,.concept-hero:after{content:"";position:absolute;width:190px;height:190px;border-radius:50%;background:radial-gradient(circle,rgba(24,119,242,.15),transparent 70%)}.concept-hero:before{left:-80px;top:-90px}.concept-hero:after{right:-60px;bottom:-70px}
.concept-hero-copy{padding:58px 52px;z-index:2}.concept-kicker{font:800 11px/1.2 'DM Sans',sans-serif;letter-spacing:1.6px;color:var(--c-blue);text-transform:uppercase}.concept-hero h1{margin:12px 0 18px;font:800 clamp(42px,5vw,72px)/.98 Manrope,sans-serif;letter-spacing:-3px;color:var(--c-forest)}.concept-hero h1 em{font-style:italic;color:var(--c-blue)}.concept-hero p{max-width:650px;color:#0e4f99;font-size:17px;line-height:1.65}.concept-actions{display:flex;gap:12px;margin-top:26px}.concept-btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 22px;border-radius:9px;text-decoration:none!important;font-weight:800}.concept-btn.primary{background:linear-gradient(135deg,var(--c-leaf),var(--c-blue));color:#fff!important}.concept-btn.secondary{background:#fff;color:var(--c-forest)!important;border:1px solid #7997bf}.concept-trust{display:flex;flex-wrap:wrap;gap:18px;margin-top:28px;color:#0e4f99;font-size:12px;font-weight:700}.concept-trust span:before{content:'✓';display:inline-grid;place-items:center;width:19px;height:19px;margin-right:6px;border-radius:50%;background:#e7f3ff;color:var(--c-blue)}
.concept-visual{padding:34px 28px 24px;display:grid;grid-template-columns:1fr 230px;gap:20px;align-items:center;position:relative}.eco-bag{height:290px;border-radius:42% 42% 18px 18px;background:linear-gradient(145deg,#e7f3ff,#6faef7);position:relative;box-shadow:0 24px 44px rgba(71,67,46,.15)}.eco-bag:before{content:'';position:absolute;width:120px;height:90px;border:14px solid #b7a57f;border-bottom:0;border-radius:60px 60px 0 0;left:50%;top:-54px;transform:translateX(-50%)}.eco-bag:after{content:'♻';position:absolute;inset:0;display:grid;place-items:center;font-size:90px;color:var(--c-blue)}
.phone{height:330px;background:#072346;border:7px solid #072346;border-radius:28px;box-shadow:0 25px 45px rgba(7,35,70,.22);padding:13px}.phone-screen{height:100%;background:linear-gradient(#0b3d75 0 20%,#f7faff 20%);border-radius:18px;padding:20px 14px;display:flex;flex-direction:column;justify-content:center;text-align:center}.phone-screen small{font-weight:800;color:#0e4f99}.phone-screen b{display:block;font:800 38px/1 Manrope;color:var(--c-forest);margin:8px 0}.phone-screen strong{font-size:24px;color:var(--c-forest)}.phone-screen .spot{font-size:11px;color:#61766b;margin-top:10px}.phone-screen .cashbtn{margin-top:16px;background:var(--c-blue);color:#fff;padding:11px;border-radius:8px;font-size:12px;font-weight:800}
.hero-benefits{position:absolute;right:22px;top:28px;display:grid;gap:14px}.hero-benefit{width:210px;background:rgba(255,255,255,.86);backdrop-filter:blur(8px);border:1px solid #e7f3ff;border-radius:13px;padding:13px 14px;box-shadow:0 8px 20px rgba(11,61,117,.05)}.hero-benefit strong{display:block;color:var(--c-forest);font-size:12px}.hero-benefit span{display:block;margin-top:3px;font-size:11px;color:#5c6e63}
.concept-mid{display:grid;grid-template-columns:1.05fr .95fr;gap:14px;margin-top:14px}.how-card,.dashboard-preview{padding:28px}.section-title{display:flex;align-items:center;gap:12px;color:var(--c-forest);font-weight:800}.section-title:before,.section-title:after{content:'';height:1px;background:#7191ba;flex:1}.steps4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:24px}.step4{text-align:center;position:relative}.step-icon{width:92px;height:92px;margin:0 auto 12px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(#fff,#e7f3ff);border:1px solid #e7f3ff;box-shadow:0 8px 18px rgba(11,61,117,.08);font-size:38px}.step4 b{color:var(--c-forest);display:block;font-size:13px}.step4 p{font-size:11px;line-height:1.4;color:#65756c;margin:6px auto 0;max-width:130px}.step-no{position:absolute;top:-7px;left:calc(50% - 38px);width:26px;height:26px;border-radius:50%;display:grid;place-items:center;background:var(--c-blue);color:#fff;font-size:10px;font-weight:800}
.dashboard-preview h3{color:var(--c-forest);font:800 19px/1.2 Manrope;margin-bottom:16px}.dash-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:12px}.dash-balance{background:linear-gradient(145deg,var(--c-deep),#0e4f99);color:#fff;padding:20px;border-radius:14px;min-height:155px}.dash-balance span{font-size:10px}.dash-balance b{display:block;font:800 36px/1 Manrope;margin:8px 0}.dash-balance strong{font-size:22px}.dash-balance small{display:block;margin-top:10px;color:#e7f3ff}.dash-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}.dash-action{border:1px solid #dbe3ee;border-radius:11px;padding:15px;background:#fff}.dash-action b{display:block;color:var(--c-forest);font-size:12px}.dash-action span{font-size:10px;color:#64736b}
.journey{margin-top:14px;padding:16px 20px}.journey-title{font-weight:800;color:var(--c-forest);font-size:12px;margin-bottom:12px}.journey-strip{display:grid;grid-template-columns:repeat(8,1fr);gap:9px}.journey-step{display:flex;align-items:center;gap:8px}.journey-step i{width:30px;height:30px;flex:0 0 30px;border-radius:50%;display:grid;place-items:center;background:#e7f3ff;color:var(--c-forest);font-style:normal;font-weight:800}.journey-step:first-child i{background:var(--c-blue);color:#fff}.journey-step b{display:block;font-size:10px;color:var(--c-forest)}.journey-step small{display:block;font-size:9px;color:#7a877f}
.concept-lower{display:grid;grid-template-columns:.95fr .95fr 1.2fr .9fr;gap:14px;margin-top:14px}.mini-panel{padding:20px;min-height:190px}.mini-panel h4{margin:0 0 6px;font:800 16px/1.2 Manrope;color:var(--c-forest)}.mini-panel p,.mini-panel li{font-size:11px;color:#5d7065}.fake-input{height:36px;border:1px solid #d5ded6;border-radius:7px;margin:10px 0;background:#f7faff;padding:10px;font-size:10px;color:#87938d}.mini-button{height:36px;border-radius:7px;background:var(--c-blue);color:#fff;display:grid;place-items:center;font-size:11px;font-weight:800;margin-top:10px}.impact-list{display:grid;gap:14px;margin-top:14px}.impact-item{display:flex;align-items:center;gap:10px}.impact-item i{font-style:normal;font-size:22px}.impact-item b{display:block;color:var(--c-blue);font-size:13px}.impact-item small{font-size:10px;color:#718077}
.portal-main.rebank-app{width:min(1380px,calc(100% - 32px))!important;margin:18px auto 0!important}.portal-main .rb-flow-wrap{display:none!important}
@media(max-width:1050px){.concept-hero{grid-template-columns:1fr}.concept-visual{min-height:360px}.hero-benefits{right:18px}.concept-mid,.concept-lower{grid-template-columns:1fr 1fr}.journey-strip{grid-template-columns:repeat(4,1fr)}}
@media(max-width:700px){.concept-wrap,.portal-main.rebank-app{width:calc(100% - 20px)!important}.concept-hero-copy{padding:34px 24px}.concept-hero h1{font-size:42px;letter-spacing:-2px}.concept-actions{display:grid;grid-template-columns:1fr 1fr}.concept-visual{grid-template-columns:1fr;padding:30px 24px}.eco-bag{height:220px}.phone{height:290px;max-width:220px;margin:auto;width:100%}.hero-benefits{position:static;grid-template-columns:1fr 1fr;grid-column:1/-1}.hero-benefit{width:auto}.concept-mid,.concept-lower{grid-template-columns:1fr}.steps4{grid-template-columns:1fr 1fr}.journey-strip{display:flex;overflow-x:auto}.journey-step{min-width:120px}.dash-grid{grid-template-columns:1fr}.webuyany-branded .cis-brand-copy small{font-size:6.5px!important}}

/* ===== Graphic mockup fidelity pass ===== */
@media(min-width:1051px){
  .webuyany-branded .cis-header-inner{min-height:64px!important;width:min(1400px,calc(100% - 56px))!important}
  .webuyany-branded .cis-logo-mark{width:42px!important;height:42px!important;border-radius:11px!important;font-size:21px!important}
  .webuyany-branded .cis-brand-copy strong{font-size:19px!important}
  .webuyany-branded .header-action{min-height:38px!important;padding:0 17px!important;font-size:12px!important}
  .concept-wrap{width:min(1400px,calc(100% - 20px));margin:0 auto}
  .concept-card{border-radius:12px;box-shadow:0 6px 22px rgba(11,61,117,.055)}
  .concept-hero{
    min-height:322px;
    grid-template-columns:minmax(430px,1.04fr) minmax(390px,.90fr) minmax(250px,.52fr);
    align-items:stretch;
    border-top:0;
    border-radius:0;
    background:linear-gradient(100deg,#fff 0%,#f7faff 68%,#f7faff 100%);
  }
  .concept-hero-copy{padding:36px 34px 22px 44px;display:flex;flex-direction:column;justify-content:center}
  .concept-kicker{display:none}
  .concept-hero h1{margin:0 0 11px;font-size:45px;line-height:1.04;letter-spacing:-2.15px;max-width:560px}
  .concept-hero p{font-size:14px;line-height:1.55;max-width:560px;margin:0}
  .concept-actions{margin-top:16px;gap:10px}
  .concept-btn{min-height:41px;padding:0 18px;border-radius:7px;font-size:13px}
  .concept-trust{margin-top:17px;gap:15px;font-size:10px}
  .concept-trust span:before{width:16px;height:16px;margin-right:5px}
  .concept-visual{padding:22px 4px 8px 0;display:block;position:relative;min-width:0;overflow:visible}
  .concept-visual:before{content:'';position:absolute;width:330px;height:250px;border-radius:50%;left:43%;top:53%;transform:translate(-50%,-50%);background:radial-gradient(circle at center,rgba(24,119,242,.18),rgba(24,119,242,.04) 58%,transparent 59%);z-index:0}
  .concept-visual:after{content:'🍃';position:absolute;left:3%;bottom:10px;font-size:88px;opacity:.32;transform:rotate(-15deg);z-index:0}
  .eco-bag{position:absolute;width:245px;height:230px;left:6px;bottom:20px;border-radius:35% 35% 18px 18px;z-index:2;box-shadow:0 18px 34px rgba(71,67,46,.14)}
  .eco-bag:before{width:100px;height:75px;border-width:12px;top:-42px}
  .eco-bag:after{font-size:74px}
  .phone{position:absolute;width:170px;height:275px;right:10px;bottom:15px;border-width:6px;border-radius:25px;padding:10px;z-index:3;box-shadow:0 18px 38px rgba(7,35,70,.22)}
  .phone-screen{border-radius:15px;padding:16px 10px;background:linear-gradient(#0b3d75 0 18%,#f7faff 18%)}
  .phone-screen small{font-size:9px}.phone-screen b{font-size:31px;margin:5px 0}.phone-screen strong{font-size:19px}.phone-screen .spot{font-size:9px;margin-top:8px}.phone-screen .cashbtn{padding:9px 7px;font-size:10px;margin-top:10px}
  .hero-benefits{position:static;display:flex;flex-direction:column;justify-content:center;gap:13px;padding:24px 22px 20px 8px;min-width:0}
  .hero-benefit{width:auto;background:transparent;border:0;border-radius:0;padding:0;box-shadow:none;backdrop-filter:none;display:block}
  .hero-benefit strong{font-size:12px;line-height:1.2;display:flex;align-items:center;gap:8px}
  .hero-benefit strong i{width:31px;height:31px;border-radius:50%;display:grid;place-items:center;flex:0 0 31px;background:#e7f3ff;border:1px solid #378bf5;font-style:normal;font-size:15px}
  .hero-benefit span{font-size:11px;line-height:1.35;margin:2px 0 0 39px;max-width:170px}
  .concept-mid{gap:10px;margin-top:10px;grid-template-columns:1.03fr .97fr}
  .how-card,.dashboard-preview{padding:17px 20px}
  .section-title{font-size:12px}.steps4{gap:10px;margin-top:15px}.step-icon{width:64px;height:64px;font-size:28px;margin-bottom:7px}.step-no{width:21px;height:21px;top:-5px;left:calc(50% - 29px);font-size:8px}.step4 b{font-size:11px}.step4 p{font-size:9px;line-height:1.3;margin-top:4px}
  .dashboard-preview h3{font-size:15px;margin-bottom:10px}.dash-grid{gap:9px}.dash-balance{padding:14px;min-height:124px}.dash-balance b{font-size:28px;margin:5px 0}.dash-balance strong{font-size:18px}.dash-balance small{font-size:9px;margin-top:7px}.dash-actions{gap:7px}.dash-action{padding:10px}.dash-action b{font-size:10px}.dash-action span{font-size:8px}
  .journey{margin-top:10px;padding:10px 14px}.journey-title{font-size:10px;margin-bottom:8px}.journey-strip{gap:7px}.journey-step{gap:6px}.journey-step i{width:25px;height:25px;flex-basis:25px;font-size:10px}.journey-step b{font-size:9px}.journey-step small{font-size:7.5px}
  .concept-lower{gap:10px;margin-top:10px}.mini-panel{padding:13px 15px;min-height:132px}.mini-panel h4{font-size:13px}.mini-panel p,.mini-panel li{font-size:9px}.fake-input{height:29px;margin:6px 0;padding:7px;font-size:8px}.mini-button{height:29px;margin-top:6px;font-size:9px}.impact-list{gap:8px;margin-top:8px}.impact-item i{font-size:17px}.impact-item b{font-size:10px}.impact-item small{font-size:8px}
}

@media(max-width:1050px){
  .concept-hero{grid-template-columns:1fr 1fr}
  .hero-benefits{grid-column:1/-1;position:static;display:grid;grid-template-columns:repeat(4,1fr);padding:12px 20px 20px}
  .hero-benefit{width:auto}
}
@media(max-width:700px){
  .hero-benefits{grid-template-columns:1fr 1fr;padding:0 24px 26px}
}

/* ===== Banner phone refinement ===== */
.phone{
  background:#072346!important;
  border:5px solid #072346!important;
  border-radius:30px!important;
  padding:5px!important;
  overflow:hidden!important;
  box-shadow:0 22px 48px rgba(7,35,70,.28),0 0 0 1px rgba(255,255,255,.15) inset!important;
}
.phone-screen{
  position:relative!important;
  height:100%!important;
  display:block!important;
  padding:0!important;
  overflow:hidden!important;
  border-radius:24px!important;
  background:#f7faff!important;
  text-align:left!important;
}
.phone-screen:before{
  content:'';
  position:absolute;
  top:4px;
  left:50%;
  transform:translateX(-50%);
  width:54px;
  height:12px;
  border-radius:0 0 10px 10px;
  background:#072346;
  z-index:5;
}
.phone-status{
  height:24px;
  padding:7px 11px 0;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  background:#0b3d75;
  color:#fff;
  font-size:6px;
  font-weight:800;
  letter-spacing:.2px;
}
.phone-appbar{
  height:39px;
  padding:5px 10px 9px;
  display:grid;
  grid-template-columns:20px 1fr 20px;
  align-items:center;
  background:#0b3d75;
  color:#fff;
}
.phone-appbar b{margin:0!important;font:800 9px/1.2 Manrope,sans-serif!important;color:#fff!important;text-align:center!important}
.phone-back,.phone-menu{font-size:15px;line-height:1;text-align:center;opacity:.95}.phone-menu{font-size:8px;letter-spacing:-1px}
.phone-wallet-card{
  margin:10px 9px 0;
  min-height:180px;
  padding:13px 12px 11px;
  border:1px solid #e7f3ff;
  border-radius:10px;
  background:#fff;
  box-shadow:0 7px 18px rgba(11,61,117,.08);
  text-align:center;
}
.phone-wallet-card small{display:block!important;font-size:6.5px!important;line-height:1.2!important;color:#52675c!important;font-weight:900!important;letter-spacing:.25px}
.phone-balance{margin:5px 0 0;font:900 28px/1 Manrope,sans-serif;color:#0b3d75;letter-spacing:-1px}
.phone-credit-label{margin-top:3px;font:800 9px/1.2 Manrope,sans-serif;color:#0b3d75}
.phone-divider{height:1px;background:#e1e7f0;margin:9px 0 8px}
.phone-est-label{display:block;font-size:6.5px;color:#64766c;margin-bottom:2px}
.phone-wallet-card strong{display:block!important;font:900 18px/1.15 Manrope,sans-serif!important;color:#0b3d75!important;margin:0!important}
.phone-wallet-card .spot{display:block!important;font-size:6.2px!important;color:#6b7d73!important;margin:6px 0 0!important}
.phone-wallet-card .cashbtn{margin:9px 0 0!important;padding:8px 5px!important;border-radius:7px!important;background:linear-gradient(135deg,#1877f2,#0e4f99)!important;color:#fff!important;text-align:center!important;font-size:7.5px!important;font-weight:900!important;box-shadow:0 5px 10px rgba(14,79,153,.18)}
.phone-homebar{position:absolute;left:50%;bottom:5px;transform:translateX(-50%);width:50px;height:3px;border-radius:3px;background:#072346;opacity:.75}
@media(min-width:1051px){
  .phone{width:178px!important;height:286px!important;right:6px!important;bottom:11px!important;z-index:4!important}
  .eco-bag{left:0!important;width:240px!important;height:225px!important;bottom:18px!important}
}
@media(max-width:1050px) and (min-width:701px){
  .concept-visual{min-height:360px!important}
  .phone{width:178px!important;height:286px!important;right:24px!important;bottom:24px!important}
}
@media(max-width:700px){
  .phone{position:relative!important;right:auto!important;bottom:auto!important;width:180px!important;height:286px!important;margin:0 auto!important}
  .phone-wallet-card{min-height:182px!important}
}

/* ===== final-polish.css ===== */
:root{
  --fx-forest:#0b3d75;
  --fx-deep:#072346;
  --fx-blue:#0e4f99;
  --fx-leaf:#1877f2;
  --fx-cream:#f7faff;
  --fx-surface:#ffffff;
  --fx-text:#0b3d75;
  --fx-muted:#60746a;
  --fx-border:#dae2ed;
}
html{scroll-behavior:smooth}
body.webuyany-branded{background:linear-gradient(180deg,#f7faff 0,#f7faff 100%)!important;color:var(--fx-text)!important;font-family:'DM Sans',Arial,sans-serif!important}
body.webuyany-branded *{box-sizing:border-box}
body.webuyany-branded h1,body.webuyany-branded h2,body.webuyany-branded h3,body.webuyany-branded h4,body.webuyany-branded h5{color:var(--fx-forest)}
body.webuyany-branded p,body.webuyany-branded li,body.webuyany-branded small{color:var(--fx-muted)}

/* Header */
.webuyany-branded .cis-header{position:sticky!important;top:0!important;z-index:1000!important;background:rgba(255,255,255,.96)!important;backdrop-filter:blur(12px);border-top:4px solid var(--fx-forest)!important;border-bottom:1px solid var(--fx-border)!important;box-shadow:0 8px 24px rgba(11,61,117,.06)!important}
.webuyany-branded .cis-header-inner{width:min(1380px,calc(100% - 48px))!important;min-height:76px!important;padding:0!important;gap:24px!important}
.webuyany-branded .cis-brand{gap:12px!important;min-width:0}
.webuyany-branded .cis-logo-mark{width:44px!important;height:44px!important;border-radius:13px!important;background:linear-gradient(145deg,var(--fx-blue),var(--fx-leaf))!important;box-shadow:0 8px 20px rgba(14,79,153,.18)!important}
.webuyany-branded .cis-brand-copy strong{font:800 20px/1 Manrope,sans-serif!important;letter-spacing:-.6px!important;color:var(--fx-forest)!important}
.webuyany-branded .cis-brand-copy small{margin-top:5px!important;font-size:9px!important;line-height:1.1!important;letter-spacing:1.6px!important;color:#688073!important}
.webuyany-branded .we-buy-menu>a,.webuyany-branded .we-buy-trigger{min-height:46px!important;padding:0 24px!important;border-radius:11px!important;font-size:13px!important;font-weight:800!important;background:linear-gradient(135deg,#0e4f99,#0b3d75)!important;color:#fff!important;box-shadow:0 8px 20px rgba(11,61,117,.16)!important}

/* Main marketing shell */
.concept-wrap{width:min(1380px,calc(100% - 48px))!important;margin:18px auto 0!important;padding:0!important}
.concept-card{border:1px solid var(--fx-border)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 10px 30px rgba(11,61,117,.055)!important}

/* Hero */
.concept-hero{min-height:392px!important;grid-template-columns:minmax(0,1.05fr) minmax(360px,.82fr) minmax(220px,.42fr)!important;background:linear-gradient(108deg,#fff 0%,#f7faff 60%,#e7f3ff 100%)!important;overflow:hidden!important}
.concept-hero-copy{padding:46px 42px 38px 46px!important;justify-content:center!important}
.concept-kicker{display:block!important;margin-bottom:13px!important;font-size:10px!important;letter-spacing:1.7px!important;color:var(--fx-blue)!important}
.concept-hero h1{max-width:620px!important;margin:0 0 18px!important;font:800 clamp(44px,4.3vw,64px)/1.02 Manrope,sans-serif!important;letter-spacing:-2.7px!important;color:var(--fx-forest)!important}
.concept-hero h1 em{color:var(--fx-blue)!important}
.concept-hero p{max-width:650px!important;margin:0!important;font-size:16px!important;line-height:1.65!important;color:#314867!important}
.concept-actions{margin-top:24px!important;gap:12px!important}
.concept-btn{min-height:48px!important;padding:0 22px!important;border-radius:10px!important;font-size:13px!important}
.concept-trust{margin-top:24px!important;gap:14px 18px!important;font-size:11px!important;color:#0e4f99!important}
.concept-visual{padding:28px 6px 20px 0!important;min-height:392px!important}
.eco-bag{width:245px!important;height:235px!important;left:0!important;bottom:36px!important}
.phone{width:184px!important;height:296px!important;right:2px!important;bottom:28px!important}
.hero-benefits{padding:34px 18px 30px 10px!important;gap:18px!important}
.hero-benefit strong{font-size:12px!important;color:var(--fx-forest)!important}
.hero-benefit span{font-size:11px!important;line-height:1.45!important;color:#5f7167!important}

/* Middle */
.concept-mid{grid-template-columns:1.03fr .97fr!important;gap:18px!important;margin-top:18px!important}
.how-card,.dashboard-preview{padding:26px 28px!important}
.section-title{margin-bottom:4px!important;font-size:13px!important;letter-spacing:.2px!important;color:var(--fx-forest)!important}
.steps4{gap:18px!important;margin-top:24px!important}
.step-icon{width:78px!important;height:78px!important;margin-bottom:11px!important;font-size:32px!important}
.step-no{width:24px!important;height:24px!important;top:-6px!important;left:calc(50% - 34px)!important;font-size:9px!important}
.step4 b{font-size:12px!important;color:var(--fx-forest)!important}
.step4 p{max-width:145px!important;margin-top:6px!important;font-size:10.5px!important;line-height:1.45!important;color:#697b71!important}
.dashboard-preview h3{margin:0 0 16px!important;font-size:18px!important}
.dash-grid{gap:12px!important}
.dash-balance{min-height:148px!important;padding:18px!important;border-radius:14px!important}
.dash-balance span{color:#e7f3ff!important;font-size:9px!important}.dash-balance b{font-size:34px!important}.dash-balance strong{font-size:20px!important}.dash-balance small{font-size:9px!important;color:#e7f3ff!important}
.dash-actions{gap:10px!important}.dash-action{padding:14px!important}.dash-action b{font-size:11px!important}.dash-action span{font-size:9px!important;line-height:1.4!important;color:#6b7c72!important}

/* Journey */
.journey{margin-top:18px!important;padding:16px 18px!important}
.journey-title{margin-bottom:12px!important;font-size:11px!important;letter-spacing:.4px!important}
.journey-strip{gap:12px!important}
.journey-step{gap:8px!important;min-width:0}
.journey-step i{width:30px!important;height:30px!important;flex-basis:30px!important;font-size:10px!important}
.journey-step b{font-size:9.5px!important;color:var(--fx-forest)!important}.journey-step small{font-size:8px!important;line-height:1.35!important;color:#7a8a81!important}

/* Lower cards */
.concept-lower{grid-template-columns:.95fr .95fr 1.2fr .9fr!important;gap:18px!important;margin-top:18px!important}
.mini-panel{min-height:176px!important;padding:20px 22px!important}
.mini-panel h4{margin-bottom:8px!important;font-size:15px!important}
.mini-panel p,.mini-panel li{font-size:10.5px!important;line-height:1.55!important;color:#60746a!important}
.fake-input{height:36px!important;margin:9px 0!important;padding:9px 10px!important;font-size:9px!important;color:#708078!important;background:#f7faff!important}
.mini-button{height:36px!important;margin-top:9px!important;font-size:10px!important}
.impact-list{gap:12px!important;margin-top:12px!important}.impact-item b{font-size:12px!important}.impact-item small{font-size:9px!important;color:#718077!important}

/* Footer */
.premium-lfz-footer{margin-top:26px!important}
.premium-footer-shell{width:min(1380px,calc(100% - 48px))!important}
.premium-footer-main{grid-template-columns:1.45fr .7fr .8fr 1fr!important;gap:38px!important;padding:42px 0 34px!important}
.premium-footer-brand p{margin-top:15px!important;font-size:13px!important;line-height:1.65!important}
.premium-footer-block,.premium-footer-cta{gap:8px!important}.premium-footer-block a,.premium-footer-block>span:not(.premium-footer-kicker){font-size:12px!important;line-height:1.45!important}
.premium-footer-bottom{min-height:58px!important;padding:10px 0!important}

/* Subscribe/full app page */
body.webuyany-branded .portal-main.rebank-app{width:min(1320px,calc(100% - 48px))!important;margin:20px auto 0!important;padding:0!important}
body.webuyany-branded .portal-section,body.webuyany-branded .rb-auth-wrap,body.webuyany-branded .rb-panel,body.webuyany-branded .rb-card{border-color:var(--fx-border)!important;box-shadow:0 10px 28px rgba(11,61,117,.05)!important}
body.webuyany-branded .rb-auth-wrap{margin-top:0!important}
body.webuyany-branded .rb-auth-side{background:linear-gradient(145deg,#0b3d75,#0e4f99)!important}
body.webuyany-branded .rb-auth-side h2,body.webuyany-branded .rb-auth-side h3,body.webuyany-branded .rb-auth-side p,body.webuyany-branded .rb-auth-side span,body.webuyany-branded .rb-auth-side li{color:#fff!important}
body.webuyany-branded .rb-tab,body.webuyany-branded .rb-auth-card h2,body.webuyany-branded .rb-auth-card h3{color:var(--fx-forest)!important}
body.webuyany-branded input,body.webuyany-branded select,body.webuyany-branded textarea{color:#0b3d75!important;background:#fff!important;border-color:#c8d4e4!important}
body.webuyany-branded input::placeholder,body.webuyany-branded textarea::placeholder{color:#8b9991!important}
body.webuyany-branded label{color:#0b3d75!important}

@media(max-width:1100px){
  .concept-wrap,.webuyany-branded .cis-header-inner,.premium-footer-shell,body.webuyany-branded .portal-main.rebank-app{width:calc(100% - 32px)!important}
  .concept-hero{grid-template-columns:1fr 1fr!important}
  .hero-benefits{grid-column:1/-1!important;grid-template-columns:repeat(4,1fr)!important;padding:20px 26px 24px!important}
  .concept-mid,.concept-lower{grid-template-columns:1fr 1fr!important}
  .premium-footer-main{grid-template-columns:1.3fr 1fr!important}
}
@media(max-width:720px){
  .webuyany-branded .cis-header-inner,.concept-wrap,.premium-footer-shell,body.webuyany-branded .portal-main.rebank-app{width:calc(100% - 20px)!important}
  .webuyany-branded .cis-header-inner{min-height:68px!important}
  .webuyany-branded .cis-brand-copy strong{font-size:17px!important}.webuyany-branded .cis-brand-copy small{font-size:7px!important;letter-spacing:1.1px!important}
  .webuyany-branded .cis-logo-mark{width:40px!important;height:40px!important}.webuyany-branded .we-buy-menu>a,.webuyany-branded .we-buy-trigger{min-height:42px!important;padding:0 16px!important;font-size:12px!important}
  .concept-wrap{margin-top:10px!important}.concept-card{border-radius:14px!important}
  .concept-hero{grid-template-columns:1fr!important;min-height:auto!important}
  .concept-hero-copy{padding:32px 22px 26px!important}.concept-kicker{font-size:9px!important}.concept-hero h1{font-size:40px!important;letter-spacing:-1.8px!important}.concept-hero p{font-size:14px!important;line-height:1.6!important}
  .concept-actions{display:grid!important;grid-template-columns:1fr!important}.concept-btn{width:100%!important}
  .concept-trust{gap:10px 12px!important}
  .concept-visual{min-height:340px!important;padding:24px 16px!important;display:grid!important;grid-template-columns:1fr 1fr!important;align-items:end!important;gap:12px!important}
  .eco-bag{position:relative!important;left:auto!important;bottom:auto!important;width:100%!important;max-width:220px!important;height:200px!important;margin:auto!important}
  .phone{position:relative!important;right:auto!important;bottom:auto!important;width:170px!important;height:280px!important;margin:auto!important}
  .hero-benefits{grid-column:1/-1!important;grid-template-columns:1fr 1fr!important;padding:6px 0 0!important;gap:10px!important}.hero-benefit{padding:12px!important;border:1px solid var(--fx-border)!important;border-radius:12px!important;background:#fff!important}.hero-benefit span{margin-left:0!important}
  .concept-mid,.concept-lower{grid-template-columns:1fr!important;gap:10px!important;margin-top:10px!important}.how-card,.dashboard-preview,.mini-panel{padding:20px!important}.steps4{grid-template-columns:1fr 1fr!important;gap:20px 12px!important}.journey{margin-top:10px!important}.journey-strip{display:flex!important;overflow-x:auto!important;padding-bottom:4px!important}.journey-step{min-width:120px!important}.premium-lfz-footer{margin-top:18px!important}.premium-footer-main{grid-template-columns:1fr!important;gap:26px!important;padding:34px 0 26px!important}
}
@media(max-width:460px){
  .concept-hero h1{font-size:35px!important}.concept-visual{grid-template-columns:1fr!important}.eco-bag{height:185px!important}.hero-benefits{grid-template-columns:1fr!important}.steps4{grid-template-columns:1fr 1fr!important}.dash-grid{grid-template-columns:1fr!important}.premium-footer-bottom{align-items:flex-start!important}
}

/* ===== design-system-v4.css ===== */
/* WEBUYANY LFZ — unified UI/UX design system v4 */
:root{
  --ui-forest:#0b3d75;
  --ui-forest-2:#0b3d75;
  --ui-blue:#0e4f99;
  --ui-leaf:#1877f2;
  --ui-cream:#f7faff;
  --ui-soft:#e7f3ff;
  --ui-white:#ffffff;
  --ui-ink:#0b3d75;
  --ui-copy:#354e6e;
  --ui-muted:#6e8077;
  --ui-line:#e7f3ff;
  --ui-gold:#6faef7;
  --ui-shadow:0 14px 38px rgba(11,61,117,.08);
  --ui-shadow-sm:0 7px 22px rgba(11,61,117,.06);
  --ui-radius:20px;
  --ui-radius-sm:14px;
}
html{scroll-padding-top:86px}
body.webuyany-branded{margin:0!important;background:linear-gradient(180deg,#f7faff 0%,#f7faff 100%)!important;color:var(--ui-ink)!important;font-family:'DM Sans',Arial,sans-serif!important;line-height:1.55!important}
body.webuyany-branded h1,body.webuyany-branded h2,body.webuyany-branded h3,body.webuyany-branded h4,body.webuyany-branded h5,body.webuyany-branded h6{margin-top:0;color:var(--ui-forest)!important;font-family:'Manrope','DM Sans',Arial,sans-serif!important;letter-spacing:-.02em}
body.webuyany-branded p,body.webuyany-branded li,body.webuyany-branded label,body.webuyany-branded td,body.webuyany-branded th{color:var(--ui-copy)!important}
body.webuyany-branded a{text-decoration:none}

/* Header */
.webuyany-branded .cis-header{position:sticky!important;top:0!important;z-index:1000!important;background:rgba(255,255,255,.97)!important;border-top:4px solid var(--ui-forest)!important;border-bottom:1px solid var(--ui-line)!important;box-shadow:0 4px 18px rgba(11,61,117,.045)!important;backdrop-filter:blur(14px)}
.webuyany-branded .cis-header-inner{width:min(1360px,calc(100% - 48px))!important;min-height:74px!important;margin:auto!important;padding:0!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:24px!important}
.webuyany-branded .cis-brand{display:flex!important;align-items:center!important;gap:12px!important}
.webuyany-branded .cis-logo-mark{width:44px!important;height:44px!important;border-radius:13px!important;display:grid!important;place-items:center!important;background:linear-gradient(145deg,var(--ui-blue),var(--ui-leaf))!important;color:#fff!important;box-shadow:0 8px 18px rgba(14,79,153,.18)!important}
.webuyany-branded .cis-brand-copy strong{font-size:20px!important;line-height:1!important;color:var(--ui-forest)!important;font-weight:800!important}.webuyany-branded .cis-brand-copy strong b{color:var(--ui-blue)!important}
.webuyany-branded .cis-brand-copy small{display:block!important;margin-top:5px!important;font-size:8px!important;letter-spacing:1.65px!important;color:#708078!important;font-weight:700!important}
.webuyany-branded .header-buy-trigger{min-height:46px!important;padding:0 22px!important;border:0!important;border-radius:12px!important;background:linear-gradient(135deg,var(--ui-blue),#0b3d75)!important;color:#fff!important;font-weight:800!important;font-size:13px!important;box-shadow:0 8px 18px rgba(11,61,117,.16)!important;display:flex!important;align-items:center!important;gap:8px!important}
.webuyany-branded .header-buy-dropdown{min-width:260px!important;right:0!important;top:calc(100% + 10px)!important;border:1px solid var(--ui-line)!important;border-radius:14px!important;background:#fff!important;box-shadow:var(--ui-shadow)!important;padding:8px!important}
.webuyany-branded .header-buy-dropdown a{display:flex!important;gap:11px!important;align-items:center!important;padding:11px!important;border-radius:10px!important;color:var(--ui-ink)!important}.webuyany-branded .header-buy-dropdown a:hover{background:var(--ui-soft)!important}
.webuyany-branded .header-buy-dropdown strong{font-size:13px!important;color:var(--ui-forest)!important}.webuyany-branded .header-buy-dropdown small{display:block!important;font-size:11px!important;color:var(--ui-muted)!important}

/* Home marketing layout */
.home-clean .concept-wrap{width:min(1360px,calc(100% - 48px))!important;margin:24px auto 0!important;padding:0!important}
.home-clean .concept-card{border:1px solid var(--ui-line)!important;border-radius:var(--ui-radius)!important;background:#fff!important;box-shadow:var(--ui-shadow-sm)!important}
.home-clean .concept-hero{min-height:430px!important;display:grid!important;grid-template-columns:minmax(0,1.08fr) minmax(390px,.82fr) minmax(240px,.42fr)!important;overflow:hidden!important;background:linear-gradient(108deg,#fff 0%,#f7faff 60%,#e7f3ff 100%)!important}
.home-clean .concept-hero-copy{padding:52px 42px 44px 52px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;min-width:0}
.home-clean .concept-kicker{display:block!important;margin-bottom:14px!important;font-size:11px!important;letter-spacing:1.7px!important;text-transform:uppercase!important;color:var(--ui-blue)!important;font-weight:800!important}
.home-clean .concept-hero h1{margin:0 0 18px!important;max-width:630px!important;font-size:clamp(46px,4.4vw,68px)!important;line-height:1.02!important;color:var(--ui-forest)!important;letter-spacing:-3px!important}.home-clean .concept-hero h1 em{color:var(--ui-blue)!important}
.home-clean .concept-hero p{margin:0!important;max-width:650px!important;font-size:16px!important;line-height:1.65!important;color:#334b6b!important}
.home-clean .concept-actions{margin-top:26px!important}.home-clean .concept-btn{min-height:50px!important;padding:0 25px!important;border-radius:11px!important;background:linear-gradient(135deg,var(--ui-blue),#0e4f99)!important;color:#fff!important;font-size:13px!important;font-weight:800!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;box-shadow:0 9px 20px rgba(14,79,153,.18)!important}
.home-clean .concept-trust{display:flex!important;flex-wrap:wrap!important;gap:10px 20px!important;margin-top:25px!important;font-size:11px!important;color:#0e4f99!important;font-weight:700!important}.home-clean .concept-trust span:before{content:'✓';display:inline-grid;place-items:center;width:18px;height:18px;margin-right:6px;border-radius:50%;background:#e7f3ff;color:var(--ui-blue);font-size:10px}
.home-clean .concept-visual{position:relative!important;min-height:430px!important;overflow:visible!important;background:radial-gradient(circle at 45% 55%,rgba(24,119,242,.17),transparent 56%)!important}
.home-clean .eco-bag{width:248px!important;height:235px!important;left:0!important;bottom:42px!important;background:#cbe2ff!important;box-shadow:0 18px 38px rgba(14,79,153,.14)!important}.home-clean .phone{width:188px!important;height:314px!important;right:4px!important;bottom:28px!important;z-index:5!important}
.home-clean .hero-benefits{padding:44px 22px 36px 10px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;gap:20px!important}
.home-clean .hero-benefit{padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important}.home-clean .hero-benefit strong{display:flex!important;align-items:center!important;gap:9px!important;font-size:12px!important;color:var(--ui-forest)!important}.home-clean .hero-benefit strong i{width:34px!important;height:34px!important;border-radius:50%!important;display:grid!important;place-items:center!important;background:#e7f3ff!important;border:1px solid #6faef7!important;font-style:normal!important}.home-clean .hero-benefit span{display:block!important;margin:4px 0 0 43px!important;font-size:11px!important;line-height:1.45!important;color:#63756b!important}
.home-clean .concept-mid{display:grid!important;grid-template-columns:1.02fr .98fr!important;gap:20px!important;margin-top:20px!important}.home-clean .how-card,.home-clean .dashboard-preview{padding:28px!important}
.home-clean .section-title{font-size:13px!important;font-weight:800!important;color:var(--ui-forest)!important}.home-clean .steps4{display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:18px!important;margin-top:24px!important}.home-clean .step4{text-align:center!important}.home-clean .step-icon{width:76px!important;height:76px!important;margin:0 auto 12px!important}.home-clean .step4 b{font-size:12px!important;color:var(--ui-forest)!important}.home-clean .step4 p{margin:6px auto 0!important;max-width:150px!important;font-size:11px!important;line-height:1.45!important;color:var(--ui-muted)!important}
.home-clean .dashboard-preview h3{margin-bottom:16px!important;font-size:18px!important}.home-clean .dash-grid{display:grid!important;grid-template-columns:1fr 1.05fr!important;gap:12px!important}.home-clean .dash-balance{padding:20px!important;border-radius:15px!important;background:linear-gradient(145deg,var(--ui-forest),#0e4f99)!important;color:#fff!important}.home-clean .dash-balance span,.home-clean .dash-balance small{color:#e7f3ff!important}.home-clean .dash-balance b{font-size:34px!important;color:#fff!important}.home-clean .dash-balance strong{font-size:22px!important;color:#fff!important}.home-clean .dash-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important}.home-clean .dash-action{padding:14px!important;border:1px solid var(--ui-line)!important;border-radius:12px!important;background:#f7faff!important}.home-clean .dash-action b{display:block!important;font-size:11px!important;color:var(--ui-forest)!important}.home-clean .dash-action span{display:block!important;margin-top:4px!important;font-size:9px!important;color:var(--ui-muted)!important}
.home-clean .journey{margin-top:20px!important;padding:20px!important}.home-clean .journey-title{margin-bottom:14px!important;font-size:11px!important;font-weight:800!important;color:var(--ui-forest)!important}.home-clean .journey-strip{display:grid!important;grid-template-columns:repeat(8,1fr)!important;gap:8px!important}.home-clean .journey-step{min-width:0!important;display:flex!important;gap:8px!important;align-items:center!important}.home-clean .journey-step i{width:30px!important;height:30px!important;flex:0 0 30px!important}.home-clean .journey-step b{display:block!important;font-size:10px!important;color:var(--ui-forest)!important}.home-clean .journey-step small{display:block!important;font-size:8px!important;line-height:1.3!important;color:var(--ui-muted)!important}
.home-clean .concept-lower{display:grid!important;grid-template-columns:1fr 1fr!important;gap:20px!important;margin-top:20px!important}.home-clean .mini-panel{min-height:180px!important;padding:24px!important}.home-clean .mini-panel h4{font-size:16px!important}.home-clean .mini-panel p,.home-clean .mini-panel li{font-size:11px!important;line-height:1.55!important;color:var(--ui-copy)!important}

/* Dedicated ReBank / Subscribe page */
.subscribe-page .subscribe-intro{width:min(1320px,calc(100% - 48px));margin:24px auto 0;padding:25px 28px;border:1px solid var(--ui-line);border-radius:18px;background:linear-gradient(115deg,#fff 0%,#f7faff 100%);box-shadow:var(--ui-shadow-sm);display:flex;align-items:center;justify-content:space-between;gap:24px}
.subscribe-page .subscribe-intro h1{margin:0 0 6px!important;font-size:30px!important;letter-spacing:-1px!important}.subscribe-page .subscribe-intro p{margin:0!important;font-size:13px!important}.subscribe-page .subscribe-intro-badges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.subscribe-page .subscribe-intro-badges span{padding:8px 11px;border:1px solid #cbe2ff;border-radius:999px;background:#fff;color:var(--ui-forest);font-size:10px;font-weight:800}
.subscribe-page .portal-main.rebank-app{width:min(1320px,calc(100% - 48px))!important;margin:18px auto 0!important;padding:0!important}
.subscribe-page .portal-hero{display:none!important}
.subscribe-page .rb-flow-wrap{display:block!important;width:100%!important;max-width:none!important;margin:0 0 18px!important;padding:14px!important;border:1px solid var(--ui-line)!important;border-radius:16px!important;background:#fff!important;box-shadow:var(--ui-shadow-sm)!important;overflow:hidden}
.subscribe-page .rb-flow-strip{display:grid!important;grid-template-columns:repeat(8,1fr)!important;gap:8px!important;overflow:visible!important}.subscribe-page .rb-flow-step{min-width:0!important;min-height:58px!important;padding:8px!important;border:1px solid #dce4ee!important;border-radius:11px!important;background:#f7faff!important;color:var(--ui-copy)!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:7px!important}.subscribe-page .rb-flow-step.active{background:var(--ui-forest)!important;border-color:var(--ui-forest)!important;color:#fff!important}.subscribe-page .rb-flow-step b{width:24px!important;height:24px!important;display:grid!important;place-items:center!important;border-radius:50%!important;background:#e7f3ff!important;color:var(--ui-blue)!important;font-size:10px!important}.subscribe-page .rb-flow-step.active b{background:#1877f2!important;color:#fff!important}.subscribe-page .rb-flow-step small{color:inherit!important;font-size:9px!important;font-weight:700!important}.subscribe-page .rb-flow-step.admin-step{display:none!important}.subscribe-page .rb-flow-help{margin:10px 2px 0!important;font-size:10px!important;color:var(--ui-muted)!important;text-align:center!important}
.subscribe-page .portal-section{width:100%!important;max-width:none!important;margin:0 0 18px!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important}
.subscribe-page .portal-card{border:1px solid var(--ui-line)!important;border-radius:18px!important;background:#fff!important;box-shadow:var(--ui-shadow-sm)!important;color:var(--ui-ink)!important}
.subscribe-page .auth-layout{display:grid!important;grid-template-columns:minmax(320px,.8fr) minmax(460px,1.2fr)!important;gap:18px!important;align-items:stretch!important}.subscribe-page .auth-copy,.subscribe-page .auth-card{padding:34px!important}.subscribe-page .auth-copy{background:linear-gradient(145deg,#0b3d75,#0e4f99)!important}.subscribe-page .auth-copy h2,.subscribe-page .auth-copy h3,.subscribe-page .auth-copy li,.subscribe-page .auth-copy p,.subscribe-page .auth-copy span{color:#fff!important}.subscribe-page .auth-copy .portal-kicker{color:#6faef7!important}.subscribe-page .auth-copy ol{margin:22px 0 0!important;padding-left:22px!important}.subscribe-page .auth-copy li{padding:9px 0!important;border-bottom:1px solid rgba(255,255,255,.16)!important}.subscribe-page .auth-price{margin-top:22px!important;padding:18px!important;border:1px solid rgba(255,255,255,.18)!important;border-radius:14px!important;background:rgba(255,255,255,.08)!important}.subscribe-page .auth-price strong{color:#fff!important}
.subscribe-page .auth-choice{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;margin-bottom:20px!important}.subscribe-page .auth-choice button{min-height:70px!important;padding:12px 14px!important;border:1px solid var(--ui-line)!important;border-radius:13px!important;background:#f7faff!important;color:var(--ui-ink)!important}.subscribe-page .auth-choice button.active{background:#e7f3ff!important;border-color:#6faef7!important;color:var(--ui-forest)!important}.subscribe-page .auth-choice strong{color:inherit!important}.subscribe-page .auth-choice small{color:var(--ui-muted)!important}
.subscribe-page .portal-form h2{margin-bottom:18px!important;font-size:26px!important}.subscribe-page .portal-form label{display:block!important;margin-bottom:14px!important;font-size:12px!important;font-weight:700!important;color:var(--ui-ink)!important}.subscribe-page input,.subscribe-page select,.subscribe-page textarea{width:100%!important;min-height:48px!important;margin-top:7px!important;padding:11px 13px!important;border:1px solid #c5d2e3!important;border-radius:11px!important;background:#fff!important;color:var(--ui-ink)!important;outline:0!important;box-shadow:none!important}.subscribe-page input:focus,.subscribe-page select:focus,.subscribe-page textarea:focus{border-color:#378bf5!important;box-shadow:0 0 0 3px rgba(14,79,153,.10)!important}.subscribe-page .portal-btn{min-height:46px!important;padding:0 18px!important;border-radius:11px!important;border:1px solid var(--ui-blue)!important;background:linear-gradient(135deg,var(--ui-blue),#0e4f99)!important;color:#fff!important;font-size:12px!important;font-weight:800!important;box-shadow:none!important}.subscribe-page .portal-btn.secondary,.subscribe-page .portal-btn.outline{background:#fff!important;color:var(--ui-forest)!important;border-color:#afc1d8!important}.subscribe-page .portal-btn:hover{transform:translateY(-1px)}
.subscribe-page .dashboard-head{margin-bottom:16px!important;padding:22px 24px!important;border:1px solid var(--ui-line)!important;border-radius:16px!important;background:#fff!important;box-shadow:var(--ui-shadow-sm)!important}.subscribe-page .dashboard-head h2{margin-bottom:5px!important;font-size:26px!important}.subscribe-page .dashboard-head p{margin:0!important;font-size:12px!important}.subscribe-page .metric-grid{display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:12px!important;margin-bottom:16px!important}.subscribe-page .metric-grid article{padding:20px!important;border:1px solid var(--ui-line)!important;border-radius:15px!important;background:#fff!important;box-shadow:var(--ui-shadow-sm)!important}.subscribe-page .metric-grid article span,.subscribe-page .metric-grid article small{color:var(--ui-muted)!important}.subscribe-page .metric-grid article strong{display:block!important;margin:5px 0!important;font-size:26px!important;color:var(--ui-forest)!important}.subscribe-page .dashboard-grid{gap:14px!important}.subscribe-page .dashboard-grid>.portal-card,.subscribe-page .redemption-layout>.portal-card,.subscribe-page .checkout-layout>.portal-card{padding:24px!important}
.subscribe-page .redemption-layout,.subscribe-page .checkout-layout{gap:16px!important}.subscribe-page .rb-item-grid{gap:10px!important}.subscribe-page .rb-item{border:1px solid var(--ui-line)!important;border-radius:13px!important;background:#f7faff!important;color:var(--ui-ink)!important}.subscribe-page .rb-item.active{border-color:#378bf5!important;background:#e7f3ff!important}.subscribe-page .rb-item strong{color:var(--ui-forest)!important}.subscribe-page .rb-calc>div,.subscribe-page .summary-row{border-color:#e1e7f0!important}.subscribe-page .table-wrap{border:1px solid var(--ui-line)!important;border-radius:12px!important;overflow:auto!important}.subscribe-page table{width:100%!important}.subscribe-page thead th{background:#f7faff!important;color:var(--ui-forest)!important;font-size:10px!important;white-space:nowrap!important}.subscribe-page tbody td{font-size:10px!important;white-space:nowrap!important}.subscribe-page th,.subscribe-page td{padding:11px 12px!important;border-bottom:1px solid #e3eaf2!important}
.subscribe-page .portal-kicker{color:var(--ui-blue)!important;font-size:10px!important;letter-spacing:1.2px!important;font-weight:800!important}.subscribe-page .card-intro,.subscribe-page .form-note,.subscribe-page .privacy-note{color:var(--ui-muted)!important;font-size:11px!important;line-height:1.55!important}

/* Footer */
.webuyany-branded .premium-lfz-footer{margin-top:30px!important;background:linear-gradient(135deg,#072346,#0b3d75)!important}.webuyany-branded .premium-footer-shell{width:min(1360px,calc(100% - 48px))!important}.webuyany-branded .premium-footer-main{display:grid!important;grid-template-columns:1.45fr .75fr .8fr 1fr!important;gap:34px!important;padding:40px 0 32px!important}.webuyany-branded .premium-footer-brand p,.webuyany-branded .premium-footer-block a,.webuyany-branded .premium-footer-block>span:not(.premium-footer-kicker),.webuyany-branded .premium-footer-cta strong{color:#cbe2ff!important}.webuyany-branded .premium-footer-kicker{color:#6faef7!important}.webuyany-branded .premium-footer-bottom{min-height:56px!important;color:#cbe2ff!important;border-top:1px solid rgba(255,255,255,.13)!important}

@media(max-width:1100px){
  .webuyany-branded .cis-header-inner,.home-clean .concept-wrap,.subscribe-page .subscribe-intro,.subscribe-page .portal-main.rebank-app,.webuyany-branded .premium-footer-shell{width:calc(100% - 32px)!important}
  .home-clean .concept-hero{grid-template-columns:1fr 1fr!important}.home-clean .hero-benefits{grid-column:1/-1!important;display:grid!important;grid-template-columns:repeat(4,1fr)!important;padding:20px 28px 26px!important}.home-clean .hero-benefit span{margin-left:43px!important}.home-clean .concept-mid{grid-template-columns:1fr!important}.home-clean .journey-strip{grid-template-columns:repeat(4,1fr)!important;row-gap:14px!important}
  .subscribe-page .rb-flow-strip{display:flex!important;overflow-x:auto!important;padding-bottom:2px!important}.subscribe-page .rb-flow-step{min-width:116px!important}.subscribe-page .auth-layout{grid-template-columns:1fr!important}.subscribe-page .metric-grid{grid-template-columns:repeat(2,1fr)!important}
  .webuyany-branded .premium-footer-main{grid-template-columns:1.2fr 1fr!important}
}
@media(max-width:720px){
  .webuyany-branded .cis-header-inner,.home-clean .concept-wrap,.subscribe-page .subscribe-intro,.subscribe-page .portal-main.rebank-app,.webuyany-branded .premium-footer-shell{width:calc(100% - 20px)!important}.webuyany-branded .cis-header-inner{min-height:66px!important}.webuyany-branded .cis-logo-mark{width:39px!important;height:39px!important}.webuyany-branded .cis-brand-copy strong{font-size:16px!important}.webuyany-branded .cis-brand-copy small{font-size:6.5px!important;letter-spacing:1px!important}.webuyany-branded .header-buy-trigger{min-height:40px!important;padding:0 14px!important;font-size:11px!important}
  .home-clean .concept-wrap{margin-top:12px!important}.home-clean .concept-card{border-radius:15px!important}.home-clean .concept-hero{grid-template-columns:1fr!important;min-height:0!important}.home-clean .concept-hero-copy{padding:34px 24px 24px!important}.home-clean .concept-hero h1{font-size:42px!important;letter-spacing:-2px!important}.home-clean .concept-hero p{font-size:14px!important}.home-clean .concept-visual{min-height:330px!important}.home-clean .eco-bag{width:210px!important;height:200px!important;left:8%!important;bottom:55px!important}.home-clean .phone{width:170px!important;height:288px!important;right:8%!important;bottom:22px!important}.home-clean .hero-benefits{display:grid!important;grid-template-columns:1fr 1fr!important;padding:18px 22px 26px!important;gap:16px!important}.home-clean .hero-benefit span{margin-left:0!important}.home-clean .steps4{grid-template-columns:1fr 1fr!important}.home-clean .dash-grid{grid-template-columns:1fr!important}.home-clean .journey-strip{display:flex!important;overflow-x:auto!important}.home-clean .journey-step{min-width:130px!important}.home-clean .concept-lower{grid-template-columns:1fr!important}
  .subscribe-page .subscribe-intro{margin-top:12px!important;padding:20px!important;display:block!important}.subscribe-page .subscribe-intro h1{font-size:24px!important}.subscribe-page .subscribe-intro-badges{justify-content:flex-start!important;margin-top:14px!important}.subscribe-page .portal-main.rebank-app{margin-top:12px!important}.subscribe-page .rb-flow-wrap{padding:10px!important}.subscribe-page .auth-copy,.subscribe-page .auth-card{padding:22px!important}.subscribe-page .auth-choice{grid-template-columns:1fr!important}.subscribe-page .form-grid{grid-template-columns:1fr!important}.subscribe-page .metric-grid{grid-template-columns:1fr!important}.subscribe-page .dashboard-head{padding:18px!important}.subscribe-page .dashboard-grid>.portal-card,.subscribe-page .redemption-layout>.portal-card,.subscribe-page .checkout-layout>.portal-card{padding:18px!important}.subscribe-page .redemption-layout,.subscribe-page .checkout-layout{grid-template-columns:1fr!important}
  .webuyany-branded .premium-footer-main{grid-template-columns:1fr!important;gap:24px!important;padding:30px 0 24px!important}.webuyany-branded .premium-footer-bottom{display:block!important;padding:16px 0!important;line-height:1.7!important}
}
@media(max-width:460px){
  .home-clean .concept-hero h1{font-size:36px!important}.home-clean .eco-bag{width:175px!important;height:175px!important;left:3%!important}.home-clean .phone{width:155px!important;height:270px!important;right:3%!important}.home-clean .hero-benefits{grid-template-columns:1fr!important}.home-clean .steps4{grid-template-columns:1fr!important}.home-clean .dash-actions{grid-template-columns:1fr!important}
}

/* ===== edge-zero.css ===== */
/* Edge spacing hard reset — loaded last */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
body.webuyany-branded {
  margin: 0 !important;
  padding: 0 !important;
}
body.webuyany-branded > .cis-header,
body.webuyany-branded > header.cis-header {
  margin-top: 0 !important;
  top: 0 !important;
}
body.webuyany-branded > .cis-header:first-child {
  margin-block-start: 0 !important;
}
body.webuyany-branded > .premium-lfz-footer,
body.webuyany-branded > footer.cis-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.webuyany-branded > footer:last-of-type {
  margin-block-end: 0 !important;
}
.premium-lfz-footer .premium-footer-bottom {
  margin-bottom: 0 !important;
}
.premium-lfz-footer .premium-footer-shell {
  margin-bottom: 0 !important;
}
body.webuyany-branded > script:last-child { margin:0!important; padding:0!important; }

/* ===== mobile-we-buy-visibility-fix.css ===== */
/* Mobile WE BUY visibility fix - loaded last */
.header-buy-trigger,
.webuyany-branded .header-buy-trigger {
  background:#0e4f99 !important;
  border-color:#0e4f99 !important;
  color:#fff !important;
}
.header-buy-trigger .header-buy-label,
.webuyany-branded .header-buy-trigger .header-buy-label {
  display:inline-block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:#fff !important;
  font-weight:900 !important;
  line-height:1 !important;
  white-space:nowrap !important;
}
.header-buy-trigger .header-buy-chevron,
.webuyany-branded .header-buy-trigger .header-buy-chevron {
  display:inline-block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:#fff !important;
}
@media (max-width:620px){
  .webuyany-branded .header-action.header-buy-trigger span.header-buy-label,
  .webuyany-branded .header-action.header-buy-trigger span.header-buy-chevron {
    display:inline-block !important;
  }
  .header-buy-trigger,
  .webuyany-branded .header-buy-trigger {
    min-width:112px !important;
    min-height:42px !important;
    padding:0 14px !important;
    gap:7px !important;
  }
  .header-buy-trigger .header-buy-label,
  .webuyany-branded .header-buy-trigger .header-buy-label {font-size:11px !important;letter-spacing:.45px !important;}
}

/* ===== impact-graphic-v2.css ===== */
/* Premium graphic redesign for Why LFZ / Daily Impact */
.home-clean .impact-graphic-grid{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:22px!important;
  margin-top:22px!important;
}
.home-clean .impact-graphic-grid .mini-panel{
  position:relative!important;
  overflow:hidden!important;
  min-height:340px!important;
  padding:30px!important;
  border:1px solid rgba(11,61,117,.12)!important;
  border-radius:24px!important;
  background:linear-gradient(145deg,#ffffff 0%,#f7faff 58%,#e7f3ff 100%)!important;
  box-shadow:0 18px 45px rgba(11,61,117,.08)!important;
}
.home-clean .impact-graphic-grid .mini-panel:before{
  content:"";position:absolute;width:220px;height:220px;border-radius:50%;
  right:-90px;top:-90px;background:radial-gradient(circle,rgba(24,119,242,.18),rgba(24,119,242,0) 68%);pointer-events:none
}
.graphic-card-head{position:relative;z-index:2;max-width:74%}
.graphic-kicker{display:inline-flex;align-items:center;gap:7px;font-size:11px;font-weight:900;letter-spacing:.14em;color:#0e4f99;margin-bottom:8px}
.graphic-kicker:before{content:"";width:8px;height:8px;border-radius:50%;background:#1877f2;box-shadow:0 0 0 5px rgba(24,119,242,.12)}
.home-clean .impact-graphic-grid h4{font-size:25px!important;line-height:1.12!important;letter-spacing:-.03em!important;color:#0b3d75!important;margin:0 0 8px!important}
.home-clean .impact-graphic-grid p{font-size:13px!important;line-height:1.55!important;color:#60736a!important;margin:0!important}
.choice-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:22px;max-width:78%}
.choice-tile{display:flex;gap:11px;align-items:flex-start;padding:13px 12px;border:1px solid rgba(11,61,117,.09);border-radius:14px;background:rgba(255,255,255,.88);box-shadow:0 7px 18px rgba(11,61,117,.04)}
.choice-icon{flex:0 0 34px;width:34px;height:34px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(145deg,#0e4f99,#1877f2);color:#fff;font-weight:900;font-size:15px;box-shadow:0 8px 18px rgba(14,79,153,.19)}
.choice-tile b{display:block;color:#0b3d75;font-size:12px;line-height:1.25;margin-top:1px}.choice-tile small{display:block;color:#75867e;font-size:9.5px;line-height:1.45;margin-top:4px}
.eco-orbit{position:absolute;right:24px;bottom:28px;width:138px;height:138px;border:1px dashed rgba(14,79,153,.32);border-radius:50%;display:grid;place-items:center;background:radial-gradient(circle,rgba(55,139,245,.15),rgba(255,255,255,0) 64%)}
.eco-orbit:before,.eco-orbit:after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(14,79,153,.10)}.eco-orbit:before{inset:13px}.eco-orbit:after{inset:27px}
.eco-globe{position:relative;z-index:2;width:74px;height:74px;border-radius:50%;display:grid;place-items:center;background:radial-gradient(circle at 35% 30%,#378bf5,#0e4f99 58%,#0b3d75);color:#fff;font-weight:950;font-size:18px;letter-spacing:.04em;box-shadow:0 14px 30px rgba(14,79,153,.23)}
.orbit-leaf{position:absolute;color:#1877f2;font-size:12px}.leaf-a{left:8px;top:36px;transform:rotate(35deg)}.leaf-b{right:4px;top:66px;transform:rotate(-25deg)}.leaf-c{left:55px;bottom:-3px;transform:rotate(15deg)}
.impact-stat-grid{position:relative;z-index:2;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:24px}
.impact-stat{min-height:120px;padding:16px 14px;border-radius:16px;background:linear-gradient(160deg,#0b3d75,#0b3d75);color:#fff;display:flex;flex-direction:column;justify-content:space-between;box-shadow:0 12px 26px rgba(11,61,117,.15);border:1px solid rgba(255,255,255,.08)}
.impact-stat:nth-child(2){background:linear-gradient(160deg,#0e4f99,#0b3d75)}.impact-stat:nth-child(3){background:linear-gradient(160deg,#1877f2,#0e4f99)}
.stat-icon{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;background:rgba(255,255,255,.14);font-size:13px;font-weight:900;backdrop-filter:blur(3px)}
.impact-stat strong{display:block;font-size:18px;line-height:1.1;letter-spacing:-.03em;margin-top:16px}.impact-stat small{display:block;color:rgba(255,255,255,.77)!important;font-size:9.5px!important;margin-top:5px;line-height:1.3}
.impact-meter{position:relative;z-index:2;height:8px;background:#e7f3ff;border-radius:99px;overflow:hidden;margin:22px 2px 10px}.impact-meter span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0e4f99,#1877f2)}
.impact-caption{position:relative;z-index:2;display:flex;justify-content:space-between;gap:14px;align-items:center}.impact-caption b{font-size:11px;color:#0b3d75}.impact-caption small{font-size:9.5px;color:#75867e}
@media(max-width:980px){.home-clean .impact-graphic-grid{grid-template-columns:1fr!important}.graphic-card-head{max-width:100%}.choice-grid{max-width:72%}}
@media(max-width:700px){.home-clean .impact-graphic-grid{gap:12px!important;margin-top:12px!important}.home-clean .impact-graphic-grid .mini-panel{min-height:0!important;padding:22px 18px!important;border-radius:18px!important}.home-clean .impact-graphic-grid h4{font-size:22px!important}.graphic-card-head{max-width:100%}.choice-grid{grid-template-columns:1fr!important;max-width:100%;margin-top:18px}.eco-orbit{position:relative;right:auto;bottom:auto;width:112px;height:112px;margin:18px auto 0}.eco-globe{width:62px;height:62px;font-size:15px}.impact-stat-grid{grid-template-columns:1fr!important;gap:9px;margin-top:18px}.impact-stat{min-height:88px;flex-direction:row;align-items:center;justify-content:flex-start;gap:14px}.impact-stat strong{font-size:18px;margin-top:0}.impact-caption{align-items:flex-start;flex-direction:column;gap:2px}}

/* ===== FINAL SUBSCRIBE READABILITY / ALIGNMENT FIX ===== */
.subscribe-page .rb-flow-wrap{
  padding:18px 18px 0!important;
  overflow:visible!important;
  box-sizing:border-box!important;
}
.subscribe-page .rb-flow-wrap:before{
  display:block!important;
  margin:0 0 12px!important;
  padding-left:2px!important;
  color:#0b3d75!important;
  font:800 12px/1.2 Manrope,Arial,sans-serif!important;
  letter-spacing:.12em!important;
  white-space:normal!important;
  overflow:visible!important;
  text-indent:0!important;
}
.subscribe-page .rb-flow-strip{
  width:100%!important;
  box-sizing:border-box!important;
  padding:10px!important;
  gap:8px!important;
  overflow:visible!important;
}
.subscribe-page .rb-flow-step{
  min-height:72px!important;
  padding:10px 8px!important;
  gap:9px!important;
  border-radius:14px!important;
  opacity:1!important;
  overflow:visible!important;
}
.subscribe-page .rb-flow-step b{
  width:34px!important;
  height:34px!important;
  flex:0 0 34px!important;
  line-height:34px!important;
  font-size:12px!important;
  text-align:center!important;
}
.subscribe-page .rb-flow-step small{
  display:block!important;
  min-width:0!important;
  color:#53685d!important;
  font-size:11px!important;
  font-weight:800!important;
  line-height:1.25!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:clip!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
}
.subscribe-page .rb-flow-step.active{
  background:#0b3d75!important;
  color:#fff!important;
  box-shadow:none!important;
}
.subscribe-page .rb-flow-step.active small{color:#fff!important}
.subscribe-page .rb-flow-step.active b{
  background:#1877f2!important;
  color:#fff!important;
  box-shadow:none!important;
}
.subscribe-page .rb-flow-step.locked{
  opacity:1!important;
  background:#f4f7fa!important;
}
.subscribe-page .rb-flow-step.locked small{color:#9aa8a0!important}
.subscribe-page .rb-flow-step.locked b{
  background:#eaeff5!important;
  color:#8da095!important;
}
.subscribe-page .rb-flow-help{
  margin:10px 0 0!important;
  padding:11px 14px!important;
  text-align:center!important;
  color:#5c7166!important;
}

.subscribe-page #rbAuth .auth-choice.simple-auth-nav{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  padding:8px!important;
  margin-bottom:20px!important;
  background:#f7faff!important;
  border:1px solid #e7f3ff!important;
  border-radius:16px!important;
  overflow:visible!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav button{
  min-width:0!important;
  min-height:74px!important;
  display:grid!important;
  grid-template-columns:48px minmax(0,1fr)!important;
  align-items:center!important;
  gap:12px!important;
  padding:10px 14px!important;
  border:1px solid #cbe2ff!important;
  border-radius:13px!important;
  background:#fff!important;
  color:#0b3d75!important;
  text-align:left!important;
  overflow:visible!important;
  opacity:1!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav .auth-choice-icon{
  width:48px!important;
  height:48px!important;
  min-width:48px!important;
  display:grid!important;
  place-items:center!important;
  margin:0!important;
  padding:0!important;
  border-radius:12px!important;
  border:1px solid #cbe2ff!important;
  background:#f7faff!important;
  color:#0e4f99!important;
  font-size:24px!important;
  font-weight:800!important;
  line-height:1!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav button>span:last-child{
  display:block!important;
  min-width:0!important;
  color:inherit!important;
  visibility:visible!important;
  opacity:1!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav strong{
  display:block!important;
  margin:0 0 3px!important;
  color:inherit!important;
  font-size:16px!important;
  font-weight:850!important;
  line-height:1.2!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:clip!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav small{
  display:block!important;
  color:#3c597e!important;
  font-size:12px!important;
  font-weight:700!important;
  line-height:1.3!important;
  white-space:normal!important;
  overflow:visible!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav button.active{
  background:#0e4f99!important;
  border-color:#0e4f99!important;
  color:#fff!important;
  box-shadow:0 8px 18px rgba(14,79,153,.16)!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav button.active .auth-choice-icon{
  background:#1877f2!important;
  border-color:#1877f2!important;
  color:#fff!important;
}
.subscribe-page #rbAuth .auth-choice.simple-auth-nav button.active strong,
.subscribe-page #rbAuth .auth-choice.simple-auth-nav button.active small{
  color:#fff!important;
}

@media(max-width:1100px){
  .subscribe-page .rb-flow-strip{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
  }
  .subscribe-page .rb-flow-step:not(:last-child):after{display:none!important}
}
@media(max-width:700px){
  .subscribe-page .rb-flow-wrap{padding:14px 12px 0!important}
  .subscribe-page .rb-flow-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
  .subscribe-page .rb-flow-step{min-height:62px!important;justify-content:flex-start!important;padding:9px 10px!important}
  .subscribe-page .rb-flow-step b{width:30px!important;height:30px!important;flex-basis:30px!important;line-height:30px!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav{grid-template-columns:1fr!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav button{min-height:68px!important;grid-template-columns:44px minmax(0,1fr)!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav .auth-choice-icon{width:44px!important;height:44px!important;min-width:44px!important}
}

/* ===== CROSS-DEVICE RESPONSIVE STABILITY PASS — 2026-08-14 ===== */
html,body{width:100%;max-width:100%;margin:0!important;padding:0!important;overflow-x:hidden!important;-webkit-text-size-adjust:100%;text-size-adjust:100%}
*,*::before,*::after{box-sizing:border-box}
img,svg,video,canvas{max-width:100%;height:auto}
button,input,select,textarea{max-width:100%;font:inherit}
button,a{-webkit-tap-highlight-color:transparent}

.cis-header,.premium-two-action-header,.premium-lfz-footer,.cis-footer{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important}
.cis-header-inner,.premium-footer-main,.premium-footer-bottom{width:min(100% - 32px,1440px)!important;max-width:1440px!important;margin-left:auto!important;margin-right:auto!important}

.home-clean main,.subscribe-page main,.home-clean .container,.subscribe-page .container,.home-clean .page-shell,.subscribe-page .page-shell{width:min(100% - 32px,1440px)!important;max-width:1440px!important;margin-left:auto!important;margin-right:auto!important}

/* Generic grid safety */
.home-clean [class*="grid"],.subscribe-page [class*="grid"]{min-width:0}
.home-clean [class*="card"],.subscribe-page [class*="card"],.home-clean section,.subscribe-page section{min-width:0}

/* Header */
.cis-header-inner,.premium-two-action-header{min-height:74px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important}
.brand-lockup,.premium-header-actions,.header-action{min-width:0}
.header-buy-trigger{min-width:148px!important;min-height:50px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;white-space:nowrap!important}
.header-buy-menu{right:0!important;left:auto!important;min-width:260px!important;max-width:min(320px,calc(100vw - 24px))!important}

/* Home hero and marketing sections */
.home-clean .hero,.home-clean .hero-shell,.home-clean .premium-hero,.home-clean .lfz-hero{min-width:0!important;max-width:100%!important}
.home-clean .hero img,.home-clean .hero-shell img,.home-clean .premium-hero img,.home-clean .lfz-hero img{object-fit:contain!important}
.home-clean h1,.home-clean h2,.home-clean h3,.home-clean h4,.subscribe-page h1,.subscribe-page h2,.subscribe-page h3,.subscribe-page h4{overflow-wrap:break-word}

/* ReBank flow: readable on every width without clipping */
.subscribe-page .rb-flow-wrap{width:min(100% - 32px,1440px)!important;max-width:1440px!important;margin-left:auto!important;margin-right:auto!important;padding:18px 0 0!important;overflow:visible!important}
.subscribe-page .rb-flow-strip{display:grid!important;grid-template-columns:repeat(8,minmax(0,1fr))!important;gap:8px!important;width:100%!important;overflow:visible!important}
.subscribe-page .rb-flow-step{width:100%!important;min-width:0!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:8px!important;white-space:normal!important}
.subscribe-page .rb-flow-step small{min-width:0!important;overflow-wrap:break-word!important}
.subscribe-page .rb-flow-help{width:100%!important;max-width:none!important;white-space:normal!important}

/* Subscribe/auth layout */
.subscribe-page #rbAuth,.subscribe-page .auth-layout,.subscribe-page .rb-auth-pane{width:100%!important;max-width:100%!important;min-width:0!important}
.subscribe-page .auth-layout{display:grid!important;grid-template-columns:minmax(280px,.9fr) minmax(0,1.1fr)!important;gap:28px!important;align-items:stretch!important}
.subscribe-page .auth-card,.subscribe-page .rb-guide{width:100%!important;max-width:100%!important;min-width:0!important}
.subscribe-page .form-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important}
.subscribe-page .form-grid>*{min-width:0!important}
.subscribe-page input,.subscribe-page select,.subscribe-page textarea{width:100%!important;min-width:0!important}

/* Functional app grids */
.subscribe-page .dashboard-grid,.subscribe-page .metric-grid,.subscribe-page .rb-metric-grid,.subscribe-page .receipt-grid,.subscribe-page .rb-admin-metrics{grid-template-columns:repeat(auto-fit,minmax(210px,1fr))!important}
.subscribe-page .rb-item-grid{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))!important}
.subscribe-page table{width:100%!important;max-width:100%!important;border-collapse:collapse}
.subscribe-page .table-wrap,.subscribe-page .rb-table-wrap,.subscribe-page .ledger-wrap{max-width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch}

/* Footer safety */
.premium-footer-main{display:grid!important;grid-template-columns:minmax(220px,1.2fr) repeat(3,minmax(150px,.8fr)) minmax(220px,1fr)!important;gap:28px!important}
.premium-footer-block,.premium-footer-brand,.premium-footer-cta{min-width:0!important}
.premium-footer-bottom{display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:space-between!important;gap:12px 20px!important}

@media (max-width:1200px){
  .subscribe-page .rb-flow-strip{grid-template-columns:repeat(4,minmax(0,1fr))!important}
  .premium-footer-main{grid-template-columns:repeat(3,minmax(0,1fr))!important}
  .subscribe-page .auth-layout{grid-template-columns:minmax(260px,.85fr) minmax(0,1.15fr)!important;gap:20px!important}
}

@media (max-width:900px){
  .cis-header-inner,.premium-footer-main,.premium-footer-bottom,.home-clean main,.subscribe-page main,.home-clean .container,.subscribe-page .container,.home-clean .page-shell,.subscribe-page .page-shell,.subscribe-page .rb-flow-wrap{width:min(100% - 24px,1440px)!important}
  .subscribe-page .auth-layout{grid-template-columns:1fr!important}
  .subscribe-page .rb-guide{order:2}
  .subscribe-page .rb-auth-pane{order:1}
  .premium-footer-main{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important}
  .home-clean .impact-stat-grid{grid-template-columns:1fr!important}
}

@media (max-width:700px){
  .cis-header-inner,.premium-footer-main,.premium-footer-bottom,.home-clean main,.subscribe-page main,.home-clean .container,.subscribe-page .container,.home-clean .page-shell,.subscribe-page .page-shell,.subscribe-page .rb-flow-wrap{width:min(100% - 20px,1440px)!important}
  .cis-header-inner,.premium-two-action-header{min-height:66px!important;gap:10px!important}
  .brand-lockup{max-width:58%!important}
  .brand-lockup img{max-height:44px!important;width:auto!important}
  .header-buy-trigger{min-width:116px!important;min-height:46px!important;padding:0 14px!important;font-size:14px!important}
  .header-buy-menu{position:absolute!important;right:0!important;left:auto!important;width:min(300px,calc(100vw - 20px))!important}
  .subscribe-page .rb-flow-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
  .subscribe-page .rb-flow-step{min-height:62px!important;padding:9px!important}
  .subscribe-page .rb-flow-step small{font-size:10.5px!important;line-height:1.2!important}
  .subscribe-page .form-grid{grid-template-columns:1fr!important;gap:12px!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav{grid-template-columns:1fr!important}
  .premium-footer-main{grid-template-columns:1fr!important}
  .premium-footer-bottom{align-items:flex-start!important;flex-direction:column!important}
  .home-clean .choice-grid,.home-clean .impact-stat-grid{grid-template-columns:1fr!important}
  .home-clean .choice-grid{max-width:100%!important}
  .subscribe-page .portal-card,.subscribe-page .auth-card{padding:18px!important}
}

@media (max-width:430px){
  .cis-header-inner,.premium-footer-main,.premium-footer-bottom,.home-clean main,.subscribe-page main,.home-clean .container,.subscribe-page .container,.home-clean .page-shell,.subscribe-page .page-shell,.subscribe-page .rb-flow-wrap{width:min(100% - 16px,1440px)!important}
  .brand-lockup{max-width:54%!important}
  .header-buy-trigger{min-width:104px!important;padding:0 11px!important;font-size:13px!important}
  .subscribe-page .rb-flow-step{gap:6px!important;padding:8px 7px!important}
  .subscribe-page .rb-flow-step b{width:28px!important;height:28px!important;flex:0 0 28px!important;line-height:28px!important}
  .subscribe-page .rb-flow-step small{font-size:10px!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav button{grid-template-columns:40px minmax(0,1fr)!important;padding:9px 10px!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav .auth-choice-icon{width:40px!important;height:40px!important;min-width:40px!important;font-size:20px!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav strong{font-size:14px!important}
  .subscribe-page #rbAuth .auth-choice.simple-auth-nav small{font-size:11px!important}
}

/* Browser compatibility fallbacks */
@supports not (width:min(100%,1000px)){
  .cis-header-inner,.premium-footer-main,.premium-footer-bottom,.home-clean main,.subscribe-page main,.subscribe-page .rb-flow-wrap{width:calc(100% - 32px)!important;max-width:1440px!important}
}

/* ===== HEADER CONTAINER ALIGNMENT FIX =====
   Keep the logo and WE BUY control aligned to the same content container
   used by each page rather than the viewport edges. */
.home-clean .cis-header-inner{
  width:min(1360px,calc(100% - 48px))!important;
  max-width:1360px!important;
  margin-inline:auto!important;
  padding-inline:0!important;
}
.subscribe-page .cis-header-inner{
  width:min(1320px,calc(100% - 48px))!important;
  max-width:1320px!important;
  margin-inline:auto!important;
  padding-inline:0!important;
}
.webuyany-branded .cis-header-inner{
  box-sizing:border-box!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}
.webuyany-branded .cis-brand,
.webuyany-branded .premium-header-actions,
.webuyany-branded .header-buy-menu{
  margin:0!important;
}
@media (max-width:900px){
  .home-clean .cis-header-inner,
  .subscribe-page .cis-header-inner{
    width:calc(100% - 32px)!important;
    max-width:none!important;
  }
}
@media (max-width:620px){
  .home-clean .cis-header-inner,
  .subscribe-page .cis-header-inner{
    width:calc(100% - 20px)!important;
  }
}


/* 2026-08-17 independence + hero overlap fix */
@media (max-width: 1100px){
  .home-clean .concept-hero{
    grid-template-columns:1fr !important;
    overflow:hidden !important;
  }
  .home-clean .concept-hero-copy{
    position:relative !important;
    z-index:10 !important;
  }
  .home-clean .concept-visual{
    position:relative !important;
    min-height:340px !important;
    width:100% !important;
    margin-top:0 !important;
    overflow:hidden !important;
    z-index:1 !important;
  }
  .home-clean .eco-bag{
    left:8% !important;
    bottom:42px !important;
    max-width:44% !important;
    z-index:2 !important;
  }
  .home-clean .phone{
    right:8% !important;
    bottom:20px !important;
    z-index:4 !important;
  }
}
@media (max-width: 700px){
  .home-clean .concept-hero-copy{padding-bottom:18px !important;}
  .home-clean .concept-visual{
    min-height:auto !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    align-items:end !important;
    gap:10px !important;
    padding:26px 18px 22px !important;
  }
  .home-clean .eco-bag,
  .home-clean .phone{
    position:relative !important;
    left:auto !important;right:auto !important;bottom:auto !important;
    margin:0 auto !important;
    max-width:100% !important;
  }
  .home-clean .eco-bag{width:min(100%,190px) !important;height:185px !important;}
  .home-clean .phone{width:min(100%,165px) !important;height:280px !important;}
}
@media (max-width: 430px){
  .home-clean .concept-visual{grid-template-columns:1fr !important;}
  .home-clean .eco-bag{width:170px !important;height:165px !important;}
  .home-clean .phone{width:155px !important;height:270px !important;}
}

/* ===== 2026-08-17 PREMIUM HOW-IT-WORKS PANEL ===== */
.subscribe-page #rbAuth .auth-layout{
  align-items:stretch!important;
}
.subscribe-page #rbAuth .auth-copy{
  min-height:100%!important;
  height:100%!important;
  padding:40px 38px 34px!important;
  display:flex!important;
  flex-direction:column!important;
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  border:1px solid rgba(111,174,247,.34)!important;
  border-radius:24px!important;
  background:
    radial-gradient(circle at 88% 18%,rgba(111,174,247,.17) 0 72px,transparent 73px),
    radial-gradient(circle at 8% 96%,rgba(55,139,245,.16) 0 110px,transparent 111px),
    linear-gradient(145deg,#0b3d75 0%,#0b3d75 48%,#0e4f99 100%)!important;
  box-shadow:0 24px 60px rgba(7,35,70,.18)!important;
}
.subscribe-page #rbAuth .auth-copy:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:32px 32px;
  -webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 70%);
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 70%);
}
.subscribe-page #rbAuth .auth-copy:after{
  content:"LFZ"!important;
  position:absolute!important;
  right:-18px!important;
  top:112px!important;
  width:148px!important;
  height:148px!important;
  display:grid!important;
  place-items:center!important;
  border:1px solid rgba(255,255,255,.10)!important;
  border-radius:50%!important;
  background:rgba(255,255,255,.035)!important;
  color:rgba(255,255,255,.055)!important;
  font:900 48px/1 Arial,sans-serif!important;
  letter-spacing:-3px!important;
  transform:none!important;
}
.subscribe-page #rbAuth .auth-copy>.portal-kicker{
  width:max-content!important;
  margin:0 0 22px!important;
  padding:9px 13px 9px 30px!important;
  position:relative!important;
  border:1px solid rgba(111,174,247,.20)!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.075)!important;
  color:#6faef7!important;
  font-size:11px!important;
  font-weight:900!important;
  letter-spacing:1.5px!important;
  box-shadow:inset 0 1px rgba(255,255,255,.08)!important;
}
.subscribe-page #rbAuth .auth-copy>.portal-kicker:before{
  content:"";
  position:absolute;
  left:13px;
  top:50%;
  width:8px;
  height:8px;
  margin-top:-4px;
  border-radius:50%;
  background:#378bf5;
  box-shadow:0 0 0 6px rgba(55,139,245,.12),0 0 18px rgba(55,139,245,.55);
}
.subscribe-page #rbAuth .auth-copy ol{
  counter-reset:premium-how!important;
  list-style:none!important;
  margin:0!important;
  padding:0!important;
  display:grid!important;
  gap:13px!important;
}
.subscribe-page #rbAuth .auth-copy ol li{
  counter-increment:premium-how!important;
  min-height:72px!important;
  margin:0!important;
  padding:14px 54px 14px 70px!important;
  display:flex!important;
  align-items:center!important;
  position:relative!important;
  border:1px solid rgba(255,255,255,.12)!important;
  border-radius:17px!important;
  background:linear-gradient(110deg,rgba(255,255,255,.105),rgba(255,255,255,.045))!important;
  color:#f7faff!important;
  font-size:15px!important;
  line-height:1.38!important;
  font-weight:700!important;
  box-shadow:inset 0 1px rgba(255,255,255,.07),0 8px 22px rgba(7,35,70,.10)!important;
  transition:transform .2s ease,border-color .2s ease,background .2s ease!important;
}
.subscribe-page #rbAuth .auth-copy ol li:hover{
  transform:translateX(3px)!important;
  border-color:rgba(111,174,247,.28)!important;
  background:linear-gradient(110deg,rgba(255,255,255,.14),rgba(255,255,255,.06))!important;
}
.subscribe-page #rbAuth .auth-copy ol li:before{
  content:counter(premium-how,decimal-leading-zero)!important;
  position:absolute!important;
  left:16px!important;
  top:50%!important;
  width:40px!important;
  height:40px!important;
  margin-top:-20px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:12px!important;
  background:linear-gradient(145deg,#378bf5,#1877f2)!important;
  color:#0b3d75!important;
  font-size:12px!important;
  font-weight:900!important;
  box-shadow:0 8px 18px rgba(24,119,242,.25),inset 0 1px rgba(255,255,255,.38)!important;
}
.subscribe-page #rbAuth .auth-copy ol li:after{
  position:absolute!important;
  right:16px!important;
  top:50%!important;
  width:28px!important;
  height:28px!important;
  margin-top:-14px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:9px!important;
  background:rgba(255,255,255,.08)!important;
  color:#cbe2ff!important;
  font-size:15px!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08)!important;
}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(1):after{content:"👤"!important}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(2):after{content:"◉"!important}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(3):after{content:"↗"!important;font-weight:900!important}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(4):after{content:"£"!important;font-weight:900!important}
.subscribe-page #rbAuth .auth-price{
  margin-top:auto!important;
  padding:20px 21px!important;
  min-height:112px!important;
  display:grid!important;
  grid-template-columns:1fr auto!important;
  grid-template-areas:"label icon" "value icon"!important;
  align-items:center!important;
  column-gap:18px!important;
  position:relative!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.18)!important;
  border-radius:19px!important;
  background:linear-gradient(110deg,rgba(255,255,255,.12),rgba(255,255,255,.065))!important;
  box-shadow:inset 0 1px rgba(255,255,255,.08),0 14px 34px rgba(7,35,70,.14)!important;
  backdrop-filter:blur(8px)!important;
  -webkit-backdrop-filter:blur(8px)!important;
}
.subscribe-page #rbAuth .auth-price:after{
  content:"£"!important;
  grid-area:icon!important;
  position:static!important;
  width:52px!important;
  height:52px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:16px!important;
  background:linear-gradient(145deg,#6faef7,#378bf5)!important;
  color:#0b3d75!important;
  font-size:25px!important;
  font-weight:900!important;
  box-shadow:0 10px 24px rgba(55,139,245,.22),inset 0 1px rgba(255,255,255,.5)!important;
}
.subscribe-page #rbAuth .auth-price span{
  grid-area:label!important;
  color:rgba(247,250,255,.75)!important;
  font-size:12px!important;
  font-weight:600!important;
  letter-spacing:.1px!important;
}
.subscribe-page #rbAuth .auth-price strong{
  grid-area:value!important;
  margin-top:5px!important;
  color:#fff!important;
  font-size:30px!important;
  line-height:1!important;
  letter-spacing:-1px!important;
}
@media(max-width:900px){
  .subscribe-page #rbAuth .auth-copy{min-height:auto!important;padding:30px 28px!important}
  .subscribe-page #rbAuth .auth-copy ol{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .subscribe-page #rbAuth .auth-copy ol li{min-height:86px!important;padding:14px 44px 14px 62px!important;font-size:14px!important}
  .subscribe-page #rbAuth .auth-copy ol li:before{left:12px!important}
  .subscribe-page #rbAuth .auth-copy ol li:after{right:10px!important}
  .subscribe-page #rbAuth .auth-price{margin-top:18px!important}
}
@media(max-width:560px){
  .subscribe-page #rbAuth .auth-copy{display:flex!important;padding:22px 18px!important;border-radius:18px!important}
  .subscribe-page #rbAuth .auth-copy>.portal-kicker{margin-bottom:16px!important}
  .subscribe-page #rbAuth .auth-copy ol{grid-template-columns:1fr!important;gap:9px!important}
  .subscribe-page #rbAuth .auth-copy ol li{min-height:62px!important;padding:11px 42px 11px 58px!important;font-size:13px!important;border-radius:14px!important}
  .subscribe-page #rbAuth .auth-copy ol li:before{left:10px!important;width:36px!important;height:36px!important;margin-top:-18px!important;border-radius:10px!important}
  .subscribe-page #rbAuth .auth-copy ol li:after{right:10px!important;width:25px!important;height:25px!important;margin-top:-12.5px!important}
  .subscribe-page #rbAuth .auth-price{min-height:96px!important;padding:16px!important;border-radius:15px!important}
  .subscribe-page #rbAuth .auth-price strong{font-size:25px!important}
  .subscribe-page #rbAuth .auth-price:after{width:44px!important;height:44px!important;border-radius:13px!important;font-size:22px!important}
}

/* ===== HOW IT WORKS — CLEAN PREMIUM REBUILD 2026-08-17 ===== */
.subscribe-page #rbAuth .auth-layout{
  align-items:start!important;
}
.subscribe-page #rbAuth .auth-copy{
  position:relative!important;
  align-self:start!important;
  min-height:0!important;
  height:auto!important;
  padding:30px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.13)!important;
  border-radius:24px!important;
  background:
    radial-gradient(circle at 100% 0,rgba(55,139,245,.12),transparent 34%),
    linear-gradient(155deg,#0b3d75 0%,#0b3d75 55%,#0b3d75 100%)!important;
  box-shadow:0 22px 54px rgba(7,35,70,.16)!important;
}
.subscribe-page #rbAuth .auth-copy::before,
.subscribe-page #rbAuth .auth-copy::after{
  content:none!important;
  display:none!important;
}
.subscribe-page #rbAuth .auth-copy>.portal-kicker{
  display:inline-flex!important;
  align-items:center!important;
  width:auto!important;
  margin:0 0 24px!important;
  padding:10px 14px!important;
  border:1px solid rgba(203,226,255,.26)!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.08)!important;
  color:#cbe2ff!important;
  font-size:11px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:1.6px!important;
  box-shadow:none!important;
}
.subscribe-page #rbAuth .auth-copy>.portal-kicker::before{
  content:""!important;
  position:static!important;
  width:8px!important;
  height:8px!important;
  margin:0 9px 0 0!important;
  border-radius:50%!important;
  background:#378bf5!important;
  box-shadow:0 0 0 5px rgba(55,139,245,.12)!important;
}
.subscribe-page #rbAuth .auth-copy ol{
  counter-reset:clean-how!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:10px!important;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
}
.subscribe-page #rbAuth .auth-copy ol li{
  counter-increment:clean-how!important;
  position:relative!important;
  display:flex!important;
  align-items:center!important;
  min-height:66px!important;
  margin:0!important;
  padding:13px 54px 13px 72px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.12)!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.075)!important;
  color:#fff!important;
  font-size:14px!important;
  line-height:1.35!important;
  font-weight:700!important;
  box-shadow:none!important;
  transform:none!important;
}
.subscribe-page #rbAuth .auth-copy ol li:hover{
  transform:none!important;
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(111,174,247,.24)!important;
}
.subscribe-page #rbAuth .auth-copy ol li::before{
  content:counter(clean-how,decimal-leading-zero)!important;
  position:absolute!important;
  left:14px!important;
  top:50%!important;
  width:42px!important;
  height:42px!important;
  margin:0!important;
  transform:translateY(-50%)!important;
  display:grid!important;
  place-items:center!important;
  border-radius:13px!important;
  background:linear-gradient(145deg,#378bf5,#1877f2)!important;
  color:#0b3d75!important;
  font-size:12px!important;
  font-weight:900!important;
  box-shadow:inset 0 1px rgba(255,255,255,.35)!important;
}
.subscribe-page #rbAuth .auth-copy ol li::after{
  position:absolute!important;
  right:14px!important;
  top:50%!important;
  width:28px!important;
  height:28px!important;
  margin:0!important;
  transform:translateY(-50%)!important;
  display:grid!important;
  place-items:center!important;
  border-radius:9px!important;
  background:rgba(255,255,255,.09)!important;
  color:#cbe2ff!important;
  font-size:14px!important;
  box-shadow:none!important;
}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(1)::after{content:"●"!important}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(2)::after{content:"LFZ"!important;font-size:8px!important;font-weight:900!important;letter-spacing:-.2px!important}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(3)::after{content:"↗"!important;font-weight:900!important}
.subscribe-page #rbAuth .auth-copy ol li:nth-child(4)::after{content:"£"!important;font-weight:900!important}
.subscribe-page #rbAuth .auth-price{
  position:relative!important;
  display:block!important;
  min-height:0!important;
  margin:18px 0 0!important;
  padding:18px 76px 18px 20px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.15)!important;
  border-radius:17px!important;
  background:linear-gradient(120deg,rgba(255,255,255,.11),rgba(255,255,255,.065))!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.subscribe-page #rbAuth .auth-price::before{content:none!important;display:none!important}
.subscribe-page #rbAuth .auth-price::after{
  content:"£"!important;
  position:absolute!important;
  right:18px!important;
  top:50%!important;
  width:44px!important;
  height:44px!important;
  margin:0!important;
  transform:translateY(-50%)!important;
  display:grid!important;
  place-items:center!important;
  border-radius:14px!important;
  background:linear-gradient(145deg,#6faef7,#378bf5)!important;
  color:#0b3d75!important;
  font-size:22px!important;
  font-weight:900!important;
  box-shadow:0 8px 18px rgba(55,139,245,.18)!important;
}
.subscribe-page #rbAuth .auth-price span{
  display:block!important;
  color:rgba(247,250,255,.72)!important;
  font-size:12px!important;
  line-height:1.3!important;
  font-weight:600!important;
}
.subscribe-page #rbAuth .auth-price strong{
  display:block!important;
  margin-top:7px!important;
  color:#fff!important;
  font-size:28px!important;
  line-height:1!important;
  letter-spacing:-.8px!important;
}
@media(max-width:900px){
  .subscribe-page #rbAuth .auth-copy{padding:24px!important;border-radius:20px!important}
  .subscribe-page #rbAuth .auth-copy ol{grid-template-columns:1fr 1fr!important;gap:10px!important}
  .subscribe-page #rbAuth .auth-copy ol li{min-height:76px!important;padding:12px 42px 12px 62px!important;font-size:13px!important}
  .subscribe-page #rbAuth .auth-copy ol li::before{left:12px!important;width:38px!important;height:38px!important;border-radius:12px!important}
  .subscribe-page #rbAuth .auth-copy ol li::after{right:10px!important}
  .subscribe-page #rbAuth .auth-price{margin-top:14px!important}
}
@media(max-width:620px){
  .subscribe-page #rbAuth .auth-copy{display:block!important;padding:20px 16px!important;border-radius:18px!important}
  .subscribe-page #rbAuth .auth-copy>.portal-kicker{margin-bottom:16px!important}
  .subscribe-page #rbAuth .auth-copy ol{grid-template-columns:1fr!important;gap:8px!important}
  .subscribe-page #rbAuth .auth-copy ol li{min-height:60px!important;padding:10px 40px 10px 58px!important;font-size:12.5px!important;border-radius:13px!important}
  .subscribe-page #rbAuth .auth-copy ol li::before{left:10px!important;width:36px!important;height:36px!important;border-radius:11px!important}
  .subscribe-page #rbAuth .auth-copy ol li::after{right:9px!important;width:24px!important;height:24px!important;font-size:12px!important}
  .subscribe-page #rbAuth .auth-price{padding:15px 64px 15px 16px!important;border-radius:14px!important}
  .subscribe-page #rbAuth .auth-price::after{right:14px!important;width:38px!important;height:38px!important;border-radius:12px!important;font-size:19px!important}
  .subscribe-page #rbAuth .auth-price strong{font-size:24px!important}
}

/* ===== HOW IT WORKS — FINAL STRUCTURAL REBUILD 2026-08-17 ===== */
.subscribe-page #rbAuth .auth-layout{
  align-items:start!important;
}
.subscribe-page #rbAuth .how-premium-card{
  box-sizing:border-box!important;
  width:100%!important;
  min-width:0!important;
  min-height:0!important;
  height:auto!important;
  align-self:start!important;
  padding:32px!important;
  overflow:visible!important;
  border:1px solid rgba(255,255,255,.14)!important;
  border-radius:26px!important;
  background:linear-gradient(145deg,#0b3d75 0%,#0b3d75 58%,#0b3d75 100%)!important;
  box-shadow:0 22px 55px rgba(11,61,117,.16)!important;
}
.subscribe-page #rbAuth .how-premium-card::before,
.subscribe-page #rbAuth .how-premium-card::after{content:none!important;display:none!important}
.subscribe-page #rbAuth .how-premium-head{margin:0 0 22px!important;padding:0!important}
.subscribe-page #rbAuth .how-premium-eyebrow{
  display:inline-flex!important;align-items:center!important;gap:9px!important;
  margin:0 0 14px!important;padding:9px 13px!important;
  border:1px solid rgba(203,226,255,.22)!important;border-radius:999px!important;
  background:rgba(255,255,255,.075)!important;color:#cbe2ff!important;
  font-size:11px!important;line-height:1!important;font-weight:900!important;letter-spacing:1.35px!important;
}
.subscribe-page #rbAuth .how-premium-eyebrow i{display:block!important;width:8px!important;height:8px!important;border-radius:50%!important;background:#378bf5!important;box-shadow:0 0 0 5px rgba(55,139,245,.12)!important}
.subscribe-page #rbAuth .how-premium-head h2{margin:0!important;color:#fff!important;font-size:clamp(24px,2vw,34px)!important;line-height:1.1!important;letter-spacing:-.6px!important}
.subscribe-page #rbAuth .how-premium-head p{margin:8px 0 0!important;color:rgba(247,250,255,.72)!important;font-size:13px!important;line-height:1.5!important}
.subscribe-page #rbAuth .how-premium-steps{
  display:grid!important;grid-template-columns:1fr!important;gap:10px!important;
  width:100%!important;min-width:0!important;margin:0!important;padding:0!important;
}
.subscribe-page #rbAuth .how-premium-step{
  box-sizing:border-box!important;display:grid!important;grid-template-columns:48px 38px minmax(0,1fr)!important;
  align-items:center!important;gap:12px!important;width:100%!important;min-width:0!important;min-height:82px!important;
  margin:0!important;padding:14px 16px!important;overflow:visible!important;
  border:1px solid rgba(255,255,255,.12)!important;border-radius:17px!important;
  background:rgba(255,255,255,.07)!important;box-shadow:inset 0 1px rgba(255,255,255,.035)!important;
}
.subscribe-page #rbAuth .how-premium-num{
  display:grid!important;place-items:center!important;width:48px!important;height:48px!important;min-width:48px!important;
  border-radius:14px!important;background:linear-gradient(145deg,#378bf5,#1877f2)!important;color:#0b3d75!important;
  font-size:13px!important;line-height:1!important;font-weight:900!important;box-shadow:inset 0 1px rgba(255,255,255,.4)!important;
}
.subscribe-page #rbAuth .how-premium-icon{
  display:grid!important;place-items:center!important;width:36px!important;height:36px!important;min-width:36px!important;
  border:1px solid rgba(255,255,255,.10)!important;border-radius:11px!important;background:rgba(255,255,255,.08)!important;
  color:#cbe2ff!important;font-size:16px!important;line-height:1!important;font-style:normal!important;font-weight:900!important;
}
.subscribe-page #rbAuth .how-premium-icon-lfz{font-size:9px!important;letter-spacing:.2px!important}
.subscribe-page #rbAuth .how-premium-step>div{min-width:0!important;overflow:visible!important}
.subscribe-page #rbAuth .how-premium-step strong{
  display:block!important;margin:0!important;color:#fff!important;font-size:14px!important;line-height:1.35!important;font-weight:800!important;
  white-space:normal!important;overflow:visible!important;text-overflow:clip!important;word-break:normal!important;overflow-wrap:anywhere!important;
}
.subscribe-page #rbAuth .how-premium-step small{
  display:block!important;margin-top:4px!important;color:rgba(247,250,255,.67)!important;font-size:11.5px!important;line-height:1.4!important;font-weight:500!important;
  white-space:normal!important;overflow:visible!important;text-overflow:clip!important;
}
.subscribe-page #rbAuth .how-premium-price{
  box-sizing:border-box!important;position:relative!important;display:grid!important;grid-template-columns:minmax(0,1fr) 54px!important;
  grid-template-areas:"label badge" "value badge" "note badge"!important;align-items:center!important;column-gap:16px!important;
  width:100%!important;min-width:0!important;min-height:118px!important;margin:16px 0 0!important;padding:20px 20px!important;
  overflow:visible!important;border:1px solid rgba(255,255,255,.14)!important;border-radius:18px!important;
  background:linear-gradient(120deg,rgba(255,255,255,.105),rgba(255,255,255,.055))!important;box-shadow:none!important;
}
.subscribe-page #rbAuth .how-premium-price::before,
.subscribe-page #rbAuth .how-premium-price::after{content:none!important;display:none!important}
.subscribe-page #rbAuth .how-premium-price span{grid-area:label!important;color:rgba(247,250,255,.72)!important;font-size:12px!important;font-weight:650!important}
.subscribe-page #rbAuth .how-premium-price strong{grid-area:value!important;display:block!important;margin:5px 0 2px!important;color:#fff!important;font-size:30px!important;line-height:1!important;letter-spacing:-.7px!important;white-space:nowrap!important}
.subscribe-page #rbAuth .how-premium-price em{grid-area:note!important;color:rgba(247,250,255,.55)!important;font-size:10px!important;line-height:1.2!important;font-style:normal!important;font-weight:600!important}
.subscribe-page #rbAuth .how-premium-price b{
  grid-area:badge!important;display:grid!important;place-items:center!important;width:52px!important;height:52px!important;
  border-radius:15px!important;background:linear-gradient(145deg,#6faef7,#378bf5)!important;color:#0b3d75!important;font-size:24px!important;font-weight:900!important;
  box-shadow:0 10px 24px rgba(55,139,245,.18)!important;
}
@media (min-width:1200px){
  .subscribe-page #rbAuth .how-premium-step{grid-template-columns:50px 38px minmax(0,1fr)!important;min-height:86px!important}
}
@media (max-width:900px){
  .subscribe-page #rbAuth .how-premium-card{padding:24px!important;border-radius:22px!important}
  .subscribe-page #rbAuth .how-premium-steps{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .subscribe-page #rbAuth .how-premium-step{grid-template-columns:42px minmax(0,1fr)!important;grid-template-areas:"num icon" "copy copy"!important;align-items:center!important;min-height:132px!important;gap:9px 10px!important;padding:13px!important}
  .subscribe-page #rbAuth .how-premium-num{grid-area:num!important;width:42px!important;height:42px!important;min-width:42px!important;border-radius:12px!important}
  .subscribe-page #rbAuth .how-premium-icon{grid-area:icon!important;justify-self:end!important}
  .subscribe-page #rbAuth .how-premium-step>div{grid-area:copy!important}
  .subscribe-page #rbAuth .how-premium-step strong{font-size:13px!important}
  .subscribe-page #rbAuth .how-premium-step small{font-size:11px!important}
}
@media (max-width:620px){
  .subscribe-page #rbAuth .how-premium-card{padding:18px 15px!important;border-radius:18px!important}
  .subscribe-page #rbAuth .how-premium-head{margin-bottom:16px!important}
  .subscribe-page #rbAuth .how-premium-head h2{font-size:24px!important}
  .subscribe-page #rbAuth .how-premium-head p{font-size:12px!important}
  .subscribe-page #rbAuth .how-premium-steps{grid-template-columns:1fr!important;gap:9px!important}
  .subscribe-page #rbAuth .how-premium-step{grid-template-columns:40px 34px minmax(0,1fr)!important;grid-template-areas:"num icon copy"!important;min-height:78px!important;padding:12px!important;gap:10px!important;border-radius:15px!important}
  .subscribe-page #rbAuth .how-premium-num{width:40px!important;height:40px!important;min-width:40px!important}
  .subscribe-page #rbAuth .how-premium-icon{grid-area:icon!important;justify-self:auto!important;width:34px!important;height:34px!important;min-width:34px!important}
  .subscribe-page #rbAuth .how-premium-step>div{grid-area:copy!important}
  .subscribe-page #rbAuth .how-premium-step strong{font-size:12.5px!important;line-height:1.3!important}
  .subscribe-page #rbAuth .how-premium-step small{font-size:10.5px!important;line-height:1.35!important}
  .subscribe-page #rbAuth .how-premium-price{grid-template-columns:minmax(0,1fr) 46px!important;min-height:104px!important;padding:16px!important;column-gap:12px!important;border-radius:15px!important}
  .subscribe-page #rbAuth .how-premium-price strong{font-size:24px!important}
  .subscribe-page #rbAuth .how-premium-price b{width:44px!important;height:44px!important;border-radius:13px!important;font-size:21px!important}
}
@media (max-width:390px){
  .subscribe-page #rbAuth .how-premium-step{grid-template-columns:38px minmax(0,1fr)!important;grid-template-areas:"num copy" "icon copy"!important;align-items:start!important;min-height:92px!important}
  .subscribe-page #rbAuth .how-premium-num{width:38px!important;height:38px!important;min-width:38px!important}
  .subscribe-page #rbAuth .how-premium-icon{width:30px!important;height:30px!important;min-width:30px!important;margin-left:4px!important}
  .subscribe-page #rbAuth .how-premium-price strong{font-size:22px!important}
}
/* PayPal live gateway integration */
#rbLivePayout[disabled]{opacity:.55;cursor:not-allowed;filter:grayscale(.2)}
#rbLivePayPalStatus{margin-top:14px}
#rbLivePayPalStatus strong,#rbLivePayPalStatus span{display:block}
#rbLivePayPalStatus span{margin-top:4px;line-height:1.5}


/* ===== Facebook Blue + White Theme Final Override ===== */
:root{
  --forest:#0b3d75;
  --forest-2:#0e4f99;
  --emerald:#1877f2;
  --emerald-2:#4b9cff;
  --mint:#e7f3ff;
  --mint-2:#f5f9ff;
  --gold:#6faef7;
  --gold-2:#dbeafe;
  --ink:#10233f;
  --text:#40546f;
  --muted:#718096;
  --white:#ffffff;
  --paper:#f7faff;
  --line:#dbe7f5;
  --shadow-sm:0 10px 30px rgba(24,119,242,.08);
  --shadow:0 28px 80px rgba(24,119,242,.14);
}
html,body{background:#f7faff;color:#10233f}
body:before{background:radial-gradient(circle at 5% 12%,rgba(24,119,242,.09),transparent 22%),radial-gradient(circle at 96% 8%,rgba(75,156,255,.08),transparent 20%)}
.site-header{background:rgba(255,255,255,.96);border-bottom-color:rgba(24,119,242,.12);box-shadow:0 6px 28px rgba(24,119,242,.06)}
.brand-mark,.btn.primary,.main-nav .nav-cta,.wb-buy-trigger,.rb-primary,.rb-btn-primary{background:linear-gradient(135deg,#1877f2,#0f5fca)!important;color:#fff!important}
.main-nav a:hover,.main-nav a.active{color:#1877f2;background:#e7f3ff}
.main-nav a:not(.nav-cta):after{background:#1877f2}
.hero,.page-hero{background:linear-gradient(135deg,#f4f9ff,#ffffff)!important}
.hero-card,.footer,.site-footer,.rb-left,.rb-auth-side,.how-premium,.how-panel{background:linear-gradient(145deg,#0b3d75,#0f5fca)!important}
.pill,.eyebrow{border-color:#d5e7fb;color:#1877f2;background:#fff}
.pill:before,.eyebrow:before{background:#1877f2;box-shadow:0 0 0 6px rgba(24,119,242,.11)}
.btn.secondary,.btn.white,.btn.light-btn{color:#0b3d75;border-color:#cfe2fb;background:#fff}
.btn.secondary:hover{border-color:#1877f2;color:#1877f2}
input:focus,select:focus,textarea:focus{border-color:#1877f2!important;box-shadow:0 0 0 4px rgba(24,119,242,.10)!important}
::selection{background:#1877f2;color:#fff}

/* === FINAL FACEBOOK BLUE + WHITE BRAND OVERRIDE === */
:root{
  --fb-blue:#1877F2;
  --fb-blue-dark:#0B3D75;
  --fb-blue-deep:#072346;
  --fb-blue-soft:#EAF3FF;
  --fb-blue-pale:#F5F9FF;
  --fb-line:#D8E7FA;
  --fb-text:#0F2742;
  --fb-muted:#60758A;
}
html,body{background:#fff!important;color:var(--fb-text)!important}
body,.cis-page,.webuyany-branded{background:#fff!important}
.topbar,.site-header,.cis-header,.premium-header{background:#fff!important;border-color:var(--fb-line)!important}
.cis-logo-mark,.premium-logo-mark,.premium-footer-mark{background:linear-gradient(145deg,var(--fb-blue),#0e5fc6)!important;color:#fff!important}
.cis-nav a.active,.header-action-solid,.cis-btn-primary,.portal-btn,.btn.primary,.btn-primary,.auth-choice button.active{background:linear-gradient(135deg,var(--fb-blue),#0e5fc6)!important;border-color:var(--fb-blue)!important;color:#fff!important}
.header-action-outline,.portal-btn.secondary,.portal-btn.outline{background:#fff!important;color:var(--fb-blue)!important;border-color:#B9D5FA!important}
.header-buy-dropdown,.webuyany-branded .header-buy-dropdown{background:var(--fb-blue-dark)!important;border-color:#2e6fb8!important}
.header-buy-dropdown:before,.webuyany-branded .header-buy-dropdown:before{background:var(--fb-blue-dark)!important;border-color:#2e6fb8!important}
.header-buy-dropdown a,.webuyany-branded .header-buy-dropdown a{background:#104f95!important;color:#fff!important;border-color:rgba(255,255,255,.14)!important}
.header-buy-dropdown a:hover,.webuyany-branded .header-buy-dropdown a:hover{background:#1766bb!important;color:#fff!important}
.cis-hero,.webuyany-branded .cis-hero,.auth-copy,.webuyany-branded #rbAuth .auth-copy,.dashboard,.webuyany-branded .dashboard,.hiw-premium,.hiw-shell{background:linear-gradient(135deg,var(--fb-blue-deep),var(--fb-blue-dark) 52%,var(--fb-blue))!important;color:#fff!important}
.portal-section,.portal-card,.auth-card,.cis-card,.feature-card,.impact-card,.journey-card,.hiw-card,.spot-card{background:#fff!important;border-color:var(--fb-line)!important;box-shadow:0 14px 36px rgba(24,119,242,.08)!important}
.portal-kicker,.section-kicker,.eyebrow,.premium-footer-kicker,.cis-kicker,.hiw-number,.hiw-icon{color:var(--fb-blue)!important}
input,select,textarea,.webuyany-branded input,.webuyany-branded select,.webuyany-branded textarea{background:#fff!important;border-color:#C9DCF5!important;color:var(--fb-text)!important}
input:focus,select:focus,textarea:focus{border-color:var(--fb-blue)!important;box-shadow:0 0 0 3px rgba(24,119,242,.12)!important}
.rb-flow-step.active,.webuyany-branded .rb-flow-step.active{background:linear-gradient(135deg,var(--fb-blue),#0e5fc6)!important;color:#fff!important}
.rb-step-num,.rb-flow-step.active .rb-step-num{background:var(--fb-blue)!important;color:#fff!important}
.rb-flow-step:not(.active),.journey-step{background:var(--fb-blue-pale)!important;border-color:var(--fb-line)!important}
.premium-lfz-footer,.webuyany-branded .premium-lfz-footer,footer{background:linear-gradient(145deg,#061f3b 0%,#0B3D75 55%,#1259a8 100%)!important;color:#fff!important;border-top:0!important}
.premium-footer-kicker,.premium-footer-wordmark strong b{color:#8FC2FF!important}
.premium-footer-block a,.premium-footer-block>span:not(.premium-footer-kicker),.premium-footer-bottom{color:#D7E8FF!important}
.premium-footer-button{background:#fff!important;color:var(--fb-blue-dark)!important}
.premium-footer-button:hover{background:var(--fb-blue-soft)!important}
.premium-footer-status i{background:#54A0FF!important;box-shadow:0 0 0 4px rgba(84,160,255,.15)!important}
.status-dot,.dot,.badge-dot{background:var(--fb-blue)!important}
.card,.panel,.box{border-color:var(--fb-line)}
a{accent-color:var(--fb-blue)}
::selection{background:#CFE3FF;color:#06284c}
