@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
/* ═══════════════════════════════════════════════════════
   COVERBIZZ — Ultra-Premium Home Page Styles v2.0
   @import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,600;12..96,700;12..96,800&display=swap');
════════════════════════════════════════════════════════ */

:root {
  /* ══════════════════════════════════════
     BRAND COLORS — CoverBizz Core
  ══════════════════════════════════════ */

  /* Green / Teal (primary action) */
  --cb-green: #1d9e75;
  --cb-green-dark: #0f6e56;
  --cb-green-light: #e8f8f2;
  --cb-green-glow: rgba(29, 158, 117, 0.18);

  /* Navy (headings, dark bg) */
  --cb-navy: #0b3d6b;
  --cb-navy-deep: #07284a;

  /* Gold (accents, CTA) */
  --cb-gold: #e8a020;
  --cb-gold-light: rgba(232, 160, 32, 0.15);

  /* Dark shades */
  --cb-dark: #0d1f35;
  --cb-dark2: #112440;
  --cb-dark3: #0d1b3e;

  /* Whites / Surfaces */
  --cb-white: #ffffff;
  --cb-off: #f7f9fb;
  --cb-surface: #f0f4f8;

  /* ══════════════════════════════════════
     FOOTER TOKENS — cbz prefix
  ══════════════════════════════════════ */

  --cbz-bg: #081730;
  --cbz-bg2: #0a1e3c;
  --cbz-bg3: #061226;
  --cbz-gold: #c9a84c;
  --cbz-gold-lt: #e0c06a;
  --cbz-teal: #1ab8c4;
  --cbz-text: #c4d3e8;
  --cbz-muted: #6b82a8;
  --cbz-border: rgba(201, 168, 76, 0.15);
  --cbz-border2: rgba(255, 255, 255, 0.06);

  /* ══════════════════════════════════════
     PRODUCT / HOME PAGE TOKENS
  ══════════════════════════════════════ */

  --navy: #1a2265;
  --teal: #2dcb9e;
  --gold: #f4a916;
  --white: #ffffff;
  --page-bg: #f4f5fb;
  --gray-sub: #8c97ab;
  --card-border: #eceef8;
  --card-shadow: rgba(26, 34, 101, 0.07);

  /* Badge colors */
  --green-bg: #e7f8f0;
  --green-fg: #14803d;
  --green-dot: #22c55e;
  --teal-bg: #ddf4fb;
  --teal-fg: #0b7294;

  /* ══════════════════════════════════════
     TEXT & BORDERS — cb prefix
  ══════════════════════════════════════ */

  --cb-text: #111827;
  --cb-muted: #6b7280;
  --cb-muted-light: #9ca3af;
  --cb-border: #e5e7eb;
  --cb-border-soft: rgba(229, 231, 235, 0.6);

  /* ══════════════════════════════════════
     TYPOGRAPHY
  ══════════════════════════════════════ */

  --cb-font-display: "Urbanist", sans-serif;
  --cb-font-body: "Plus Jakarta Sans", sans-serif;

  /* ══════════════════════════════════════
     BORDER RADIUS
  ══════════════════════════════════════ */

  --cb-radius-xs: 6px;
  --cb-radius-sm: 10px;
  --cb-radius: 16px;
  --cb-radius-lg: 24px;
  --cb-radius-xl: 32px;

  /* ══════════════════════════════════════
     SHADOWS
  ══════════════════════════════════════ */

  --cb-shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.05);
  --cb-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --cb-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  --cb-shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.13);
  --cb-shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.18);

  /* ══════════════════════════════════════
     TRANSITIONS
  ══════════════════════════════════════ */

  --cb-transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --cb-spring: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* ══════════════════════════════════════
     HEADER TOKEN
  ══════════════════════════════════════ */

  --cb-h: 68px;
}

/* ── Reset / Base ── */
.cb-home * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cb-home {
  font-family: var(--cb-font-body);
  color: var(--cb-text);
  -webkit-font-smoothing: antialiased;
}

.cb-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ── */
.cb-section {
  width: 100%;
  padding: 88px 0;
}
.cb-section--white {
  background: var(--cb-white);
}
.cb-section--off {
  background: var(--cb-off);
}
.cb-section--dark {
  background: var(--cb-dark);
}
.cb-section--accent {
  background: var(--cb-navy);
}

/* ════════════════════════════════════════════
   SHARED TYPOGRAPHY
════════════════════════════════════════════ */
.cb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cb-font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-green);
  margin-bottom: 14px;
}
.cb-eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.cb-eyebrow--light {
  color: #5de8bb;
}
.cb-eyebrow--center {
  display: flex;
  justify-content: center;
}

.cb-section-title {
  font-family: var(--cb-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--cb-navy);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cb-section-title--desc {
  color: #fff;
  font-size: 18px;
  margin-bottom: 52px;
}
.cb-section-title--light {
  color: #ffffff;
}
.cb-section-title em {
  font-style: italic;
  color: var(--cb-gold);
  position: relative;
}

.cb-display {
  font-family: var(--cb-font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--cb-navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cb-body-lg {
  font-size: 15.5px;
  color: var(--cb-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

/* ── Pills ── */
.cb-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.cb-pill--green {
  color: var(--cb-green-dark);
  background: var(--cb-green-light);
  border: 1px solid rgba(29, 158, 117, 0.2);
}
.cb-pill--blue {
  color: var(--cb-navy);
  background: #dde9f7;
  border: 1px solid rgba(11, 61, 107, 0.15);
}
.cb-covers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0 26px;
}
.cb-cover-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cb-cover-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f8f2;
  color: #1d9e75;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cb-cover-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cb-cover-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.cb-cover-text span {
  font-size: 12px;
  color: var(--gray-sub);
  line-height: 1.55;
}
/* ── Buttons ── */
.cb-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--cb-font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--cb-radius-sm);
  padding: 14px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--cb-spring);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.cb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--cb-transition);
}
.cb-btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.cb-btn--primary {
  background: var(--cb-dark3);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(15, 110, 86, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.cb-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(15, 110, 86, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.cb-btn--outline {
  background: var(--cb-dark3);
  color: #fff;
  border: 1.5px solid var(--cb-border);
}
.cb-btn--outline:hover {
  color: #fff;
  transform: translateY(-1px);
}
.cb-btn--gold {
  background: linear-gradient(135deg, #f0b429 0%, var(--cb-gold) 100%);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(232, 160, 32, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cb-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(232, 160, 32, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cbz-hero {
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.cbz-hero img {
     width: 90%;
    margin: 20px 20px;
    border-radius: 40px;
}

/* ── Layered gradient background ── */
.cbz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, #b8d8f0 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, #cae5f7 0%, transparent 55%),
    linear-gradient(160deg, #c2dcf0 0%, #d8ecf9 40%, #e4f2fb 100%);
}

/* ── Dot texture ── */
.cbz-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.4) 1.5px,
    transparent 1.5px
  );
  background-size: 32px 32px;
  z-index: 1;
  pointer-events: none;
}

/* ── SVG waves ── */
.cbz-hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 55%;
  z-index: 1;
  pointer-events: none;
}

.cbz-hero__inner {
  max-width: 1160px;
  /* Matched to .cb-container (1160px max-width + 28px padding) so every
     section's content area lines up at the same width site-wide */
  margin: 0 auto;
  padding: 40px 28px 20px 28px;
  position: relative;
  z-index: 2;
}
/* TOP ROW: Split Left and Right */
.cbz-hero__content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  /* margin-bottom: 50px; */
  /* Text/Cards aur Center button ke beech ka gap */
}

/* ══════════════════════════
   TEXT BLOCK (TOP)
══════════════════════════ */
.cbz-hero__left {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.cbz-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1565d8;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.55);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(21, 101, 216, 0.2);
}
/* .cbz-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1565d8;
  flex-shrink: 0;
} */

.cbz-hero__title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  color: #0a1f3d;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  text-align: center;
}
.cbz-hero__title .accent {
  color: #1565d8;
  display: block;
}
.cbz-hero__head {
  font-size: 16px;
  color: #11133e;
  font-weight: 600;
  margin: 10px 0;
}
.cbz-hero__sub {
  font-size: 13.5px;
  color: #3a5275;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CTA Box */
.cbz-cta-box {
  background: linear-gradient(135deg, #f5bc1e 0%, #f0a800 100%);
  border-radius: 14px;
  padding: 12px 14px 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 240px;
  box-shadow:
    0 12px 40px rgba(240, 168, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.cbz-cta-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.cbz-cta-label {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #5a3800;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  position: relative;
  white-space: nowrap;
}

.cbz-cta-btn-home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  flex-shrink: 0;
  background: #0a1f3d;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.cbz-cta-btn-home:hover {
  transform: translateY(-2px);
  color: #ffffff;
}
.cbz-cta-btn-home svg {
  flex-shrink: 0;
}

/* ══════════════════════════
   RIGHT SIDE — Feature Cards
══════════════════════════ */
.cbz-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 860px;
}

.cbz-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 4px 16px rgba(10, 31, 61, 0.06),
    0 1px 3px rgba(10, 31, 61, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s,
    background 0.2s;
  cursor: default;
  white-space: nowrap;
}
.cbz-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 12px 32px rgba(10, 31, 61, 0.12),
    0 4px 12px rgba(10, 31, 61, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.cbz-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.cbz-card__name {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0a1f3d;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.cbz-card__bar {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cbz-hero__inner {
    gap: 24px;
  }
  .cbz-hero {
    padding: 40px 32px 32px;
  }
}
@media (max-width: 900px) {
  .cbz-hero__left {
    max-width: 100%;
  }
  .cbz-hero__sub {
    max-width: 100%;
  }
  .cbz-cta-box {
    width: auto;
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .cbz-hero {
    padding: 0;
  }
  
  .cbz-hero img {
     width: 100%;
    margin: 0px;
    border-radius: 0px;
}
  .cbz-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cbz-hero__title {
    font-size: 32px;
  }
  .cbz-cta-box {
    display: unset;
  }
  .cbz-cta-label {
    text-align: center;
    white-space: normal;
  }
  .cbz-cta-btn-home {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .cbz-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 64px 80px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 50vh;
  box-sizing: border-box;
  background: #fff;
}

/* ── LEFT ── */
.hero-left {
  flex: 0 0 370px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.deco {
  display: flex;
  align-items: center;
  gap: 10px;
}
.deco-line {
  height: 2.5px;
  border-radius: 99px;
  background: var(--teal);
}
.deco-line.short {
  width: 28px;
}
.deco-line.long {
  width: 72px;
}
.deco-bolt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}
.deco-bolt svg {
  width: 14px;
  height: 14px;
  fill: var(--teal);
}

.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-heading .italic-line {
  font-style: italic;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}
.hero-heading .bold-line {
  font-weight: 800;
  font-size: 40px;
  color: var(--navy);
  line-height: 1.15;
  font-family: "Urbanist", sans-serif;
}

.hero-sub {
  font-size: 14.5px;
  color: var(--gray-sub);
  line-height: 1.65;
}

.stats-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 16px 18px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-val {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  font-family: "Urbanist", sans-serif;
}
.stat-lbl {
  font-size: 11px;
  color: var(--gray-sub);
  margin-top: 3px;
}
.stat-sep {
  width: 1px;
  height: 42px;
  background: #dde0f0;
  flex-shrink: 0;
  margin: 0 4px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 2.5px solid var(--navy);
  border-radius: 50px;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  transition:
    background 0.22s,
    color 0.22s;
}
.cta-btn:hover {
  background: var(--navy);
  color: #fff;
}
.btn-icon {
  font-size: 16px;
}

/* ── RIGHT ── */
.hero-right {
  flex: 1;
  min-width: 0;
}
.cards-grid {
  display: grid;
  gap: 14px;
}

/* ── INDUSTRY SECTION HEADER ── */
.industries-header {
  margin-bottom: 18px;
}
.industries-title {
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
  line-height: 1.2;
}
.industries-sub {
  font-size: 12.5px;
  color: var(--gray-sub);
  line-height: 1.65;
  margin: 0;
}

/* ── INDUSTRY GRID ── */
.industries-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px !important;
}

/* ── BASE CARD ── */
.ins-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8eaf0;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(26, 34, 101, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

/* ── INDUSTRY CARD ── */
.ind-card {
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 20px 18px 16px !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* active card left accent bar */
.ind-card:not(.ind-card--soon)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: transparent;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
}
.ind-card:not(.ind-card--soon):hover {
  transform: translateY(-4px);
  border-color: rgba(29, 158, 117, 0.4) !important;
  box-shadow: 0 12px 32px rgba(29, 158, 117, 0.12) !important;
}
.ind-card:not(.ind-card--soon):hover::before {
  background: var(--teal);
}

/* ══════════════════════════════════
   ICON WRAP
   Supports both SVG icons and <img>
   (product images like Cyber Insurance)
══════════════════════════════════ */
.ind-card-icon {
  flex-shrink: 0;
  line-height: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* active card icon bg (only when SVG, not image) */
.ind-card:not(.ind-card--soon) .ind-card-icon:not(.ind-card-icon--img) {
  background: #e8f8f2;
}

/* coming soon icon bg */
.ind-card--soon .ind-card-icon {
  background: #f0f1f5;
  opacity: 0.45;
}

/* SVG icon size */
.ind-card-icon svg {
  width: 52px;
  height: 52px;
}

/* ── IMAGE variant ──
   When using <img> inside .ind-card-icon
   Add class .ind-card-icon--img to the wrapper
   so background is removed and image fills fully
*/
.ind-card-icon--img {
  background: transparent !important;
  border-radius: 16px;
  padding: 0;
}
.ind-card-icon--img img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* ── card body ── */
.ind-card-body {
  flex: 1;
  min-width: 0;
}
.ind-card-name {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.25;
}
.ind-card-desc {
  font-size: 12px;
  color: var(--gray-sub);
  line-height: 1.65;
}
.ind-badge {
  width: 100%;
  margin-top: 2px;
}

/* ══════════════════════════════════
   COMING SOON — polished
══════════════════════════════════ */
.ind-card--soon {
  cursor: default;
  opacity: 1;
  background: #fafafa;
}
.ind-card--soon:hover {
  transform: none !important;
  box-shadow: 0 2px 10px rgba(26, 34, 101, 0.05) !important;
  border-color: #e8eaf0 !important;
}
.ind-card--soon .ind-card-name {
  color: #8a94b0;
}
.ind-card--soon .ind-card-desc {
  color: #b0b8c8;
}

/* top-right pill chip via ::after */
.ind-card--soon::after {
  content: "Coming soon";
  position: absolute;
  top: 14px;
  right: 14px;
  background: #edeef5;
  color: #8a94b0;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #dde0ec;
}

/* ── BADGES ── */
.badge {
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

/* active — Explore Now */
.badge-green {
  background: #e8f8f2;
  color: #0f6e56;
}
.dot-plus {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1d9e75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dot-plus svg {
  width: 9px;
  height: 9px;
  fill: white;
}

/* coming soon badge */
.badge-soon {
  background: #f4f5f9;
  color: #a0a8be;
  border: 1.5px dashed #d4d8e8;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

/* shimmer on hover */
.badge-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.5s ease;
}
.ind-card--soon:hover .badge-soon::before {
  left: 130%;
}

/* ── Coming Soon dot — pulse animation ── */
.soon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a0a8be;
  display: inline-block;
  position: relative;
  animation: cbz-dot-pulse 1.8s ease-in-out infinite;
}

.soon-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #a0a8be;
  animation: cbz-dot-ring 1.8s ease-out infinite;
}

@keyframes cbz-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@keyframes cbz-dot-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ── Badge — subtle shimmer sweep ── */
.badge-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: cbz-shimmer 2.8s ease-in-out infinite;
}

@keyframes cbz-shimmer {
  0% {
    left: -60%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/* ── Top-right "Coming soon" pill — gentle breathing effect ── */
.ind-card--soon::after {
  animation: cbz-badge-breathe 2.4s ease-in-out infinite;
}

@keyframes cbz-badge-breathe {
  0%,
  100% {
    background: #edeef5;
    border-color: #dde0ec;
  }
  50% {
    background: #e4e6f2;
    border-color: #c9cee4;
  }
}

/* pulsing dot */
.soon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c0c6d8;
  flex-shrink: 0;
  display: inline-block;
  animation: cbzPulse 2s ease-in-out infinite;
}

@keyframes cbzPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
    min-height: auto;
  }
  .hero-left {
    flex: none;
    width: 100%;
  }
  .hero-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 16px;
  }
  .industries-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px !important;
  }

  .hero-heading .bold-line {
    font-size: 28px;
  }
  .hero-heading .italic-line {
    font-size: 24px;
  }
  .ind-card-icon {
    width: 60px;
    height: 60px;
  }
  .ind-card-icon svg {
    width: 38px;
    height: 38px;
  }
  .ind-card-icon--img img {
    width: 60px;
    height: 60px;
  }
}

/* ════════════════════════════════════════════
   TRUSTED ENTERPRISES — Scrolling Logo Wall
════════════════════════════════════════════ */
.cb-premium-wall-section {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  padding: 96px 0;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}
.cb-premium-wall-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 50%,
    rgba(29, 158, 117, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cb-wall-header {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 64px auto;
  text-align: center;
  padding: 0 20px;
}

.cb-wall-title {
  font-family: var(--cb-font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cb-wall-title span {
  background: linear-gradient(135deg, var(--cb-green) 0%, var(--cb-navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cb-wall-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  font-family: var(--cb-font-body);
  font-weight: 400;
}

/* Stats row under title */
.cb-wall-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cb-border);
}
.cb-wall-stat {
  text-align: center;
}
.cb-wall-stat__num {
  font-family: var(--cb-font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--cb-navy);
  letter-spacing: -0.02em;
  display: block;
}
.cb-wall-stat__label {
  font-size: 11px;
  color: var(--cb-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Viewport */
.cb-grid-wall-viewport {
  display: flex;
  justify-content: center;
  gap: 20px;
  height: 520px;
  overflow: hidden;
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.cb-grid-wall-viewport::before,
.cb-grid-wall-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 10;
  pointer-events: none;
}
.cb-grid-wall-viewport::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    #f8fafc 0%,
    rgba(248, 250, 252, 0) 100%
  );
}
.cb-grid-wall-viewport::after {
  bottom: 0;
  background: linear-gradient(to top, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}
.cb-grid-wall-viewport:hover .cb-wall-column {
  animation-play-state: paused;
}

/* Columns */
.cb-wall-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 215px;
  flex-shrink: 0;
  will-change: transform;
  animation-duration: var(--cb-wall-duration, 25s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.cb-animate-up {
  animation-name: cb_wall_scroll_up;
}
.cb-animate-down {
  animation-name: cb_wall_scroll_down;
}

/* Glass pods — upgraded */
.cb-glass-logo-pod {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(15, 23, 42, 0.03);
  transition:
    transform var(--cb-spring),
    background var(--cb-transition),
    border-color var(--cb-transition),
    box-shadow var(--cb-spring);
  backdrop-filter: blur(2px);
}
.cb-glass-logo-pod:hover {
  transform: translateY(-6px) scale(1.04);
  background: #ffffff;
  border-color: rgba(29, 158, 117, 0.35);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.1),
    0 0 0 3px rgba(29, 158, 117, 0.08);
}
.cb-glass-logo-pod img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.35s ease;
}
.cb-glass-logo-pod:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes cb_wall_scroll_up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes cb_wall_scroll_down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════
   INSURANCE PARTNERS CAROUSEL
════════════════════════════════════════════ */
.ins-partners-section-wrapper {
  text-align: center;
  padding: 72px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--cb-border);
}
.ins-partners-main-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.ins-partners-main-title {
  font-family: var(--cb-font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--cb-navy);
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.02em;
}
.ins-partners-main-subtitle {
  font-size: 15px;
  color: var(--cb-muted);
  margin: 0 0 40px 0 !important;
  line-height: 1.6;
}
.ins-partners-carousel-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins-partners-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cb-white);
  border: 1.5px solid var(--cb-border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: all var(--cb-spring);
  z-index: 15;
  color: var(--cb-navy);
  padding: 0;
}
.ins-partners-nav-btn:hover {
  background: var(--cb-navy);
  color: #ffffff;
  border-color: var(--cb-navy);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(11, 61, 107, 0.28);
}
.ins-partners-prev-btn {
  left: 0px;
}
.ins-partners-next-btn {
  right: 0px;
}

.ins-partners-slider-track {
  display: flex;
  align-items: center;
  gap: 56px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ins-partners-slider-track::-webkit-scrollbar {
  display: none;
}

.ins-partners-node-item {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ins-partners-node-item img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.ins-partners-node-item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15);
}
.ins-partners-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.ins-partners-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dce1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ins-partners-dot:hover {
  background: #aeb6c0;
}
.ins-partners-dot.active {
  background: var(--cb-navy);
  width: 24px;
  border-radius: 5px;
}
/* ════════════════════════════════════════════
   WHO IS COVERBIZZ + HEAVY LIFTING — Split
════════════════════════════════════════════ */
.cb-hero-split {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%);
}
.cb-hero-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.cb-hero-split__left,
.cb-hero-split__right {
  position: relative;
  background: var(--cb-white);
  border: 1px solid var(--cb-border-soft);
  border-radius: var(--cb-radius-xl);
  padding: 44px 40px;
  transition:
    box-shadow var(--cb-spring),
    border-color var(--cb-spring),
    transform var(--cb-spring);
  overflow: hidden;
}
/* Subtle decorative gradient corner */
.cb-hero-split__left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(29, 158, 117, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cb-hero-split__right::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(11, 61, 107, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cb-hero-split__left:hover,
.cb-hero-split__right:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
  border-color: rgba(229, 231, 235, 0.9);
  transform: translateY(-3px);
}

/* IRDAI badge */
.cb-irdai-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #888;
  line-height: 1.65;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: var(--cb-radius-sm);
  background: var(--cb-green-light);
  border: 1px solid rgba(29, 158, 117, 0.15);
}
.cb-irdai-badge svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cb-green-dark);
}
.cb-irdai-badge span {
  color: var(--cb-green-dark);
  font-weight: 500;
}

/* Heavy Lifting items — upgraded */
.cb-hl-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cb-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius);
  background: var(--cb-off);
  transition:
    border-color var(--cb-spring),
    box-shadow var(--cb-spring),
    transform var(--cb-spring),
    background var(--cb-transition);
  position: relative;
  overflow: hidden;
}
.cb-hl-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 3px 0 0 3px;
  transition: background var(--cb-transition);
}
.cb-hl-item:hover {
  border-color: rgba(29, 158, 117, 0.35);
  box-shadow: 0 6px 20px rgba(29, 158, 117, 0.1);
  transform: translateX(5px);
  background: rgba(232, 248, 242, 0.5);
}
.cb-hl-item:hover::before {
  background: var(--cb-green);
}

.cb-hl-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-green-dark);
}
.cb-hl-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--cb-text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cb-hl-desc {
  font-size: 13px;
  color: var(--cb-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   TESTIMONIALS — Dark Section (Premium)
════════════════════════════════════════════ */
.cb-testi {
  position: relative;
  overflow: hidden;
}
.cb-testi::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(29, 158, 117, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 30%,
      rgba(11, 61, 107, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cb-testi-wrap {
  overflow: hidden;
  max-width: 100%;
}
.cb-testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.cb-testi-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
}

/* Card */
.cb-testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--cb-radius-xl);
  padding: 36px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    background var(--cb-transition),
    border-color var(--cb-spring),
    transform var(--cb-spring),
    box-shadow var(--cb-spring);
  position: relative;
  overflow: hidden;
}
.cb-testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.cb-testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(29, 158, 117, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(29, 158, 117, 0.2);
}

/* Stars */
.cb-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.cb-testi-stars svg {
  color: var(--cb-gold);
}

.cb-testi-quote {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 0.8;
  color: var(--cb-green);
  opacity: 0.5;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
}
.cb-testi-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 26px;
  font-style: italic;
}
.cb-testi-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-bottom: 22px;
}
.cb-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cb-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--cb-green) 0%,
    var(--cb-green-dark) 100%
  );
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(29, 158, 117, 0.5);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
}
.cb-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cb-testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.cb-testi-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-direction: column;
}

/* Controls */
.cb-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.cb-testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--cb-spring);
}
.cb-testi-btn:hover {
  background: var(--cb-green);
  border-color: var(--cb-green);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(29, 158, 117, 0.4);
}
.cb-testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cb-testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--cb-spring);
}
.cb-testi-dot.active {
  background: var(--cb-green);
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(29, 158, 117, 0.6);
}

/* ════════════════════════════════════════════
   LATEST INSIGHTS — Magazine-Style
════════════════════════════════════════════ */
.cb-insights {
  position: relative;
}

.cb-insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 44px;
}

/* Featured card styles */
.cb-card {
  background: var(--cb-white);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--cb-spring),
    box-shadow var(--cb-spring),
    border-color var(--cb-spring);
}
.cb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.11);
  border-color: rgba(29, 158, 117, 0.3);
}
.cb-card--featured {
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(29, 158, 117, 0.12);
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--cb-green), var(--cb-navy)) border-box;
  border: 1.5px solid transparent;
}
.cb-card--featured .cb-card__thumb img,
.cb-card--featured .cb-card__thumb-placeholder {
  aspect-ratio: 16/10;
}

.cb-card__thumb {
  position: relative;
}
.cb-card__thumb img,
.cb-card__thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #e8f4f0 0%, #dde9f7 100%);
}
/* Image hover zoom */
.cb-card__thumb {
  overflow: hidden;
}
.cb-card__thumb img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-card:hover .cb-card__thumb img {
  transform: scale(1.05);
}

.cb-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cb-navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cb-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cb-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}
.cb-card__title {
  font-family: var(--cb-font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--cb-text);
  line-height: 1.45;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cb-card__title a {
  text-decoration: none;
  color: inherit;
}
.cb-card__title a:hover {
  color: var(--cb-green-dark);
}
.cb-card__excerpt {
  font-size: 13px;
  color: var(--cb-muted);
  line-height: 1.75;
  flex: 1;
}
.cb-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--cb-border);
}
.cb-card__date {
  font-size: 12px;
  color: #b0b8c4;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cb-card__read-more {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--cb-spring);
}
.cb-card:hover .cb-card__read-more {
  gap: 9px;
}

.cb-insights-cta {
  text-align: center;
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cb-cta-banner {
  padding: 60px 0;
}
.cb-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 52px;
  background: linear-gradient(
    135deg,
    var(--cb-navy-deep) 0%,
    var(--cb-navy) 50%,
    #0e5a8e 100%
  );
  border-radius: var(--cb-radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(7, 40, 74, 0.35);
}
.cb-cta-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 80% at 80% 50%,
      rgba(29, 158, 117, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(232, 160, 32, 0.12) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.cb-cta-banner__inner::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.cb-cta-banner__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cb-cta-banner__label::before {
  content: "";
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.35);
}
.cb-cta-banner__heading {
  font-family: var(--cb-font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cb-testi-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
  .cb-insights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cb-insights-grid .cb-card--featured {
    grid-column: span 2;
  }
  .cb-wall-column {
    width: 180px;
  }
  .cb-glass-logo-pod {
    height: 82px;
  }
  .cb-grid-wall-viewport {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .cb-section {
    padding: 60px 0;
  }
  .cb-hero-split__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cb-hero-split__left,
  .cb-hero-split__right {
    padding: 32px 26px;
  }
  .cb-insights-grid {
    grid-template-columns: 1fr;
  }
  .cb-insights-grid .cb-card--featured {
    grid-column: span 1;
  }
  .cb-testi-slide {
    flex: 0 0 100%;
  }
  .cb-cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
  .cb-cta-banner__label {
    justify-content: center;
  }
  .cb-section-title {
    margin-bottom: 36px;
  }
  .cb-wall-title {
    font-size: 30px;
  }
  .cb-grid-wall-viewport {
    height: 400px;
  }
  .cb-grid-wall-viewport .cb-wall-column:nth-child(4) {
    display: none;
  }
  .cb-wall-stats {
    gap: 24px;
  }
  .ins-partners-section-wrapper {
    padding: 50px 10px;
  }
  .ins-partners-carousel-box {
    padding: 0 40px;
  }
  .ins-partners-nav-btn {
    width: 38px;
    height: 38px;
  }
  .ins-partners-node-item {
    width: 100px;
  }
  .ins-partners-node-item img {
    max-height: 70px;
  }
  .ins-partners-main-container {
    padding: 0px;
  }
}

@media (max-width: 480px) {
  .cb-container {
    padding: 0 18px;
  }
  .cb-btn {
    padding: 12px 22px;
    font-size: 13px;
  }
  .cb-wall-title {
    font-size: 26px;
  }
  .cb-wall-column {
    width: 140px;
  }
  .cb-glass-logo-pod {
    height: 72px;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .cb-grid-wall-viewport .cb-wall-column:nth-child(3),
  .cb-grid-wall-viewport .cb-wall-column:nth-child(4) {
    display: none;
  }
  .cb-grid-wall-viewport {
    gap: 12px;
    height: 380px;
  }
  .cb-wall-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .cb-testi-track,
  .cb-card,
  .cb-hl-item,
  .cb-btn,
  .cb-glass-logo-pod {
    transition: none;
  }
  .cb-wall-column {
    animation: none;
  }
}

/* ════════════════════════════════════════
   COVERBIZZ — PREMIUM FOOTER FINAL
   Palette: Deep Navy + Gold + Teal accents
═══════════════════════════════════════ */

/* Base */
.cbz-footer {
  background: var(--cbz-bg);
  color: var(--cbz-text);

  font-size: 14px;
  line-height: 1.7;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cbz-cta-heading,
.cbz-h,
.cbz-company-name {
  font-family: "Urbanist", sans-serif;
}

/* Subtle dot-grid texture on entire footer */
.cbz-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.cbz-footer > * {
  position: relative;
  z-index: 1;
}

/* ── ① CTA STRIP ── */
.cbz-cta-strip {
  background: linear-gradient(100deg, #1a3a10 0%, #1f4d12 40%, #2a6318 100%);
  /* gold variant: */
  background: linear-gradient(100deg, #1a2f5e 0%, #0e2451 50%, #162d65 100%);
  border-top: 3px solid var(--cbz-gold);
  padding: 28px 24px;
}

.cbz-cta-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cbz-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cbz-gold);
  margin: 0 0 4px;
}

.cbz-cta-heading {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.cbz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #fff;
  color: var(--cb-dark3);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}

.cbz-cta-btn:hover {
  /* background: var(--cbz-gold-lt); */
  transform: translateY(-1px);
  color: var(--cb-dark3);
}

.cbz-cta-btn span {
  font-size: 16px;
}

/* ── ② MAIN BODY ── */
.cbz-footer__body {
  padding: 56px 0 48px;
  background: #0b1c3f;
}

.cbz-footer__wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Divider */
.cbz-div {
  height: 1px;
  background: var(--cbz-border);
  margin: 44px 0;
}

/* ROW 1 grid */
.cbz-row1 {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr;
  gap: 52px;
  align-items: start;
}

/* Logo */
.cbz-logo {
  max-width: 220px;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  display: block;
  mix-blend-mode: screen;
}

.cbz-tagline {
  color: var(--cbz-muted);
  font-size: 13px;
  line-height: 1.85;
  margin: 0 0 22px;
  max-width: 260px;
}

/* Socials */
.cbz-socials {
  display: flex;
  gap: 10px;
}

.cbz-s {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--cbz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cbz-muted);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.cbz-s:hover {
  border-color: var(--cbz-gold);
  color: var(--cbz-gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Section headings */
.cbz-h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cbz-gold);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cbz-border);
}

/* Status badge */
.cbz-status {
  font-size: 10px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  margin-left: auto;
}

.cbz-open {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cbz-closed {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Contact cards */
.cbz-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cbz-cc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--cbz-text);
  line-height: 1.6;
}

.cbz-cc-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--cbz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cbz-gold);
  margin-top: 1px;
}

.cbz-cc a {
  color: var(--cbz-text);
  text-decoration: none;
  transition: color 0.2s;
  align-self: center;
}

.cbz-cc a:hover {
  color: var(--cbz-gold-lt);
}

/* Hours */
.cbz-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cbz-hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--cbz-border2);
  font-size: 13px;
}

.cbz-hr:last-child {
  border-bottom: none;
}

.cbz-hd {
  color: var(--cbz-muted);
}

.cbz-ht {
  color: var(--cbz-text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.cbz-ht--closed {
  color: #f87171;
}

/* ROW 2: menus */
.cbz-menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.cbz-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cbz-links li a {
  display: inline-flex;
  align-items: center;
  color: var(--cbz-muted);
  text-decoration: none;
  font-size: 13.5px;
  padding: 4px 0;
  gap: 0;
  transition:
    color 0.2s,
    padding-left 0.2s;
  position: relative;
}

.cbz-links li a::before {
  content: "›";
  color: var(--cbz-gold);
  position: absolute;
  left: -14px;
  opacity: 0;
  transition:
    opacity 0.2s,
    left 0.2s;
  font-size: 17px;
  line-height: 1;
}

.cbz-links li a:hover {
  color: #fff;
  padding-left: 14px;
}

.cbz-links li a:hover::before {
  opacity: 1;
  left: 0;
}

/* ── ③ LEGAL STRIP ── */
.cbz-legal-strip {
  background: var(--cbz-bg3);
  border-top: 1px solid var(--cbz-border);
  padding: 40px 0;
}

.cbz-legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.cbz-legal-disclaimer {
  font-size: 11.5px;
  color: var(--cbz-muted);
  line-height: 1.85;
}

.cbz-legal-disclaimer p {
  margin: 0 0 8px;
}

.cbz-legal-company {
  display: flex;
  gap: 16px;
  font-size: 11.5px;
  color: var(--cbz-muted);
  line-height: 1.85;
}

.cbz-legal-company p {
  margin: 0 0 4px;
}

.cbz-company-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--cbz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cbz-gold);
  margin-top: 2px;
}

.cbz-company-name {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--cbz-text) !important;
  letter-spacing: 0.3px;
  margin-bottom: 6px !important;
}

/* ── ④ COPYRIGHT BAR ── */
.cbz-copyright-bar {
  background: var(--cbz-bg3);
  border-top: 1px solid var(--cbz-border2);
  padding: 18px 0;
}

.cbz-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cbz-copyright-bar p {
  font-size: 12px;
  color: var(--cbz-muted);
  margin: 0;
}

.cbz-trust {
  display: flex;
  gap: 14px;
}

.cbz-trust-badge {
  font-size: 11px;
  color: var(--cbz-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cbz-border2);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cbz-row1 {
    grid-template-columns: 1fr 1fr;
  }

  .cbz-brand {
    grid-column: span 2;
  }

  .cbz-menus {
    grid-template-columns: repeat(2, 1fr);
  }

  .cbz-legal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .cbz-footer__body {
    padding: 40px 0 32px;
  }

  .cbz-row1 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cbz-brand {
    grid-column: span 1;
  }

  .cbz-menus {
    grid-template-columns: 1fr 1fr;
  }

  .cbz-cta-heading {
    font-size: 16px;
  }

  .cbz-copyright-inner {
    justify-content: center;
    text-align: center;
  }

  .cbz-trust {
    justify-content: center;
  }

  .cbz-div {
    margin: 30px 0;
  }
}

@media (max-width: 400px) {
  .cbz-menus {
    grid-template-columns: 1fr;
  }
}
.menu-item.cbz-coming-soon > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-item.cbz-coming-soon > a::after {
  content: "Coming Soon";
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 20px;
  background: #c9a227;
  color: #0b1c3f;
  line-height: 1.4;
  white-space: nowrap;
}
li#menu-item-18537::after,
li#menu-item-18539::after,
li#menu-item-18540::after,
li#menu-item-18541::after,
li#menu-item-18543::after {
  content: "Coming Soon";
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 20px;
  background: #c9a227;
  color: #0b1c3f;
  line-height: 1.4;
  white-space: nowrap;
  margin-left: 8px;
}
.cb-contact-page h1,
.cb-contact-page h2,
.cb-contact-page h3 {
  margin: 0;
}

.cb-contact-page {
  font-family: var(--cb-font-display);
  color: var(--navy);
}

/* ===== Hero ===== */
.cb-hero {
  background: linear-gradient(135deg, #cdf3f4, #ffffff 70%);
  text-align: center;
  padding: 70px 20px 60px;
}

.cb-hero .eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.cb-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  font-weight: 900;
}

.cb-hero p {
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 700;
}

/* ===== Drop Us a Message ===== */
.cb-message-section {
  padding: 70px 20px;
  background: #fff;
}

.cb-message-card {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 42, 74, 0.1);
  flex-wrap: wrap;
}

.cb-message-left {
  flex: 1 1 360px;
  background: linear-gradient(160deg, #1cb2b3, #0d7477);
  color: #fff;
  padding: 48px 42px;
  position: relative;
}

.cb-message-left h2 {
  font-size: 28px;
  font-weight: 800;
}

.cb-message-left > p {
  font-size: 14px;
  line-height: 18px;
  opacity: 0.95;
  margin-bottom: 16px;
  margin-top: 10px;
}

.cb-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.cb-info-item .icon-circle {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11133e;
  font-size: 19px;
}

.cb-info-item strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.cb-info-item span,
.cb-info-item a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
}

.cb-dots {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.cb-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.cb-dots span:first-child {
  background: #fff;
}

.cb-message-right {
  flex: 1 1 400px;
  background: #fff;
  padding: 48px 44px;
}

.cb-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}

.cb-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cb-form-group.full {
  margin-bottom: 22px;
}

.cb-form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.cb-form-group label .req {
  color: var(--teal);
}

.cb-form-group input,
.cb-form-group textarea {
  padding: 13px 15px;
  border: 1px solid #dfe4e7;
  border-radius: 9px;
  font-size: 0.94rem;
  font-family: inherit;
  outline: none;
  width: 100%;
}

.cb-form-group input:focus,
.cb-form-group textarea:focus {
  border-color: var(--teal);
}

.cb-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.cb-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border: none;
  border-radius: 9px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cb-send-btn:hover {
  background: var(--teal-dark);
}

/* ===== Contact Form 7 styling (matches design) ===== */
.cb-message-right .wpcf7-form label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}

.cb-message-right .wpcf7-form label > br {
  display: none;
}

.cb-message-right .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.cb-message-right .wpcf7-form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #2b2f38;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  background: #fff;
  color: var(--navy);
  transition: border-color 0.2s;
}

.cb-message-right select.wpcf7-form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%230e2a4a' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.cb-message-right textarea.wpcf7-form-control {
  min-height: 130px;
  resize: vertical;
}

.cb-message-right .wpcf7-form-control:focus {
  border-color: var(--teal);
}

.cb-cf7-row {
  display: flex;
  gap: 20px;
}

.cb-cf7-row .cb-cf7-group {
  flex: 1;
}

.cb-cf7-group.full {
  margin-top: 0;
}

.cb-message-right .wpcf7-form br {
  display: none;
}

.cb-cf7-submit-wrap {
  margin-top: 8px;
}

.cb-message-right input[type="submit"] {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(90deg, #289db2ab 0%, #11133e9c 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}

.cb-message-right input[type="submit"]:hover {
  opacity: 0.9;
}

.cb-jewellers-box {
  display: none;
  margin-top: 6px;
  padding: 22px 22px 4px;
  background: #f6f9fb;
  border: 1px solid #e5eaed;
  border-radius: 12px;
}

.cb-jewellers-box.cb-visible {
  display: block;
  animation: cbFade 0.25s ease;
}

.cb-jewellers-box label {
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: 0.4px;
  color: var(--navy) !important;
}

.cb-message-right .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #e63946;
  margin-top: 6px;
}

.cb-message-right .wpcf7-response-output {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .cb-cf7-row {
    flex-direction: column;
    gap: 0;
  }
  .cb-message-left {
    padding: 16px;
  }
  .cb-hero {
    padding: 30px 15px;
  }
  .cb-message-section {
    padding: 30px 20px;
  }
  .cb-message-right {
    padding: 30px 15px;
  }
  .cb-jewellers-box {
    padding: 22px 15px 4px;
    margin-bottom: 20px;
  }
  .cb-message-right .wpcf7-form-control {
    font-size: 12px;
  }
  .cb-office-details {
    padding: 20px 15px !important;
  }
}

/* ===== Our Offices ===== */
.cb-offices-section {
  background: #f6f9fa;
  padding: 70px 20px 90px;
}

.cb-offices-heading {
  text-align: center;
  margin-bottom: 34px;
}

.cb-offices-heading .eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.5px;
}

.cb-offices-heading h2 {
  font-size: 32px;
  font-weight: 800;
}

.cb-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.cb-tab-btn {
  border: 1.5px solid #e2e8ea;
  background: #fff;
  color: var(--navy);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.cb-tab-btn.active {
  background: #11133e;
  color: #fff;
  border-color: var(--teal);
}

.cb-office-panel {
  display: none;
  max-width: 1160px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(14, 42, 74, 0.08);
}

.cb-office-panel.active {
  display: flex;
  flex-wrap: wrap;
  animation: cbFade 0.3s ease;
}

@keyframes cbFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cb-office-map {
  flex: 1 1 420px;
  min-height: 400px;
  position: relative;
}

.cb-office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.cb-open-maps-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: #fff;
  border-radius: 24px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cb-map-info-card {
  position: absolute;
  top: 64px;
  left: 16px;
  z-index: 5;
  max-width: 270px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  padding: 14px 16px;
}

.cb-map-info-card .mic-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cb-map-info-card .mic-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cb-map-info-card .mic-address {
  font-size: 12px;
  line-height: 1.45;
  color: #3c4043;
}

.cb-map-info-card .mic-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cb-map-info-card .mic-actions a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--navy);
}

.cb-map-info-card .mic-actions a.mic-directions {
  background: #e8f0fe;
  color: #1a73e8;
}

.cb-office-details {
  flex: 1 1 340px;
  padding: 40px 38px;
}

.cb-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  /* padding: 6px 16px; */
  border-radius: 20px;
  margin-bottom: 16px;
}

.cb-office-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.cb-office-details .state {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.cb-detail-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.cb-detail-line a {
  color: var(--navy);
  text-decoration: none;
}

.cb-detail-line .di-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.cb-find-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 13px 26px;
  border: none;
  border-radius: 9px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cb-find-map-btn:hover {
  background: var(--teal-dark);
}

@media (max-width: 768px) {
  .cb-form-row {
    flex-direction: column;
    gap: 0;
  }

  .cb-office-map {
    min-height: 280px;
  }

  .cb-office-map iframe {
    min-height: 280px;
  }
}
