:root {
  --cbw-blue: #5da2e3;
  --cbw-blue-dark: #174b76;
  --cbw-ink: #0f172a;
  --cbw-text: #334155;
  --cbw-muted: #64748b;
  --cbw-line: #d9e6f2;
  --cbw-bg: #f5faff;
  --cbw-bg-soft: #eef6fd;
  --cbw-white: #ffffff;
  --cbw-radius-sm: 14px;
  --cbw-radius-md: 20px;
  --cbw-radius-lg: 28px;
  --cbw-shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --cbw-shadow-md: 0 20px 55px rgba(15, 23, 42, 0.10);
  --cbw-shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.cbw-home,
.cbw-home * {
  box-sizing: border-box;
}

.cbw-home {
  color: var(--cbw-text);
  background: #fff;
  overflow: clip;
}

.cbw-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cbw-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.cbw-container--narrow {
  width: min(960px, calc(100% - 32px));
}

.cbw-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.cbw-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid rgba(93, 162, 227, 0.22);
  border-radius: 999px;
  background: rgba(93, 162, 227, 0.08);
  color: var(--cbw-blue-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cbw-pill--dark {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.cbw-section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.cbw-section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cbw-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cbw-section-head h2,
.cbw-hero h1,
.cbw-team-block__content h2,
.cbw-about__sticky h2,
.cbw-cta__content h2 {
  margin: 16px 0 14px;
  color: var(--cbw-ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cbw-hero h1 {
  font-size: clamp(2.5rem, 4.9vw, 4.8rem);
  max-width: 12ch;
}

.cbw-section-head h2,
.cbw-team-block__content h2,
.cbw-about__sticky h2,
.cbw-cta__content h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.cbw-section-head p,
.cbw-hero__lead,
.cbw-hero__sub,
.cbw-team-block__content p,
.cbw-about__sticky p,
.cbw-about__content p,
.cbw-cta__content p {
  margin: 0;
  line-height: 1.78;
  font-size: 1.03rem;
  color: var(--cbw-text);
}

.cbw-link-arrow,
.cbw-link-inline {
  color: var(--cbw-blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.cbw-link-arrow:hover,
.cbw-link-inline:hover {
  text-decoration: underline;
}

.cbw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.cbw-btn:hover {
  transform: translateY(-2px);
}

.cbw-btn--primary {
  background: var(--cbw-blue);
  color: #fff;
  box-shadow: 0 12px 32px rgba(93,162,227,.30);
}

.cbw-btn--primary:hover {
  background: #4f97da;
}

.cbw-btn--secondary {
  background: #fff;
  color: var(--cbw-ink);
  border: 1px solid var(--cbw-line);
}

.cbw-btn--light {
  background: #fff;
  color: var(--cbw-ink);
}

.cbw-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
}

.cbw-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6fd;
  color: var(--cbw-blue-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

/* HERO */
.cbw-hero {
  position: relative;
  padding: clamp(44px, 5vw, 84px) 0 42px;
  background:
    radial-gradient(circle at top right, rgba(93,162,227,0.18), transparent 30%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 72%);
}

.cbw-hero__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.cbw-hero__content {
  display: grid;
  gap: 18px;
}

.cbw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cbw-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.cbw-hero__chips li,
.cbw-team-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cbw-line);
  box-shadow: var(--cbw-shadow-sm);
  color: var(--cbw-blue-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.cbw-hero__proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cbw-proof-card,
.cbw-stat-card,
.cbw-feature-card,
.cbw-template-card,
.cbw-material-card,
.cbw-faq-item,
.cbw-about__cta {
  background: #fff;
  border: 1px solid var(--cbw-line);
  box-shadow: var(--cbw-shadow-sm);
}

.cbw-proof-card {
  padding: 18px;
  border-radius: var(--cbw-radius-md);
}

.cbw-proof-card strong,
.cbw-stat-card strong,
.cbw-floating-card strong,
.cbw-process-step strong,
.cbw-about__cta strong {
  display: block;
  color: var(--cbw-ink);
  margin-bottom: 8px;
}

.cbw-proof-card p,
.cbw-floating-card p,
.cbw-process-step p,
.cbw-stat-card span,
.cbw-feature-card p,
.cbw-template-card p,
.cbw-material-card p {
  margin: 0;
  color: var(--cbw-muted);
  line-height: 1.68;
}

.cbw-hero__media {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6fd 100%);
  border: 1px solid rgba(93, 162, 227, 0.18);
  box-shadow: var(--cbw-shadow-md);
}

.cbw-hero__media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.cbw-floating-card {
  position: absolute;
  max-width: 250px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--cbw-line);
  box-shadow: var(--cbw-shadow-sm);
}

.cbw-floating-card--top {
  top: 24px;
  left: -18px;
}

.cbw-floating-card--bottom {
  right: -18px;
  bottom: 28px;
}

.cbw-floating-card__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--cbw-blue-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cbw-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.cbw-stat-card {
  padding: 22px;
  border-radius: 22px;
}

/* TRUST STRIP */
.cbw-trust-strip {
  padding: 20px 0;
  background: var(--cbw-ink);
}

.cbw-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cbw-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.cbw-trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(93,162,227,0.18);
  color: #fff;
  font-weight: 800;
  flex: 0 0 28px;
}

.cbw-trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.98rem;
}

.cbw-trust-item p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
  font-size: 0.92rem;
}

/* SECTION BACKGROUNDS */
.cbw-industries,
.cbw-templates,
.cbw-faqs {
  background: #fff;
}

.cbw-why,
.cbw-about {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cbw-materials {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* CARD GRIDS */
.cbw-card-grid {
  display: grid;
  gap: 22px;
}

.cbw-card-grid--industries {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cbw-card-grid--why {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.cbw-card-grid--templates {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cbw-card-grid--materials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* INDUSTRY CARDS */
.cbw-industry-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--cbw-line);
  box-shadow: var(--cbw-shadow-sm);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cbw-industry-card:hover,
.cbw-feature-card:hover,
.cbw-template-card:hover,
.cbw-material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cbw-shadow-md);
}

.cbw-industry-card__image img {
  width: 100%;
  aspect-ratio: 4 / 2.75;
  object-fit: cover;
}

.cbw-industry-card__body {
  padding: 22px;
}

.cbw-industry-card__body h3,
.cbw-feature-card h3,
.cbw-template-card h3,
.cbw-material-card h3,
.cbw-about__content h3 {
  margin: 12px 0 10px;
  color: var(--cbw-ink);
  font-size: 1.22rem;
}

.cbw-industry-card__body p,
.cbw-about__content p {
  margin: 0;
  color: var(--cbw-text);
  line-height: 1.72;
}

.cbw-industry-card__body .cbw-link-inline {
  display: inline-block;
  margin-top: 16px;
}

/* WHY */
.cbw-feature-card {
  padding: 24px;
  border-radius: 22px;
}

.cbw-process-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cbw-process-step {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #fff;
}

.cbw-process-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-weight: 800;
}

.cbw-process-step strong {
  color: #fff;
}

.cbw-process-step p {
  color: rgba(255,255,255,0.76);
}

.cbw-team-block {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  margin-top: 34px;
}

.cbw-team-block__content {
  display: grid;
  gap: 18px;
}

.cbw-team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cbw-quote {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--cbw-blue);
  border-radius: 0 18px 18px 0;
  background: #f7fbff;
  color: var(--cbw-ink);
  line-height: 1.7;
}

.cbw-team-block__image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--cbw-shadow-md);
}

/* TEMPLATES */
.cbw-template-card {
  display: block;
  padding: 24px;
  border-radius: 22px;
  text-decoration: none;
}

.cbw-template-card h3,
.cbw-template-card p {
  text-decoration: none;
}

/* MATERIALS */
.cbw-material-card {
  padding: 24px;
  border-radius: 22px;
}

.cbw-material-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--cbw-muted);
}

.cbw-material-card li + li {
  margin-top: 8px;
}

/* CTA */
.cbw-cta {
  background: #fff;
}

.cbw-cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #17314d 100%);
  box-shadow: var(--cbw-shadow-lg);
}

.cbw-cta__content h2,
.cbw-cta__content p {
  color: #fff;
}

.cbw-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* FAQ */
.cbw-faq-list {
  display: grid;
  gap: 14px;
}

.cbw-faq-item {
  overflow: hidden;
  border-radius: 20px;
}

.cbw-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--cbw-ink);
}

.cbw-faq-item summary::-webkit-details-marker {
  display: none;
}

.cbw-faq-answer {
  padding: 0 24px 22px;
}

.cbw-faq-answer p {
  margin: 0;
  line-height: 1.78;
}

/* ABOUT */
.cbw-about__grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.cbw-about__sticky {
  position: sticky;
  top: 24px;
}

.cbw-about__content {
  display: grid;
  gap: 18px;
}

.cbw-about__cta {
  padding: 24px;
  border-radius: 24px;
}

.cbw-about__cta p {
  margin: 0 0 18px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .cbw-card-grid--templates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbw-card-grid--industries,
  .cbw-card-grid--why,
  .cbw-card-grid--materials,
  .cbw-trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbw-team-block,
  .cbw-about__grid,
  .cbw-hero__grid,
  .cbw-hero__stats,
  .cbw-process-band,
  .cbw-cta__box {
    grid-template-columns: 1fr;
  }

  .cbw-section-head--split {
    display: block;
  }

  .cbw-link-arrow {
    display: inline-block;
    margin-top: 14px;
  }

  .cbw-about__sticky {
    position: static;
  }

  .cbw-floating-card--top,
  .cbw-floating-card--bottom {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .cbw-section {
    padding: 56px 0;
  }

  .cbw-container,
  .cbw-container--narrow {
    width: min(100% - 24px, 1280px);
  }

  .cbw-card-grid--templates,
  .cbw-card-grid--industries,
  .cbw-card-grid--why,
  .cbw-card-grid--materials,
  .cbw-hero__proof,
  .cbw-trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .cbw-hero h1 {
    max-width: none;
  }

  .cbw-btn {
    width: 100%;
  }

  .cbw-hero__actions,
  .cbw-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cbw-hero__media {
    padding: 14px;
    border-radius: 24px;
  }

  .cbw-hero__media img,
  .cbw-team-block__image img {
    border-radius: 18px;
  }

  .cbw-faq-item summary,
  .cbw-faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }
}