/* =====================================================
   BIG BLUE MOP — STYLESHEET
   Background:   #2c2c2c  (correct dark charcoal, from brand spec)
   Alt section:  #333333
   Card bg:      #3a3a3a
   Bubble color: #78c5ef  (correct brand blue, from brand spec)
   Accent blue:  #78c5ef
   ===================================================== */

:root {
  --bbm:     #78c5ef;
  --bbm-dk:  #5aaede;
  --bbm-dp:  #3d94c8;
  --bbm-lt:  #cce8f7;
  --bg:      #2c2c2c;
  --bg2:     #333333;
  --bg3:     #3a3a3a;
  --bg4:     #424242;
  --wh:      #ffffff;
  --t-hi:    rgba(255,255,255,0.95);
  --t-mid:   rgba(255,255,255,0.75);
  --t-low:   rgba(255,255,255,0.45);
  --t-dim:   rgba(255,255,255,0.25);
  --red:     #E74C3C;
  --amb:     #F39C12;
  --grn:     #27ae60;
  --r-sm:    10px;
  --r-md:    16px;
  --r-lg:    24px;
  --shadow-blue: 0 8px 32px rgba(120,197,239,0.28);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--t-mid);
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width:100%; display:block; }

/* =====================================================
   BUBBLES
   ===================================================== */
.bubbles-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bb { position: absolute; border-radius: 50%; }

/* Outlined ring circles — visible, matching screenshot style */
.bb-ring {
  background: transparent;
  border: 2.5px solid #78c5ef;
  opacity: 0.3;
}

/* Solid dot circles */
.bb-dot {
  background: #78c5ef;
  opacity: 0.7;
}

/* Radial glow blobs */
.bb-glow {
  background: radial-gradient(circle, rgba(120,197,239,0.14) 0%, transparent 65%);
  opacity: 1;
}

/* =====================================================
   CONTAINER
   ===================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =====================================================
   TYPOGRAPHY — SHARED SECTION LABELS
   ===================================================== */
.section-label {
  font-family: 'Baloo 2', cursive;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--bbm);
  text-align: center;
  margin-bottom: 14px;
}
.section-h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  color: var(--wh);
  text-align: center;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--t-mid);
  text-align: center;
  line-height: 1.75;
  font-weight: 500;
  max-width: 580px;
  margin: 0 auto 56px;
}
.accent { color: var(--bbm); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
  border-radius: var(--r-sm);
}
.btn-primary {
  background: var(--bbm);
  color: var(--bg);
  padding: 12px 28px;
  font-size: 15px;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--bbm-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(120,197,239,0.38);
}
.btn-ghost {
  background: transparent;
  color: var(--bbm);
  border-color: rgba(120,197,239,0.55);
  padding: 12px 28px;
  font-size: 15px;
}
.btn-ghost:hover {
  background: rgba(120,197,239,0.1);
  transform: translateY(-2px);
}
.btn-lg  { padding: 16px 40px; font-size: 17px; }
.btn-xl  { padding: 20px 52px; font-size: 20px; border-radius: 14px; letter-spacing: 0.3px; }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(44, 44, 44, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(120,197,239,0.12);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s;
}
.nav.scrolled .nav-inner { padding: 12px 28px; }

.nav-logo { display:flex; align-items:center; }
.nav-logo-img { height: 42px; width: auto; display:block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-link {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--t-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--bbm); background: rgba(120,197,239,0.08); }
.nav-link.nav-cta {
  background: var(--bbm);
  color: var(--bg);
  padding: 8px 22px;
  font-weight: 800;
}
.nav-link.nav-cta:hover { background: var(--bbm-dk); color: var(--bg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--bbm);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero logo */
.hero-logo { display:flex; justify-content:center; margin-bottom: 36px; }
.hero-logo-img { height: 320px; width: auto; display:block; margin:0 auto; }

.hero-tagline-label {
  font-family: 'Baloo 2', cursive;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--t-low);
  margin-bottom: 24px;
}
.hero-h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(36px, 7vw, 66px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--t-mid);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 13px;
  color: var(--t-dim);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-scroll-indicator { display: none; }

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section {
  background: var(--bg2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.trust-block {
  background: var(--bg3);
  border: 1px solid rgba(120,197,239,0.12);
  border-radius: var(--r-md);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.trust-block:hover {
  border-color: rgba(120,197,239,0.35);
  transform: translateY(-4px);
}
.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-block h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 20px; font-weight: 800;
  color: var(--wh); margin-bottom: 10px;
}
.trust-block p { font-size: 15px; color: var(--t-mid); line-height: 1.7; font-weight:500; }
.trust-quote {
  text-align: center;
  position: relative;
  z-index: 1;
}
.trust-quote blockquote {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--bbm);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 40px;
  border: 2px solid rgba(120,197,239,0.2);
  border-radius: var(--r-lg);
  background: rgba(120,197,239,0.04);
}

/* =====================================================
   SOCIAL PROOF
   ===================================================== */
.social-proof {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: var(--bg3);
  border: 1px solid rgba(120,197,239,0.1);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: rgba(120,197,239,0.3);
  transform: translateY(-4px);
}
.review-stars { color: var(--bbm); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p {
  font-size: 14px; color: var(--t-mid);
  line-height: 1.8; font-style: italic;
  margin-bottom: 16px; font-weight:500;
}
.review-author { font-family: 'Baloo 2', cursive; font-size: 13px; color: var(--bbm); font-weight:700; }

/* =====================================================
   CHECKLIST TEASER
   ===================================================== */
.checklist-teaser {
  background: var(--bg2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.teaser-inner {
  position: relative;
  z-index: 1;
}

/* Preview card — looks like the real checklist */
.teaser-preview-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.teaser-preview {
  background: var(--bg);
  border: 1px solid rgba(120,197,239,0.18);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  /* pointer events off so it feels locked */
  pointer-events: none;
  user-select: none;
}
.tprev-header {
  text-align: center;
  margin-bottom: 28px;
}
.tprev-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; font-weight: 800;
  color: var(--bbm); margin-bottom: 2px;
  text-transform: uppercase;
}
.tprev-sub {
  font-family: 'Baloo 2', cursive;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; color: var(--t-low);
  text-transform: uppercase; margin-bottom: 14px;
}
.tprev-title {
  font-family: 'Baloo 2', cursive;
  font-size: 20px; font-weight: 800;
  color: var(--bbm-dp); margin-bottom: 6px;
}
.tprev-desc { font-size: 13px; color: var(--t-mid); font-weight: 500; }

/* Individual checklist items in preview */
.tprev-item {
  background: var(--bg3);
  border: 1.5px solid rgba(120,197,239,0.1);
  border-radius: var(--r-md);
  padding: 18px 16px;
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tprev-num {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; font-weight: 800;
  color: var(--bbm); min-width: 34px;
  line-height: 1.2;
}
.tprev-content { flex: 1; }
.tprev-label {
  font-size: 14px; font-weight: 700;
  color: var(--wh); line-height: 1.4;
  margin-bottom: 6px;
}
.tprev-hint {
  font-size: 12px; color: var(--t-mid);
  line-height: 1.55; margin-bottom: 12px;
  font-weight: 500;
}
.tprev-btns { display: flex; gap: 8px; }
.tprev-btn {
  flex: 1;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--t-mid);
  background: rgba(255,255,255,0.04);
}
.tprev-clean  { color: var(--grn); }
.tprev-unsure { color: var(--amb); }
.tprev-dirty  { color: var(--red); }
.tprev-active { background: var(--red); color: #fff; border-color: var(--red); }

/* Gradient fade — fades the bottom items out */
.teaser-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(51, 51, 51, 0.6) 30%,
    rgba(51, 51, 51, 0.94) 60%,
    var(--bg2) 100%
  );
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}

/* Lock / CTA block sitting below the preview */
.teaser-lock {
  text-align: center;
  padding: 36px 32px 40px;
  background: var(--bg3);
  border: 2px solid rgba(120,197,239,0.25);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  position: relative;
  z-index: 2;
}
.lock-icon { font-size: 36px; margin-bottom: 12px; }
.lock-title {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; font-weight: 800;
  color: var(--wh); margin-bottom: 10px;
}
.lock-sub {
  font-size: 15px; color: var(--t-mid);
  line-height: 1.65; margin-bottom: 28px;
  font-weight: 500; max-width: 420px; margin-left:auto; margin-right:auto;
}
.lock-sub strong { color: var(--wh); font-weight:800; }
.lock-note {
  font-size: 12px; color: var(--t-low);
  margin-top: 14px; font-weight: 600;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-section {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-img-wrap { text-align: center; }
.about-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%);
  border: 3px solid rgba(120,197,239,0.3);
  font-family: 'Baloo 2', cursive;
  font-size: 80px; font-weight:800;
  color: var(--bbm);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.about-badge {
  display: inline-block;
  background: rgba(120,197,239,0.1);
  border: 1px solid rgba(120,197,239,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Baloo 2', cursive;
  font-size: 11px; font-weight:700;
  color: var(--bbm);
  text-transform: uppercase; letter-spacing: 2px;
}
.about-text p {
  font-size: 16px; color: var(--t-mid);
  line-height: 1.8; margin-bottom: 16px; font-weight:500;
}
.about-contact { display:flex; gap:16px; flex-wrap:wrap; margin-top:28px; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: var(--bg2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact-inner { position:relative; z-index:1; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--bg3);
  border: 1px solid rgba(120,197,239,0.12);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: rgba(120,197,239,0.32); transform:translateY(-4px); }
.contact-icon { font-size:36px; margin-bottom:16px; }
.contact-card h3 { font-family:'Baloo 2',cursive; font-size:19px; font-weight:800; color:var(--wh); margin-bottom:10px; }
.contact-card p { font-size:14px; color:var(--t-mid); line-height:1.6; margin-bottom:20px; font-weight:500; }

.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid rgba(120,197,239,0.15);
  border-radius: var(--r-lg);
  padding: 48px;
}
.form-h3 {
  font-family:'Baloo 2',cursive; font-size:24px; font-weight:800;
  color:var(--wh); margin-bottom:28px; text-align:center;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-family:'Baloo 2',cursive;
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:1px; color:var(--bbm); margin-bottom:8px;
}
.form-group input,
.form-group textarea {
  width:100%; padding:13px 16px;
  border: 2px solid rgba(120,197,239,0.15);
  border-radius:var(--r-sm);
  font-family:'Nunito',sans-serif; font-size:15px;
  color:var(--wh); background:rgba(255,255,255,0.04);
  outline:none; transition:border-color 0.2s, background 0.2s;
  resize:vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color:var(--bbm); background:rgba(120,197,239,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--t-dim); }
.form-note { font-size:13px; color:var(--bbm); margin-top:12px; font-weight:600; text-align:center; min-height:20px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--bg); padding:80px 0 0; position:relative; }
.footer-inner {
  display:grid; grid-template-columns:1.5fr 1fr 1.5fr;
  gap:48px; padding-bottom:64px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.footer-logo-img { height: 52px; width: auto; display:block; margin-bottom:14px; }
.footer-brand p { font-size:14px; color:var(--t-mid); line-height:1.7; font-weight:500; margin-bottom:14px; }
.footer-contact a { color:var(--bbm); font-weight:700; font-size:15px; display:block; line-height:2; transition:color 0.2s; }
.footer-contact a:hover { color:var(--wh); }
.footer-links h4, .footer-cta h4 {
  font-family:'Baloo 2',cursive; font-size:14px; font-weight:800;
  color:var(--wh); margin-bottom:16px; text-transform:uppercase; letter-spacing:1.5px;
}
.footer-links ul { list-style:none; }
.footer-links li { margin-bottom:8px; }
.footer-links a { font-size:14px; color:var(--t-mid); font-weight:600; transition:color 0.2s; }
.footer-links a:hover { color:var(--bbm); }
.footer-cta p { font-size:14px; color:var(--t-mid); line-height:1.7; margin-bottom:20px; font-weight:500; }
.footer-bottom { padding:20px 0; }
.footer-bottom p { font-size:13px; color:var(--t-dim); text-align:center; font-weight:600; }

/* =====================================================
   FLOAT CTA
   ===================================================== */
.float-cta {
  position:fixed; bottom:28px; right:28px;
  background:var(--bbm); color:var(--bg);
  font-family:'Baloo 2',cursive; font-size:14px; font-weight:800;
  padding:13px 24px; border-radius:100px;
  box-shadow:0 8px 32px rgba(120,197,239,0.4);
  z-index:500; text-transform:uppercase; letter-spacing:1px;
  transition:all 0.2s; display:none;
}
.float-cta.show { display:block; }
.float-cta:hover { background:var(--bbm-dk); transform:translateY(-3px); }

/* =====================================================
   CHECKLIST PAGE (checklist.html)
   ===================================================== */
.cl-page {
  background: var(--bg);
  min-height: 100vh;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.cl-page-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cl-page-logo { display:flex; justify-content:center; margin-bottom:8px; }
.cl-page-logo-img { height: 52px; width: auto; display:block; }
.cl-tagline {
  font-family:'Baloo 2',cursive; font-size:10px; font-weight:700;
  text-transform:uppercase; letter-spacing:4px; color:var(--t-low);
  text-align:center; margin-bottom:28px;
}
.cl-page-title {
  font-family:'Baloo 2',cursive; font-size:clamp(24px,5vw,36px);
  font-weight:800; color:var(--bbm-dp); text-align:center; margin-bottom:10px;
}
.cl-page-sub {
  font-size:15px; color:var(--t-mid); text-align:center;
  line-height:1.65; margin-bottom:32px; font-weight:500;
}

/* Form box */
.cl-form-box {
  background: rgba(120,197,239,0.06);
  border: 1px solid rgba(120,197,239,0.2);
  border-radius: var(--r-md);
  padding: 28px;
  margin-bottom: 28px;
}
.cl-form-box label {
  display:block; font-family:'Baloo 2',cursive;
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:1px; color:var(--bbm); margin-bottom:6px;
}
.cl-form-box input {
  width:100%; padding:12px 16px;
  border:2px solid rgba(120,197,239,0.2);
  border-radius:var(--r-sm);
  font-family:'Nunito',sans-serif; font-size:15px;
  color:var(--wh); background:rgba(255,255,255,0.05);
  margin-bottom:16px; outline:none; transition:border-color 0.2s;
}
.cl-form-box input:focus { border-color:var(--bbm); background:rgba(120,197,239,0.07); }
.cl-form-box input::placeholder { color:var(--t-dim); }
.cl-form-box input:last-child { margin-bottom:0; }

/* Instruction */
.cl-instruction {
  font-family:'Baloo 2',cursive; font-size:15px; color:var(--t-mid);
  margin-bottom:24px; font-weight:600; line-height:1.6;
}
.cl-instruction strong { color:var(--bbm); }

/* Checklist items */
.cl-item {
  background: var(--bg3);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 20px 18px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.cl-item:hover { border-color: rgba(120,197,239,0.2); }
.cl-item.pass   { border-color:var(--grn); background:rgba(39,174,96,0.07); }
.cl-item.fail   { border-color:var(--red); background:rgba(231,76,60,0.07); }
.cl-item.unsure { border-color:var(--amb); background:rgba(243,156,18,0.07); }

.cl-head { display:flex; align-items:flex-start; gap:14px; margin-bottom:8px; }
.cl-num  { font-family:'Baloo 2',cursive; font-size:20px; font-weight:800; color:var(--bbm); min-width:32px; line-height:1.3; }
.cl-title { font-size:15px; font-weight:700; color:var(--wh); line-height:1.4; }
.cl-desc  { font-size:13px; color:var(--t-mid); line-height:1.6; margin-left:46px; margin-bottom:14px; font-weight:500; }
.cl-options { display:flex; gap:10px; margin-left:46px; }
.cl-btn {
  flex:1; padding:10px 8px; border-radius:9px;
  font-family:'Nunito',sans-serif; font-size:13px; font-weight:700;
  cursor:pointer; transition:all 0.2s; text-align:center;
  border:2px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04); color:rgba(255,255,255,0.5);
}
.cl-btn-pass:hover,.cl-btn-pass.on   { background:var(--grn); color:#fff; border-color:var(--grn); }
.cl-btn-fail:hover,.cl-btn-fail.on   { background:var(--red); color:#fff; border-color:var(--red); }
.cl-btn-unsure:hover,.cl-btn-unsure.on { background:var(--amb); color:#fff; border-color:var(--amb); }

/* Score bar */
.cl-score-bar {
  display:none;
  background:var(--bg3);
  border:2px solid rgba(120,197,239,0.25);
  border-radius:var(--r-md);
  padding:28px; margin-top:28px; margin-bottom:8px;
}
.cl-score-bar.vis { display:block; }
.cl-score-title { font-family:'Baloo 2',cursive; font-size:20px; font-weight:800; margin-bottom:8px; }
.cl-bar-track { height:14px; border-radius:8px; background:rgba(255,255,255,0.1); margin:12px 0; overflow:hidden; }
.cl-bar-fill  { height:100%; border-radius:8px; transition:width 0.6s ease; }
.cl-verdict   { font-size:15px; color:var(--t-mid); line-height:1.6; font-weight:600; }
.cl-verdict strong { color:var(--wh); font-weight:800; }

.cl-submit-wrap { text-align:center; margin-top:32px; }
.cl-note { font-size:12px; color:var(--t-dim); margin-top:12px; font-weight:600; }

/* Footer on checklist page */
.cl-footer {
  text-align:center; margin-top:48px; padding-top:24px;
  border-top:1px solid rgba(120,197,239,0.1);
}
.cl-footer p { font-size:13px; color:var(--t-low); font-weight:600; }
.cl-footer a { color:var(--bbm-dp); }

/* =====================================================
   RESULT OVERLAY
   ===================================================== */
.result-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.75); z-index:2000;
  justify-content:center; align-items:center;
  padding:24px; backdrop-filter:blur(6px);
}
.result-overlay.vis { display:flex; }
.result-card {
  background:var(--bg2);
  border:2px solid rgba(120,197,239,0.3);
  border-radius:var(--r-lg);
  padding:48px 40px; max-width:520px; width:100%;
  text-align:center;
  box-shadow:0 32px 80px rgba(0,0,0,0.55);
  animation:slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.result-emoji  { font-size:56px; margin-bottom:12px; }
.result-label  { font-family:'Baloo 2',cursive; font-size:26px; font-weight:800; margin-bottom:16px; }
.result-msg    { font-size:16px; color:var(--t-mid); line-height:1.7; margin-bottom:28px; font-weight:500; }
.result-msg strong { color:var(--wh); font-weight:800; }
.result-sub    { font-size:13px; color:var(--t-dim); margin-top:16px; font-weight:600; }
.result-close  {
  display:block; margin:20px auto 0;
  background:none; border:none; color:var(--t-dim);
  font-size:13px; font-weight:700; cursor:pointer; transition:color 0.2s;
}
.result-close:hover { color:var(--t-mid); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width:900px) {
  .reviews-grid   { grid-template-columns:1fr; }
  .trust-grid     { grid-template-columns:1fr; }
  .contact-grid   { grid-template-columns:1fr; }
  .about-inner    { grid-template-columns:1fr; gap:32px; text-align:center; }
  .about-contact  { justify-content:center; }
  .footer-inner   { grid-template-columns:1fr 1fr; }
  .footer-brand   { grid-column:1 / -1; }
  .form-row       { grid-template-columns:1fr; gap:0; }
}

@media (max-width:600px) {
  .nav-links {
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; background:rgba(44,44,44,0.98);
    padding:16px; gap:4px;
    border-bottom:1px solid rgba(120,197,239,0.12);
  }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .nav-toggle.active span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity:0; }
  .nav-toggle.active span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }
  .hero { padding:100px 0 60px; }
  .hero-btns { flex-direction:column; align-items:center; }
  .hero-logo-img { height:220px; }
  .btn-xl { padding:16px 32px; font-size:17px; width:100%; }
  .contact-form-wrap { padding:28px 20px; }
  .footer-inner { grid-template-columns:1fr; gap:32px; }
  .result-card  { padding:36px 24px; }
  .cl-options   { margin-left:0; }
  .cl-desc      { margin-left:0; }
  .float-cta    { bottom:20px; right:20px; font-size:13px; padding:11px 20px; }
  .teaser-lock  { padding:28px 20px 32px; }
  .lock-sub     { margin-bottom:20px; }
  .tprev-btns   { flex-wrap:wrap; }
}
