:root {
  --cb-primary: #1f2933;
  --cb-accent: #f59e0b;
  --cb-bg: #ffffff;
  --cb-muted-bg: #f8f9fa;
  --cb-text: #111827;
  --cb-muted: #6b7280;
  --cb-border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--cb-text);
  background: var(--cb-bg);
  line-height: 1.6;
}

a {
  color: var(--cb-primary);
  text-decoration: none;
  font-weight: 600;
}

a:hover,
a:focus {
  color: #111827;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

h1, h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.cb-navbar {
  background: var(--cb-primary);
}

.cb-navbar .navbar-brand,
.cb-navbar .nav-link {
  color: #fff;
}

.cb-navbar .nav-link:hover,
.cb-navbar .nav-link:focus {
  color: var(--cb-accent);
}

.cb-hero {
  background: linear-gradient(120deg, #1f2933 0%, #273445 50%, #1f2933 100%);
  color: #fff;
  padding: 4rem 0;
}

.cb-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.cb-hero-card p {
  color: rgba(255, 255, 255, 0.85);
}

.cb-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cb-hero .cb-badge {
  background: rgba(245, 158, 11, 0.9);
  color: #1f2933;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cb-section {
  padding: 3.5rem 0;
}

.cb-section.bg-muted {
  background: var(--cb-muted-bg);
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--cb-muted);
  max-width: 720px;
}

.cb-subtitle-strong {
  color: var(--cb-primary);
  font-weight: 600;
  font-size: 1.15rem;
}

.cb-card {
  border: 1px solid var(--cb-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.08);
}

.cb-card img {
  height: 320px;
  object-fit: cover;
}

.cb-badge {
  background: rgba(245, 158, 11, 0.16);
  color: #7a4a00;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.cb-price {
  color: var(--cb-primary);
}

.cb-button-primary {
  background: var(--cb-accent);
  border-color: var(--cb-accent);
  color: #1f2933;
  font-weight: 600;
}

.cb-button-primary:hover,
.cb-button-primary:focus {
  background: #fbbf24;
  border-color: #fbbf24;
  color: #111827;
}

.cb-button-outline {
  border-color: #fff;
  color: #fff;
}

.cb-button-outline:hover,
.cb-button-outline:focus {
  background: #fff;
  color: var(--cb-primary);
}

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

.cb-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cb-border);
}

.cb-list li:last-child {
  border-bottom: none;
}

.cb-muted {
  color: var(--cb-muted);
}

.cb-breadcrumb {
  font-size: 0.9rem;
  color: var(--cb-muted);
}

.cb-breadcrumb a {
  color: var(--cb-primary);
  text-decoration: none;
}

.cb-breadcrumb a:hover {
  text-decoration: underline;
}

.cb-breadcrumb {
  background: var(--cb-muted-bg);
  border-bottom: 1px solid var(--cb-border);
  padding: 0.65rem 0;
  margin: 0;
}

.cb-breadcrumb.cb-breadcrumb-compact {
  padding: 0.35rem 0;
  font-size: 0.82rem;
}

.cb-section.cb-section-tight {
  padding-top: 2.5rem;
}

.cb-list-bullets {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.cb-list-bullets li {
  padding: 0.35rem 0;
}

.cb-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.cb-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--cb-muted);
}

.cb-breadcrumb .breadcrumb-item.active {
  color: var(--cb-text);
  font-weight: 600;
}

.cb-footer {
  background: var(--cb-primary);
  color: #fff;
  padding: 2.5rem 0;
}

.cb-footer a {
  color: #fff;
  text-decoration: none;
}

.cb-footer a:hover {
  color: var(--cb-accent);
}

.cb-footer .dropdown-menu {
  border-radius: 16px;
  padding: 0.5rem 0;
  border: 1px solid var(--cb-border);
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.2);
}

.cb-footer .dropdown-item {
  color: var(--cb-text);
  padding: 0.55rem 1.25rem;
}

.cb-footer .dropdown-item:hover,
.cb-footer .dropdown-item:focus {
  background: var(--cb-muted-bg);
  color: var(--cb-text);
}

.cb-footer-dropdown .dropdown-toggle {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.cb-footer-dropdown .dropdown-toggle:hover,
.cb-footer-dropdown .dropdown-toggle:focus {
  color: var(--cb-accent);
  text-decoration: none;
}

.cb-footer .footer-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.6rem;
}

.cb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding: 1.25rem 0;
  font-size: 0.95rem;
}

.cb-footer-bottom a {
  color: var(--cb-accent);
}

.cb-grid-note {
  color: var(--cb-muted);
  font-size: 0.9rem;
}

.cb-fact-grid {
  background: #fff;
  border: 1px solid var(--cb-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.06);
}

.cb-fact-grid h3 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cb-note {
  background: rgba(245, 158, 11, 0.12);
  border-left: 4px solid var(--cb-accent);
  padding: 0.85rem 1rem;
  border-radius: 10px;
}

.cb-cta-band {
  background: var(--cb-primary);
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
}

.cb-cta-band a {
  color: #fff;
}

.cb-product-hero {
  background: var(--cb-muted-bg);
  border-bottom: 1px solid var(--cb-border);
  padding: 2.5rem 0;
}

.cb-product-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--cb-border);
}

.cb-carousel-frame .carousel-inner {
  border-radius: 16px;
  border: 1px solid var(--cb-border);
  background: #fff;
  overflow: hidden;
}

.cb-carousel-frame img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.cb-carousel-frame .carousel-control-prev-icon,
.cb-carousel-frame .carousel-control-next-icon {
  filter: invert(1);
}

.cb-carousel-caption {
  margin: 0.75rem 0 0;
  color: var(--cb-muted);
  text-align: center;
}

.cb-usecase-hero {
  background: var(--cb-primary);
  border-radius: 16px;
  padding: 1.25rem;
  margin: 0;
  text-align: center;
}

.cb-usecase-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
}


.cb-order-note {
  color: var(--cb-muted);
  font-size: 0.9rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

@media (max-width: 991px) {
  .cb-hero-card {
    padding: 1.5rem;
  }
  .headspan{
    font-size: 14px;
  }
}
