:root {
  --cb-black: #101010;
  --cb-text: #1d1d1f;
  --cb-muted: #5c5c61;
  --cb-bg: #ffffff;
  --cb-soft: #f7f7f7;
  --cb-accent: #ffc703;
  --cb-accent-deep: #d39b00;
  --cb-max: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--cb-text);
  background: var(--cb-bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.cb-wrap {
  width: min(var(--cb-max), 92vw);
  margin: 0 auto;
}

.cb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 0.35rem;
  padding-bottom: 0.15rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(8px);
}

.cb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  gap: 1rem;
}

.cb-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
}

.cb-logo img {
  width: 140px;
  height: auto;
}

.cb-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.cb-menu > li {
  position: relative;
}

.cb-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 290px;
  padding: 0.6rem;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ece7d7;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(16, 16, 16, 0.09);
  z-index: 60;
}

.cb-menu li:hover > .sub-menu,
.cb-menu li:focus-within > .sub-menu {
  display: block;
}

.cb-menu .sub-menu a {
  display: block;
  padding: 0.48rem 0.55rem;
  border-radius: 8px;
  border-bottom: 0;
}

.cb-menu .sub-menu a:hover,
.cb-menu .sub-menu a:focus-visible {
  background: #fff9de;
}

.cb-menu .cb-menu-label > a {
  pointer-events: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6e6651;
  font-weight: 700;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 0;
}

.cb-menu a {
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.cb-menu a:hover,
.cb-menu a:focus-visible {
  border-color: var(--cb-accent);
}

.cb-menu .cb-menu-quote > a {
  border-bottom: 0;
  background: #101010;
  color: #fff;
  border: 1px solid #101010;
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
}

.cb-menu .cb-menu-quote > a:hover,
.cb-menu .cb-menu-quote > a:focus-visible {
  background: #000;
  border-color: #000;
}

.cb-hero {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
}

.cb-hero::before,
.cb-hero::after {
  content: none;
}

.cb-header--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home .cb-header--transparent .cb-header-inner,
.front-page .cb-header--transparent .cb-header-inner {
  min-height: 108px;
  padding-top: calc(0.7rem + 30px);
  padding-bottom: 0.5rem;
}

.home .cb-header--transparent .cb-menu,
.front-page .cb-header--transparent .cb-menu {
  gap: 1.9rem;
}

.home .cb-header--transparent .cb-menu a,
.front-page .cb-header--transparent .cb-menu a {
  padding: 0.5rem 0;
}

.home .cb-hero,
.front-page .cb-hero {
  padding-top: calc(6.6rem + 108px);
  padding-bottom: 8.8rem;
  background: #ffc703;
}

.home .cb-home-hero,
.front-page .cb-home-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding-top: calc(6.6rem + 108px);
  padding-bottom: 12rem;
  background: #ffc703;
}

.home .cb-home-hero .cb-wrap,
.front-page .cb-home-hero .cb-wrap {
  width: min(var(--cb-max), 92vw);
  margin: 0 auto;
}

.home .cb-home-hero .cb-hero-inner,
.front-page .cb-home-hero .cb-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.home .cb-home-hero h1,
.front-page .cb-home-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
}

.home .cb-home-hero p,
.front-page .cb-home-hero p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #1a1a1a;
  font-weight: 500;
}

.home .cb-home-hero .cb-page-actions,
.front-page .cb-home-hero .cb-page-actions {
  justify-content: center;
  margin-bottom: 1.4rem;
}

.home .cb-home-trust,
.front-page .cb-home-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.22);
  background: rgba(255, 255, 255, 0.45);
  color: #101010;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 auto 3.2rem;
}

.cb-commercial-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.22);
  background: rgba(255, 255, 255, 0.45);
  color: #101010;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0.9rem 0 0;
}

.home .cb-home-hero::after,
.front-page .cb-home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(72px, 11vw, 140px);
  background: #ffffff;
  clip-path: polygon(0 58%, 100% 14%, 100% 100%, 0 100%);
}

.home .cb-hero-inner,
.front-page .cb-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.home .cb-actions,
.front-page .cb-actions {
  margin-bottom: 2.4rem;
}

.home .cb-hero::after,
.front-page .cb-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(72px, 11vw, 140px);
  background: #ffffff;
  clip-path: polygon(0 58%, 100% 14%, 100% 100%, 0 100%);
}

.cb-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--cb-black);
}

.cb-hero p {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cb-muted);
}

.cb-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.cb-btn {
  display: inline-block;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--cb-black);
  background: var(--cb-black);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cb-btn:hover,
.cb-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--cb-accent-deep);
  border-color: var(--cb-accent-deep);
}

.cb-why {
  padding: 4.6rem 0;
}

.cb-why h2,
.cb-services h2,
.cb-contact h2 {
  margin: 0 0 2.2rem;
  text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--cb-black);
}

.cb-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cb-card {
  background: var(--cb-soft);
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 1.1rem;
}

.cb-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.cb-card h3,
.cb-service h3 {
  margin: 1rem 1rem 0.6rem;
  font-size: 1.25rem;
  color: var(--cb-black);
}

.cb-card p,
.cb-service p {
  margin: 0 1rem;
  color: var(--cb-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.cb-services {
  padding: 5rem 0;
  background: #fffdf3;
}

.cb-services-intro p {
  margin: -1.2rem auto 2.4rem;
  text-align: center;
  color: var(--cb-muted);
  font-size: 1.05rem;
}

.cb-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cb-service {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 1.25rem;
}

.cb-service img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cb-service .cb-btn {
  margin: 1rem;
}

.cb-contact {
  padding: 5rem 0;
}

.cb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.cb-contact-grid > div p {
  margin-top: -0.8rem;
  color: var(--cb-muted);
  line-height: 1.7;
}

.cb-form {
  padding: 1.1rem;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
}

.cb-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.cb-form input,
.cb-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.cb-form small {
  display: block;
  margin-top: 0.7rem;
  color: var(--cb-muted);
}

.cb-footer {
  background: var(--cb-black);
  color: #f4f4f4;
  padding: 4rem 0 2rem;
}

.cb-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.cb-footer h4 {
  margin: 0 0 0.8rem;
  color: var(--cb-accent);
}

.cb-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-footer li,
.cb-footer p {
  margin: 0 0 0.5rem;
  color: #d9d9d9;
  line-height: 1.5;
}

.cb-footer a {
  color: #f3f3f3;
}

.cb-footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #2b2b2b;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cb-footer-bottom img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.cb-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.9rem;
}

.cb-content {
  padding: 3rem 0;
}

.cb-page-content {
  width: 100%;
}

.cb-page-hero {
  background: #ffc703;
  border: 1px solid #f0be00;
  border-radius: 24px;
  padding: clamp(2.2rem, 4vw, 3.5rem);
}

.cb-page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--cb-black);
}

.cb-page-hero p {
  margin: 1rem 0 0;
  max-width: 760px;
  color: var(--cb-muted);
  line-height: 1.75;
}

.cb-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.cb-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(16, 16, 16, 0.12);
}

.cb-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.cb-page-section {
  margin-top: 5rem;
}

.cb-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.cb-home-usp {
  margin-top: 5rem;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #ece7d7;
  background: #fffdf5;
}

.cb-home-usp h2 {
  margin-bottom: 0.55rem;
}

.cb-home-usp .cb-usp-intro {
  margin: 0 0 1.3rem;
  color: var(--cb-muted);
  max-width: 860px;
}

.cb-home-usp .cb-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cb-why-card {
  background: #fff;
  border: 1px solid #e7e0ca;
  border-radius: 16px;
  padding: 1.15rem;
}

.cb-flat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff2b8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72% 72%;
  margin-bottom: 0.8rem;
}

.cb-flat-icon::before {
  content: none;
}

.cb-why-card h3 {
  margin: 0 0 0.45rem;
}

.cb-why-card p {
  margin: 0;
}

.cb-usp-icon-employed {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='22' cy='22' r='8' fill='%23101010'/%3E%3Ccircle cx='42' cy='22' r='8' fill='%23101010'/%3E%3Crect x='12' y='34' width='20' height='14' rx='5' fill='%23101010'/%3E%3Crect x='32' y='34' width='20' height='14' rx='5' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-usp-icon-dbs {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 8 12 16v14c0 14 8 22 20 26 12-4 20-12 20-26V16z' fill='%23101010'/%3E%3Cpath d='m24 33 6 6 11-13' fill='none' stroke='%23FFC703' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cb-usp-icon-account {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='14' y='10' width='36' height='44' rx='5' fill='%23101010'/%3E%3Crect x='22' y='18' width='20' height='4' fill='%23FFC703'/%3E%3Crect x='22' y='28' width='20' height='4' fill='%23FFC703'/%3E%3Crect x='22' y='38' width='14' height='4' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-usp-icon-eco {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 10c14 0 22 8 22 22s-8 22-22 22S10 46 10 32 18 10 32 10z' fill='%23101010'/%3E%3Cpath d='m41 24-7 7 4 4-11 5 5-11 4 4 7-7z' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-usp-icon-insured {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='14' y='14' width='36' height='36' rx='6' fill='%23101010'/%3E%3Cpath d='m23 33 6 6 12-13' fill='none' stroke='%23FFC703' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cb-usp-icon-compliance {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='12' y='10' width='40' height='44' rx='4' fill='%23101010'/%3E%3Crect x='20' y='20' width='24' height='4' fill='%23FFC703'/%3E%3Crect x='20' y='30' width='24' height='4' fill='%23FFC703'/%3E%3Crect x='20' y='40' width='16' height='4' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-home-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.cb-home-proof {
  margin-top: 5rem;
  padding: 2.8rem;
  border-radius: 20px;
  background: #101010;
  color: #fff;
}

.cb-home-portal {
  margin-top: 5rem;
  padding: clamp(2.2rem, 4vw, 3.4rem);
  border-radius: 22px;
  background: #FFC703;
  border: 1px solid #d7aa00;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.cb-home-portal-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.08;
}

.cb-home-portal-copy > p {
  margin: 0 0 1.1rem;
  color: #222;
  max-width: 760px;
  line-height: 1.72;
}

.cb-home-portal-points {
  margin: 1.3rem 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.cb-home-portal-points li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.96rem;
  line-height: 1.62;
  color: #1f1f1f;
}

.cb-home-portal-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #101010;
}

.cb-home-portal-points strong {
  color: #101010;
}

.cb-home-portal .cb-btn {
  background: #101010;
  border-color: #101010;
  color: #fff;
}

.cb-home-portal .cb-btn:hover,
.cb-home-portal .cb-btn:focus-visible {
  background: #000;
  border-color: #000;
}

.cb-home-portal-visual {
  display: grid;
  place-items: center;
}

.cb-phone-mockup {
  width: min(340px, 100%);
  min-height: 560px;
  border-radius: 26px;
  background: #0f0f0f;
  border: 5px solid #1b1b1b;
  box-shadow: 0 18px 34px rgba(16, 16, 16, 0.26);
  padding: 0.6rem;
  color: #fff;
  display: block;
}

.cb-phone-photo {
  min-height: 540px;
  height: 100%;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  background: #171717;
  display: block;
  overflow: hidden;
  padding: 0;
}

.cb-phone-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.cb-proof-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.cb-home-proof h2 {
  margin: 0;
  color: #fff;
}

.cb-proof-google {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 3, 0.5);
  background: rgba(255, 199, 3, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.cb-proof-stars {
  letter-spacing: 0.04em;
  color: #FFC703;
  font-size: 1rem;
}

.cb-proof-intro {
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 900px;
}

.cb-testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.cb-testimonial {
  background: #fff;
  color: #101010;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(16, 16, 16, 0.12);
}

.cb-testimonial-featured {
  border-color: #FFC703;
  box-shadow: inset 0 0 0 1px #FFC703;
}

.cb-quote {
  margin: 0;
  line-height: 1.7;
}

.cb-quote-meta {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  color: #575757;
  font-weight: 600;
}

.cb-logo-strip {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.cb-logo-chip {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.cb-logo-chip img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.02);
}

.cb-sector-strip {
  margin-top: 4rem;
}

.cb-sector-intro {
  margin: 0 0 1.2rem;
  color: var(--cb-muted);
  max-width: 880px;
  line-height: 1.75;
}

.cb-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.cb-sector-grid > p {
  margin: 0;
  display: contents;
}

.cb-sector-grid > p:empty,
.cb-sector-grid > br {
  display: none;
}

.cb-sector-card {
  display: block;
  border: 1px solid #e2b300;
  border-radius: 14px;
  background: #FFC703;
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cb-sector-card:empty {
  display: none;
}

.cb-sector-card:hover,
.cb-sector-card:focus-visible {
  transform: translateY(-2px);
  border-color: #c79a00;
  box-shadow: 0 8px 18px rgba(16, 16, 16, 0.12);
}

.cb-sector-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.45rem;
}

.cb-sector-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 92% 92%;
  color: transparent;
  font-size: 0;
  flex: 0 0 auto;
}

.cb-sector-card h3 {
  margin: 0;
  font-size: 1.03rem;
  color: var(--cb-black);
}

.cb-sector-card p,
.cb-sector-card .cb-sector-desc {
  margin: 0;
  color: #242424;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cb-sector-btn {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cb-sector-card:hover .cb-sector-btn,
.cb-sector-card:focus-visible .cb-sector-btn {
  background: #000;
}

.cb-sector-card[href*="/office-cleaning-services"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='10' y='6' width='44' height='52' rx='4' fill='%23101010'/%3E%3Crect x='18' y='14' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='30' y='14' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='42' y='14' width='4' height='8' fill='%23FFC703'/%3E%3Crect x='18' y='28' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='30' y='28' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='42' y='28' width='4' height='8' fill='%23FFC703'/%3E%3Crect x='28' y='44' width='8' height='14' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/school-cleaning-services"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon points='32,8 4,20 32,32 60,20' fill='%23101010'/%3E%3Crect x='20' y='35' width='24' height='14' rx='2' fill='%23101010'/%3E%3Crect x='46' y='22' width='3' height='20' fill='%23101010'/%3E%3Ccircle cx='47.5' cy='45' r='3.5' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/healthcare-dentist-cleaning-services"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='26' y='10' width='12' height='44' rx='2' fill='%23101010'/%3E%3Crect x='10' y='26' width='44' height='12' rx='2' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/church-charity-cleaning-services"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon points='10,28 32,10 54,28 54,54 10,54' fill='%23101010'/%3E%3Crect x='29' y='16' width='6' height='18' fill='%23FFC703'/%3E%3Crect x='24' y='21' width='16' height='6' fill='%23FFC703'/%3E%3Crect x='28' y='40' width='8' height='14' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/communal-cleaning-services"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='6' y='16' width='16' height='38' rx='2' fill='%23101010'/%3E%3Crect x='24' y='10' width='16' height='44' rx='2' fill='%23101010'/%3E%3Crect x='42' y='20' width='16' height='34' rx='2' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/retail-cleaning"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='12' y='20' width='40' height='34' rx='4' fill='%23101010'/%3E%3Cpath d='M20 24v-4a12 12 0 0 1 24 0v4h-5v-4a7 7 0 0 0-14 0v4z' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/hospitality-cleaning-services"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 34a22 14 0 0 1 44 0z' fill='%23101010'/%3E%3Crect x='30' y='34' width='4' height='14' fill='%23101010'/%3E%3Crect x='20' y='48' width='24' height='6' rx='3' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-sector-card[href*="/builders-cleans"] .cb-sector-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M8 18h22v10H8z' fill='%23101010'/%3E%3Cpath d='M30 20l12-8 6 6-12 8z' fill='%23101010'/%3E%3Crect x='34' y='28' width='8' height='28' transform='rotate(-35 38 42)' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-page-section h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cb-black);
}

.cb-muted-text {
  color: var(--cb-muted);
  line-height: 1.75;
}

.cb-offer-grid,
.cb-step-grid,
.cb-value-grid {
  display: grid;
  gap: 1rem;
}

.cb-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cb-step-grid,
.cb-value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cb-offer-card,
.cb-step-card,
.cb-value-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1rem;
}

.cb-offer-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.cb-commercial-services-grid .cb-offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cb-offer-card--icon {
  display: grid;
  align-content: start;
}

.cb-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #fff2b8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 86% 86%;
  margin: 0 0 0.7rem;
}

.cb-service-icon--office {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='10' y='6' width='44' height='52' rx='4' fill='%23101010'/%3E%3Crect x='18' y='14' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='30' y='14' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='42' y='14' width='4' height='8' fill='%23FFC703'/%3E%3Crect x='18' y='28' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='30' y='28' width='8' height='8' fill='%23FFC703'/%3E%3Crect x='42' y='28' width='4' height='8' fill='%23FFC703'/%3E%3Crect x='28' y='44' width='8' height='14' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-service-icon--school {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon points='32,8 4,20 32,32 60,20' fill='%23101010'/%3E%3Crect x='20' y='35' width='24' height='14' rx='2' fill='%23101010'/%3E%3Crect x='46' y='22' width='3' height='20' fill='%23101010'/%3E%3Ccircle cx='47.5' cy='45' r='3.5' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-service-icon--healthcare {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='26' y='10' width='12' height='44' rx='2' fill='%23101010'/%3E%3Crect x='10' y='26' width='44' height='12' rx='2' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-service-icon--church {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon points='10,28 32,10 54,28 54,54 10,54' fill='%23101010'/%3E%3Crect x='29' y='16' width='6' height='18' fill='%23FFC703'/%3E%3Crect x='24' y='21' width='16' height='6' fill='%23FFC703'/%3E%3Crect x='28' y='40' width='8' height='14' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-service-icon--communal {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='6' y='16' width='16' height='38' rx='2' fill='%23101010'/%3E%3Crect x='24' y='10' width='16' height='44' rx='2' fill='%23101010'/%3E%3Crect x='42' y='20' width='16' height='34' rx='2' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-service-icon--retail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='12' y='20' width='40' height='34' rx='4' fill='%23101010'/%3E%3Cpath d='M20 24v-4a12 12 0 0 1 24 0v4h-5v-4a7 7 0 0 0-14 0v4z' fill='%23FFC703'/%3E%3C/svg%3E");
}

.cb-service-icon--hospitality {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M10 34a22 14 0 0 1 44 0z' fill='%23101010'/%3E%3Crect x='30' y='34' width='4' height='14' fill='%23101010'/%3E%3Crect x='20' y='48' width='24' height='6' rx='3' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-service-icon--builders {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M8 18h22v10H8z' fill='%23101010'/%3E%3Cpath d='M30 20l12-8 6 6-12 8z' fill='%23101010'/%3E%3Crect x='34' y='28' width='8' height='28' transform='rotate(-35 38 42)' fill='%23101010'/%3E%3C/svg%3E");
}

.cb-offer-card h3,
.cb-step-card h3,
.cb-value-card h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--cb-black);
}

.cb-offer-card p,
.cb-step-card p,
.cb-value-card p {
  margin: 0.6rem 0 0;
  color: var(--cb-muted);
  line-height: 1.65;
}

.cb-expect-section {
  background: linear-gradient(180deg, #fffef8 0%, #fff9de 100%);
  border: 1px solid #f0e2a5;
  border-radius: 22px;
  padding: clamp(1.3rem, 2.4vw, 2rem);
}

.cb-expect-section h2 {
  margin-bottom: 0.7rem;
}

.cb-expect-intro {
  margin: 0 0 1.4rem;
  color: #5f5742;
  max-width: 820px;
  line-height: 1.7;
}

.cb-expect-section .cb-step-grid {
  counter-reset: cb-expect-step;
  gap: 1rem;
}

.cb-expect-section .cb-step-card {
  position: relative;
  padding: 1.05rem 1rem 1rem 3.5rem;
  border: 1px solid #eadca0;
  background: #fffdf2;
  border-radius: 14px;
}

.cb-expect-section .cb-step-card::before {
  counter-increment: cb-expect-step;
  content: counter(cb-expect-step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #101010;
  color: #ffc703;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cb-about-trust {
  background: #fff;
  border: 1px solid #ece7d7;
  border-radius: 20px;
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.cb-about-trust-content h2 {
  margin: 0 0 0.7rem;
}

.cb-about-trust-content p {
  margin: 0.8rem 0 0;
  line-height: 1.78;
  color: var(--cb-muted);
  max-width: 760px;
}

.cb-about-trust-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.cb-about-photo-placeholder {
  min-height: 150px;
  border: 1px dashed #cabf98;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffef9 0%, #fff9de 100%);
  display: grid;
  place-items: center;
  color: #6a6047;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.9rem;
}

.cb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.cb-content-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.cb-content-media-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #ececec;
}

.cb-cta-band {
  margin-top: 5rem;
  margin-bottom: 4.5rem;
  border-radius: 18px;
  background: #101010;
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cb-cta-layout {
  display: grid;
  grid-template-columns: 1.25fr auto;
  gap: 1.4rem;
  align-items: center;
}

.cb-cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
}

.cb-cta-band p {
  margin: 1rem auto 0;
  max-width: 980px;
  line-height: 1.8;
  color: #ececec;
}

.cb-cta-band .cb-btn {
  margin-top: 1.35rem;
  background: #ffc703;
  border-color: #ffc703;
  color: #101010;
}

.cb-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.cb-cta-band .cb-page-actions {
  justify-content: center;
}

.cb-cta-phone {
  color: #ffc703;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cb-cta-call {
  margin-top: 0.7rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.cb-cta-call a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cb-trust-strip {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.cb-trust-item {
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem 1rem;
}

.cb-trust-item strong {
  display: block;
  color: var(--cb-black);
  font-size: 1.05rem;
}

.cb-trust-item span {
  display: block;
  margin-top: 0.3rem;
  color: var(--cb-muted);
  font-size: 0.92rem;
}

.cb-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.cb-checklist li {
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem 0.9rem;
  color: var(--cb-text);
}

.cb-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cb-faq-item {
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.cb-faq-item h3 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--cb-black);
}

.cb-faq-item p {
  margin: 0.55rem 0 0;
  color: var(--cb-muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .cb-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-home-usp .cb-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-home-portal {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cb-home-portal-visual {
    justify-items: start;
  }

  .cb-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-testimonial-featured {
    grid-column: 1 / -1;
  }

  .cb-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cb-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .cb-sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-sector-card {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .cb-header {
    padding-top: 0.25rem;
    padding-bottom: 0.1rem;
  }

  .cb-header-inner {
    min-height: 86px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .cb-logo {
    padding: 0.35rem 0.45rem;
  }

  .cb-logo img {
    width: 112px;
  }

  .home .cb-hero,
  .front-page .cb-hero {
    padding-top: calc(4.7rem + 108px);
    padding-bottom: 7.2rem;
  }

  .home .cb-home-hero,
  .front-page .cb-home-hero {
    padding-top: calc(4.7rem + 108px);
    padding-bottom: 9.4rem;
  }

  .home .cb-home-hero .cb-page-actions,
  .front-page .cb-home-hero .cb-page-actions {
    margin-bottom: 1rem;
  }

  .home .cb-home-trust,
  .front-page .cb-home-trust {
    margin-bottom: 2.2rem;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .home .cb-header--transparent .cb-header-inner,
  .front-page .cb-header--transparent .cb-header-inner {
    min-height: 118px;
    padding-top: 0.3rem;
    padding-bottom: 0.25rem;
  }

  .home .cb-header--transparent .cb-menu,
  .front-page .cb-header--transparent .cb-menu {
    gap: 0.8rem;
  }

  .cb-menu {
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .cb-card-grid,
  .cb-service-grid,
  .cb-contact-grid,
  .cb-offer-grid,
  .cb-why-grid,
  .cb-home-services,
  .cb-sector-grid,
  .cb-step-grid,
  .cb-value-grid,
  .cb-faq-grid,
  .cb-hero-grid,
  .cb-content-media,
  .cb-cta-layout,
  .cb-split,
  .cb-trust-strip,
  .cb-footer-grid {
    grid-template-columns: 1fr;
  }

  .cb-home-usp {
    padding: 1.3rem;
  }

  .cb-home-proof {
    padding: 1.8rem;
  }

  .cb-home-portal {
    padding: 1.5rem;
  }

  .cb-about-trust {
    grid-template-columns: 1fr;
  }

  .cb-about-photo-placeholder {
    min-height: 130px;
  }

  .cb-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cb-logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cb-page-section,
  .cb-cta-band {
    margin-top: 3.8rem;
  }

  .cb-cta-actions {
    align-items: flex-start;
  }

  .cb-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cb-footer-links {
    justify-content: flex-start;
  }
}
