/* =============================================================
   ClinicBoost — main stylesheet
   Brand: Poppins + logo blues (deep navy / brand blue / sky cyan)
   ============================================================= */

:root {
  /* Brand blue family — from the logo */
  --c-deep:    #002B5C;    /* deep navy */
  --c-blue:    #0A4A9E;    /* primary brand blue */
  --c-blue-2:  #1565C0;    /* hover/secondary blue */
  --c-sky:     #8DD8EC;    /* light cyan accent */
  --c-mist:    #E6F2FA;    /* very light blue tint */

  /* Warm accent — for energy, contrast, CTAs */
  --c-coral:     #F47B5C;  /* warm coral primary accent */
  --c-coral-2:   #FF9B7A;  /* lighter coral */
  --c-coral-bg:  #FFEFE8;  /* coral tint background */
  --c-peach:     #FFD9C2;  /* peach */

  /* Cool / fresh accent */
  --c-sage:      #6FA89A;  /* sage green */
  --c-sage-bg:   #E8F0EC;  /* sage tint */
  --c-mint:      #B7DCD7;  /* mint */

  /* Premium accent */
  --c-gold:      #C99A4E;  /* warm gold */
  --c-gold-bg:   #FAF3E2;  /* butter cream */

  /* Neutrals */
  --c-cream:   #F8F5F0;    /* warm off-white page background */
  --c-paper:   #FBF9F5;    /* paper-like alternate */
  --c-slate:   #16202F;    /* moody slate (deeper than navy) */
  --c-white:   #FFFFFF;
  --c-ink:     #0E1929;    /* heading text */
  --c-body:    #3A4A60;    /* body text */
  --c-muted:   #6B7A90;    /* secondary text */
  --c-line:    #ECE7DE;    /* warm soft border */
  --c-line-cool: #E1E8F0;  /* cool border (legacy) */
  --c-success: #1FA971;
  --c-warn:    #F2A33C;
  --c-danger:  #E14B4B;

  --radius:        14px;
  --radius-lg:     22px;
  --radius-pill:   999px;
  --shadow-sm:     0 2px 8px rgba(10, 74, 158, 0.06);
  --shadow:        0 14px 40px rgba(10, 74, 158, 0.10);
  --shadow-lg:     0 30px 70px rgba(0, 43, 92, 0.18);
  --container:     1200px;
  --container-sm:  900px;

  --t-fast: 180ms cubic-bezier(.4,.0,.2,1);
  --t-med:  280ms cubic-bezier(.4,.0,.2,1);
  --t-slow: 520ms cubic-bezier(.16,1,.3,1);
}

/* ----------------------- reset / base ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.cb-no-scroll { overflow: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-deep); }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 32px 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--c-ink);
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 700; letter-spacing: -0.028em; line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 16px; }
strong { font-weight: 600; color: var(--c-ink); }

::selection { background: var(--c-blue); color: #fff; }

/* ----------------------- layout helpers ----------------------- */
.cb-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.cb-container-sm { max-width: var(--container-sm); }
.cb-section { padding: 96px 0; }
.cb-section-tight { padding: 56px 0; }
.cb-section-bg { background: var(--c-cream); }
.cb-section-deep { background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-blue) 100%); color: #fff; }
.cb-section-deep h1, .cb-section-deep h2, .cb-section-deep h3, .cb-section-deep p { color: #fff; }
.cb-section-deep .cb-eyebrow { color: var(--c-sky); }

.cb-grid { display: grid; gap: 28px; }
.cb-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cb-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cb-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cb-grid-2, .cb-grid-3, .cb-grid-4 { grid-template-columns: 1fr; }
  .cb-section { padding: 64px 0; }
}

.cb-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 14px;
}
.cb-lede { font-size: 1.12rem; color: var(--c-muted); line-height: 1.7; max-width: 640px; }
.cb-section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.cb-section-head .cb-lede { margin: 0 auto; }

/* ----------------------- buttons ----------------------- */
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.cb-btn:hover { transform: translateY(-2px); }
.cb-btn:active { transform: translateY(0); }

.cb-btn-primary { background: var(--c-blue); color: #fff; box-shadow: var(--shadow); }
.cb-btn-primary:hover { background: var(--c-deep); color: #fff; box-shadow: var(--shadow-lg); }

.cb-btn-accent { background: var(--c-sky); color: var(--c-deep); }
.cb-btn-accent:hover { background: #B5E5F2; color: var(--c-deep); }

.cb-btn-ghost { background: transparent; color: var(--c-blue); border-color: var(--c-line); }
.cb-btn-ghost:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

.cb-btn-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.cb-btn-light:hover { background: #fff; color: var(--c-deep); }

.cb-btn-lg { padding: 18px 36px; font-size: 1.02rem; }
.cb-btn-block { width: 100%; }

.cb-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--c-blue);
}
.cb-link-arrow span { transition: transform var(--t-fast); }
.cb-link-arrow:hover span { transform: translateX(4px); }

/* ----------------------- header / nav ----------------------- */
.cb-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.cb-header.is-stuck {
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 20px rgba(10, 74, 158, 0.06);
}
.cb-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.cb-brand { display: flex; align-items: center; gap: 10px; }
.cb-brand img { max-height: 48px; width: auto; }
.cb-logo-text {
  font-weight: 800; font-size: 1.4rem; color: var(--c-deep); letter-spacing: -0.02em;
}
.cb-logo-text span { color: var(--c-blue); }

.cb-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.cb-menu a {
  display: inline-block; padding: 10px 16px;
  font-weight: 500; font-size: 0.96rem; color: var(--c-ink);
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast);
}
.cb-menu a:hover, .cb-menu .current-menu-item > a { background: var(--c-mist); color: var(--c-deep); }

.cb-nav-cta { display: flex; align-items: center; gap: 12px; }
.cb-nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--c-deep);
  font-size: 0.95rem;
}
.cb-nav-phone svg { width: 18px; height: 18px; color: var(--c-blue); }

.cb-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line); background: #fff;
  border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column;
  gap: 5px; padding: 0;
}
.cb-burger span { display: block; width: 20px; height: 2px; background: var(--c-deep); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.cb-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cb-burger.is-open span:nth-child(2) { opacity: 0; }
.cb-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .cb-burger { display: inline-flex; }
  .cb-nav-phone { display: none; }
  .cb-menu, .cb-nav-cta .cb-btn:not(.cb-burger) { display: none; }
  .cb-mobile-panel { display: block; }
}

.cb-mobile-panel {
  display: none;
  position: fixed; inset: 72px 0 0 0;
  background: #fff;
  padding: 24px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med);
  border-top: 1px solid var(--c-line);
  z-index: 70;
  overflow-y: auto;
}
.cb-mobile-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cb-mobile-panel ul { list-style: none; margin: 0 0 24px; padding: 0; }
.cb-mobile-panel li { border-bottom: 1px solid var(--c-line); }
.cb-mobile-panel a { display: block; padding: 16px 4px; font-weight: 500; color: var(--c-ink); }

/* ----------------------- announcement bar ----------------------- */
.cb-announce {
  background: var(--c-deep);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.cb-announce a { color: var(--c-sky); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------- HERO ----------------------- */
.cb-hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(141, 216, 236, 0.45), transparent 60%),
    radial-gradient(ellipse at 0% 80%, rgba(10, 74, 158, 0.10), transparent 60%),
    linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
  overflow: hidden;
}
.cb-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10, 74, 158, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.cb-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
@media (max-width: 980px) { .cb-hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.cb-hero h1 { margin-bottom: 22px; }
.cb-hero h1 .cb-h-accent {
  background: linear-gradient(120deg, var(--c-blue) 0%, var(--c-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cb-hero p.cb-hero-sub { font-size: 1.18rem; color: var(--c-body); max-width: 560px; line-height: 1.65; }
.cb-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cb-hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.cb-hero-trust .cb-avatars { display: flex; }
.cb-hero-trust .cb-avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -8px; background: var(--c-mist) center/cover;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--c-deep); font-size: 0.85rem;
}
.cb-hero-trust .cb-avatars span:first-child { margin-left: 0; }
.cb-hero-trust .cb-stars { color: #F2A33C; letter-spacing: 2px; }
.cb-hero-trust small { color: var(--c-muted); display: block; }
.cb-hero-trust strong { color: var(--c-ink); display: block; }

.cb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(10, 74, 158, 0.08); color: var(--c-blue);
  font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
}
.cb-pill .cb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 4px rgba(31,169,113,0.18); }

.cb-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-blue) 100%);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  min-height: 460px;
  overflow: hidden;
}
.cb-hero-visual::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.6;
}
.cb-hero-visual::after {
  content: ""; position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}

/* Stats card inside hero visual */
.cb-stats-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
  margin-top: 40px;
}
.cb-stats-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--c-muted); margin: 0 0 4px; font-weight: 600; }
.cb-stats-card .cb-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--c-deep); letter-spacing: -0.02em; line-height: 1; }
.cb-stats-card .cb-stat-trend { color: var(--c-success); font-weight: 600; font-size: 0.92rem; margin-left: 8px; }
.cb-stats-card .cb-bar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 16px; align-items: end; height: 80px; }
.cb-stats-card .cb-bar i {
  display: block; background: linear-gradient(180deg, var(--c-sky), var(--c-blue));
  border-radius: 4px 4px 0 0;
}
.cb-stats-card .cb-bar i:nth-child(1){ height: 28%; }
.cb-stats-card .cb-bar i:nth-child(2){ height: 40%; }
.cb-stats-card .cb-bar i:nth-child(3){ height: 35%; }
.cb-stats-card .cb-bar i:nth-child(4){ height: 55%; }
.cb-stats-card .cb-bar i:nth-child(5){ height: 70%; }
.cb-stats-card .cb-bar i:nth-child(6){ height: 88%; }
.cb-stats-card .cb-bar i:nth-child(7){ height: 100%; background: linear-gradient(180deg, var(--c-sky), var(--c-deep)); }

.cb-floating-tag {
  position: absolute; z-index: 2;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--c-ink); font-size: 0.9rem;
  animation: cb-float 4s ease-in-out infinite;
}
.cb-floating-tag .cb-ico {
  width: 36px; height: 36px; border-radius: 10px; background: var(--c-mist);
  display: inline-flex; align-items: center; justify-content: center; color: var(--c-blue);
  flex: 0 0 36px;
}
.cb-floating-tag.cb-tag-1 { top: 20px; left: -16px; }
.cb-floating-tag.cb-tag-2 { bottom: 30px; right: -10px; animation-delay: 1.2s; }
@keyframes cb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ----------------------- trust bar ----------------------- */
.cb-trustbar {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.cb-trustbar p {
  text-align: center; font-size: 0.82rem; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; margin-bottom: 22px;
}
.cb-logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; align-items: center;
  opacity: 0.85;
}
.cb-logos .cb-logo-pill {
  text-align: center; font-weight: 700; color: var(--c-muted); letter-spacing: 0.04em;
  padding: 14px 8px; border: 1px dashed var(--c-line); border-radius: 10px; font-size: 0.92rem;
}
@media (max-width: 900px) { .cb-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ----------------------- problem section ----------------------- */
.cb-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cb-problem-grid { grid-template-columns: 1fr; } }
.cb-problem-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--t-med), box-shadow var(--t-med);
  position: relative;
}
.cb-problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cb-problem-card .cb-x {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(225, 75, 75, 0.10); color: var(--c-danger);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
  margin-bottom: 18px;
}
.cb-problem-card h3 { font-size: 1.15rem; }

/* ----------------------- 3-step method ----------------------- */
.cb-method { position: relative; }
.cb-method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
@media (max-width: 900px) { .cb-method-grid { grid-template-columns: 1fr; } }
.cb-method-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 30px;
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cb-method-card .cb-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-deep));
  color: #fff; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(10, 74, 158, 0.3);
}
.cb-method-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.cb-method-card ul li {
  position: relative; padding-left: 28px; margin-bottom: 8px;
  color: var(--c-body); font-size: 0.95rem;
}
.cb-method-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-mist); color: var(--c-blue);
  font-weight: 700; font-size: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ----------------------- services ----------------------- */
.cb-service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex; flex-direction: column;
  height: 100%;
}
.cb-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cb-service-card .cb-ico-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--c-mist), var(--c-sky));
  color: var(--c-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.cb-service-card .cb-ico-wrap svg { width: 28px; height: 28px; }
.cb-service-card h3 { margin-bottom: 10px; }
.cb-service-card p { color: var(--c-muted); margin-bottom: 18px; flex: 1; }
.cb-service-card .cb-link-arrow { margin-top: auto; }

/* ----------------------- results / metrics ----------------------- */
.cb-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 900px) { .cb-metrics { grid-template-columns: repeat(2, 1fr); } }
.cb-metric {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.cb-metric .cb-metric-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1;
}
.cb-metric .cb-metric-num small { font-size: 0.55em; font-weight: 700; color: var(--c-sky); margin-left: 2px; }
.cb-metric .cb-metric-label { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-top: 8px; }

/* ----------------------- case studies ----------------------- */
.cb-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .cb-case-grid { grid-template-columns: 1fr; } }
.cb-case {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-case:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cb-case-media {
  height: 200px;
  background: linear-gradient(135deg, var(--c-mist), var(--c-sky));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-deep);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.cb-case-media .cb-case-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95); color: var(--c-deep);
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600;
}
.cb-case-body { padding: 26px; }
.cb-case-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cb-case-result {
  display: flex; align-items: baseline; gap: 6px;
  margin: 14px 0 4px;
}
.cb-case-result strong { font-size: 1.6rem; color: var(--c-success); font-weight: 800; line-height: 1; }
.cb-case-result span { color: var(--c-muted); font-size: 0.88rem; }

/* ----------------------- testimonials ----------------------- */
.cb-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .cb-testi-grid { grid-template-columns: 1fr; } }
.cb-testi {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-testi:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cb-testi .cb-stars { color: #F2A33C; letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.cb-testi .cb-quote { font-size: 1.02rem; line-height: 1.7; color: var(--c-ink); margin-bottom: 22px; }
.cb-testi .cb-quote::before { content: "“"; font-size: 2.2rem; color: var(--c-sky); font-family: Georgia, serif; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.cb-testi-author { display: flex; align-items: center; gap: 12px; }
.cb-testi-author .cb-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-deep));
  color: #fff; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.cb-testi-author strong { display: block; color: var(--c-ink); font-size: 0.97rem; }
.cb-testi-author small { color: var(--c-muted); }

/* ----------------------- lead magnet ----------------------- */
.cb-leadmag {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-blue) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cb-leadmag::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.5;
}
@media (max-width: 900px) { .cb-leadmag { grid-template-columns: 1fr; padding: 40px 28px; } }
.cb-leadmag h2 { color: #fff; }
.cb-leadmag p { color: rgba(255,255,255,0.9); }
.cb-leadmag ul { list-style: none; padding: 0; margin: 18px 0 28px; }
.cb-leadmag ul li { padding-left: 26px; position: relative; margin-bottom: 8px; color: rgba(255,255,255,0.95); }
.cb-leadmag ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-sky); color: var(--c-deep);
  font-weight: 700; font-size: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.cb-leadmag .cb-form { background: #fff; border-radius: var(--radius); padding: 28px; color: var(--c-ink); position: relative; z-index: 1; }
.cb-leadmag .cb-form h3 { color: var(--c-ink); font-size: 1.15rem; margin-bottom: 6px; }
.cb-leadmag .cb-form p { color: var(--c-muted); font-size: 0.92rem; margin-bottom: 18px; }

/* ----------------------- forms ----------------------- */
.cb-form .cb-row { margin-bottom: 14px; }
.cb-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--c-ink); margin-bottom: 6px; }
.cb-form input,
.cb-form select,
.cb-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--c-ink);
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.cb-form input:focus,
.cb-form select:focus,
.cb-form textarea:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(10,74,158,0.12);
}
.cb-form textarea { resize: vertical; min-height: 100px; }
.cb-form .cb-honey { position: absolute; left: -9999px; top: -9999px; }
.cb-form .cb-formmsg {
  margin-top: 14px; font-size: 0.92rem; padding: 12px 14px; border-radius: 10px; display: none;
}
.cb-form .cb-formmsg.is-success { display: block; background: rgba(31,169,113,0.12); color: var(--c-success); }
.cb-form .cb-formmsg.is-error   { display: block; background: rgba(225,75,75,0.10);  color: var(--c-danger); }
.cb-form button[type="submit"] { width: 100%; }

/* ----------------------- FAQ ----------------------- */
.cb-faq { max-width: 820px; margin: 0 auto; }
.cb-faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}
.cb-faq-item.is-open { box-shadow: var(--shadow); }
.cb-faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 24px; font: inherit; font-weight: 600; color: var(--c-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.cb-faq-q .cb-faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-mist); color: var(--c-blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--t-fast);
  font-size: 1.2rem; font-weight: 600;
}
.cb-faq-item.is-open .cb-faq-icon { transform: rotate(45deg); background: var(--c-blue); color: #fff; }
.cb-faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height var(--t-med), padding var(--t-med); }
.cb-faq-item.is-open .cb-faq-a { padding: 0 24px 24px; max-height: 1000px; }
.cb-faq-a p { color: var(--c-body); margin: 0; }

/* ----------------------- final CTA ----------------------- */
.cb-final-cta {
  position: relative;
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-blue) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cb-final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--c-sky), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.18), transparent 40%);
  opacity: 0.35; pointer-events: none;
}
.cb-final-cta > * { position: relative; z-index: 1; }
.cb-final-cta h2 { color: #fff; }
.cb-final-cta p { color: rgba(255,255,255,0.92); max-width: 620px; margin: 0 auto 30px; font-size: 1.1rem; }

/* ----------------------- contact ----------------------- */
.cb-contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .cb-contact-grid { grid-template-columns: 1fr; } }
.cb-contact-info ul { list-style: none; padding: 0; margin: 24px 0; }
.cb-contact-info li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.cb-contact-info li .cb-ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--c-mist);
  color: var(--c-blue); display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cb-contact-info li strong { display: block; color: var(--c-ink); }
.cb-contact-info li span { color: var(--c-muted); font-size: 0.95rem; }

.cb-contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-line);
}
.cb-form .cb-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .cb-form .cb-row-2 { grid-template-columns: 1fr; } }

/* ----------------------- popup modal ----------------------- */
.cb-modal-backdrop {
  position: fixed; inset: 0; background: rgba(14, 25, 41, 0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med);
}
.cb-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cb-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform var(--t-med);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 220px 1fr;
}
.cb-modal-backdrop.is-open .cb-modal { transform: translateY(0) scale(1); }
@media (max-width: 600px) { .cb-modal { grid-template-columns: 1fr; max-width: 420px; } }

.cb-modal-art {
  background: linear-gradient(135deg, var(--c-deep), var(--c-blue));
  color: #fff;
  padding: 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cb-modal-art::after {
  content: ""; position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.55;
}
.cb-modal-art .cb-modal-tag {
  display: inline-block; background: rgba(255,255,255,0.18);
  color: #fff; padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.cb-modal-art h3 { color: #fff; font-size: 1.5rem; line-height: 1.25; margin: 0; }
.cb-modal-art .cb-modal-price { font-weight: 700; color: var(--c-sky); margin-top: 18px; font-size: 0.92rem; }
@media (max-width: 600px) { .cb-modal-art { padding: 24px 24px 18px; } }

.cb-modal-body { padding: 30px; }
.cb-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: 0; color: #fff;
  cursor: pointer; font-size: 1rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2; transition: background var(--t-fast);
}
.cb-modal-close:hover { background: rgba(255,255,255,0.32); }

/* ----------------------- floating WhatsApp ----------------------- */
.cb-wa {
  position: fixed; bottom: 90px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.cb-wa:hover { transform: scale(1.08); color: #fff; box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5); }
.cb-wa svg { width: 28px; height: 28px; }
.cb-wa::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,0.5);
  animation: cb-pulse 2.4s infinite;
}
@keyframes cb-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ----------------------- sticky mobile CTA bar ----------------------- */
.cb-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -10px 30px rgba(10, 74, 158, 0.08);
  display: none;
  padding: 12px 16px;
  z-index: 49;
  gap: 10px;
}
.cb-sticky-cta a { flex: 1; }
@media (max-width: 700px) {
  .cb-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .cb-wa { bottom: 100px; }
}

/* ----------------------- footer ----------------------- */
.cb-footer {
  background: var(--c-deep);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 0;
  position: relative;
}
.cb-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
}
@media (max-width: 900px) { .cb-footer-grid { grid-template-columns: 1fr 1fr; } .cb-footer-col-1 { grid-column: 1 / -1; } }
@media (max-width: 540px) { .cb-footer-grid { grid-template-columns: 1fr; } }

.cb-footer h4 {
  color: #fff; font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 22px;
}
.cb-footer p, .cb-footer a, .cb-footer li { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.cb-footer ul { list-style: none; padding: 0; margin: 0; }
.cb-footer ul li { margin-bottom: 10px; }
.cb-footer a:hover { color: var(--c-sky); }
.cb-footer .cb-brand { margin-bottom: 18px; }
.cb-footer .cb-brand img { max-height: 56px; filter: brightness(0) invert(1); }
.cb-footer .cb-brand .cb-logo-text { color: #fff; }
.cb-footer .cb-brand .cb-logo-text span { color: var(--c-sky); }
.cb-footer .cb-newsletter input { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: #fff; }
.cb-footer .cb-newsletter input::placeholder { color: rgba(255,255,255,0.55); }
.cb-footer .cb-newsletter input:focus { border-color: var(--c-sky); box-shadow: 0 0 0 4px rgba(141,216,236,0.15); }
.cb-footer .cb-socials { display: flex; gap: 10px; margin-top: 18px; }
.cb-footer .cb-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.cb-footer .cb-socials a:hover { background: var(--c-blue); border-color: var(--c-blue); transform: translateY(-2px); }
.cb-footer .cb-socials svg { width: 16px; height: 16px; }

.cb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.cb-footer-bottom p, .cb-footer-bottom a { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }
.cb-footer-bottom a:hover { color: var(--c-sky); }

/* ----------------------- generic page hero ----------------------- */
.cb-pagehero {
  padding: 70px 0 48px;
  background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
  border-bottom: 1px solid var(--c-line);
}
.cb-pagehero h1 { margin-bottom: 14px; }

/* ----------------------- blog cards ----------------------- */
.cb-post-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex; flex-direction: column;
}
.cb-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cb-post-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.cb-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.cb-post-card:hover .cb-post-card__media img { transform: scale(1.05); }
.cb-post-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--c-mist), var(--c-sky)); }
.cb-post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cb-post-card__meta { font-size: 0.82rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.cb-post-card__body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.cb-post-card__body h3 a { color: var(--c-ink); }
.cb-post-card__body h3 a:hover { color: var(--c-blue); }
.cb-post-card__body .cb-link-arrow { margin-top: auto; }

/* ----------------------- single post ----------------------- */
.cb-single { padding: 60px 0; }
.cb-single article { max-width: 760px; margin: 0 auto; }
.cb-single h1 { margin-bottom: 18px; }
.cb-single .cb-post-meta { color: var(--c-muted); font-size: 0.9rem; margin-bottom: 32px; }
.cb-single .cb-post-thumb { margin: 0 0 32px; border-radius: var(--radius-lg); overflow: hidden; }
.cb-single .entry-content p { font-size: 1.07rem; line-height: 1.8; }
.cb-single .entry-content h2,
.cb-single .entry-content h3 { margin-top: 36px; }
.cb-single .entry-content blockquote {
  border-left: 4px solid var(--c-blue);
  background: var(--c-cream);
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 8px;
  font-style: italic;
  color: var(--c-ink);
}

.cb-pagination {
  display: flex; justify-content: center; gap: 8px; margin-top: 48px;
}
.cb-pagination .page-numbers {
  padding: 10px 16px; border-radius: 10px; border: 1px solid var(--c-line);
  background: #fff; color: var(--c-ink); font-weight: 500;
}
.cb-pagination .page-numbers.current,
.cb-pagination .page-numbers:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

/* ----------------------- 404 ----------------------- */
.cb-404 {
  text-align: center; padding: 120px 24px;
  background: linear-gradient(180deg, var(--c-cream), #fff);
}
.cb-404 .cb-big { font-size: clamp(6rem, 18vw, 10rem); font-weight: 800; color: var(--c-blue); line-height: 1; letter-spacing: -0.05em; }

/* ----------------------- reveal-on-scroll ----------------------- */
.cb-reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.cb-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----------------------- utility ----------------------- */
.cb-text-center { text-align: center; }
.cb-mt-0 { margin-top: 0; }
.cb-mt-2 { margin-top: 24px; }
.cb-mt-4 { margin-top: 48px; }
.cb-mb-0 { margin-bottom: 0; }
.cb-show-md { display: none; }
@media (max-width: 980px) { .cb-show-md { display: inline-flex; } .cb-hide-md { display: none; } }

/* =============================================================
   v2 — Editorial / bento upgrades
   ============================================================= */

/* ---------- accent: handwritten underline + highlight ---------- */
.cb-underline {
  position: relative; display: inline-block; white-space: nowrap;
}
.cb-underline::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -10px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18' preserveAspectRatio='none'><path d='M2 14 C 60 2, 130 2, 200 9 S 295 16, 298 6' stroke='%238DD8EC' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") center / 100% 100% no-repeat;
  pointer-events: none;
}
.cb-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(141,216,236,0.55) 60%);
  padding: 0 4px; border-radius: 2px;
}

/* ---------- editorial mega numerals ---------- */
.cb-numeral {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  background: linear-gradient(180deg, var(--c-blue) 0%, var(--c-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.cb-section-deep .cb-numeral {
  background: linear-gradient(180deg, var(--c-sky) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- HERO v2 ---------- */
.cb-hero-v2 {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 110% -10%, rgba(141,216,236,0.4), transparent 60%),
    radial-gradient(900px 500px at -10% 90%, rgba(10,74,158,0.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--c-cream) 100%);
}
.cb-hero-v2::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,43,92,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  pointer-events: none;
}
.cb-hero-v2 .cb-container { position: relative; z-index: 1; }
.cb-hero-v2 h1 {
  margin: 0 0 24px;
  max-width: 14ch;
}
.cb-hero-v2 .cb-hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center;
}
@media (max-width: 980px) { .cb-hero-v2 .cb-hero-grid { grid-template-columns: 1fr; } }
.cb-hero-v2 .cb-hero-sub {
  font-size: 1.22rem; max-width: 540px; color: var(--c-body); line-height: 1.6;
}
.cb-hero-v2 .cb-hero-promise {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--c-deep);
  font-size: 0.95rem;
}
.cb-hero-v2 .cb-hero-promise strong { color: var(--c-blue); font-weight: 700; }

/* ---------- phone mockup ---------- */
.cb-phone {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1d29 0%, #0E1929 100%);
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(0, 43, 92, 0.32),
    0 0 0 2px #2a2f3d,
    inset 0 0 0 6px #0E1929;
}
.cb-phone::before {
  content: "";
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; background: #0E1929; border-radius: 16px;
  z-index: 3;
}
.cb-phone .cb-phone-screen {
  position: relative;
  height: 100%; width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-deep), var(--c-blue));
}
.cb-phone .cb-reel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 18px;
  color: #fff;
}
.cb-phone .cb-reel-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cb-phone .cb-reel-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.cb-phone .cb-reel-content { position: relative; z-index: 2; }
.cb-phone .cb-reel-tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border-radius: 999px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
}
.cb-phone .cb-reel-title {
  font-size: 1.05rem; line-height: 1.3; font-weight: 700;
  margin: 0 0 8px; color: #fff;
}
.cb-phone .cb-reel-meta {
  display: flex; gap: 14px; font-size: 0.78rem; opacity: 0.92;
}
.cb-phone .cb-reel-meta span { display: inline-flex; align-items: center; gap: 4px; }

.cb-hero-phones {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center; align-items: center;
}
.cb-hero-phones .cb-phone {
  position: absolute;
}
.cb-hero-phones .cb-phone-1 { transform: rotate(-7deg) translateX(-90px); z-index: 2; }
.cb-hero-phones .cb-phone-2 { transform: rotate(5deg)  translateX(90px); z-index: 1; opacity: 0.92; }
.cb-hero-phones .cb-phone-3 {
  position: absolute; bottom: -30px; right: -10px; z-index: 3;
  background: #fff; color: var(--c-ink);
  padding: 14px 18px; border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 12px; align-items: center;
  width: auto; height: auto;
  font-weight: 600; font-size: 0.9rem;
  animation: cb-float 4.5s ease-in-out infinite;
}
.cb-hero-phones .cb-phone-3 .cb-num {
  font-size: 1.4rem; font-weight: 800; color: var(--c-success); line-height: 1;
}

/* sample reel art (gradient + glyph) */
.cb-reel-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; font-weight: 800; color: rgba(255,255,255,0.18);
  letter-spacing: -0.05em;
}
.cb-reel-art-1 { background: linear-gradient(135deg, #0F4C81 0%, #2563EB 100%); }
.cb-reel-art-2 { background: linear-gradient(135deg, #B65A3F 0%, #E76F51 100%); }
.cb-reel-art-3 { background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%); }
.cb-reel-art-4 { background: linear-gradient(135deg, #0E7490 0%, #14B8A6 100%); }
.cb-reel-art-5 { background: linear-gradient(135deg, #7C2D12 0%, #C2410C 100%); }
.cb-reel-art-6 { background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); }

@media (max-width: 980px) {
  .cb-hero-phones { height: auto; padding: 30px 0 60px; gap: 12px; }
  .cb-hero-phones .cb-phone { position: relative; width: 220px; height: 460px; }
  .cb-hero-phones .cb-phone-1 { transform: rotate(-5deg); }
  .cb-hero-phones .cb-phone-2 { display: none; }
  .cb-hero-phones .cb-phone-3 { position: relative; bottom: auto; right: auto; transform: none; margin-top: -30px; }
}

/* ---------- specialty marquee ---------- */
.cb-marquee {
  background: var(--c-deep);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cb-marquee-track {
  display: flex; gap: 56px;
  animation: cb-marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.cb-marquee:hover .cb-marquee-track { animation-play-state: paused; }
.cb-marquee-item {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 56px;
  color: #fff;
}
.cb-marquee-item::after {
  content: "✦"; color: var(--c-sky); font-size: 1.5rem;
}
@keyframes cb-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- problem cards v2 (numbered editorial) ---------- */
.cb-problem-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}
@media (max-width: 800px) { .cb-problem-v2 { grid-template-columns: 1fr; } }
.cb-problem-row {
  padding: 44px 36px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: #fff;
  transition: background var(--t-fast);
}
.cb-problem-row:hover { background: var(--c-cream); }
.cb-problem-row .cb-num-mini {
  font-size: 0.8rem; font-weight: 700; color: var(--c-blue);
  letter-spacing: 0.16em;
}
.cb-problem-row h3 { font-size: 1.45rem; margin: 6px 0 12px; }
.cb-problem-row p { color: var(--c-muted); margin: 0; font-size: 0.97rem; }

/* ---------- pillar trio (bento) ---------- */
.cb-pillars {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  min-height: 620px;
}
@media (max-width: 900px) {
  .cb-pillars { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
}
.cb-pillar {
  border-radius: var(--radius-lg);
  padding: 38px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cb-pillar h3 { font-size: 1.5rem; margin: 0 0 12px; line-height: 1.2; }
.cb-pillar p { font-size: 0.97rem; line-height: 1.6; margin: 0; }

.cb-pillar-1 {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-blue) 100%);
  color: #fff;
  padding: 48px;
}
.cb-pillar-1 h3 { color: #fff; font-size: 2rem; max-width: 14ch; }
.cb-pillar-1 p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cb-pillar-1::after {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.5;
}
.cb-pillar-1 .cb-pillar-tag {
  display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.18);
  border-radius: 999px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px; color: #fff; backdrop-filter: blur(6px);
}

.cb-pillar-2 {
  background: var(--c-cream);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.cb-pillar-2 .cb-icon-bg {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--c-mist), var(--c-sky));
  color: var(--c-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.cb-pillar-3 {
  background: var(--c-sky);
  color: var(--c-deep);
}
.cb-pillar-3 .cb-icon-bg {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(0,43,92,0.12);
  color: var(--c-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* ---------- content reel grid ---------- */
.cb-reels-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 20px 0;
  margin-top: 40px;
}
@media (max-width: 900px) { .cb-reels-strip { grid-template-columns: repeat(2, 1fr); } }
.cb-reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-med);
  box-shadow: var(--shadow-sm);
}
.cb-reel-card:hover { transform: translateY(-6px) scale(1.02); }
.cb-reel-card .cb-reel-overlay {
  position: absolute; inset: 0; padding: 16px 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.85) 100%);
}
.cb-reel-card .cb-reel-spec {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 999px;
  align-self: flex-start;
}
.cb-reel-card .cb-reel-bottom h4 {
  color: #fff; font-size: 0.92rem; line-height: 1.25;
  margin: 0 0 6px; font-weight: 600;
}
.cb-reel-card .cb-reel-bottom .cb-reel-views {
  font-size: 0.78rem; opacity: 0.9; display: inline-flex; gap: 4px; align-items: center;
}
.cb-reel-card .cb-reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--c-deep);
  display: inline-flex; align-items: center; justify-content: center; z-index: 3;
  opacity: 0; transition: opacity var(--t-fast);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.cb-reel-card:hover .cb-reel-play { opacity: 1; }

/* ---------- PRICING (the 3 packages) ---------- */
.cb-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .cb-pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.cb-price-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.cb-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.cb-price-card .cb-price-tier {
  font-size: 0.78rem; font-weight: 700; color: var(--c-blue);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px;
}
.cb-price-card h3 {
  font-size: 1.55rem; line-height: 1.18; margin: 0 0 8px; color: var(--c-ink);
  letter-spacing: -0.02em;
}
.cb-price-card .cb-price-for { color: var(--c-muted); font-size: 0.92rem; margin-bottom: 24px; }

.cb-price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.cb-price-card ul li {
  position: relative; padding: 10px 0 10px 28px;
  font-size: 0.94rem; color: var(--c-body);
  border-bottom: 1px solid var(--c-line);
}
.cb-price-card ul li:last-child { border-bottom: 0; }
.cb-price-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 11px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-mist); color: var(--c-blue);
  font-weight: 700; font-size: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.cb-price-card ul li strong { color: var(--c-deep); font-weight: 600; }

.cb-price-outcome {
  background: var(--c-cream);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
  border: 1px dashed var(--c-line);
}
.cb-price-outcome strong { color: var(--c-deep); display: block; margin-bottom: 4px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cb-price-outcome p { margin: 0; font-size: 0.92rem; color: var(--c-body); line-height: 1.5; }

/* Featured (middle) tier */
.cb-price-card.is-featured {
  border-color: var(--c-blue);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, var(--c-cream) 100%);
  box-shadow: 0 24px 60px rgba(10, 74, 158, 0.15);
  transform: scale(1.03);
  z-index: 2;
}
.cb-price-card.is-featured:hover { transform: scale(1.03) translateY(-4px); }
.cb-price-card.is-featured .cb-price-tier { color: #fff; background: var(--c-blue); padding: 6px 14px; border-radius: 999px; display: inline-block; }
.cb-price-card .cb-most-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #F2A33C, #E14B4B); color: #fff;
  padding: 6px 16px; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(225, 75, 75, 0.3);
}

/* Premium (third) tier */
.cb-price-card.is-premium {
  background: linear-gradient(135deg, var(--c-deep) 0%, #061b3a 100%);
  color: #fff; border-color: transparent;
  position: relative; overflow: hidden;
}
.cb-price-card.is-premium::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.4;
}
.cb-price-card.is-premium > * { position: relative; z-index: 1; }
.cb-price-card.is-premium .cb-price-tier { color: var(--c-sky); }
.cb-price-card.is-premium h3 { color: #fff; }
.cb-price-card.is-premium .cb-price-for { color: rgba(255,255,255,0.7); }
.cb-price-card.is-premium ul li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.92); }
.cb-price-card.is-premium ul li::before { background: rgba(141,216,236,0.18); color: var(--c-sky); }
.cb-price-card.is-premium ul li strong { color: #fff; }
.cb-price-card.is-premium .cb-price-outcome { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.cb-price-card.is-premium .cb-price-outcome strong { color: var(--c-sky); }
.cb-price-card.is-premium .cb-price-outcome p { color: rgba(255,255,255,0.9); }

/* ---------- featured testimonial ---------- */
.cb-testi-featured {
  background: linear-gradient(135deg, var(--c-deep), var(--c-blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cb-testi-featured::before {
  content: ""; position: absolute; left: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.4;
}
.cb-testi-featured > * { position: relative; z-index: 1; }
@media (max-width: 800px) { .cb-testi-featured { grid-template-columns: 1fr; padding: 40px 28px; } }

.cb-testi-featured .cb-testi-photo {
  aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sky), var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em;
  border: 4px solid rgba(255,255,255,0.15);
  max-width: 180px;
}
.cb-testi-featured .cb-testi-q {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.45; font-weight: 500;
  color: #fff; margin: 0 0 24px;
}
.cb-testi-featured .cb-testi-q::before {
  content: "“"; font-family: Georgia, serif; font-size: 4.5rem; color: var(--c-sky);
  line-height: 0; vertical-align: -25px; margin-right: 6px;
}
.cb-testi-featured .cb-testi-meta strong { color: #fff; display: block; font-size: 1.05rem; }
.cb-testi-featured .cb-testi-meta span { color: var(--c-sky); font-size: 0.92rem; font-weight: 600; }
.cb-testi-featured .cb-testi-stars { color: #FFD17F; letter-spacing: 2px; margin-bottom: 18px; }

/* ---------- case bento ---------- */
.cb-case-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  min-height: 540px;
}
@media (max-width: 900px) {
  .cb-case-bento { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
}
.cb-case-bento .cb-case-big {
  grid-row: 1 / 3;
  display: flex; flex-direction: column;
}
.cb-case-bento .cb-case-big .cb-case-media { height: 60%; min-height: 280px; }
.cb-case-bento .cb-case-big .cb-case-media { font-size: 2.4rem; }

/* ---------- authority block ---------- */
.cb-authority {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 800px) { .cb-authority { grid-template-columns: 1fr; } }
.cb-auth-item {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.cb-section-deep .cb-auth-item {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.cb-auth-item .cb-auth-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-sky); margin-bottom: 12px;
}
.cb-auth-item h4 { font-size: 1.15rem; margin: 0 0 8px; color: #fff; }
.cb-section-deep .cb-auth-item h4 { color: #fff; }
.cb-auth-item p { color: rgba(255,255,255,0.78); font-size: 0.94rem; margin: 0; }
.cb-auth-item .cb-auth-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(141,216,236,0.18); color: var(--c-sky);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ---------- "About / Why us" v2 ---------- */
.cb-aboutv2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .cb-aboutv2 { grid-template-columns: 1fr; } }
.cb-aboutv2 h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }

/* ---------- guarantee ribbon ---------- */
.cb-guarantee-ribbon {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #FFF8E6, #FFEFC2);
  border: 1px solid #F2A33C;
  border-radius: var(--radius-pill);
  color: #8A5A00;
  font-weight: 600; font-size: 0.92rem;
  margin-bottom: 28px;
}
.cb-guarantee-ribbon .cb-shield {
  width: 28px; height: 28px; border-radius: 50%;
  background: #F2A33C; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}

/* ---------- big section divider with text ---------- */
.cb-divider-text {
  text-align: center;
  padding: 40px 0;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-muted);
  position: relative;
}
.cb-divider-text::before, .cb-divider-text::after {
  content: ""; display: inline-block;
  width: 80px; height: 1px; background: var(--c-line);
  vertical-align: middle; margin: 0 16px;
}

/* ---------- override section padding for v2 hierarchy ---------- */
@media (min-width: 901px) {
  .cb-section { padding: 110px 0; }
}


/* =============================================================
   v3 — Open up. Add air. Add palette variety.
   ============================================================= */

/* === BIGGER PADDING & MORE AIR === */
@media (min-width: 901px) {
  .cb-section { padding: 140px 0; }
  .cb-section-tight { padding: 96px 0; }
}

/* Default section bg should be warm-cream, not grey-blue tint */
body { background: #fff; }
.cb-section-bg { background: var(--c-cream); }

/* Section section variants — let each section feel different */
.cb-section-cream { background: var(--c-cream); }
.cb-section-paper { background: var(--c-paper); }
.cb-section-coral { background: var(--c-coral-bg); }
.cb-section-sage  { background: var(--c-sage-bg); }
.cb-section-butter{ background: var(--c-gold-bg); }
.cb-section-slate { background: var(--c-slate); color: #fff; }
.cb-section-slate h1, .cb-section-slate h2, .cb-section-slate h3, .cb-section-slate h4 { color: #fff; }
.cb-section-slate .cb-eyebrow { color: var(--c-coral-2); }
.cb-section-slate .cb-lede { color: rgba(255,255,255,0.78); }

/* === ABSTRACT SHAPES (decorative SVG-style backgrounds) === */
.cb-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.cb-shape-blob-coral {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244,123,92,0.18) 0%, transparent 60%);
  filter: blur(2px);
}
.cb-shape-blob-sky {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(141,216,236,0.45) 0%, transparent 60%);
  filter: blur(2px);
}
.cb-shape-blob-sage {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(111,168,154,0.25) 0%, transparent 60%);
  filter: blur(2px);
}
.cb-shape-blob-gold {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,154,78,0.22) 0%, transparent 60%);
  filter: blur(2px);
}
.cb-shape-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(0,43,92,0.07) 1px, transparent 0);
  background-size: 32px 32px;
  inset: 0;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
}
.cb-shape-line-h {
  height: 1px;
  background: var(--c-line);
}

/* Position helpers */
.cb-pos-tr { top: -100px; right: -100px; }
.cb-pos-tl { top: -100px; left: -100px; }
.cb-pos-br { bottom: -100px; right: -100px; }
.cb-pos-bl { bottom: -100px; left: -100px; }

/* All section content should sit above shapes */
.cb-section { position: relative; overflow: hidden; }
.cb-section .cb-container { position: relative; z-index: 2; }

/* === WARMER CARD STYLE — less border, more lifted === */
.cb-card-warm {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 30px rgba(14,25,41,0.06);
  border: 0;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-card-warm:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(14,25,41,0.10); }

/* === HERO v3 — WAY more whitespace, single phone, big quiet headline === */
.cb-hero-v3 {
  position: relative;
  padding: 100px 0 130px;
  background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
  overflow: hidden;
}
.cb-hero-v3 .cb-pill {
  background: rgba(244,123,92,0.10); color: var(--c-coral);
}
.cb-hero-v3 .cb-pill .cb-dot { background: var(--c-coral); box-shadow: 0 0 0 4px rgba(244,123,92,0.18); }

.cb-hero-v3 .cb-hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center;
}
@media (max-width: 980px) { .cb-hero-v3 .cb-hero-grid { grid-template-columns: 1fr; gap: 60px; } }

.cb-hero-v3 h1 {
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 32px;
  max-width: 14ch;
}
.cb-hero-v3 h1 em { font-style: normal; color: var(--c-coral); }
.cb-hero-v3 .cb-hero-sub {
  font-size: 1.25rem; max-width: 540px; color: var(--c-body);
  line-height: 1.62; margin-bottom: 36px;
}
.cb-hero-v3 .cb-hero-actions { gap: 16px; }
.cb-hero-v3 .cb-btn-primary { background: var(--c-coral); color: #fff; }
.cb-hero-v3 .cb-btn-primary:hover { background: var(--c-deep); }

.cb-hero-v3 .cb-hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.cb-hero-v3 .cb-hero-meta div strong { display: block; font-size: 1.4rem; color: var(--c-deep); font-weight: 700; line-height: 1; }
.cb-hero-v3 .cb-hero-meta div span { color: var(--c-muted); font-size: 0.88rem; margin-top: 6px; display: inline-block; }

/* Hero — single elegant phone */
.cb-hero-single-phone {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  min-height: 600px;
}
.cb-hero-single-phone .cb-phone {
  position: relative;
  transform: rotate(-4deg);
  z-index: 2;
}
.cb-hero-single-phone .cb-shape-blob-coral { top: -40px; right: -60px; z-index: 0; }
.cb-hero-single-phone .cb-shape-blob-sky   { bottom: -40px; left: -60px; z-index: 0; }

.cb-hero-single-phone .cb-float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(14,25,41,0.12);
  font-size: 0.9rem; font-weight: 600; color: var(--c-ink);
  z-index: 4;
  display: flex; align-items: center; gap: 10px;
}
.cb-hero-single-phone .cb-float-1 { top: 60px; left: -20px; animation: cb-float 4s ease-in-out infinite; }
.cb-hero-single-phone .cb-float-2 { bottom: 80px; right: -20px; animation: cb-float 5s ease-in-out infinite 1.5s; }
.cb-hero-single-phone .cb-float-card .cb-float-num {
  font-size: 1.4rem; font-weight: 800; color: var(--c-coral); line-height: 1;
}
@media (max-width: 980px) {
  .cb-hero-single-phone { min-height: auto; padding: 30px 0; }
  .cb-hero-single-phone .cb-phone { transform: none; }
}

/* === SECTION INTRO — asymmetric, left-aligned, generous === */
.cb-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.cb-intro h2 { margin: 16px 0 0; max-width: 16ch; }
.cb-intro .cb-lede { margin: 0; max-width: 480px; }
@media (max-width: 800px) {
  .cb-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
}

/* === PROBLEM v3 — minimal list, big numerals, no boxes === */
.cb-problem-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
@media (max-width: 800px) { .cb-problem-v3 { grid-template-columns: 1fr; gap: 48px; } }
.cb-problem-v3 .cb-prob {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start;
}
.cb-problem-v3 .cb-prob .cb-numeral {
  font-size: clamp(3.5rem, 6vw, 5rem); line-height: 0.85;
  background: linear-gradient(180deg, var(--c-coral) 0%, var(--c-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cb-problem-v3 h3 { font-size: 1.4rem; line-height: 1.25; margin: 0 0 12px; }
.cb-problem-v3 p { color: var(--c-body); margin: 0; font-size: 0.98rem; line-height: 1.65; }

/* === PILLARS v3 — three differently-coloured cards === */
.cb-pillars-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cb-pillars-v3 { grid-template-columns: 1fr; } }
.cb-pillarx {
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-pillarx:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cb-pillarx h3 { font-size: 1.65rem; line-height: 1.18; margin: 0 0 14px; }
.cb-pillarx p { font-size: 1rem; line-height: 1.6; }
.cb-pillarx .cb-tag {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 18px;
}
.cb-pillarx .cb-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}

/* Pillar A — coral warm */
.cb-pillarx-a { background: var(--c-coral-bg); color: var(--c-ink); }
.cb-pillarx-a .cb-tag { background: rgba(244,123,92,0.15); color: var(--c-coral); }
.cb-pillarx-a .cb-icon { background: var(--c-coral); color: #fff; }
.cb-pillarx-a p { color: var(--c-body); }
.cb-pillarx-a::after {
  content: ""; position: absolute; bottom: -100px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-peach), transparent 70%);
  opacity: 0.6;
}

/* Pillar B — deep navy (the main one) */
.cb-pillarx-b { background: linear-gradient(135deg, var(--c-deep), var(--c-blue)); color: #fff; }
.cb-pillarx-b .cb-tag { background: rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(6px); }
.cb-pillarx-b .cb-icon { background: rgba(141,216,236,0.22); color: var(--c-sky); }
.cb-pillarx-b h3 { color: #fff; }
.cb-pillarx-b p { color: rgba(255,255,255,0.85); }
.cb-pillarx-b::after {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
  opacity: 0.45;
}

/* Pillar C — sage fresh */
.cb-pillarx-c { background: var(--c-sage-bg); color: var(--c-ink); }
.cb-pillarx-c .cb-tag { background: rgba(111,168,154,0.18); color: var(--c-sage); }
.cb-pillarx-c .cb-icon { background: var(--c-sage); color: #fff; }
.cb-pillarx-c p { color: var(--c-body); }
.cb-pillarx-c::after {
  content: ""; position: absolute; bottom: -120px; left: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-mint), transparent 70%);
  opacity: 0.6;
}

/* === REELS STRIP v3 — fewer, bigger === */
@media (min-width: 901px) {
  .cb-reels-strip { grid-template-columns: repeat(5, 1fr); gap: 22px; }
  .cb-reels-strip .cb-reel-card:nth-child(6) { display: none; }
}

/* === PRICING v3 — much less dense, organized into groups === */
.cb-pricing-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) { .cb-pricing-v3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.cb-price-v3 {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 44px 36px 36px;
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-price-v3:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(14,25,41,0.10); }
.cb-price-v3 .cb-tier-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.5rem;
}
.cb-price-v3 .cb-tier-label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-muted); margin-bottom: 8px;
}
.cb-price-v3 h3 {
  font-size: 1.6rem; line-height: 1.18; margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.cb-price-v3 .cb-price-for {
  color: var(--c-muted); font-size: 0.94rem; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--c-line);
}

/* Group features into labelled blocks */
.cb-feat-group { margin-bottom: 22px; }
.cb-feat-group h5 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-muted);
  margin: 0 0 12px;
}
.cb-feat-group ul { list-style: none; padding: 0; margin: 0; }
.cb-feat-group ul li {
  position: relative; padding: 6px 0 6px 24px;
  font-size: 0.95rem; color: var(--c-body); line-height: 1.5;
}
.cb-feat-group ul li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-coral);
}

.cb-price-v3 .cb-includes-prev {
  background: var(--c-cream);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--c-deep);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex; gap: 8px; align-items: center;
}
.cb-price-v3 .cb-includes-prev::before { content: "⟢"; color: var(--c-coral); font-size: 1.1rem; }

.cb-price-v3 .cb-outcome-pill {
  background: var(--c-mist);
  border-radius: 14px;
  padding: 18px;
  margin: auto 0 24px;
  border: 0;
}
.cb-price-v3 .cb-outcome-pill strong {
  color: var(--c-deep); display: block; margin-bottom: 6px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.cb-price-v3 .cb-outcome-pill p { margin: 0; font-size: 0.94rem; color: var(--c-body); line-height: 1.5; }

/* Tier 1 — coral (solo) */
.cb-price-v3.is-tier-1 .cb-tier-icon { background: var(--c-coral-bg); color: var(--c-coral); }

/* Tier 2 — featured: blue ring, lifted, "most popular" */
.cb-price-v3.is-tier-2 {
  border-color: var(--c-blue);
  border-width: 2px;
  box-shadow: 0 24px 60px rgba(10, 74, 158, 0.15);
}
.cb-price-v3.is-tier-2 .cb-tier-icon { background: var(--c-mist); color: var(--c-blue); }
.cb-price-v3.is-tier-2 .cb-most {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--c-coral); color: #fff;
  padding: 7px 18px; border-radius: 999px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(244, 123, 92, 0.35);
}
.cb-price-v3.is-tier-2 .cb-feat-group ul li::before { background: var(--c-blue); }
.cb-price-v3.is-tier-2 .cb-outcome-pill { background: var(--c-mist); }

/* Tier 3 — premium: dark slate w/ gold */
.cb-price-v3.is-tier-3 {
  background: var(--c-slate);
  color: #fff; border-color: transparent;
}
.cb-price-v3.is-tier-3::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,78,0.4), transparent 70%);
}
.cb-price-v3.is-tier-3 > * { position: relative; z-index: 1; }
.cb-price-v3.is-tier-3 .cb-tier-icon { background: rgba(201,154,78,0.18); color: var(--c-gold); }
.cb-price-v3.is-tier-3 .cb-tier-label { color: var(--c-gold); }
.cb-price-v3.is-tier-3 h3 { color: #fff; }
.cb-price-v3.is-tier-3 .cb-price-for { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
.cb-price-v3.is-tier-3 .cb-feat-group h5 { color: var(--c-gold); }
.cb-price-v3.is-tier-3 .cb-feat-group ul li { color: rgba(255,255,255,0.92); }
.cb-price-v3.is-tier-3 .cb-feat-group ul li::before { background: var(--c-gold); }
.cb-price-v3.is-tier-3 .cb-includes-prev { background: rgba(201,154,78,0.12); color: #fff; }
.cb-price-v3.is-tier-3 .cb-includes-prev::before { color: var(--c-gold); }
.cb-price-v3.is-tier-3 .cb-outcome-pill { background: rgba(255,255,255,0.08); }
.cb-price-v3.is-tier-3 .cb-outcome-pill strong { color: var(--c-gold); }
.cb-price-v3.is-tier-3 .cb-outcome-pill p { color: rgba(255,255,255,0.92); }

/* Premium-tier CTA in gold tone */
.cb-btn-gold { background: var(--c-gold); color: #fff; }
.cb-btn-gold:hover { background: #B0843E; color: #fff; }

/* Coral CTA for primary path */
.cb-btn-coral { background: var(--c-coral); color: #fff; box-shadow: 0 12px 30px rgba(244,123,92,0.25); }
.cb-btn-coral:hover { background: var(--c-deep); color: #fff; }

/* === MARQUEE v3 — slate with coral accent stars === */
.cb-marquee {
  background: var(--c-slate);
  padding: 30px 0;
}
.cb-marquee-item::after { color: var(--c-coral); }
.cb-marquee-item { color: rgba(255,255,255,0.92); font-weight: 600; }

/* === RESULTS v3 — break out of the box, free-floating numbers === */
.cb-results-free {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
}
@media (max-width: 800px) { .cb-results-free { grid-template-columns: repeat(2, 1fr); } }
.cb-results-free .cb-rfree {
  padding: 48px 32px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.cb-results-free .cb-rfree:last-child { border-right: 0; }
@media (max-width: 800px) {
  .cb-results-free .cb-rfree:nth-child(2) { border-right: 0; }
}
.cb-results-free .cb-rnum {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; line-height: 0.95;
  background: linear-gradient(180deg, var(--c-coral) 0%, var(--c-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.cb-results-free .cb-rnum small { font-size: 0.55em; }
.cb-results-free .cb-rlabel { color: var(--c-muted); font-size: 0.92rem; margin: 0; }

/* === FEATURED TESTIMONIAL v3 — paper background, no dark === */
.cb-testi-paper {
  background: var(--c-paper);
  border-radius: 28px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
@media (max-width: 800px) { .cb-testi-paper { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; } }

.cb-testi-paper .cb-photo-warm {
  aspect-ratio: 1; max-width: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-coral), var(--c-coral-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em;
  box-shadow: 0 18px 40px rgba(244, 123, 92, 0.25);
}
.cb-testi-paper .cb-q-big {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.4;
  color: var(--c-ink); margin: 0 0 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.cb-testi-paper .cb-q-big::before {
  content: "“"; font-family: Georgia, serif; font-size: 5rem;
  color: var(--c-coral); line-height: 0; vertical-align: -28px; margin-right: 8px;
}
.cb-testi-paper .cb-mark strong { color: var(--c-ink); display: block; font-size: 1.05rem; }
.cb-testi-paper .cb-mark span { color: var(--c-muted); font-size: 0.92rem; }
.cb-testi-paper .cb-stars { color: var(--c-warn); letter-spacing: 2px; margin-bottom: 16px; }
.cb-testi-paper .cb-shape { z-index: 0; }

/* === FAQ v3 — cleaner, no full-card border === */
.cb-faq .cb-faq-item {
  border: 0; border-bottom: 1px solid var(--c-line);
  border-radius: 0; margin-bottom: 0;
  background: transparent;
  box-shadow: none;
}
.cb-faq .cb-faq-item.is-open { box-shadow: none; background: transparent; }
.cb-faq .cb-faq-q { padding: 28px 0; }
.cb-faq .cb-faq-a { padding: 0; }
.cb-faq .cb-faq-item.is-open .cb-faq-a { padding: 0 0 28px; }

/* === CONTACT FORM v3 — warmer card === */
.cb-contact-form-wrap { background: #fff; border: 1px solid var(--c-line); }
.cb-contact-form-wrap .cb-btn-primary { background: var(--c-coral); }
.cb-contact-form-wrap .cb-btn-primary:hover { background: var(--c-deep); }

/* === FINAL CTA v3 — slate with coral accent === */
.cb-final-cta {
  background: var(--c-slate);
  border-radius: 32px;
  padding: 110px 32px;
}
.cb-final-cta::before {
  background:
    radial-gradient(circle at 25% 30%, rgba(244,123,92,0.4), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(141,216,236,0.25), transparent 40%);
}

/* === HERO promise pill — warm tint === */
.cb-hero-v3 .cb-hero-promise {
  background: var(--c-coral-bg);
  border-color: rgba(244,123,92,0.3);
  color: var(--c-deep);
}
.cb-hero-v3 .cb-hero-promise strong { color: var(--c-coral); }

/* === SECTION HEAD — drop center alignment for asymmetric === */
.cb-section-head { text-align: left; max-width: 720px; margin: 0 0 80px; }
.cb-section-head .cb-lede { margin: 0; }

/* Keep the deep "results" panel centered */
.cb-section-deep .cb-section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.cb-section-deep .cb-section-head .cb-lede { margin: 0 auto; }

/* Reduce default heading boldness slightly to feel less aggressive */
h2 { font-weight: 700; }


/* =============================================================
   v4 — Real content mockups, bento layouts, connected timeline
   ============================================================= */

/* ====== GOOGLE REVIEW CARD MOCKUP ====== */
.cb-mock-review {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(14,25,41,0.08);
  font-size: 0.92rem;
  max-width: 360px;
  position: relative;
  border: 1px solid var(--c-line);
}
.cb-mock-review .cb-rev-head {
  display: flex; gap: 12px; align-items: center; margin-bottom: 14px;
}
.cb-mock-review .cb-rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-coral), var(--c-coral-2));
  color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cb-mock-review .cb-rev-name strong {
  display: block; color: var(--c-ink); font-size: 0.95rem; font-weight: 600;
}
.cb-mock-review .cb-rev-name span {
  color: var(--c-muted); font-size: 0.8rem;
}
.cb-mock-review .cb-rev-stars {
  display: inline-flex; gap: 2px; color: #FBBC04; margin-left: auto;
  align-self: flex-start;
}
.cb-mock-review .cb-rev-stars svg { width: 14px; height: 14px; }
.cb-mock-review .cb-rev-body {
  color: var(--c-body); line-height: 1.55; margin: 0 0 12px;
}
.cb-mock-review .cb-rev-google {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--c-muted);
  padding-top: 12px; border-top: 1px solid var(--c-line);
}
.cb-mock-review .cb-rev-google::before {
  content: "G"; width: 18px; height: 18px; border-radius: 50%;
  background: #fff;
  border: 1.5px solid #4285F4;
  color: #4285F4; font-weight: 700; font-size: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ====== WHATSAPP CHAT MOCKUP ====== */
.cb-mock-chat {
  background: #ECE5DD;
  border-radius: 18px;
  padding: 14px;
  max-width: 280px;
  font-size: 0.84rem;
  box-shadow: 0 18px 40px rgba(14,25,41,0.10);
  position: relative;
  border: 1px solid var(--c-line);
}
.cb-mock-chat .cb-wa-head {
  background: #075E54;
  margin: -14px -14px 12px;
  padding: 12px 14px;
  border-radius: 18px 18px 0 0;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.cb-mock-chat .cb-wa-head .cb-wa-pic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: #fff;
}
.cb-mock-chat .cb-wa-head strong { font-size: 0.9rem; font-weight: 600; }
.cb-mock-chat .cb-wa-head small { font-size: 0.7rem; opacity: 0.8; display: block; }
.cb-mock-chat .cb-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
  max-width: 80%;
  line-height: 1.4;
  position: relative;
}
.cb-mock-chat .cb-bubble.cb-them {
  background: #fff; color: var(--c-ink);
  border-radius: 4px 12px 12px 12px;
}
.cb-mock-chat .cb-bubble.cb-me {
  background: #DCF8C6; color: var(--c-ink);
  border-radius: 12px 4px 12px 12px;
  margin-left: auto;
}
.cb-mock-chat .cb-bubble small {
  display: block; font-size: 0.65rem; color: var(--c-muted); text-align: right; margin-top: 4px;
}

/* ====== INSTAGRAM POST MOCKUP ====== */
.cb-mock-ig {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(14,25,41,0.10);
  max-width: 280px;
  border: 1px solid var(--c-line);
}
.cb-mock-ig .cb-ig-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-line);
}
.cb-mock-ig .cb-ig-pic {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 2px;
}
.cb-mock-ig .cb-ig-pic span {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background: var(--c-deep); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cb-mock-ig .cb-ig-name { font-size: 0.84rem; font-weight: 600; color: var(--c-ink); }
.cb-mock-ig .cb-ig-img {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; line-height: 1.2; text-align: center;
  padding: 24px; color: #fff;
  position: relative;
}
.cb-mock-ig .cb-ig-img.cb-art-a { background: linear-gradient(135deg, var(--c-deep), var(--c-blue)); }
.cb-mock-ig .cb-ig-img.cb-art-b { background: linear-gradient(135deg, var(--c-coral), var(--c-coral-2)); }
.cb-mock-ig .cb-ig-img.cb-art-c { background: linear-gradient(135deg, var(--c-sage), #4F8474); }
.cb-mock-ig .cb-ig-img .cb-pgnav {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; gap: 4px; justify-content: center;
}
.cb-mock-ig .cb-ig-img .cb-pgnav i {
  display: block; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
}
.cb-mock-ig .cb-ig-img .cb-pgnav i.is-on { background: #fff; }
.cb-mock-ig .cb-ig-foot {
  display: flex; gap: 14px; padding: 10px 14px; align-items: center;
}
.cb-mock-ig .cb-ig-foot .cb-ig-ico {
  font-size: 1.1rem; color: var(--c-ink);
}
.cb-mock-ig .cb-ig-foot .cb-ig-likes {
  font-size: 0.78rem; color: var(--c-muted);
  margin-left: auto;
}

/* ====== BOOKING-CONFIRMATION CARD ====== */
.cb-mock-book {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(14,25,41,0.10);
  max-width: 280px;
  border: 1px solid var(--c-line);
  font-size: 0.86rem;
}
.cb-mock-book .cb-bk-head {
  display: flex; gap: 10px; align-items: center; margin-bottom: 14px;
}
.cb-mock-book .cb-bk-icon {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--c-success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.cb-mock-book .cb-bk-head strong { display: block; color: var(--c-ink); font-size: 0.92rem; }
.cb-mock-book .cb-bk-head span { color: var(--c-muted); font-size: 0.78rem; }
.cb-mock-book .cb-bk-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid var(--c-line); font-size: 0.85rem;
}
.cb-mock-book .cb-bk-row:last-child { border-bottom: 0; }
.cb-mock-book .cb-bk-row span { color: var(--c-muted); }
.cb-mock-book .cb-bk-row strong { color: var(--c-ink); font-weight: 600; }

/* ====== HERO MOSAIC v4 ====== */
.cb-hero-mosaic {
  position: relative; min-height: 600px;
  display: flex; justify-content: center; align-items: center;
}
.cb-hero-mosaic .cb-shape { z-index: 0; }
.cb-hero-mosaic .cb-mock-review,
.cb-hero-mosaic .cb-mock-chat,
.cb-hero-mosaic .cb-mock-book,
.cb-hero-mosaic .cb-phone {
  position: absolute;
  z-index: 2;
}
.cb-hero-mosaic .cb-phone {
  z-index: 1;
  width: 230px; height: 470px;
  transform: rotate(-6deg);
  top: 50%; left: 50%;
  margin-top: -235px; margin-left: -115px;
}
.cb-hero-mosaic .cb-mock-review {
  top: 30px; right: 0; max-width: 280px; transform: rotate(3deg);
  animation: cb-float 6s ease-in-out infinite;
}
.cb-hero-mosaic .cb-mock-chat {
  bottom: 30px; left: 0; max-width: 240px;
  transform: rotate(-4deg);
  animation: cb-float 5s ease-in-out infinite 1.2s;
}
.cb-hero-mosaic .cb-mock-book {
  bottom: 80px; right: 20px; max-width: 230px;
  transform: rotate(5deg);
  animation: cb-float 5.5s ease-in-out infinite 0.6s;
}
@media (max-width: 980px) {
  .cb-hero-mosaic { min-height: auto; padding: 30px 0 60px; flex-direction: column; gap: 18px; }
  .cb-hero-mosaic .cb-phone,
  .cb-hero-mosaic .cb-mock-review,
  .cb-hero-mosaic .cb-mock-chat,
  .cb-hero-mosaic .cb-mock-book { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin: 0; transform: none; }
  .cb-hero-mosaic .cb-mock-chat,
  .cb-hero-mosaic .cb-mock-book { display: none; }
}

/* ====== LOGO / TRUSTED-BY WALL ====== */
.cb-logos-wall {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 36px 0;
}
.cb-logos-wall p {
  text-align: center; font-size: 0.78rem; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; margin-bottom: 24px;
}
.cb-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) { .cb-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.cb-logo-mock {
  display: flex; align-items: center; justify-content: center;
  height: 52px;
  font-weight: 700;
  color: var(--c-deep);
  letter-spacing: -0.01em;
  opacity: 0.55;
  transition: opacity var(--t-fast);
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  text-align: center; line-height: 1.1;
}
.cb-logo-mock:hover { opacity: 1; }
.cb-logo-mock .cb-logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  margin-right: 8px;
}
.cb-logo-mock.cb-mark-2 .cb-logo-mark { background: var(--c-coral); }
.cb-logo-mock.cb-mark-3 .cb-logo-mark { background: var(--c-sage); }
.cb-logo-mock.cb-mark-4 .cb-logo-mark { background: var(--c-deep); }
.cb-logo-mock.cb-mark-5 .cb-logo-mark { background: var(--c-gold); }
.cb-logo-mock.cb-mark-6 .cb-logo-mark { background: var(--c-blue-2); }

/* ====== CONTENT BENTO — replaces uniform reels grid ====== */
.cb-content-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 22px;
}
@media (max-width: 900px) {
  .cb-content-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cb-content-bento .cb-bento-big { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .cb-content-bento { grid-template-columns: 1fr; }
}

.cb-bento-tile {
  border-radius: 22px; overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(14,25,41,0.08);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cb-bento-tile:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(14,25,41,0.14); }

.cb-bento-big { grid-column: 1; grid-row: 1 / 3; padding: 32px; background: linear-gradient(135deg, var(--c-deep), var(--c-blue)); }
.cb-bento-big .cb-phone { transform: none; }

.cb-bento-rev { grid-column: 2; grid-row: 1; background: var(--c-coral-bg); padding: 24px; }
.cb-bento-rev .cb-mock-review { max-width: 100%; transform: none; box-shadow: none; }

.cb-bento-chat { grid-column: 3; grid-row: 1; background: var(--c-sage-bg); padding: 20px; }
.cb-bento-chat .cb-mock-chat { max-width: 100%; transform: none; box-shadow: none; }

.cb-bento-ig { grid-column: 2; grid-row: 2; background: var(--c-cream); padding: 18px; }
.cb-bento-ig .cb-mock-ig { max-width: 100%; box-shadow: none; }

.cb-bento-book { grid-column: 3; grid-row: 2; background: var(--c-gold-bg); padding: 24px; }
.cb-bento-book .cb-mock-book { max-width: 100%; box-shadow: none; }

/* ====== HORIZONTAL TIMELINE — connected steps ====== */
.cb-timeline {
  position: relative;
  padding-top: 30px;
}
.cb-timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) { .cb-timeline-track { grid-template-columns: 1fr; gap: 32px; } }

.cb-timeline-track::before {
  content: ""; position: absolute;
  top: 32px; left: 10%; right: 10%; height: 3px;
  background: repeating-linear-gradient(to right, var(--c-coral) 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 900px) { .cb-timeline-track::before { display: none; } }

.cb-tl-step {
  position: relative;
  text-align: center;
  padding: 0 14px;
}
.cb-tl-step .cb-tl-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--c-coral);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(244,123,92,0.18);
  transition: transform var(--t-fast);
}
.cb-tl-step:hover .cb-tl-circle { transform: scale(1.08); background: var(--c-coral); color: #fff; }

.cb-tl-step:nth-child(2) .cb-tl-circle { border-color: var(--c-blue); color: var(--c-blue); box-shadow: 0 8px 24px rgba(10,74,158,0.18); }
.cb-tl-step:nth-child(2):hover .cb-tl-circle { background: var(--c-blue); color: #fff; }
.cb-tl-step:nth-child(3) .cb-tl-circle { border-color: var(--c-sage); color: var(--c-sage); box-shadow: 0 8px 24px rgba(111,168,154,0.22); }
.cb-tl-step:nth-child(3):hover .cb-tl-circle { background: var(--c-sage); color: #fff; }
.cb-tl-step:nth-child(4) .cb-tl-circle { border-color: var(--c-gold); color: var(--c-gold); box-shadow: 0 8px 24px rgba(201,154,78,0.22); }
.cb-tl-step:nth-child(4):hover .cb-tl-circle { background: var(--c-gold); color: #fff; }
.cb-tl-step:nth-child(5) .cb-tl-circle { border-color: var(--c-deep); color: var(--c-deep); box-shadow: 0 8px 24px rgba(0,43,92,0.22); }
.cb-tl-step:nth-child(5):hover .cb-tl-circle { background: var(--c-deep); color: #fff; }

.cb-tl-step h4 { font-size: 1.05rem; margin: 0 0 6px; color: var(--c-ink); }
.cb-tl-step p { font-size: 0.88rem; color: var(--c-muted); margin: 0; line-height: 1.5; }

/* ====== MINI GROWTH CHART ====== */
.cb-mini-chart {
  background: var(--c-cream);
  border-radius: 12px;
  padding: 18px;
  margin-top: 18px;
}
.cb-mini-chart .cb-chart-head {
  display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.78rem;
  color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.cb-mini-chart .cb-chart-head strong { color: var(--c-success); font-size: 0.85rem; }
.cb-mini-chart .cb-chart-bars {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; align-items: end;
  height: 70px;
}
.cb-mini-chart .cb-chart-bars i {
  display: block; background: linear-gradient(180deg, var(--c-coral) 0%, var(--c-deep) 100%);
  border-radius: 3px 3px 0 0;
}
.cb-mini-chart .cb-chart-x {
  display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--c-muted);
  margin-top: 6px;
}

/* ====== FLOAT-IN GOOGLE REVIEWS STRIP ====== */
.cb-reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .cb-reviews-strip { grid-template-columns: 1fr; } }
.cb-reviews-strip .cb-mock-review { max-width: none; }

/* ====== ENGAGEMENT TICKER (small text counter) ====== */
.cb-engagement-line {
  background: var(--c-slate);
  color: #fff;
  padding: 18px 0;
  text-align: center;
  font-size: 0.92rem;
}
.cb-engagement-line strong { color: var(--c-coral-2); }

/* ====== BIG EDITORIAL QUOTE (no card) ====== */
.cb-quote-editorial {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cb-quote-editorial p {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4; font-weight: 500; color: var(--c-ink);
  letter-spacing: -0.015em; margin: 0 0 28px;
}
.cb-quote-editorial p::before {
  content: "“"; font-family: Georgia, serif; font-size: 5rem;
  color: var(--c-coral); line-height: 0; vertical-align: -28px; margin-right: 8px;
}
.cb-quote-editorial cite {
  font-style: normal; font-weight: 600; color: var(--c-deep); font-size: 1rem;
  display: block;
}
.cb-quote-editorial cite span { display: block; color: var(--c-muted); font-size: 0.88rem; font-weight: 400; margin-top: 2px; }


/* =============================================================
   v5 — Hero spacing fixes
   ============================================================= */

/* More room for the text column, less for the visual */
.cb-hero-v3 .cb-hero-grid {
  grid-template-columns: 1.35fr 0.85fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .cb-hero-v3 .cb-hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
}

/* Bigger top padding so the sticky header doesn't cover content on scroll
   and the hero feels less compressed at the top */
.cb-hero-v3 { padding: 96px 0 140px; }
@media (max-width: 700px) { .cb-hero-v3 { padding: 56px 0 80px; } }

/* Headline — slightly smaller cap, more breathing under it */
.cb-hero-v3 h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 14px 0 30px;
  max-width: 14ch;
}

/* Subhead a little smaller and tighter */
.cb-hero-v3 .cb-hero-sub {
  font-size: 1.13rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 38px;
}

/* CTAs — tighten and lift away from promise */
.cb-hero-v3 .cb-hero-actions { gap: 14px; margin-bottom: 8px; }

/* Promise pill — give it room */
.cb-hero-v3 .cb-hero-promise {
  margin-top: 28px;
  padding: 14px 18px;
  font-size: 0.95rem;
}

/* Meta stats — fixed 3-col grid so "₹38 Cr+" never wraps to its own row */
.cb-hero-v3 .cb-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--c-line);
}
.cb-hero-v3 .cb-hero-meta div { min-width: 0; }
.cb-hero-v3 .cb-hero-meta div strong {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  display: block; line-height: 1; color: var(--c-deep); font-weight: 700;
}
.cb-hero-v3 .cb-hero-meta div span {
  display: block;
  color: var(--c-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .cb-hero-v3 .cb-hero-meta { grid-template-columns: 1fr; gap: 18px; }
}

/* Pill — give it a tiny lift */
.cb-hero-v3 .cb-pill { margin-bottom: 0; }

/* Mosaic — push everything inward so the Google review isn't clipped
   by the sticky header during scroll, and inner items don't crowd the edges. */
.cb-hero-mosaic { padding: 40px 0 30px; min-height: 620px; }
.cb-hero-mosaic .cb-mock-review { top: 60px; right: 10px; }
.cb-hero-mosaic .cb-mock-chat   { bottom: 50px; left: 10px; }
.cb-hero-mosaic .cb-mock-book   { bottom: 110px; right: 28px; }

/* Header — slightly less heavy CTA button */
.cb-header .cb-btn-primary {
  padding: 12px 22px;
  font-size: 0.94rem;
}
.cb-header .cb-nav { padding: 12px 0; }
.cb-header .cb-brand img { max-height: 44px; }

/* Smooth-scroll anchor offset so #contact / #packages don't sit under the sticky header */
section[id] { scroll-margin-top: 88px; }


/* =============================================================
   v6 — Card text-color fixes (dark vs. light section context)
   ============================================================= */

/* Default authority card — for ANY section background (light by default) */
.cb-auth-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-body);
}
.cb-auth-item h4    { color: var(--c-ink); font-size: 1.15rem; margin: 0 0 8px; }
.cb-auth-item p     { color: var(--c-body); font-size: 0.94rem; margin: 0; line-height: 1.6; }
.cb-auth-item .cb-auth-tag  { color: var(--c-blue); }
.cb-auth-item .cb-auth-icon { background: var(--c-mist); color: var(--c-blue); }

/* DARK sections — cards become translucent w/ light text */
.cb-section-deep  .cb-auth-item,
.cb-section-slate .cb-auth-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}
.cb-section-deep  .cb-auth-item h4,
.cb-section-slate .cb-auth-item h4 { color: #fff; }
.cb-section-deep  .cb-auth-item p,
.cb-section-slate .cb-auth-item p { color: rgba(255,255,255,0.82); }
.cb-section-deep  .cb-auth-item .cb-auth-tag,
.cb-section-slate .cb-auth-item .cb-auth-tag { color: var(--c-coral-2); }
.cb-section-deep  .cb-auth-item .cb-auth-icon,
.cb-section-slate .cb-auth-item .cb-auth-icon {
  background: rgba(141,216,236,0.12); color: var(--c-sky);
}

/* Same defensive treatment for warm cards — must stay readable in any section */
.cb-card-warm h2, .cb-card-warm h3, .cb-card-warm h4 { color: var(--c-ink); }
.cb-card-warm p { color: var(--c-body); }

/* Generic safety net: any white-bg card on a dark section keeps dark text */
.cb-section-deep  .cb-card-warm,
.cb-section-slate .cb-card-warm { background: #fff; color: var(--c-body); }
.cb-section-deep  .cb-card-warm h3,
.cb-section-slate .cb-card-warm h3 { color: var(--c-ink); }
.cb-section-deep  .cb-card-warm p,
.cb-section-slate .cb-card-warm p { color: var(--c-body); }


/* =============================================================
   v7 — Strip gradient text everywhere; use solid editorial colour
   ============================================================= */

/* Generic editorial numeral — solid deep navy, semi-transparent */
.cb-numeral {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--c-deep) !important;
  opacity: 0.92;
  font-weight: 800;
  letter-spacing: -0.06em;
}

/* On dark sections, flip to coral so it pops on slate / navy */
.cb-section-deep .cb-numeral,
.cb-section-slate .cb-numeral {
  color: var(--c-coral) !important;
  opacity: 1;
}

/* Problem v3 numerals (the 01-04) — solid */
.cb-problem-v3 .cb-prob .cb-numeral {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--c-deep) !important;
  opacity: 0.88;
}

/* Results numbers — solid deep navy with coral period */
.cb-results-free .cb-rnum {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--c-deep) !important;
}
.cb-results-free .cb-rnum small {
  color: var(--c-coral);
}


/* =============================================================
   v8 — Strong text inside dark sections / panels must be light
   ============================================================= */
.cb-leadmag strong,
.cb-section-deep strong,
.cb-section-slate strong,
.cb-section-deep .cb-rev-name strong,
.cb-section-slate .cb-rev-name strong { color: #fff; }

/* But keep <strong> dark inside white form cards that sit on top of dark sections */
.cb-leadmag .cb-form strong,
.cb-section-deep .cb-form strong,
.cb-section-slate .cb-form strong,
.cb-leadmag .cb-mock-review strong,
.cb-section-deep .cb-mock-review strong,
.cb-section-slate .cb-mock-review strong { color: var(--c-ink); }


/* =============================================================
   v9 — Bundled logo styling
   ============================================================= */
.cb-brand-link { display: inline-flex; align-items: center; }
.cb-brand-link img { max-height: 44px; width: auto; display: block; }
.cb-footer .cb-brand-link img { max-height: 56px; filter: brightness(0) invert(1); }


/* =============================================================
   v10 — Rebalanced reels bento (tiles get real room)
   ============================================================= */

/* Default at desktop: bigger tiles, taller rows, tighter columns */
.cb-content-bento {
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 380px 380px;
  gap: 24px;
}
@media (min-width: 1280px) {
  .cb-content-bento { grid-template-rows: 420px 420px; }
}
@media (max-width: 900px) {
  .cb-content-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }
  .cb-content-bento .cb-bento-big { grid-column: 1 / -1; min-height: 480px; }
  .cb-content-bento .cb-bento-rev,
  .cb-content-bento .cb-bento-chat,
  .cb-content-bento .cb-bento-ig,
  .cb-content-bento .cb-bento-book { grid-column: auto; grid-row: auto; min-height: 280px; }
}
@media (max-width: 540px) {
  .cb-content-bento { grid-template-columns: 1fr; }
}

/* Tile padding tightened so the inner mockup gets the room */
.cb-bento-tile { padding: 24px; }
.cb-bento-big  { padding: 36px; }

/* Each child mockup now grows to fill the tile */
.cb-bento-tile .cb-mock-review,
.cb-bento-tile .cb-mock-chat,
.cb-bento-tile .cb-mock-ig,
.cb-bento-tile .cb-mock-book {
  max-width: none;
  width: 100%;
  box-shadow: none;
  border: 0;
  background: transparent;
}

/* Review tile — body text bigger so it actually reads on the tile */
.cb-bento-rev .cb-mock-review .cb-rev-body { font-size: 0.98rem; line-height: 1.55; }
.cb-bento-rev .cb-mock-review .cb-rev-name strong { font-size: 1rem; }

/* Chat tile — stretch chat to fill height */
.cb-bento-chat .cb-mock-chat {
  background: #ECE5DD;            /* keep the WhatsApp green-grey */
  border-radius: 14px;
  padding: 14px;
  height: 100%;
  display: flex; flex-direction: column;
}
.cb-bento-chat .cb-mock-chat .cb-bubble { font-size: 0.9rem; }

/* IG tile — let the carousel image grow square inside the tile */
.cb-bento-ig {
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.cb-bento-ig .cb-mock-ig {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  width: 100%;
  max-width: 320px;
}
.cb-bento-ig .cb-mock-ig .cb-ig-img {
  font-size: 1.35rem;
  padding: 32px 22px;
  line-height: 1.25;
}

/* Booking tile — add inner card chrome since we removed it from default */
.cb-bento-book .cb-mock-book {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--c-line);
  font-size: 0.92rem;
}
.cb-bento-book .cb-mock-book .cb-bk-row { padding: 10px 0; font-size: 0.92rem; }

/* The big phone tile — center the phone so it doesn't crowd edges */
.cb-bento-big {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-deep), var(--c-blue));
}
.cb-bento-big .cb-phone { margin: 0; }


/* =============================================================
   v11 — Case study story visuals
   ============================================================= */

/* --- generic case-card upgrade so the inner viz fills the colored block --- */
.cb-case-media {
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  font-size: 1rem !important;
  font-weight: normal !important;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cb-case-media .cb-case-tag { z-index: 4; }

/* ---------- Conceive Clinic — Instagram profile preview ---------- */
.cb-case-ig-profile {
  width: 100%; padding: 28px 24px 0; color: #fff;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}
.cb-case-ig-profile .cb-igp-head {
  display: flex; align-items: center; gap: 14px;
}
.cb-case-ig-profile .cb-igp-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  padding: 3px;
}
.cb-case-ig-profile .cb-igp-avatar span {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background: #fff; color: var(--c-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.cb-case-ig-profile .cb-igp-handle strong {
  display: block; font-size: 1.05rem; color: #fff; font-weight: 600;
}
.cb-case-ig-profile .cb-igp-handle small { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.cb-case-ig-profile .cb-igp-stats {
  display: flex; gap: 18px; margin: 4px 0 8px;
}
.cb-case-ig-profile .cb-igp-stats div { color: #fff; font-size: 0.85rem; }
.cb-case-ig-profile .cb-igp-stats div strong { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; }
.cb-case-ig-profile .cb-igp-bio {
  font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.4;
  margin: 0;
}
.cb-case-ig-profile .cb-igp-tabs {
  display: flex; gap: 4px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em; justify-content: center;
}
.cb-case-ig-profile .cb-igp-tabs span.is-on { color: #fff; border-bottom: 2px solid #fff; padding-bottom: 6px; }

.cb-case-ig-grid {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  width: 100%;
}
.cb-case-ig-grid .cb-igp-tile {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1E40AF, #2563EB);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.92);
  text-align: center; padding: 10px;
  position: relative;
}
.cb-case-ig-grid .cb-igp-tile:nth-child(2) { background: linear-gradient(135deg, #be123c, #f43f5e); }
.cb-case-ig-grid .cb-igp-tile:nth-child(3) { background: linear-gradient(135deg, #166534, #22c55e); }
.cb-case-ig-grid .cb-igp-tile::after {
  content: "▶ " attr(data-views);
  position: absolute; bottom: 6px; right: 6px;
  font-size: 0.65rem; opacity: 0.92;
}

/* ---------- Smile Studio — before/after bar viz ---------- */
.cb-case-beforeafter {
  width: 100%; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 1;
  color: var(--c-deep);
}
.cb-case-beforeafter .cb-ba-row {
  display: flex; align-items: center; gap: 12px;
}
.cb-case-beforeafter .cb-ba-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; width: 60px;
  color: var(--c-deep); opacity: 0.7;
}
.cb-case-beforeafter .cb-ba-bar {
  flex: 1; height: 14px; border-radius: 999px;
  background: rgba(0, 43, 92, 0.10);
  position: relative; overflow: hidden;
}
.cb-case-beforeafter .cb-ba-bar i {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--c-coral-2), var(--c-coral));
}
.cb-case-beforeafter .cb-ba-num {
  font-weight: 700; color: var(--c-deep); font-size: 1.05rem; min-width: 50px; text-align: right;
}
.cb-case-beforeafter .cb-ba-arrow {
  text-align: center;
  margin: 8px 0 4px;
  font-size: 1.2rem; color: var(--c-coral);
  letter-spacing: 0.5em;
}
.cb-case-beforeafter .cb-ba-foot {
  text-align: center; font-size: 0.78rem; color: var(--c-deep);
  font-weight: 600; opacity: 0.8;
}

/* ---------- Glow Dermatology — Google Maps mockup ---------- */
.cb-case-map {
  width: 100%; height: 100%;
  background:
    /* Mock map grid */
    linear-gradient(0deg, transparent 49.5%, rgba(0,43,92,0.08) 49.5%, rgba(0,43,92,0.08) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(0,43,92,0.08) 49.5%, rgba(0,43,92,0.08) 50.5%, transparent 50.5%),
    /* Faux roads */
    linear-gradient(135deg, transparent 47%, rgba(0,0,0,0.08) 47%, rgba(0,0,0,0.08) 53%, transparent 53%),
    /* Background tone */
    linear-gradient(180deg, #E5EDD9 0%, #D8E6CC 100%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
}
.cb-case-map::before {
  /* fake green park blob */
  content: "";
  position: absolute; top: 20%; left: 18%; width: 40%; height: 40%;
  background: rgba(34, 139, 88, 0.18);
  border-radius: 50% 60% 70% 40%;
}
.cb-case-map .cb-pin {
  position: absolute;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.cb-case-map .cb-pin span { transform: rotate(45deg); }
.cb-case-map .cb-pin-1 { top: 36%; left: 50%; background: var(--c-coral); width: 48px; height: 48px; font-size: 0.92rem; z-index: 3; }
.cb-case-map .cb-pin-2 { top: 22%; left: 28%; background: var(--c-deep); opacity: 0.7; z-index: 2; }
.cb-case-map .cb-pin-3 { top: 58%; left: 36%; background: var(--c-deep); opacity: 0.55; z-index: 2; }
.cb-case-map .cb-pin-4 { top: 28%; left: 70%; background: var(--c-deep); opacity: 0.45; z-index: 2; }
.cb-case-map .cb-pin-5 { top: 70%; left: 70%; background: var(--c-deep); opacity: 0.4; z-index: 2; }

.cb-case-map .cb-map-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  display: flex; gap: 10px; align-items: center;
  position: relative; z-index: 4;
}
.cb-case-map .cb-map-card .cb-map-rank {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--c-coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.92rem; flex-shrink: 0;
}
.cb-case-map .cb-map-card strong {
  display: block; color: var(--c-ink); font-size: 0.88rem;
}
.cb-case-map .cb-map-card span {
  color: #FBBC04; font-size: 0.78rem; letter-spacing: 1px;
}
.cb-case-map .cb-map-card span small { color: var(--c-muted); margin-left: 6px; }


/* =============================================================
   v12 — Case-card visual polish
   ============================================================= */

/* Big card — give the IG mock more vertical room */
.cb-case-bento .cb-case-big .cb-case-media { min-height: 460px; height: auto; }

/* Push IG profile down so the corner tag doesn't sit on the avatar */
.cb-case-ig-profile { padding-top: 56px; }

/* Constrain IG grid so it can't overflow the rounded card edges */
.cb-case-ig-grid {
  width: 100%;
  max-width: 100%;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
}
.cb-case-ig-grid .cb-igp-tile {
  font-size: 0.7rem;
  padding: 8px 6px;
  word-break: break-word;
  hyphens: auto;
  text-align: center;
}
/* The big card has rounded corners only at the top of media — no need for radius on grid */
.cb-case-bento .cb-case-big .cb-case-ig-grid { border-radius: 0; }

/* Smile Studio — make sure the AFTER bar isn't clipped */
.cb-case:not(.cb-case-big) .cb-case-media { min-height: 240px; height: auto; padding: 0; }
.cb-case-beforeafter { padding: 22px 22px 24px; }
.cb-case-beforeafter .cb-ba-foot { margin-top: 4px; }

/* Glow Derma — give the map a guaranteed minimum height */
.cb-case .cb-case-map { min-height: 240px; }

/* Tag positioning consistency — sit at the corner of media area */
.cb-case-media .cb-case-tag {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
}


/* =============================================================
   v13 — Simple case cards: tag + big editorial number + sub
   ============================================================= */
.cb-case-simple {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px !important;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.cb-case-bento .cb-case-big .cb-case-simple { min-height: 460px; padding: 56px 36px !important; }

.cb-case-simple .cb-case-headline { position: relative; z-index: 1; }

.cb-case-simple .cb-case-bignum {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.cb-case-simple .cb-case-bignum small {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cb-case-bento .cb-case-big .cb-case-bignum {
  font-size: clamp(3.4rem, 8vw, 6.6rem);
}
.cb-case-simple .cb-case-bigsub {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.75;
  max-width: 32ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* Variants */
.cb-case-simple-navy {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-blue) 100%);
  color: #fff;
}
.cb-case-simple-navy .cb-case-bigsub { color: rgba(255,255,255,0.85); opacity: 1; }
.cb-case-simple-navy::after {
  content: ""; position: absolute; bottom: -120px; right: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(141,216,236,0.35), transparent 70%);
}

.cb-case-simple-coral {
  background: linear-gradient(135deg, var(--c-coral-bg) 0%, var(--c-peach) 100%);
  color: var(--c-deep);
}
.cb-case-simple-coral .cb-case-bignum { color: var(--c-coral); }
.cb-case-simple-coral .cb-case-bigsub { color: var(--c-deep); opacity: 0.7; }
.cb-case-simple-coral::after {
  content: ""; position: absolute; bottom: -100px; left: -100px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,92,0.28), transparent 70%);
}

.cb-case-simple-sage {
  background: linear-gradient(135deg, var(--c-sage-bg) 0%, var(--c-mint) 100%);
  color: var(--c-deep);
}
.cb-case-simple-sage .cb-case-bignum { color: var(--c-sage); }
.cb-case-simple-sage .cb-case-bigsub { color: var(--c-deep); opacity: 0.7; }
.cb-case-simple-sage::after {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,168,154,0.32), transparent 70%);
}


/* =============================================================
   v14 — Modern area chart (replaces the chunky bar chart)
   ============================================================= */

.cb-chart-modern {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 22px 22px 16px;
  margin-top: 20px;
  position: relative;
}
.cb-chart-modern .cb-chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin-bottom: 4px;
}
.cb-chart-modern .cb-chart-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-muted); margin: 0;
}
.cb-chart-modern .cb-chart-trend {
  font-size: 0.85rem; font-weight: 600; color: var(--c-success);
  display: inline-flex; align-items: center; gap: 4px;
}

.cb-chart-modern .cb-chart-figure {
  display: flex; align-items: baseline; gap: 8px;
  margin: 4px 0 14px;
}
.cb-chart-modern .cb-chart-figure strong {
  font-size: 1.7rem; font-weight: 800; color: var(--c-deep);
  letter-spacing: -0.02em; line-height: 1;
}
.cb-chart-modern .cb-chart-figure span {
  font-size: 0.8rem; color: var(--c-muted);
}

.cb-chart-modern .cb-chart-svg-wrap {
  position: relative; height: 110px;
}
.cb-chart-modern svg.cb-chart-svg {
  width: 100%; height: 100%; display: block; overflow: visible;
}
.cb-chart-modern .cb-chart-x {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: var(--c-muted); margin-top: 8px;
  letter-spacing: 0.06em;
}


/* =============================================================
   v15 — Case cards: tighten heights, remove dead space
   ============================================================= */

/* Bento rows now size to content, not enforced equal heights */
.cb-case-bento {
  grid-template-rows: auto auto !important;
  min-height: 0 !important;
  align-items: start;
}

/* Big card spans both rows — grid handles it; no need to force tall body */
.cb-case-bento .cb-case-big { grid-row: 1 / 3; }

/* Simple media area — size to content, not 280/460 px tall blocks */
.cb-case-simple {
  min-height: 0 !important;
  height: auto !important;
  padding: 32px 24px !important;
  flex: 0 0 auto !important;
  align-items: center !important;
}

/* Big card — slightly more padding but still hugs the headline */
.cb-case-bento .cb-case-big .cb-case-simple {
  min-height: 0 !important;
  padding: 44px 32px !important;
}

/* Big editorial number — scaled down so it doesn't demand a 460px panel */
.cb-case-simple .cb-case-bignum {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 10px;
}
.cb-case-bento .cb-case-big .cb-case-bignum {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
}

/* Sub line a touch tighter */
.cb-case-simple .cb-case-bigsub {
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Cards themselves should hug their content */
.cb-case-bento .cb-case { height: auto; min-height: 0; }

/* Body padding tighter so the card overall is shorter */
.cb-case .cb-case-body { padding: 22px 24px 24px; }


/* =============================================================
   v16 — Cooler / bluer tone across the site
   ============================================================= */

:root {
  /* Re-tint warm neutrals to a cool blue-tinted palette */
  --c-cream: #EEF4FB;   /* was warm cream — now cool blue mist */
  --c-paper: #F4F8FD;   /* was warm paper — now cool paper */
  --c-line:  #DDE6F0;   /* was warm border — now cool blue border */
  --c-mist:  #E1ECF6;   /* deeper mist for cards */
}

/* Body background slightly cool too */
body { background: #fff; }

/* Section variants — recolor warm-toned ones to cool */
.cb-section-cream { background: var(--c-cream); }
.cb-section-paper { background: var(--c-paper); }

/* Coral-bg sections become a sky-mist instead — preserves the visual variety
   but in a cooler key */
.cb-section-coral { background: linear-gradient(135deg, #E1ECF6 0%, #CFE0F0 100%); }

/* Most "eyebrows" that were coral now use brand blue */
.cb-eyebrow { color: var(--c-blue); }
/* But on dark sections, keep them in sky/coral so they pop against navy */
.cb-section-deep .cb-eyebrow,
.cb-section-slate .cb-eyebrow { color: var(--c-sky); }

/* Headline em-emphasis (italic accent) — switch coral to deep blue */
.cb-hero-v3 h1 em,
.cb-section h2 em { color: var(--c-blue); font-style: normal; font-weight: 800; }

/* Highlight (yellow-marker style) shifts from sky-cyan to a softer blue tint */
.cb-highlight { background: linear-gradient(180deg, transparent 60%, rgba(141,216,236,0.55) 60%); }

/* Underline SVG (the squiggle) stays sky-cyan — already on-tone, no change needed */

/* Smile Studio case card — was coral. Switch to a blue-mist so the case bento
   reads as 3 shades of blue instead of warm vs cool */
.cb-case-simple-coral {
  background: linear-gradient(135deg, #E1ECF6 0%, #B8D4EC 100%) !important;
  color: var(--c-deep);
}
.cb-case-simple-coral .cb-case-bignum { color: var(--c-blue); }
.cb-case-simple-coral .cb-case-bigsub { color: var(--c-deep); opacity: 0.75; }
.cb-case-simple-coral::after {
  background: radial-gradient(circle, rgba(10,74,158,0.18), transparent 70%);
}

/* Pillars — soften the coral pillar to a sky-mist so the trio reads as
   sky → navy → sage (cool to dark to fresh) instead of warm → cool → fresh */
.cb-pillarx-a {
  background: linear-gradient(135deg, var(--c-mist) 0%, #CDDFEE 100%) !important;
  color: var(--c-ink);
}
.cb-pillarx-a .cb-tag { background: rgba(10,74,158,0.12); color: var(--c-blue); }
.cb-pillarx-a .cb-icon { background: var(--c-blue); color: #fff; }
.cb-pillarx-a::after {
  background: radial-gradient(circle, var(--c-sky), transparent 70%);
}

/* Case study tag — soft blue mist instead of coral */
.cb-case-tag {
  background: var(--c-mist);
  color: var(--c-deep);
}

/* Coral-bg pill backgrounds (e.g. hero pill, free-audit eyebrow) → cool variant */
.cb-hero-v3 .cb-pill {
  background: rgba(10, 74, 158, 0.10);
  color: var(--c-blue);
}
.cb-hero-v3 .cb-pill .cb-dot {
  background: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(10,74,158,0.18);
}
.cb-hero-v3 .cb-hero-promise {
  background: var(--c-mist);
  border-color: rgba(10,74,158,0.25);
  color: var(--c-deep);
}
.cb-hero-v3 .cb-hero-promise strong { color: var(--c-blue); }

/* Avatars in testimonials default to coral — give the first one blue
   so the row reads as cool palette */
.cb-testi .cb-testi-author .cb-avatar { background: linear-gradient(135deg, var(--c-blue), var(--c-deep)); }
.cb-testi-paper .cb-photo-warm {
  background: linear-gradient(135deg, var(--c-blue), var(--c-deep));
  box-shadow: 0 18px 40px rgba(10, 74, 158, 0.25);
}

/* Featured quote glyph — switch coral to brand blue */
.cb-testi-paper .cb-q-big::before { color: var(--c-blue); }
.cb-quote-editorial p::before { color: var(--c-blue); }

/* Editorial numerals — already solid navy. Numerals on dark sections were coral.
   Switch them to sky-cyan so they stay on-palette */
.cb-section-deep .cb-numeral,
.cb-section-slate .cb-numeral { color: var(--c-sky) !important; opacity: 1; }

/* Problem-section numerals stay deep navy — already correct */

/* Mini chart line stays coral (it's a single accent, fine to keep) */

/* Case-card metric pills — coral was the accent; switch to brand blue
   except when on a coral background (none of them are now) */
.cb-case-body div strong[style*="--c-coral"] { color: var(--c-blue) !important; }

/* Soft accent: results numbers small suffixes were coral — keep them coral
   so the section has a touch of warmth (intentional contrast) */

/* Email/contact icon-wells use multiple colors — pull them all into the
   blue family for cohesion */
.cb-contact-info li:nth-child(1) .cb-ico { background: var(--c-mist); color: var(--c-blue); }
.cb-contact-info li:nth-child(2) .cb-ico { background: var(--c-mist); color: var(--c-blue-2); }
.cb-contact-info li:nth-child(3) .cb-ico { background: var(--c-mist); color: var(--c-deep); }
.cb-contact-info li:nth-child(4) .cb-ico { background: var(--c-mist); color: var(--c-blue); }

/* Coral logo dots in trusted-by wall — diversify with blue family
   so the wall reads as a blue palette */
.cb-logo-mock.cb-mark-2 .cb-logo-mark { background: var(--c-blue-2); }
.cb-logo-mock.cb-mark-5 .cb-logo-mark { background: var(--c-deep); }

/* Marquee accent star color stays coral — it's a small detail, keeps energy */

/* Hero meta link colors */
.cb-hero-v3 .cb-hero-meta strong { color: var(--c-deep); }


/* =============================================================
   v17 — Hero headline scale fix for the longer copy
   ============================================================= */
.cb-hero-v3 h1 {
  /* Smaller cap so the longer headline doesn't take 5 lines */
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  /* Wider max so it wraps to ~3 lines, not 5+ */
  max-width: 22ch;
  margin: 14px 0 28px;
}

/* Tighten the squiggle under "patient trust?" so it sits closer to the text */
.cb-underline::after { bottom: -6px; height: 14px; }


/* =============================================================
   v18 — Hero subhead 3-line layout
   ============================================================= */
.cb-hero-v3 .cb-hero-sub {
  max-width: 640px; /* widen slightly so each forced line has room */
}
/* On narrow screens (<540px) ignore the explicit line-breaks so the text
   wraps naturally instead of breaking into awkward jagged lines */
@media (max-width: 540px) {
  .cb-hero-v3 .cb-hero-sub br { display: none; }
}


/* =============================================================
   v19 — Lede multi-line breaks collapse on mobile
   ============================================================= */
@media (max-width: 540px) {
  .cb-lede br { display: none; }
}


/* =============================================================
   v20 — Doctor SVG inside the hero phone reel
   ============================================================= */
.cb-reel .cb-reel-doctor {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}


/* =============================================================
   v21 — Trust line (replaces fake-logo wall)
   ============================================================= */
.cb-trustline {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 56px 0;
}
.cb-trustline-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cb-trustline-stars {
  display: inline-flex; gap: 4px; color: #FBBC04;
}
.cb-trustline-stars svg { width: 22px; height: 22px; }
.cb-trustline-head {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-deep);
  margin: 0;
  max-width: 38ch;
  line-height: 1.25;
}
.cb-trustline-head span { color: var(--c-blue); }
.cb-trustline-meta {
  margin: 0;
  font-size: 0.96rem;
  color: var(--c-muted);
}
.cb-trustline-meta strong { color: var(--c-deep); font-weight: 600; }

@media (max-width: 700px) {
  .cb-trustline { padding: 40px 0; }
  .cb-trustline-meta { font-size: 0.88rem; line-height: 1.6; }
}


/* =============================================================
   v22 — Highlighted result badge at the bottom of each pillar
   ============================================================= */
.cb-pillar-result {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-deep);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(14,25,41,0.08);
  align-self: flex-start;
  max-width: 100%;
}
.cb-pillar-result svg {
  width: 18px; height: 18px;
  background: var(--c-success);
  color: #fff;
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}
.cb-pillar-result strong { font-weight: 800; color: var(--c-blue); }

/* Pillar A (sky-mist card) — blue tone */
.cb-pillarx-a .cb-pillar-result { background: #fff; }
.cb-pillarx-a .cb-pillar-result svg { background: var(--c-blue); }
.cb-pillarx-a .cb-pillar-result strong { color: var(--c-blue); }

/* Pillar B (deep navy card) — light pill on dark */
.cb-pillarx-b .cb-pillar-result {
  background: rgba(255,255,255,0.16);
  color: #fff;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.2);
}
.cb-pillarx-b .cb-pillar-result svg { background: var(--c-sky); color: var(--c-deep); }
.cb-pillarx-b .cb-pillar-result strong { color: var(--c-sky); }

/* Pillar C (sage card) — sage tone */
.cb-pillarx-c .cb-pillar-result { background: #fff; }
.cb-pillarx-c .cb-pillar-result svg { background: var(--c-sage); }
.cb-pillarx-c .cb-pillar-result strong { color: var(--c-sage); }


/* =============================================================
   v23 — Pillar headline smaller, result badge bigger (real highlight)
   ============================================================= */

/* Headlines drop in size + weight so they don't dominate */
.cb-pillarx h3 {
  font-size: 1.2rem !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.01em;
}
.cb-pillarx p { font-size: 0.94rem; line-height: 1.55; }

/* Result badge — now THE focal point: bigger, bolder, brighter */
.cb-pillar-result {
  margin-top: 32px;
  padding: 16px 22px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  box-shadow: 0 10px 28px rgba(14,25,41,0.12);
}
.cb-pillar-result svg {
  width: 22px; height: 22px; padding: 5px;
}
.cb-pillar-result strong {
  font-weight: 800;
  font-size: 1.18em;  /* relative to badge text — pops without re-styling */
  letter-spacing: -0.02em;
}

/* Pillar B (dark navy) — make the badge feel more prominent on the dark bg */
.cb-pillarx-b .cb-pillar-result {
  background: rgba(255,255,255,0.95);
  color: var(--c-deep);
  border: 0;
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.cb-pillarx-b .cb-pillar-result svg { background: var(--c-blue); color: #fff; }
.cb-pillarx-b .cb-pillar-result strong { color: var(--c-blue); }


/* =============================================================
   v24 — Pillar result: editorial statement (no pill, no badge)
   ============================================================= */

/* Reset previous v22/v23 pill styling */
.cb-pillar-result {
  display: block !important;
  background: transparent !important;
  backdrop-filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 28px !important;
  border-radius: 0 !important;
  align-self: stretch !important;
  max-width: 100% !important;
  border-left: 4px solid var(--c-blue);
  padding-left: 18px !important;
}
.cb-pillar-result svg { display: none !important; }

.cb-pillar-result .cb-pillar-metric {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--c-blue);
  margin-bottom: 6px;
}
.cb-pillar-result .cb-pillar-desc {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-deep);
  opacity: 0.78;
  line-height: 1.4;
}

/* Pillar A (sky-mist) — blue accent */
.cb-pillarx-a .cb-pillar-result { border-left-color: var(--c-blue); }
.cb-pillarx-a .cb-pillar-metric { color: var(--c-blue); }

/* Pillar B (deep navy) — sky-cyan accent */
.cb-pillarx-b .cb-pillar-result { border-left-color: var(--c-sky); }
.cb-pillarx-b .cb-pillar-metric { color: var(--c-sky); }
.cb-pillarx-b .cb-pillar-desc { color: rgba(255,255,255,0.82); opacity: 1; }

/* Pillar C (sage) — sage accent */
.cb-pillarx-c .cb-pillar-result { border-left-color: var(--c-sage); }
.cb-pillarx-c .cb-pillar-metric { color: var(--c-sage); }


/* =============================================================
   v25 — Pillar result: full-bleed coloured outcome band
   ============================================================= */

/* Pillar card needs to allow the band to bleed to the edges */
.cb-pillarx {
  overflow: hidden;       /* contain the bleed */
  padding: 44px 36px 0 !important;  /* remove bottom padding — band fills it */
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

/* Reset the v22-v24 result styling completely */
.cb-pillar-result {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 16px;
  background: var(--c-blue);   /* default — overridden per pillar */
  color: #fff;
  padding: 22px 28px !important;
  margin: 32px -36px 0 !important;  /* negative margin to bleed to edges */
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Subtle top diagonal shine */
.cb-pillar-result::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, transparent 40%);
  pointer-events: none;
}

/* Trending-up arrow */
.cb-pillar-arrow {
  width: 36px; height: 36px;
  flex-shrink: 0;
  padding: 8px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  color: currentColor;
  position: relative; z-index: 1;
}

/* Result text */
.cb-pillar-result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative; z-index: 1;
}
.cb-pillar-result .cb-pillar-metric {
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  color: inherit !important;
  margin: 0 !important;
}
.cb-pillar-result .cb-pillar-desc {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.005em !important;
  line-height: 1.3 !important;
  color: inherit !important;
  opacity: 0.85 !important;
}

/* ---------- Per-pillar color variants ---------- */

/* Pillar A (sky-mist card) — brand blue band, white text */
.cb-pillarx-a .cb-pillar-result {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-deep) 100%);
  color: #fff;
}
.cb-pillarx-a .cb-pillar-arrow { background: rgba(255,255,255,0.22); }

/* Pillar B (deep navy card) — bright sky-cyan band, deep navy text */
.cb-pillarx-b .cb-pillar-result {
  background: linear-gradient(135deg, var(--c-sky) 0%, #6BC8E0 100%);
  color: var(--c-deep);
}
.cb-pillarx-b .cb-pillar-arrow { background: rgba(0,43,92,0.18); color: var(--c-deep); }
.cb-pillarx-b .cb-pillar-result::before {
  background: linear-gradient(120deg, rgba(255,255,255,0.35) 0%, transparent 40%);
}

/* Pillar C (sage card) — sage band, white text */
.cb-pillarx-c .cb-pillar-result {
  background: linear-gradient(135deg, var(--c-sage) 0%, #4E8A78 100%);
  color: #fff;
}
.cb-pillarx-c .cb-pillar-arrow { background: rgba(255,255,255,0.22); }

/* Show the arrow now (was hidden in v24) */
.cb-pillar-result svg { display: inline-block !important; }


/* =============================================================
   v26 — Pillar result band: force background gradients (override v24)
   ============================================================= */

/* Default — brand blue band */
.cb-pillar-result {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-deep) 100%) !important;
  color: #fff !important;
}
.cb-pillar-result .cb-pillar-metric { color: #fff !important; }
.cb-pillar-result .cb-pillar-desc   { color: rgba(255,255,255,0.88) !important; }

/* Pillar A (sky-mist card) — brand blue band, white text */
.cb-pillarx-a .cb-pillar-result {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-deep) 100%) !important;
  color: #fff !important;
}
.cb-pillarx-a .cb-pillar-result .cb-pillar-metric { color: #fff !important; }
.cb-pillarx-a .cb-pillar-result .cb-pillar-desc   { color: rgba(255,255,255,0.88) !important; }

/* Pillar B (deep navy card) — bright sky-cyan band, deep navy text */
.cb-pillarx-b .cb-pillar-result {
  background: linear-gradient(135deg, var(--c-sky) 0%, #6BC8E0 100%) !important;
  color: var(--c-deep) !important;
}
.cb-pillarx-b .cb-pillar-result .cb-pillar-metric { color: var(--c-deep) !important; }
.cb-pillarx-b .cb-pillar-result .cb-pillar-desc   { color: rgba(0,43,92,0.78) !important; }
.cb-pillarx-b .cb-pillar-arrow { background: rgba(0,43,92,0.18) !important; color: var(--c-deep) !important; }

/* Pillar C (sage card) — sage band, white text */
.cb-pillarx-c .cb-pillar-result {
  background: linear-gradient(135deg, var(--c-sage) 0%, #4E8A78 100%) !important;
  color: #fff !important;
}
.cb-pillarx-c .cb-pillar-result .cb-pillar-metric { color: #fff !important; }
.cb-pillarx-c .cb-pillar-result .cb-pillar-desc   { color: rgba(255,255,255,0.88) !important; }

/* Arrow tile — white-on-color for A & C */
.cb-pillarx-a .cb-pillar-arrow,
.cb-pillarx-c .cb-pillar-arrow {
  background: rgba(255,255,255,0.22) !important;
  color: #fff !important;
}


/* =============================================================
   v27 — Real doctor PNG as hero focal point
   ============================================================= */

/* Mosaic container — give it real height so the doctor breathes */
.cb-hero-mosaic-doc {
  position: relative;
  min-height: 640px;
  width: 100%;
}

/* DOCTOR — dominant right-side figure */
.cb-hero-doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-height: 640px;
  z-index: 2;
  /* drop shadow behind the cutout for depth */
  filter: drop-shadow(0 30px 50px rgba(0, 43, 92, 0.18));
  user-select: none;
}

/* Hide the SVG doctor (now we use the real photo) */
.cb-reel-doctor-hidden { display: none !important; }

/* Phone reel — smaller, overlaps the doctor's coat (lower-left of him) */
.cb-hero-mosaic-doc .cb-phone {
  position: absolute !important;
  top: auto !important;
  bottom: 30px;
  left: -10px;
  margin: 0 !important;
  width: 200px;
  height: 410px;
  transform: rotate(-6deg);
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 43, 92, 0.25);
}

/* Floating cards — reposition around the doctor */
.cb-hero-mosaic-doc .cb-mock-review {
  position: absolute !important;
  top: 30px;
  left: 0;
  right: auto;
  max-width: 280px;
  transform: rotate(-3deg);
  z-index: 4;
  animation: cb-float 6s ease-in-out infinite;
}
.cb-hero-mosaic-doc .cb-mock-chat {
  position: absolute !important;
  top: 50%;
  left: -10px;
  bottom: auto;
  margin-top: -30px;
  display: none;       /* hidden in mosaic-doc — keeps the layout uncluttered */
}
.cb-hero-mosaic-doc .cb-mock-book {
  position: absolute !important;
  bottom: 60px;
  right: 0;
  left: auto;
  max-width: 240px;
  transform: rotate(4deg);
  z-index: 4;
  animation: cb-float 5s ease-in-out infinite 1.2s;
}

/* Soft accent shape behind the doctor — pushes him forward */
.cb-hero-mosaic-doc::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 65%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(141, 216, 236, 0.55) 0%, transparent 65%);
  z-index: 1;
}

/* Mobile — stack doctor + simplified card row */
@media (max-width: 980px) {
  .cb-hero-mosaic-doc { min-height: 520px; }
  .cb-hero-mosaic-doc .cb-hero-doctor { max-height: 480px; height: 480px; right: 0; left: auto; margin: 0 auto; position: relative; display: block; }
  .cb-hero-mosaic-doc .cb-mock-review { top: 10px; left: 10px; max-width: 220px; transform: rotate(-3deg); }
  .cb-hero-mosaic-doc .cb-phone { display: none; }
  .cb-hero-mosaic-doc .cb-mock-book { bottom: 30px; right: 10px; max-width: 200px; }
}
@media (max-width: 540px) {
  .cb-hero-mosaic-doc .cb-hero-doctor { max-height: 380px; height: 380px; }
  .cb-hero-mosaic-doc .cb-mock-review,
  .cb-hero-mosaic-doc .cb-mock-book { display: none; }
}


/* =============================================================
   v28 — Hero mosaic: hide phone, reposition 2 cards in left negative space
   ============================================================= */

/* Hide the phone entirely in the doctor mosaic */
.cb-hero-mosaic-doc .cb-phone {
  display: none !important;
}

/* Doctor — anchor right, face & shoulders fully visible */
.cb-hero-mosaic-doc .cb-hero-doctor {
  right: -20px;          /* nudge slightly off-canvas so cards have room */
  bottom: -20px;
  max-height: 660px;
  height: 100%;
}

/* Google review card — top-left, smaller, doesn't touch the doctor's face */
.cb-hero-mosaic-doc .cb-mock-review {
  position: absolute !important;
  top: 60px !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  max-width: 280px !important;
  transform: rotate(-3deg) !important;
  z-index: 4;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 43, 92, 0.18);
  animation: cb-float 6s ease-in-out infinite;
}

/* Booking confirmation — bottom-left, sits below the review */
.cb-hero-mosaic-doc .cb-mock-book {
  position: absolute !important;
  bottom: 40px !important;
  left: 30px !important;
  right: auto !important;
  top: auto !important;
  max-width: 250px !important;
  transform: rotate(3deg) !important;
  z-index: 4;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 43, 92, 0.18);
  animation: cb-float 5s ease-in-out infinite 1.4s;
}

/* WhatsApp chat stays hidden in this layout — keep composition clean */
.cb-hero-mosaic-doc .cb-mock-chat { display: none !important; }

/* Soft accent shape behind the doctor */
.cb-hero-mosaic-doc::before {
  width: 70%;
  height: 75%;
  right: -5%;
  bottom: -5%;
}

/* Tablet — cards stay on the left but smaller */
@media (max-width: 1180px) {
  .cb-hero-mosaic-doc .cb-mock-review { max-width: 240px !important; top: 40px !important; }
  .cb-hero-mosaic-doc .cb-mock-book { max-width: 220px !important; bottom: 30px !important; left: 10px !important; }
}

/* Mobile — center doctor, hide cards */
@media (max-width: 980px) {
  .cb-hero-mosaic-doc { min-height: 480px; text-align: center; }
  .cb-hero-mosaic-doc .cb-hero-doctor {
    position: relative !important;
    right: auto !important; bottom: auto !important;
    margin: 0 auto;
    height: 460px !important;
    max-height: 460px !important;
    display: block;
  }
  .cb-hero-mosaic-doc .cb-mock-review,
  .cb-hero-mosaic-doc .cb-mock-book { display: none !important; }
}


/* =============================================================
   v29 — Hero cards: smaller + repositioned (head-left & hip-right)
   ============================================================= */

/* REVIEW CARD — left of doctor's head (top-left), smaller */
.cb-hero-mosaic-doc .cb-mock-review {
  top: 40px !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  max-width: 230px !important;
  transform: rotate(-3deg) !important;
}
.cb-hero-mosaic-doc .cb-mock-review .cb-rev-body {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 8px;
}
.cb-hero-mosaic-doc .cb-mock-review .cb-rev-name strong { font-size: 0.9rem; }
.cb-hero-mosaic-doc .cb-mock-review .cb-rev-name span  { font-size: 0.72rem; }
.cb-hero-mosaic-doc .cb-mock-review .cb-rev-avatar { width: 38px; height: 38px; font-size: 0.85rem; }
.cb-hero-mosaic-doc .cb-mock-review .cb-rev-stars svg { width: 12px; height: 12px; }
.cb-hero-mosaic-doc .cb-mock-review { padding: 18px; }

/* BOOKING CARD — right of doctor's hip (mid-lower right), smaller */
.cb-hero-mosaic-doc .cb-mock-book {
  top: 56% !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  max-width: 220px !important;
  transform: rotate(3deg) !important;
  padding: 16px !important;
  font-size: 0.84rem;
}
.cb-hero-mosaic-doc .cb-mock-book .cb-bk-head { margin-bottom: 12px; }
.cb-hero-mosaic-doc .cb-mock-book .cb-bk-icon { width: 32px; height: 32px; font-size: 0.92rem; }
.cb-hero-mosaic-doc .cb-mock-book .cb-bk-head strong { font-size: 0.85rem; }
.cb-hero-mosaic-doc .cb-mock-book .cb-bk-head span { font-size: 0.72rem; }
.cb-hero-mosaic-doc .cb-mock-book .cb-bk-row { padding: 6px 0; font-size: 0.8rem; }

/* Tablet — keep layout but tighter */
@media (max-width: 1180px) {
  .cb-hero-mosaic-doc .cb-mock-review { max-width: 200px !important; top: 30px !important; }
  .cb-hero-mosaic-doc .cb-mock-book   { max-width: 200px !important; top: 58% !important; }
}

/* Mobile fallback unchanged from v28 */
@media (max-width: 980px) {
  .cb-hero-mosaic-doc .cb-mock-review,
  .cb-hero-mosaic-doc .cb-mock-book { display: none !important; }
}


/* =============================================================
   v30 — Push cards further out + review goes BEHIND the doctor
   ============================================================= */

/* Review card — slipped further left AND placed behind the doctor (z-index < doctor) */
.cb-hero-mosaic-doc .cb-mock-review {
  left: -40px !important;
  top: 30px !important;
  z-index: 1 !important;          /* doctor sits at z-index: 2, so card is behind */
}

/* Booking card — pushed further to the right edge, stays in front */
.cb-hero-mosaic-doc .cb-mock-book {
  right: -30px !important;
  top: 58% !important;
  z-index: 4 !important;
}

/* Make sure the doctor confidently sits above the review card */
.cb-hero-mosaic-doc .cb-hero-doctor {
  z-index: 3 !important;
}

/* Allow cards to extend past the mosaic — no overflow clipping */
.cb-hero-mosaic-doc { overflow: visible !important; }

/* Tablet — bring left a touch tighter so it doesn't fall off-screen */
@media (max-width: 1180px) {
  .cb-hero-mosaic-doc .cb-mock-review { left: -10px !important; }
  .cb-hero-mosaic-doc .cb-mock-book { right: -10px !important; }
}


/* =============================================================
   v31 — Tier 3 pricing card: <strong> inside features must be white
   ============================================================= */
.cb-price-v3.is-tier-3 strong { color: #fff !important; }
.cb-price-v3.is-tier-3 .cb-feat-group ul li strong { color: #fff !important; }
.cb-price-v3.is-tier-3 .cb-includes-prev strong { color: #fff !important; }
.cb-price-v3.is-tier-3 .cb-outcome-pill strong { color: var(--c-gold) !important; }


/* =============================================================
   v32 — Mobile fixes:
   1) Mobile menu panel was being overridden by a later
      `.cb-mobile-panel { display: none; }` base rule, so the burger
      toggle never made the panel visible. Re-assert the mobile
      display state AFTER all earlier rules so source order wins.
   2) Hide the hero doctor image on mobile devices — not needed on
      small screens.
   ============================================================= */

/* (1) Mobile menu — make sure the panel actually shows on small screens */
@media (max-width: 980px) {
  .cb-mobile-panel { display: block !important; }
}
@media (min-width: 981px) {
  .cb-mobile-panel { display: none !important; }
}

/* (2) Hide the doctor image on mobile (phones / small tablets) */
@media (max-width: 768px) {
  .cb-hero-doctor,
  .cb-hero-mosaic-doc .cb-hero-doctor {
    display: none !important;
  }
  /* Collapse the empty mosaic so it doesn't leave a big gap */
  .cb-hero-mosaic-doc {
    min-height: 0 !important;
  }
  .cb-hero-mosaic-doc::before { display: none !important; }
}

/* (3) Photo inside phone reel — fills the screen, gradient stays as fallback */
.cb-reel-bg .cb-reel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* (4) Mobile menu — make sure the nav items inside the panel always render
   even if the menu UL inherits the `.cb-menu` class (which is `display:none`
   at mobile because it's the desktop horizontal bar). Also pin the panel
   to the viewport explicitly so iOS Safari's backdrop-filter on the header
   can't shrink it. */
.cb-mobile-panel ul,
.cb-mobile-panel ul.cb-menu {
  display: block !important;
  flex-direction: column;
  gap: 0;
}
.cb-mobile-panel li { display: block; }
.cb-mobile-panel a { background: transparent !important; }

@media (max-width: 980px) {
  .cb-mobile-panel {
    position: fixed !important;
    top: 76px !important;        /* header is ~76px on mobile */
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    background: #fff !important;
    padding: 20px 24px 40px !important;
    z-index: 70 !important;
    overflow-y: auto;
  }
}

/* (5) Allow long button labels to wrap on mobile so they don't overflow
   the viewport. The base `.cb-btn` rule sets white-space: nowrap. */
@media (max-width: 600px) {
  .cb-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    max-width: 100%;
  }
  .cb-btn-lg {
    padding: 16px 24px;
    font-size: 0.98rem;
  }
}

