:root {
  /* Silver + blue institutional theme */
  --cc-bg: #f5f8fb;
  --cc-surface: rgba(255, 255, 255, 0.74);
  --cc-surface-strong: rgba(255, 255, 255, 0.9);
  --cc-border: rgba(39, 78, 111, 0.12);

  --cc-text: #303841;
  --cc-text-2: rgba(11, 29, 49, 0.74);
  --cc-muted: rgba(11, 29, 49, 0.56);

  --cc-accent: #CED4DA;
  --cc-accent-2: #0F4C5C;
  --sc-navy: #303841;
  --sc-blue: #2f6f7d;
  --sc-blue-deep: #0F4C5C;
  --sc-ice: #f3f7f9;
  --sc-silver: #CED4DA;

  --cc-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --cc-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);

  --cc-radius: 18px;
  --cc-radius-sm: 14px;

  --cc-blur: 16px;

  --cc-container: 1200px;
  --cc-pad-x: 20px;
}

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 18% -8%, rgba(116, 161, 194, 0.18), transparent 52%),
    radial-gradient(1000px 700px at 100% 6%, rgba(216, 227, 238, 0.5), transparent 58%),
    var(--cc-bg);
  color: var(--cc-text);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.cc-lock {
  overflow: hidden;
}


.cc-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(248, 251, 254, 0.82);
  border-bottom: 1px solid var(--cc-border);
  box-shadow: 0 12px 34px rgba(11, 29, 49, 0.06);
}

.cc-header .cc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 15px;;
}

.cc-header .cc-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cc-header .cc-logo {
  width: 164px;
  height: auto;
  display: block;
}

.cc-header .cc-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(47, 120, 168, 0.14);
  box-shadow: 0 14px 40px rgba(11, 29, 49, 0.06);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}

.cc-header .cc-nav-link {
  text-decoration: none;
  color: var(--cc-text-2);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cc-header .cc-nav-link:hover {
  background: rgba(47, 120, 168, 0.1);
  color: var(--cc-text);
  transform: translateY(-1px);
}

.cc-header .cc-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cc-header .cc-ico {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(220, 232, 242, 0.72));
  border: 1px solid rgba(47, 120, 168, 0.16);
  box-shadow: 0 10px 28px rgba(11, 29, 49, 0.06);
  flex: 0 0 auto;
}

.cc-header .cc-ico i {
  font-size: 14px;
  opacity: 0.92;
}

.cc-header .cc-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 120, 168, 0.16);
  box-shadow: 0 16px 44px rgba(11, 29, 49, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-header .cc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(15, 23, 42, 0.14);
}

.cc-header .cc-btn-text {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.cc-header .cc-btn-consult {
  border-color: rgba(39, 78, 111, 0.16);
  background: linear-gradient(135deg, rgba(246, 249, 252, 0.96), rgba(255, 255, 255, 0.86));
}

.cc-header .cc-btn-inventory {
  border-color: rgba(39, 78, 111, 0.14);
}

.cc-header .cc-btn-quote {
  position: relative;
  padding-right: 12px;
}

.cc-header .cc-count {
  min-width: 20px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(145deg, #e8eef4, #cdd9e3);
  color: var(--sc-navy);
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(11, 29, 49, 0.12);
}

.cc-header .cc-toggle {
  height: 52px;
  width: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  display: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-header .cc-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(15, 23, 42, 0.14);
}

/* Full-screen mobile menu overlay */
.cc-header .cc-mobile {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(11, 29, 49, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 99999;
}

/* Full-screen panel that slides from LEFT */
.cc-header .cc-mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(360px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: #f8fbfd;
  border-right: 1px solid rgba(39, 78, 111, 0.12);
  box-shadow: 28px 0 80px rgba(11, 29, 49, 0.28);
  transform: translateX(-102%);
  transition: transform 320ms cubic-bezier(.2, .9, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* When open */
.cc-header .cc-mobile.cc-open {
  opacity: 1;
  pointer-events: auto;
}

.cc-header .cc-mobile.cc-open .cc-mobile-panel {
  transform: translateX(0);
}

/* Mobile layout */
.cc-header .cc-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(39, 78, 111, 0.1);
  background: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.cc-header .cc-mobile-logo {
  width: 148px;
  height: auto;
  display: block;
}

.cc-header .cc-mobile-close {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  border: 1px solid rgba(39, 78, 111, 0.12);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 29, 49, 0.08);
}

.cc-header .cc-mobile-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.cc-header .cc-mobile-label {
  color: #667d91;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cc-header .cc-mobile-links {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(39, 78, 111, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(11, 29, 49, 0.07);
}

.cc-header .cc-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  text-decoration: none;
  color: var(--cc-text);
  padding: 0 15px;
  border: 0;
  border-bottom: 1px solid rgba(39, 78, 111, 0.08);
  border-radius: 0;
  background: transparent;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-header .cc-mobile-link:after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  color: #7f93a5;
  font-size: 12px;
}

.cc-header .cc-mobile-link:hover {
  transform: none;
  background: rgba(216, 227, 238, 0.44);
}

.cc-header .cc-mobile-drop {
  display: grid;
  gap: 0;
}

.cc-header .cc-mobile-drop-list {
  display: grid;
  gap: 0;
  padding: 6px 0;
  border-bottom: 1px solid rgba(39, 78, 111, 0.08);
  background: rgba(239, 245, 250, 0.72);
}

.cc-header .cc-mobile-sublink {
  display: flex;
  align-items: center;
  min-height: 40px;
  text-decoration: none;
  color: var(--cc-text-2);
  padding: 0 15px 0 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 800;
  font-size: 13px;
  transition: background 160ms ease, transform 160ms ease;
}

.cc-header .cc-mobile-sublink:before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 999px;
  background: #9fb2c2;
}

.cc-header .cc-mobile-sublink:hover {
  background: rgba(255, 255, 255, 0.58);
  transform: none;
}

.cc-header .cc-mobile-actions {
  display: grid;
  gap: 8px;
  padding-top: 0;
}

.cc-header .cc-mobile-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(39, 78, 111, 0.12);
  box-shadow: 0 12px 30px rgba(11, 29, 49, 0.06);
  font-weight: 900;
}

.cc-header .cc-mobile-cta .cc-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: none;
}

.cc-header .cc-mobile-cta .cc-count {
  margin-left: 2px;
  margin-top: 0;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  box-shadow: none;
}

.cc-header .cc-mobile-cta:after {
  content: "\f105";
  margin-left: auto;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  color: #7f93a5;
  font-size: 12px;
}

.cc-header .cc-mobile-cta-primary {
  border-color: rgba(47, 120, 168, 0.18);
  background: linear-gradient(135deg, #ffffff, #eef5fa);
}

.cc-header .cc-mobile-foot {
  margin-top: auto;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(39, 78, 111, 0.1);
  background: rgba(255, 255, 255, 0.8);
  flex: 0 0 auto;
}

.cc-header .cc-mobile-foot-note {
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
  .cc-header .cc-nav {
    display: none;
  }

  .cc-header .cc-btn-consult {
    display: none;
  }
  .cc-header .cc-btn-inventory {
    display: none;
  }

  .cc-header .cc-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cc-header .cc-btn-text {
    display: none;
  }

  .cc-header .cc-btn {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .cc-header .cc-btn-quote .cc-count {
    position: absolute;
    top: -6px;
    right: -6px;
  }
}




.cc-hero {
  position: relative;
}

.cc-hero .cc-hero-badge {
  background: rgba(255, 255, 255, 0.75);
  color: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--cc-border);
  font-weight: 600;
}

.cc-hero .cc-hero-btn-primary {
  background: linear-gradient(135deg, var(--cc-accent), var(--cc-accent-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(63, 126, 168, 0.25);
}

.cc-hero .cc-hero-btn-outline {
  border-color: var(--cc-border);
}

.cc-hero .cc-hero-mini {
  border: 1px solid var(--cc-border);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.cc-hero .cc-hero-glass {
  background: var(--cc-glass);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  box-shadow: var(--cc-shadow);
  border-radius: 22px;
  border: 1px solid var(--cc-border);
}

.cc-hero .cc-hero-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-hero .cc-hero-product:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.cc-hero .cc-hero-product-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cc-hero .cc-hero-product-text span {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.65);
}

.cc-hero .cc-hero-pill {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}





.cc-footer {
  margin-top: 96px;
  padding: 0;
  background:
    radial-gradient(900px 500px at 18% 0%, rgba(47, 120, 168, 0.2), transparent 58%),
    linear-gradient(180deg, #0b1d31 0%, #071421 100%);
  color: #dbe6ef;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-footer .cc-footer-shell {
  width: min(1660px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 24px;
}

.cc-footer .cc-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  padding-bottom: 34px;
}

.cc-footer .cc-footer-brand-block {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 10px;
}

.cc-footer .cc-footer-logo {
  display: inline-flex;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  margin-bottom: 22px;
}

.cc-footer .cc-footer-logo img {
  width: 210px;
  height: auto;
  display: block;
}

.cc-footer .cc-footer-brand-block p,
.cc-footer .cc-footer-quote-panel p,
.cc-footer .cc-footer-legal-strip p {
  margin: 0;
  color: #aebdcc;
  max-width: 76ch;
  line-height: 1.75;
}

.cc-footer .cc-footer-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cc-footer .cc-footer-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: #eaf1f7;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 227, 238, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cc-footer .cc-footer-proof i {
  color: #9fc4df;
}

.cc-footer .cc-footer-quote-panel {
  padding: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(216, 227, 238, 0.98), rgba(255, 255, 255, 0.94));
  color: #0b1d31;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.cc-footer .cc-footer-quote-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #16496f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cc-footer .cc-footer-quote-panel h2 {
  margin: 0 0 12px;
  color: #071421;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.cc-footer .cc-footer-quote-panel p {
  color: #4f6375;
}

.cc-footer .cc-footer-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cc-footer .cc-footer-primary,
.cc-footer .cc-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.cc-footer .cc-footer-primary {
  background: #0b1d31;
  color: #fff;
}

.cc-footer .cc-footer-secondary {
  background: #fff;
  color: #0b1d31;
  border: 1px solid rgba(11, 29, 49, 0.12);
}

.cc-footer .cc-footer-main {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-footer .cc-footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.cc-footer .cc-footer-col h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cc-footer .cc-footer-col a,
.cc-footer .cc-footer-line {
  color: #aebdcc;
  text-decoration: none;
  font-size: 14px;
}

.cc-footer .cc-footer-col a {
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.cc-footer .cc-footer-col a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.cc-footer .cc-footer-contact {
  gap: 12px;
}

.cc-footer .cc-footer-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.cc-footer .cc-footer-line i {
  color: #9fc4df;
  margin-top: 3px;
}

.cc-footer .cc-footer-line a {
  color: #dbe6ef;
}

.cc-footer .cc-footer-legal-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  border-radius: 8px;
}

.cc-footer .cc-footer-legal-strip div {
  display: grid;
  gap: 6px;
}

.cc-footer .cc-footer-legal-strip strong {
  color: #ffffff;
  font-size: 15px;
}

.cc-footer .cc-footer-legal-strip span {
  color: #9fb0c0;
  font-size: 13px;
}

.cc-footer .cc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px 0;
}

.cc-footer .cc-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: #8295a7;
  font-size: 13px;
}

.cc-footer .cc-footer-meta a {
  color: #9fb0c0;
  text-decoration: none;
}

.cc-footer .cc-footer-meta a:hover {
  color: #ffffff;
}

.cc-footer .cc-footer-toplink {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1d31;
  background: #d8e3ee;
  text-decoration: none;
}

.cc-about {}

.cc-about .cc-about-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--cc-border);
  border-radius: 22px;
  box-shadow: var(--cc-shadow-soft);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 28px;
  height: 100%;
}

.cc-about .cc-about-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 10px;
}

.cc-about .cc-about-title {
  margin: 0 0 12px 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
}

.cc-about .cc-about-text {
  margin: 0;
  max-width: 62ch;
  color: var(--cc-text-2);
  font-size: 16px;
}

.cc-about .cc-about-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cc-about .cc-about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
  color: var(--cc-text);
}

.cc-about .cc-about-point i {
  margin-top: 2px;
  opacity: 0.9;
}

.cc-about .cc-about-point span {
  color: var(--cc-text-2);
  font-size: 13px;
  line-height: 1.5;
}

.cc-about .cc-about-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-about .cc-about-btn-primary {
  background: linear-gradient(135deg, var(--cc-accent), var(--cc-accent-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(63, 126, 168, 0.22);
}

.cc-about .cc-about-btn-outline {
  border-color: var(--cc-border);
}

.cc-about .cc-trust {
  height: 100%;
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cc-about .cc-trust:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
}

.cc-about .cc-trust-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(92, 139, 174, 0.28), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(92, 139, 174, 0.30);
  margin-bottom: 10px;
}

.cc-about .cc-trust-ico i {
  font-size: 14px;
  opacity: 0.9;
}

.cc-about .cc-trust-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-about .cc-trust-text {
  color: var(--cc-text-2);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.cc-about .cc-about-bottom {
  margin-top: 14px;
}

.cc-about .cc-about-bottom-card {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.cc-about .cc-about-bottom-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-about .cc-about-bottom-text {
  color: var(--cc-text-2);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 576px) {
  .cc-about .cc-about-card {
    padding: 22px;
  }

  .cc-about .cc-about-title {
    font-size: 28px;
  }
}

.cc-process {}

.cc-process .cc-process-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--cc-border);
  border-radius: 22px;
  box-shadow: var(--cc-shadow-soft);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 28px;
  height: 100%;
}

.cc-process .cc-process-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 10px;
}

.cc-process .cc-process-title {
  margin: 0 0 12px 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
}

.cc-process .cc-process-text {
  margin: 0;
  max-width: 62ch;
  color: var(--cc-text-2);
  font-size: 16px;
}

.cc-process .cc-process-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-process .cc-process-btn-primary {
  background: linear-gradient(135deg, var(--cc-accent), var(--cc-accent-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(63, 126, 168, 0.22);
}

.cc-process .cc-process-btn-outline {
  border-color: var(--cc-border);
}

.cc-process .cc-step {
  height: 100%;
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cc-process .cc-step:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
}

.cc-process .cc-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cc-process .cc-step-num {
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(15, 23, 42, 0.40);
  font-size: 12px;
}

.cc-process .cc-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(92, 139, 174, 0.28), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(92, 139, 174, 0.30);
}

.cc-process .cc-step-ico i {
  font-size: 14px;
  opacity: 0.9;
}

.cc-process .cc-step-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-process .cc-step-text {
  color: var(--cc-text-2);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.cc-process .cc-process-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.cc-process .cc-process-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.70);
  color: var(--cc-text);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.cc-process .cc-process-strip-item i {
  opacity: 0.9;
}

@media (max-width: 576px) {
  .cc-process .cc-process-card {
    padding: 22px;
  }

  .cc-process .cc-process-title {
    font-size: 28px;
  }
}


.cc-shop {}

.cc-shop .cc-shop-head {
 
  margin-bottom: 24px;
}

.cc-shop .cc-shop-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-shop .cc-shop-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 8px 0;
}

.cc-shop .cc-shop-sub {
  color: var(--cc-text-2);
  font-size: 16px;
  margin: 0;
}

.cc-shop .cc-shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px 0;
}

.cc-shop .cc-shop-filter {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.10em;
  cursor: pointer;
}

.cc-shop .cc-shop-filter.cc-active {
  background: linear-gradient(135deg, var(--cc-accent), var(--cc-accent-2));
  border-color: rgba(92, 139, 174, 0.40);
  color: #111;
}

.cc-shop .cc-product-tile {
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-shop .cc-product-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.cc-shop .cc-product-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(92, 139, 174, 0.35), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-shop .cc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-shop .cc-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cc-shop .cc-product-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-shop .cc-product-sub {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-shop .cc-product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
  margin-top: 6px;
}

.cc-shop .cc-product-btn {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cc-shop .cc-shop-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.cc-shop-page {}

.cc-shop-page .cc-shop-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.cc-shop-page .cc-shop-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-shop-page .cc-shop-title {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--cc-text);
  margin: 0 0 8px 0;
}

.cc-shop-page .cc-shop-sub {
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
}

.cc-shop-page .cc-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.cc-shop-page .cc-shop-filters-panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cc-shop-page .cc-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-shop-page .cc-filter-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-shop-page .cc-filter-group label {
  font-size: 14px;
  color: var(--cc-text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cc-shop-page .cc-filter-reset {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cc-shop-page .cc-product-tile {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-shop-page .cc-product-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.cc-shop-page .cc-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(92, 139, 174, 0.35), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-shop-page .cc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-shop-page .cc-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cc-shop-page .cc-product-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-shop-page .cc-product-sub {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-shop-page .cc-product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
  margin-top: 6px;
}

.cc-shop-page .cc-product-btn {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cc-shop-page .cc-product-detail-btn,
.cc-shop-page .cc-product-btn {
  flex: 1;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
}

@media (max-width: 768px) {
  .cc-shop-page .cc-shop-layout {
    grid-template-columns: 1fr;
  }
}




.cc-consult {
  /* Page section spacing and base */
}

.cc-consult .cc-consult-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.cc-consult .cc-consult-kicker {
  /* Small label above headline */
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-consult .cc-consult-title {
  /* Main page title */
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-consult .cc-consult-sub {
  /* Supporting intro text */
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
  max-width: 70ch;
}

.cc-consult .cc-consult-grid {
  /* Two-column layout: form + side panel */
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.cc-consult .cc-consult-card {
  /* Glass card wrapper for the form */
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-consult .cc-consult-form {
  /* Keeps spacing consistent */
}

.cc-consult .cc-consult-row {
  /* Two fields per row on desktop */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cc-consult .cc-consult-field {
  margin-bottom: 12px;
}

.cc-consult .cc-consult-label {
  /* Form label styling */
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-consult .cc-consult-checks {
  /* Checkbox list grid */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.cc-consult .cc-consult-check {
  /* Checkbox pill-like style */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  user-select: none;
}

.cc-consult .cc-consult-check input {
  margin-top: 0;
}

.cc-consult .cc-consult-check span {
  font-size: 13px;
  color: var(--cc-text-2);
  font-weight: 700;
}

.cc-consult .cc-consult-help {
  /* Small helper text under services */
  margin-top: 10px;
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-consult .cc-consult-actions {
  /* Primary button + secondary link */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cc-consult .cc-consult-btn {
  /* Primary brand button */
  background: linear-gradient(135deg, var(--cc-accent), var(--cc-accent-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(63, 126, 168, 0.22);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-consult .cc-consult-alt {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-consult .cc-consult-note {
  /* Small privacy note */
  margin-top: 12px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

.cc-consult .cc-consult-side {
  /* Sticky-like feel without actual sticky */
}

.cc-consult .cc-consult-side-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.cc-consult .cc-consult-side-title {
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.cc-consult .cc-consult-steps {
  display: grid;
  gap: 10px;
}

.cc-consult .cc-consult-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-consult .cc-consult-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(92, 139, 174, 0.28), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(92, 139, 174, 0.30);
}

.cc-consult .cc-consult-step-ico i {
  font-size: 14px;
  opacity: 0.9;
}

.cc-consult .cc-consult-step-text {
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.5;
  padding-top: 2px;
}

.cc-consult .cc-consult-side-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.10);
  margin: 16px 0;
}

.cc-consult .cc-consult-mini-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 10px;
}

.cc-consult .cc-consult-mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--cc-text-2);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .cc-consult .cc-consult-grid {
    grid-template-columns: 1fr;
  }

  .cc-consult .cc-consult-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .cc-consult .cc-consult-row {
    grid-template-columns: 1fr;
  }

  .cc-consult .cc-consult-checks {
    grid-template-columns: 1fr;
  }
}

.cc-product-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 120, 168, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 29, 49, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-product-box:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 120, 168, 0.28);
  box-shadow: 0 24px 64px rgba(11, 29, 49, 0.13);
}

/* square image */
.cc-product-box .cc-product-box-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(145deg, rgba(222, 232, 241, 0.92), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 50% 24%, rgba(47, 120, 168, 0.16), transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-product-box .cc-product-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* body */
.cc-product-box .cc-product-box-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cc-product-box .cc-product-box-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--sc-navy);
}

.cc-product-box .cc-product-box-title a {
  color: inherit;
  text-decoration: none;
}

.cc-product-box .cc-product-box-sub {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-product-box .cc-product-box-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--sc-blue-deep);
  margin-top: 6px;
}

.cc-product-box .cc-product-box-quote {
  font-size: 14px;
  font-weight: 800;
  color: var(--cc-text-2);
}

/* buttons */
.cc-product-box .cc-product-box-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cc-product-box .cc-product-box-detail,
.cc-product-box .cc-product-box-cart {
  border-radius: 8px;
}

.cc-product-box .cc-product-box-cart {
  border-color: var(--sc-blue-deep);
  background: linear-gradient(135deg, var(--sc-blue-deep), var(--sc-blue));
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 120, 168, 0.18);
}

.cc-product-box .cc-product-box-cart:hover {
  border-color: var(--sc-blue-deep);
  filter: brightness(1.04);
}


.cc-product-view {}

.cc-product-view .cc-product-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 14px;
}

.cc-product-view .cc-product-breadcrumb a {
  color: var(--cc-text-2);
  text-decoration: none;
}

.cc-product-view .cc-product-breadcrumb a:hover {
  text-decoration: underline;
}

.cc-product-view .cc-product-gallery {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.cc-product-view .cc-product-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(92, 139, 174, 0.25), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-product-view .cc-product-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-product-view .cc-product-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-product-view .cc-thumb {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  border-radius: 14px;
  padding: 0;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.cc-product-view .cc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-product-view .cc-product-panel {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 20px;
}

.cc-product-view .cc-product-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-product-view .cc-product-title {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-product-view .cc-product-sub {
  margin: 0 0 14px 0;
  font-size: 15px;
  color: var(--cc-text-2);
  max-width: 70ch;
}

.cc-product-view .cc-product-pricebox {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  border-radius: 18px;
  padding: 14px;
}

.cc-product-view .cc-product-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-product-view .cc-product-pricehint {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  margin-top: 6px;
}

.cc-product-view .cc-product-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cc-product-view .cc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.70);
}

.cc-product-view .cc-qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-product-view .cc-qty-input {
  width: 64px;
  height: 40px;
  border: 0;
  text-align: center;
  background: transparent;
  font-weight: 900;
  color: var(--cc-text);
  outline: none;
}

.cc-product-view .cc-addcart,
.cc-product-view .cc-consult {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-product-view .cc-product-specs {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cc-product-view .cc-spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-product-view .cc-spec span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
}

.cc-product-view .cc-spec strong {
  font-size: 13px;
  color: var(--cc-text);
  font-weight: 900;
}

.cc-product-view .cc-product-description {}

.cc-product-view .cc-product-desc-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-product-view .cc-product-desc-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-product-view .cc-product-desc-text {
  font-size: 14px;
  color: var(--cc-text-2);
  line-height: 1.7;
}

@media (max-width: 576px) {
  .cc-product-view .cc-product-title {
    font-size: 30px;
  }
}

.cc-posts {
  /* Global wrapper for Insights pages */
}

.cc-posts .cc-posts-head {
  max-width: 920px;
  margin-bottom: 22px;
}

.cc-posts .cc-posts-kicker {
  /* Small label above the title */
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-posts .cc-posts-title {
  /* Page title */
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-posts .cc-posts-sub {
  /* Subheading text */
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0 0 14px 0;
  max-width: 75ch;
}

.cc-posts .cc-posts-search {
  /* Search bar row */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cc-posts .cc-posts-search-input {
  /* Search input sizing */
  flex: 1;
  min-width: 220px;
  border-radius: 999px;
}

.cc-posts .cc-posts-search-btn {
  /* Search button style */
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-posts .cc-posts-grid {
  /* Article card grid */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cc-posts .cc-posts-grid--tight {
  /* Slightly tighter spacing for category blocks */
  gap: 14px;
}

.cc-posts .cc-posts-item {
  /* Slot wrapper for your existing grid partial */
}

.cc-posts .cc-posts-empty {
  /* Empty state full width */
  grid-column: 1 / -1;
}

/* ===== Detail page ===== */
.cc-posts .cc-posts-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 14px;
}

.cc-posts .cc-posts-breadcrumb a {
  color: var(--cc-text-2);
  text-decoration: none;
}

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

.cc-posts .cc-post-hero {
  /* Hero block with banner + title overlay */
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.65);
}

.cc-posts .cc-post-hero-banner {
  /* Banner image area */
  height: 320px;
  background-size: cover;
  background-position: center;
}

.cc-posts .cc-post-hero-banner--fallback {
  /* Fallback gradient if no banner */
  background: linear-gradient(135deg, rgba(92, 139, 174,0.28), rgba(255,255,255,0.85));
}

.cc-posts .cc-post-hero-body {
  /* Title overlay area */
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.92));
}

.cc-posts .cc-post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cc-posts .cc-post-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-posts .cc-post-cat {
  /* Category pill */
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15,23,42,0.10);
  text-decoration: none;
  color: var(--cc-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-posts .cc-post-date {
  font-size: 13px;
  color: var(--cc-text-2);
  white-space: nowrap;
}

.cc-posts .cc-post-title {
  /* Post title */
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0;
}

.cc-posts .cc-post-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cc-posts .cc-post-card {
  /* Main content card */
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-posts .cc-post-content {
  /* Typography base for post content */
  color: var(--cc-text-2);
  font-size: 15px;
  line-height: 1.8;
}

.cc-posts .cc-post-content h2,
.cc-posts .cc-post-content h3 {
  color: var(--cc-text);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 18px;
}

.cc-posts .cc-post-content a {
  color: var(--cc-text);
  font-weight: 800;
  text-decoration: underline;
}

.cc-posts .cc-post-divider {
  height: 1px;
  background: rgba(15,23,42,0.10);
  margin: 16px 0;
}

.cc-posts .cc-post-cta {
  /* Call-to-action block inside article */
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: linear-gradient(135deg, rgba(92, 139, 174,0.22), rgba(255,255,255,0.75));
}

.cc-posts .cc-post-cta-title {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-posts .cc-post-cta-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin-top: 4px;
}

.cc-posts .cc-post-cta-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* ===== Categories blocks ===== */
.cc-posts .cc-cats-grid {
  display: grid;
  gap: 18px;
}

.cc-posts .cc-cat-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  padding: 16px;
}

.cc-posts .cc-cat-top {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cc-posts .cc-cat-title {
  font-weight: 900;
  color: var(--cc-text);
  font-size: 18px;
}

.cc-posts .cc-cat-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin: 8px 0 14px 0;
}

.cc-posts .cc-cat-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .cc-posts .cc-posts-title {
    font-size: 32px;
  }
  .cc-posts .cc-post-title {
    font-size: 30px;
  }
  .cc-posts .cc-post-hero-banner {
    height: 240px;
  }
}


.cc-posts .cc-post-card-mini {
  /* Card shell */
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-posts .cc-post-card-mini:hover {
  /* Lift on hover */
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15,23,42,0.12);
}

.cc-posts .cc-post-card-mini-img {
  /* Image area */
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(92, 139, 174,0.22), rgba(255,255,255,0.85));
  text-decoration: none;
}

.cc-posts .cc-post-card-mini-img img {
  /* Cropped image fit */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-posts .cc-post-card-mini-fallback {
  /* Fallback when no image */
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 139, 174,0.18), rgba(15,23,42,0.06));
}

.cc-posts .cc-post-card-mini-body {
  /* Content padding */
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cc-posts .cc-post-card-mini-title {
  /* Title style */
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cc-text);
}

.cc-posts .cc-post-card-mini-title a {
  /* Title link */
  color: inherit;
  text-decoration: none;
}

.cc-posts .cc-post-card-mini-title a:hover {
  text-decoration: underline;
}

.cc-posts .cc-post-card-mini-text {
  /* Excerpt */
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.65;
  margin: 0;
}

.cc-posts .cc-post-card-mini-foot {
  /* Footer row */
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-posts .cc-post-card-mini-link {
  /* Minimal CTA */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.55);
  transition: transform 160ms ease, background 160ms ease;
}

.cc-posts .cc-post-card-mini-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.75);
}

.cc-posts .cc-posts-related {
  margin-top: 40px;
}

.cc-posts .cc-posts-related-head {
  margin-bottom: 18px;
  text-align: center;
}

.cc-posts .cc-posts-related-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0;
}

/* The related grid itself already uses this */
.cc-posts .cc-posts-related .cc-posts-grid {
  margin-top: 14px;
}

/* On small screens give more breathing room */
@media (max-width: 576px) {
  .cc-posts .cc-posts-related-title {
    font-size: 20px;
  }
}



.default-page-wrapper {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,1));
}

.default-page-wrapper .page-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.default-page-wrapper .page-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin-bottom: 8px;
}

.default-page-wrapper .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.default-page-wrapper .breadcrumb-item a {
  color: var(--cc-text-2);
  font-weight: 700;
}

.default-page-wrapper .breadcrumb-item.active {
  color: var(--cc-text);
  font-weight: 800;
}

/* Banner image block */
.default-page-wrapper .page-banner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.default-page-wrapper .page-banner img {
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.7);
}

/* Content container */
.default-page-wrapper .page-content {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}
.card{
    background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}


/* Full width template */
.default-page-wrapper .page-content-full {
  max-width: 100%;
  padding: 28px;
}

/* Typography inside content */
.default-page-wrapper .page-content h1,
.default-page-wrapper .page-content h2,
.default-page-wrapper .page-content h3 {
  color: var(--cc-text);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 18px;
}

.default-page-wrapper .page-content p {
  color: var(--cc-text-2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.default-page-wrapper .page-content a {
  color: var(--cc-text);
  font-weight: 800;
  text-decoration: underline;
}

.default-page-wrapper .page-content ul,
.default-page-wrapper .page-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.default-page-wrapper .page-content li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 576px) {
  .default-page-wrapper .page-title {
    font-size: 32px;
  }

  .default-page-wrapper .page-content {
    padding: 16px;
  }
}


/* ===============================
LOGIN & 2FA PAGES – CC HOLDINGS
Light / Glass / Minimal 2026
=============================== */

/* Page wrapper */
.login-page,
.two-factor-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(92, 139, 174,0.18), transparent),
    linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 40px 16px;
}

/* Container */
.login-container,
.two-factor-container {
  width: 100%;
  max-width: 420px;
}

/* Main card */
.login-page .right-container,
.two-factor-page .right-container {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}

/* Headings */
.login-page h1,
.two-factor-page h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin-bottom: 10px;
}

.two-factor-page p {
  font-size: 14px;
  color: var(--cc-text-2);
  margin-bottom: 18px;
}

/* Form labels */
.login-page .form-label,
.two-factor-page .form-label {
  font-weight: 800;
  font-size: 13px;
  color: var(--cc-text);
  letter-spacing: 0.02em;
}

/* Inputs */
.login-page .form-control,
.two-factor-page .form-control {
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.15);
  padding: 12px 14px;
  font-size: 14px;
  background: rgba(255,255,255,0.85);
}

.login-page .form-control:focus,
.two-factor-page .form-control:focus {
  box-shadow: 0 0 0 3px rgba(92, 139, 174,0.25);
  border-color: rgba(92, 139, 174,0.65);
}

/* Buttons */
.login-page .btn-primary,
.two-factor-page .btn-primary {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #8fb3d1, #3f7ea8);
  border: none;
  text-transform: uppercase;
}

.login-page .btn-primary:hover,
.two-factor-page .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(92, 139, 174,0.35);
}

/* Remember me */
.login-page .form-check-label {
  font-size: 13px;
  color: var(--cc-text-2);
}

/* Links */
.login-page a,
.two-factor-page a {
  font-weight: 800;
  color: var(--cc-text);
  text-decoration: none;
}

.login-page a:hover,
.two-factor-page a:hover {
  text-decoration: underline;
}

/* Alerts spacing */
.login-page .alert,
.two-factor-page .alert {
  margin-bottom: 14px;
  border-radius: 14px;
}

/* Two-factor logo (optional) */
.two-factor-page .logo {
  text-align: center;
  margin-bottom: 14px;
}

.two-factor-page .logo img {
  max-width: 140px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .login-page .right-container,
  .two-factor-page .right-container {
    padding: 22px;
  }

  .login-page h1,
  .two-factor-page h1 {
    font-size: 24px;
  }
}


.cc-quote-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(15,23,42,0.9);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 180ms ease;
  z-index: 9999;
}

.cc-quote-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cc-quote-toast.error {
  background: #991b1b;
}

.cc-product-box-quote.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.cc-product-box-quote.is-success {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-color: transparent;
}

.cc-product-box-quote.is-error {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: transparent;
}

.cc-product-box-quote {
  transition: background 180ms ease, transform 160ms ease, opacity 160ms ease;
}

.cc-product-box-quote.is-success,
.cc-product-box-quote.is-error {
  transform: scale(1.03);
}


.cc-quote {
  /* Quote page wrapper */
}

.cc-quote .cc-quote-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.cc-quote .cc-quote-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-quote .cc-quote-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-quote .cc-quote-sub {
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
  max-width: 72ch;
}

.cc-quote .cc-quote-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.cc-quote .cc-quote-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-quote .cc-quote-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cc-quote .cc-quote-card-title {
  font-weight: 900;
  color: var(--cc-text);
  letter-spacing: 0.02em;
}

.cc-quote .cc-quote-clear-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-quote .cc-quote-list {
  display: grid;
  gap: 12px;
}

.cc-quote .cc-quote-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-quote .cc-quote-item-img {
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(92, 139, 174,0.22), rgba(255,255,255,0.85));
}

.cc-quote .cc-quote-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-quote .cc-quote-item-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 139, 174,0.18), rgba(15,23,42,0.06));
}

.cc-quote .cc-quote-item-title {
  font-weight: 900;
  color: var(--cc-text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.cc-quote .cc-quote-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.cc-quote .cc-quote-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--cc-text);
}

.cc-quote .cc-quote-item-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cc-quote .cc-quote-qty {
  display: grid;
  gap: 2px;
}

.cc-quote .cc-quote-qty-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-quote .cc-quote-qty-val {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-ref {
  display: grid;
  gap: 2px;
  text-align: right;
}

.cc-quote .cc-quote-ref-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-quote .cc-quote-ref-val {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-remove-btn {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}

.cc-quote .cc-quote-summary {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.cc-quote .cc-quote-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cc-quote .cc-quote-summary-label {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-summary-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-summary-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

/* Empty state */
.cc-quote .cc-quote-empty {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  text-align: center;
}

.cc-quote .cc-quote-empty-ico {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(92, 139, 174,0.22), rgba(255,255,255,0.85));
  border: 1px solid rgba(92, 139, 174,0.30);
}

.cc-quote .cc-quote-empty-title {
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 4px;
}

.cc-quote .cc-quote-empty-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 12px;
}

.cc-quote .cc-quote-empty-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Right side */
.cc-quote .cc-quote-side-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.cc-quote .cc-quote-side-title {
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.cc-quote .cc-quote-side-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 12px;
}

.cc-quote .cc-quote-field {
  margin-bottom: 12px;
}

.cc-quote .cc-quote-label {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-quote .cc-quote-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--cc-accent), var(--cc-accent-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(63, 126, 168, 0.22);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.cc-quote .cc-quote-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

.cc-quote .cc-quote-side-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.10);
  margin: 16px 0;
}

.cc-quote .cc-quote-consult {
  width: 100%;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 992px) {
  .cc-quote .cc-quote-grid {
    grid-template-columns: 1fr;
  }

  .cc-quote .cc-quote-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .cc-quote .cc-quote-item {
    grid-template-columns: 80px 1fr;
  }

  .cc-quote .cc-quote-item-img {
    width: 80px;
  }

  .cc-quote .cc-quote-ref {
    text-align: left;
  }
}


.cc-quote .cc-quote-qtyform {
  margin: 0;
}

.cc-quote .cc-quote-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-quote .cc-quote-qty-input {
  width: 84px;
  border-radius: 14px;
  text-align: center;
  font-weight: 900;
}

.cc-quote .cc-quote-qty-btn {
  border-radius: 12px;
  font-weight: 900;
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cc-quote .cc-quote-qty-save {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 8px 12px;
}




/* ===========================
   404 Page - AUTrading style
   =========================== */

.cc-404 {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(92, 139, 174,0.18), transparent 60%),
    linear-gradient(180deg, #f8f9fb, #ffffff);
}

.cc-404 .cc-404-card {
  max-width: 520px;
  padding: 42px 32px;
  background: rgba(255,255,255,0.75);
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
  backdrop-filter: blur(8px);
}

.cc-404 .cc-404-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(92, 139, 174,0.35), rgba(255,255,255,0.9));
  border: 1px solid rgba(92, 139, 174,0.35);
}

.cc-404 .cc-404-icon i {
  font-size: 28px;
  color: #8a6a2f;
}

.cc-404 .cc-404-code {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 4px 0;
  color: #0f172a;
}

.cc-404 .cc-404-title {
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 10px 0;
  color: #0f172a;
}

.cc-404 .cc-404-text {
  font-size: 15px;
  color: rgba(15,23,42,0.75);
  margin: 0 0 22px 0;
}

.cc-404 .cc-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 18px 0;
}

.cc-404 .cc-404-btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}

.cc-404 .cc-404-note {
  font-size: 13px;
  color: rgba(15,23,42,0.65);
  line-height: 1.6;
  margin: 0;
}

.cc-404 .cc-404-link {
  font-weight: 800;
  text-decoration: none;
  color: #8a6a2f;
}

.cc-404 .cc-404-link:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .cc-404 .cc-404-card {
    padding: 34px 22px;
  }

  .cc-404 .cc-404-code {
    font-size: 60px;
  }
}

.cc-shop-page .cc-filter-form {
  display: grid;
  gap: 14px;
}

.cc-shop-page .cc-filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  user-select: none;
}

.cc-shop-page .cc-filter-check input {
  margin-top: 0;
}

.cc-shop-page .cc-filter-check span {
  font-size: 13px;
  font-weight: 700;
  color: var(--cc-text-2);
}

.cc-shop-page .cc-filter-muted {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-shop-page .cc-filter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-shop-page .cc-filter-apply {
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  border-color: var(--sc-blue-deep);
  background: linear-gradient(135deg, var(--sc-blue-deep), var(--sc-blue));
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 120, 168, 0.18);
}

.cc-shop-page .cc-filter-reset {
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-shop-empty {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.cc-shop-page .cc-shop-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 48px 32px;
  backdrop-filter: blur(var(--cc-blur));
}

.cc-shop-page .cc-shop-empty-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin-bottom: 10px;
}

.cc-shop-page .cc-shop-empty-sub {
  font-size: 15px;
  color: var(--cc-text-2);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================
   Mobile Filters Toggle
========================= */

.cc-shop-page .cc-filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 10px 16px;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* =========================
   Filters Panel (Mobile)
========================= */

@media (max-width: 991px) {

  .cc-shop-page .cc-shop-layout {
    grid-template-columns: 1fr;
  }

  .cc-shop-page .cc-shop-filters-panel {
    display: none;
    margin-bottom: 20px;

    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  }

  .cc-shop-page .cc-shop-filters-panel.is-open {
    display: block;
    animation: ccFilterSlide 220ms ease;
  }
}

/* Subtle slide-down */
@keyframes ccFilterSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cc-header .sc-logo {
  width: 228px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.cc-header .cc-mobile-logo.sc-logo {
  width: 160px;
}

.silver-home {
  background: #f5f8fb;
  color: var(--sc-navy);
}

.silver-home .hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 64px;
  background:
    radial-gradient(circle at 78% 6%, rgba(47, 120, 168, .18), transparent 34%),
    linear-gradient(135deg, #fbfdff 0%, #edf5fb 46%, #ffffff 100%);
  border-bottom: 1px solid rgba(47, 120, 168, 0.12);
}

.silver-home .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 42px;
  align-items: center;
}

.silver-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 120, 168, .18);
  background: rgba(255, 255, 255, .76);
  color: #41647d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.silver-home h1 {
  max-width: 820px;
  margin: 20px 0 18px;
  color: var(--sc-navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  font-weight: 850;
}

.silver-home .lead {
  max-width: 680px;
  color: #516b83;
  font-size: 19px;
  line-height: 1.72;
}

.silver-home .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.silver-home .actions .btn {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.silver-home .actions .btn-primary {
  border-color: var(--sc-blue-deep);
  background: linear-gradient(135deg, var(--sc-blue-deep), var(--sc-blue));
  box-shadow: 0 16px 34px rgba(47, 120, 168, 0.2);
}

.silver-home .assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.silver-home .assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 120, 168, .14);
  background: rgba(255, 255, 255, 0.82);
  color: #405f78;
  font-size: 14px;
  font-weight: 700;
}

.silver-home .market-panel {
  padding: 28px;
  border: 1px solid rgba(47, 120, 168, .16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .94), rgba(237, 245, 251, .78));
  box-shadow: 0 28px 80px rgba(11, 29, 49, .1);
  border-radius: 8px;
}

.silver-home .panel-head,
.silver-home .metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #dde9f2;
}

.silver-home .panel-head {
  padding-bottom: 22px;
}

.silver-home .metric {
  padding: 18px 0;
}

.silver-home .panel-head span,
.silver-home .metric span,
.silver-home .section-head span,
.silver-home .review .text span {
  color: #5e83a0;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.silver-home .panel-head strong {
  color: var(--sc-navy);
  font-size: 18px;
}

.silver-home .metric strong {
  max-width: 170px;
  text-align: right;
}

.silver-home .panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--sc-blue-deep);
  font-weight: 850;
  text-decoration: none;
}

.silver-home .products,
.silver-home .review,
.silver-home .process {
  padding: 72px 0;
}

.silver-home .section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.silver-home .section-head h2,
.silver-home .review h2 {
  margin: 10px 0 12px;
  color: var(--sc-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 850;
}

.silver-home .section-head p,
.silver-home .review p {
  color: #5f7489;
  font-size: 17px;
  line-height: 1.7;
}

.silver-home .product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.silver-home .center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.silver-home .review-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.silver-home .review {
  background:
    radial-gradient(circle at 85% 10%, rgba(110, 160, 196, 0.18), transparent 32%),
    linear-gradient(135deg, #071827, #123956);
  color: #fff;
}

.silver-home .review h2,
.silver-home .review p {
  color: #fff;
}

.silver-home .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.silver-home .card-item {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(216, 227, 238, .2);
  background: rgba(255, 255, 255, .075);
  border-radius: 8px;
}

.silver-home .card-item i {
  margin-bottom: 22px;
  color: #b9d2e5;
  font-size: 26px;
}

.silver-home .card-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.silver-home .card-item span {
  color: #c7d3df;
  line-height: 1.6;
}

.silver-home .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #dce8f1;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  overflow: hidden;
}

.silver-home .step {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.silver-home .step span {
  color: var(--sc-blue);
  font-weight: 900;
}

.silver-home .step strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--sc-navy);
  font-size: 20px;
}

.silver-home .step p {
  margin: 0;
  color: #5c7085;
  line-height: 1.6;
}

.sc-contact,
.sc-about {
  background:
    radial-gradient(900px 520px at 82% 0%, rgba(216, 227, 238, 0.42), transparent 60%),
    linear-gradient(180deg, #f8fbfd, #f4f7fa);
  color: var(--sc-navy);
}

.custom-page-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.sc-contact .intro,
.sc-about .intro {
  max-width: 880px;
  margin: 0 0 34px;
}

.sc-contact .intro span,
.sc-about .intro span,
.sc-contact .panel-head span,
.sc-about .panel-head span,
.sc-about .metric span {
  display: inline-block;
  color: #5c7489;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sc-contact .intro h1,
.sc-about .intro h1 {
  margin: 12px 0 14px;
  color: var(--sc-navy);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
  font-weight: 900;
}

.sc-contact .intro p,
.sc-about .intro p {
  max-width: 760px;
  margin: 0;
  color: #536b80;
  font-size: 18px;
  line-height: 1.75;
}

.sc-contact .layout,
.sc-about .layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 22px;
  align-items: stretch;
}

.sc-contact .panel,
.sc-about .panel,
.sc-about .principle,
.sc-about .standard {
  border: 1px solid rgba(39, 78, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 52px rgba(11, 29, 49, 0.08);
}

.sc-contact .panel,
.sc-about .panel {
  padding: 30px;
}

.sc-contact .details-panel,
.sc-about .summary-panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 249, 0.82));
}

.sc-contact .panel-head h2,
.sc-about .panel-head h2 {
  margin: 8px 0 10px;
  color: var(--sc-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 900;
}

.sc-contact .panel-head p,
.sc-about .panel-head p {
  margin: 0 0 22px;
  color: #5c7085;
  line-height: 1.7;
}

.sc-contact .fields,
.sc-contact .contact-list,
.sc-contact .standard-grid,
.sc-about .metrics,
.sc-about .principles,
.sc-about .standards {
  display: grid;
  gap: 14px;
}

.sc-contact .field label {
  display: block;
  margin-bottom: 8px;
  color: var(--sc-navy);
  font-size: 13px;
  font-weight: 850;
}

.sc-contact .field .form-control {
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(39, 78, 111, 0.16);
  background: #fff;
  box-shadow: none;
}

.sc-contact .field textarea.form-control {
  min-height: 150px;
}

.sc-contact .field .form-control:focus {
  border-color: rgba(47, 120, 168, 0.42);
  box-shadow: 0 0 0 4px rgba(47, 120, 168, 0.08);
}

.sc-contact .captcha {
  max-width: 420px;
}

.sc-contact .actions {
  display: flex;
  justify-content: flex-end;
}

.sc-contact .primary {
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid var(--sc-blue-deep);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sc-blue-deep), var(--sc-blue));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(47, 120, 168, 0.18);
}

.sc-contact .line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(39, 78, 111, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #344f65;
}

.sc-contact .line i,
.sc-contact .standard i,
.sc-about .principle i,
.sc-about .standard i {
  color: var(--sc-blue-deep);
}

.sc-contact .line a {
  color: #223d53;
  text-decoration: none;
  font-weight: 750;
}

.sc-contact .line a:hover {
  color: var(--sc-blue-deep);
  text-decoration: underline;
}

.sc-contact .standard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.sc-contact .standard,
.sc-about .principle,
.sc-about .standard {
  padding: 18px;
}

.sc-contact .standard strong,
.sc-about .principle strong,
.sc-about .standard strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--sc-navy);
  font-size: 16px;
}

.sc-contact .standard span,
.sc-about .principle span,
.sc-about .standard span {
  display: block;
  color: #5c7085;
  font-size: 13px;
  line-height: 1.55;
}

.sc-contact .socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.sc-contact .socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 78, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--sc-navy);
  text-decoration: none;
}

.sc-about .metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.sc-about .metric {
  padding: 18px;
  border-top: 1px solid rgba(39, 78, 111, 0.12);
}

.sc-about .metric strong {
  display: block;
  margin-top: 6px;
  color: var(--sc-navy);
  font-size: 22px;
}

.sc-about .principles,
.sc-about .standards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.sc-about .note {
  margin-top: 22px;
  padding: 18px;
  border-left: 3px solid var(--sc-blue-deep);
  background: rgba(255, 255, 255, 0.72);
  color: #536b80;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .silver-home .hero-grid,
  .silver-home .review-grid,
  .sc-contact .layout,
  .sc-about .layout {
    grid-template-columns: 1fr;
  }

  .silver-home .product-strip,
  .silver-home .cards,
  .silver-home .steps,
  .sc-contact .standard-grid,
  .sc-about .metrics,
  .sc-about .principles,
  .sc-about .standards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .cc-header .sc-logo {
    width: 180px;
  }

  .cc-header .cc-mobile-logo.sc-logo {
    width: 150px;
  }

  .silver-home .hero {
    padding: 56px 0 44px;
  }

  .silver-home .product-strip,
  .silver-home .cards,
  .silver-home .steps,
  .sc-contact .standard-grid,
  .sc-about .metrics,
  .sc-about .principles,
  .sc-about .standards {
    grid-template-columns: 1fr;
  }

  .silver-home .market-panel {
    padding: 22px;
  }

  .silver-home .hero-media {
    min-height: 520px;
    padding: 0;
  }

  .silver-home .hero-media img {
    min-height: 520px;
  }

  .silver-home .hero-media-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .silver-home .hero-media-steps {
    grid-template-columns: 1fr;
  }

  .sc-contact .panel,
  .sc-about .panel {
    padding: 22px;
  }
}

.btn {
  border-radius: 10px;
  font-weight: 800;
}

.btn-primary,
.btn-dark {
  background: #0b1d31;
  border-color: #0b1d31;
  color: #fff;
}

.btn-primary:hover,
.btn-dark:hover {
  background: #16496f;
  border-color: #16496f;
}

.btn-outline-secondary,
.btn-outline-dark {
  border-color: rgba(11, 29, 49, 0.18);
  color: #0b1d31;
  background: rgba(255, 255, 255, 0.7);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 120, 168, 0.35);
  outline-offset: 3px;
}

.cc-header .cc-bar {
  max-width: 1440px;
}

.cc-header .cc-logo {
  width: 205px;
}

.cc-header .cc-nav {
  gap: 4px;
}

.cc-header .cc-nav-link {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 9px 10px;
}

.cc-header .cc-btn-consult {
  background: #0b1d31;
  color: #fff;
}

.cc-header .cc-btn-consult .cc-ico {
  color: #0b1d31;
}

.silver-home .hero {
  padding: 82px 0 64px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(237, 245, 251, 0.62)),
    radial-gradient(900px 520px at 78% 8%, rgba(47, 120, 168, 0.14), transparent 58%);
}

.silver-home .hero-grid {
  align-items: center;
  gap: 42px;
}

.silver-home .copy h1 {
  max-width: 780px;
  color: #071727;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.silver-home .lead {
  max-width: 760px;
  color: #43586a;
  font-size: 19px;
}

.silver-home .market-panel {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(11, 29, 49, 0.12);
  box-shadow: 0 22px 70px rgba(11, 29, 49, 0.12);
}

.silver-home .hero-media {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: #101820;
  border: 1px solid rgba(15, 76, 92, 0.18);
  box-shadow: 0 28px 80px rgba(15, 76, 92, 0.18);
}

.silver-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 76, 92, 0.04), rgba(15, 76, 92, 0.58)),
    linear-gradient(90deg, rgba(48, 56, 65, 0.18), transparent 52%);
  pointer-events: none;
}

.silver-home .hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(0.82) contrast(1.04);
}

.silver-home .hero-media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 22px;
  background: rgba(246, 249, 252, 0.92);
  border: 1px solid rgba(206, 212, 218, 0.82);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 24, 32, 0.24);
  backdrop-filter: blur(12px);
}

.silver-home .hero-media-card > span {
  color: #0F4C5C;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.silver-home .hero-media-card > strong {
  display: block;
  margin-top: 8px;
  color: #303841;
  font-size: 22px;
  line-height: 1.2;
}

.silver-home .hero-media-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.silver-home .hero-media-steps em {
  padding: 9px 10px;
  background: rgba(15, 76, 92, 0.08);
  color: #303841;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 6px;
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.silver-home .hero-media .panel-link {
  margin-top: 18px;
}

.silver-home .workflow-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(11, 29, 49, 0.08);
}

.silver-home .workflow-row span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf5fb;
  color: #16496f;
  font-weight: 900;
  font-size: 12px;
}

.silver-home .workflow-row strong {
  color: #0b1d31;
  font-size: 15px;
}

.silver-home .company-band,
.silver-home .institutional,
.silver-home .disclosure,
.silver-home .resources {
  padding: 76px 0;
}

.silver-home .company-grid,
.silver-home .institutional-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: start;
}

.silver-home .section-kicker,
.sc-page .hero span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #16496f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.silver-home .company-grid h2,
.silver-home .institutional-grid h2,
.silver-home .disclosure h2 {
  color: #071727;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.silver-home .company-grid p,
.silver-home .institutional-grid p {
  color: #53687a;
  font-size: 17px;
}

.silver-home .company-panel {
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(11, 29, 49, 0.1);
  box-shadow: 0 18px 54px rgba(11, 29, 49, 0.08);
}

.silver-home .company-panel div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid rgba(11, 29, 49, 0.08);
}

.silver-home .company-panel div:last-child {
  border-bottom: 0;
}

.silver-home .company-panel dt {
  color: #66788a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.silver-home .company-panel dd {
  margin: 0;
  color: #0b1d31;
  font-weight: 800;
}

.silver-home .product-strip,
.cc-shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cc-product-box {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 29, 49, 0.1);
  box-shadow: 0 14px 42px rgba(11, 29, 49, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cc-product-box:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 120, 168, 0.28);
  box-shadow: 0 24px 70px rgba(11, 29, 49, 0.12);
}

.cc-product-box-img {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.78;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, .98), rgba(222, 231, 236, .76) 58%, rgba(196, 209, 216, .64)),
    linear-gradient(145deg, #edf3f6, #d8e2e7);
}

.cc-product-box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  filter: contrast(1.06) saturate(.9);
}

.cc-product-box-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #0b1d31;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 29, 49, 0.1);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-product-box-body {
  padding: 18px;
}

.cc-product-box-title a {
  color: #0b1d31;
  font-weight: 900;
  text-decoration: none;
}

.cc-product-box-sub {
  min-height: 44px;
  color: #5a6d7e;
  font-size: 13px;
}

.cc-product-box-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.cc-product-box-specs span {
  padding: 5px 8px;
  border: 1px solid rgba(11, 29, 49, 0.09);
  background: #f6f9fc;
  color: #526476;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.cc-product-box-price {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.cc-product-box-price span {
  color: #687b8c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-product-box-price strong {
  color: #0b1d31;
  font-size: 20px;
}

.cc-product-box-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.silver-home .institutional {
  background: #0b1d31;
  color: #fff;
}

.silver-home .institutional h2,
.silver-home .institutional p,
.silver-home .institutional .section-kicker {
  color: #fff;
}

.silver-home .institutional-list {
  display: grid;
  gap: 12px;
}

.silver-home .institutional-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.silver-home .disclosure-panel {
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 29, 49, 0.1);
  box-shadow: 0 18px 54px rgba(11, 29, 49, 0.08);
}

.silver-home .disclosure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.silver-home .disclosure-grid p {
  margin: 0;
  padding: 16px;
  background: #f6f9fc;
  border: 1px solid rgba(11, 29, 49, 0.08);
  border-radius: 8px;
  color: #4f6375;
}

.silver-home .resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.silver-home .resource-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 84px;
  padding: 18px;
  color: #0b1d31;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(11, 29, 49, 0.1);
  border-radius: 8px;
  font-weight: 900;
}

.sc-page {
  color: #0b1d31;
}

.sc-page .hero {
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 44px 22px 20px;
  text-align: center;
}

.sc-page .hero h1 {
  color: #071727;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.sc-page .hero p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #526476;
  font-size: 18px;
}

.sc-page .body {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.sc-page .panel {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(11, 29, 49, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(11, 29, 49, 0.06);
}

.sc-page .panel h2 {
  color: #0b1d31;
  font-size: 26px;
}

.sc-page .panel p,
.sc-page .panel li {
  color: #53687a;
  font-size: 16px;
}

.cc-consult-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(11, 29, 49, 0.1);
  border-radius: 8px;
  background: #f6f9fc;
  color: #526476;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .cc-header .cc-btn-inventory {
    display: none;
  }

  .cc-footer .cc-footer-top,
  .cc-footer .cc-footer-legal-strip {
    grid-template-columns: 1fr;
  }

  .cc-footer .cc-footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .silver-home .product-strip,
  .cc-shop-grid,
  .silver-home .resource-grid,
  .silver-home .disclosure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .cc-header .cc-logo {
    width: 190px;
  }

  .silver-home .company-grid,
  .silver-home .institutional-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .cc-footer .cc-footer-shell {
    width: min(100% - 28px, 1660px);
    padding-top: 34px;
  }

  .cc-footer .cc-footer-brand-block,
  .cc-footer .cc-footer-quote-panel {
    padding: 22px;
  }

  .cc-footer .cc-footer-logo img {
    width: 178px;
  }

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

  .cc-footer .cc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .cc-footer .cc-footer-legal-strip {
    padding: 22px 18px;
  }

  .cc-header .cc-logo {
    width: 168px;
  }

  .silver-home .copy h1 {
    font-size: 42px;
  }

  .silver-home .product-strip,
  .cc-shop-grid,
  .silver-home .resource-grid,
  .silver-home .disclosure-grid,
  .silver-home .company-panel div {
    grid-template-columns: 1fr;
  }

  .silver-home .disclosure-panel {
    padding: 22px;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
  overflow: clip;
}

html.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Compact institutional header */
.cc-header {
  background: rgba(248, 251, 254, 0.94);
  box-shadow: 0 10px 30px rgba(11, 29, 49, 0.05);
}

.cc-header .cc-bar {
  max-width: 1800px;
  min-height: 74px;
  padding: 10px 18px;
  gap: 22px;
}

.cc-header .cc-logo,
.cc-header .sc-logo {
  width: 176px;
}

.cc-header .cc-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cc-header .dropdown {
  display: inline-flex;
  align-items: center;
}

.cc-header .cc-nav-link {
  white-space: nowrap;
  padding: 8px 9px;
  color: #394a5c;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  border-radius: 7px;
}

.cc-header .cc-nav-link:hover {
  transform: none;
  background: rgba(11, 29, 49, 0.06);
  color: #0b1d31;
}

.cc-header .cc-actions {
  flex: 0 0 auto;
  gap: 8px;
}

.cc-header .cc-btn {
  height: 44px;
  padding: 0 12px;
  gap: 8px;
  border-radius: 10px;
  box-shadow: none;
}

.cc-header .cc-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  box-shadow: none;
}

.cc-header .cc-btn-text {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.cc-header .cc-btn-consult {
  padding: 0 18px 0 9px;
  background: #0b1d31;
  border-color: #0b1d31;
  color: #fff;
}

.cc-header .cc-btn-consult .cc-ico {
  color: #0b1d31;
  background: #d8e3ee;
}

.cc-header .cc-btn-inventory {
  display: none;
}

.cc-header .cc-btn-quote {
  width: 44px;
  padding: 0;
  justify-content: center;
}

.cc-header .cc-btn-quote .cc-ico {
  background: #fff;
}

.cc-header .cc-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
}

@media (max-width: 1280px) {
  .cc-header .cc-nav {
    display: none;
  }

  .cc-header .cc-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .cc-header .cc-bar {
    min-height: 68px;
    gap: 10px;
    padding: 9px 12px;
  }

  .cc-header .cc-logo,
  .cc-header .sc-logo {
    width: 154px;
  }

  .cc-header .cc-btn-consult .cc-btn-text {
    display: none;
  }

  .cc-header .cc-btn-consult {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
}

/* AUTrading 2026 homepage redesign */
.aut-home {
  --aut-teal: #0F4C5C;
  --aut-teal-soft: #DCECEF;
  --aut-slate: #303841;
  --aut-silver: #CED4DA;
  --aut-paper: #F6F8FA;
  background: var(--aut-paper);
  color: var(--aut-slate);
}

.cc-header {
  background: #10181d;
  border-bottom: 1px solid rgba(206, 212, 218, .14);
  box-shadow: 0 14px 40px rgba(10, 18, 22, .16);
}

.cc-header .cc-bar {
  min-height: 84px;
}

.cc-header .cc-nav {
  background: transparent;
  border: 1px solid rgba(206, 212, 218, .14);
  box-shadow: none;
}

.cc-header .cc-nav-link {
  color: rgba(246, 248, 250, .78);
}

.cc-header .cc-nav-link:hover,
.cc-header .dropdown:hover .cc-nav-link {
  color: #fff;
  background: rgba(206, 212, 218, .08);
}

.cc-header .dropdown-menu {
  background: #10181d;
  border-color: rgba(206, 212, 218, .14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .26);
}

.cc-header .dropdown-item {
  color: rgba(246, 248, 250, .82);
}

.cc-header .dropdown-item:hover {
  color: #fff;
  background: rgba(15, 76, 92, .34);
}

.cc-header .cc-btn {
  background: rgba(246, 248, 250, .06);
  border-color: rgba(206, 212, 218, .16);
  color: #F6F8FA;
  box-shadow: none;
}

.cc-header .cc-btn-consult {
  background: #F6F8FA;
  color: #122328;
  border-color: #F6F8FA;
}

.cc-header .cc-btn .cc-ico {
  background: rgba(255, 255, 255, .1);
  color: #DCECEF;
}

.cc-header .cc-btn-consult .cc-ico {
  background: #DCECEF;
  color: #0F4C5C;
}

.cc-header .cc-count {
  background: #DCECEF;
  color: #0F4C5C;
}

.cc-header .cc-toggle {
  background: rgba(246, 248, 250, .06);
  border-color: rgba(206, 212, 218, .16);
  color: #F6F8FA;
}

.aut-home .container {
  max-width: 1440px;
}

.aut-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 106px 0 56px;
  background: #0b1519;
}

.aut-hero-media,
.aut-hero-media img,
.aut-hero-shade {
  position: absolute;
  inset: 0;
}

.aut-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
  filter: saturate(.72) contrast(1.05);
}

.aut-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 17, 21, .92) 0%, rgba(9, 17, 21, .72) 40%, rgba(9, 17, 21, .18) 74%),
    linear-gradient(0deg, rgba(9, 17, 21, .88) 0%, rgba(9, 17, 21, .12) 48%, rgba(9, 17, 21, .42) 100%);
}

.aut-hero .container {
  position: relative;
  z-index: 2;
}

.aut-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .42fr);
  gap: 54px;
  align-items: end;
}

.aut-hero-copy {
  max-width: 880px;
}

.aut-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(206, 212, 218, .34);
  color: #DCECEF;
  background: rgba(15, 76, 92, .22);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.aut-hero h1 {
  max-width: 980px;
  margin: 22px 0 20px;
  color: #fff;
  font-size: clamp(54px, 7.7vw, 116px);
  line-height: .9;
  font-weight: 850;
}

.aut-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 248, 250, .86);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.68;
}

.aut-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.aut-actions .btn {
  min-height: 54px;
  padding: 14px 21px;
  border-radius: 7px;
}

.aut-actions .btn-primary {
  background: #F6F8FA;
  border-color: #F6F8FA;
  color: #122328;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.aut-actions .btn-outline-light {
  border-color: rgba(246, 248, 250, .46);
  color: #fff;
  background: rgba(246, 248, 250, .08);
}

.aut-procurement {
  padding: 24px;
  border: 1px solid rgba(206, 212, 218, .28);
  background: rgba(10, 24, 29, .72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.aut-procurement > span,
.aut-section-line > span,
.aut-category-grid a > span {
  display: inline-block;
  color: var(--aut-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.aut-procurement > span {
  color: #A9C7CE;
}

.aut-procurement > strong {
  display: block;
  margin: 8px 0 22px;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
}

.aut-procurement dl,
.aut-procurement dd {
  margin: 0;
}

.aut-procurement dl {
  display: grid;
  gap: 1px;
  background: rgba(206, 212, 218, .18);
}

.aut-procurement dl div {
  padding: 15px 0;
  background: rgba(9, 17, 21, .54);
}

.aut-procurement dt {
  color: rgba(246, 248, 250, .58);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.aut-procurement dd {
  margin-top: 5px;
  color: rgba(246, 248, 250, .9);
  line-height: 1.45;
}

.aut-scope,
.aut-categories,
.aut-products,
.aut-process,
.aut-disclosure,
.aut-resources {
  padding: 86px 0;
}

.aut-scope {
  background: #fff;
  border-bottom: 1px solid rgba(48, 56, 65, .08);
}

.aut-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(48, 56, 65, .12);
}

.aut-scope-grid div {
  min-height: 190px;
  padding: 26px;
  background: #fff;
}

.aut-scope-grid span {
  color: var(--aut-teal);
  font-weight: 900;
}

.aut-scope-grid strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--aut-slate);
  font-size: 24px;
  line-height: 1.08;
}

.aut-scope-grid p {
  margin: 0;
  color: #5a6670;
  line-height: 1.65;
}

.aut-categories {
  background:
    linear-gradient(180deg, #F6F8FA, #EAF0F3);
}

.aut-section-line {
  max-width: 850px;
  margin-bottom: 34px;
}

.aut-section-line h2 {
  margin: 10px 0 12px;
  color: var(--aut-slate);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: .98;
  font-weight: 850;
}

.aut-section-line p {
  max-width: 760px;
  color: #596772;
  font-size: 18px;
  line-height: 1.72;
}

.aut-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(48, 56, 65, .14);
  border: 1px solid rgba(48, 56, 65, .12);
}

.aut-category-grid a {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: rgba(255, 255, 255, .84);
  color: var(--aut-slate);
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.aut-category-grid a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.aut-category-grid strong {
  display: block;
  margin-top: 46px;
  font-size: 27px;
  line-height: 1.06;
}

.aut-category-grid em {
  display: block;
  margin-top: 18px;
  color: #62717c;
  font-style: normal;
  line-height: 1.58;
}

.aut-products {
  background: #fff;
}

.aut-products .product-strip {
  gap: 1px;
  padding: 1px;
  background: rgba(48, 56, 65, .1);
}

.aut-products .cc-product-box {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.aut-process {
  background: #F6F8FA;
}

.aut-process .steps {
  border-radius: 0;
  border-color: rgba(48, 56, 65, .1);
  background: rgba(48, 56, 65, .1);
}

.aut-process .step {
  background: #fff;
}

.aut-institutional {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(15, 76, 92, .95), rgba(48, 56, 65, .98));
  color: #fff;
}

.aut-institutional .section-kicker,
.aut-institutional h2,
.aut-institutional p {
  color: #fff;
}

.aut-institutional .institutional-list div {
  border-color: rgba(206, 212, 218, .2);
  background: rgba(255, 255, 255, .08);
}

.aut-review {
  background: #11181c;
}

.aut-review .cards {
  grid-template-columns: 1fr;
}

.aut-review .card-item {
  min-height: auto;
  display: grid;
  grid-template-columns: 46px minmax(0, .38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-color: rgba(206, 212, 218, .16);
  background: rgba(255, 255, 255, .06);
}

.aut-review .card-item i {
  margin: 0;
}

.aut-review .card-item strong,
.aut-review .card-item span {
  margin: 0;
}

.aut-disclosure {
  background: #fff;
}

.aut-resources {
  background: #EAF0F3;
}

.aut-resources .resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(48, 56, 65, .12);
  border: 1px solid rgba(48, 56, 65, .12);
}

.aut-resources .resource-link {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .84);
}

@media (max-width: 991px) {
  .aut-hero {
    min-height: auto;
    padding: 86px 0 44px;
  }

  .aut-hero-shade {
    background: linear-gradient(0deg, rgba(9, 17, 21, .9), rgba(9, 17, 21, .38));
  }

  .aut-hero-grid,
  .aut-scope-grid,
  .aut-category-grid,
  .aut-resources .resource-grid {
    grid-template-columns: 1fr;
  }

  .aut-procurement {
    max-width: 640px;
  }

  .aut-review .card-item {
    grid-template-columns: 38px 1fr;
  }

  .aut-review .card-item span {
    grid-column: 2;
  }
}

@media (max-width: 575px) {
  .aut-hero {
    padding: 72px 0 34px;
  }

  .aut-hero h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .aut-scope,
  .aut-categories,
  .aut-products,
  .aut-process,
  .aut-disclosure,
  .aut-resources,
  .aut-institutional {
    padding: 58px 0;
  }

  .aut-scope-grid div,
  .aut-category-grid a {
    min-height: auto;
    padding: 22px;
  }
}

/* AUTrading wordmark */
.cc-header .cc-wordmark,
.cc-header .cc-wordmark-mobile,
.cc-footer .cc-footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #0b1d31;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
}
.cc-header .cc-wordmark strong,
.cc-header .cc-wordmark-mobile strong,
.cc-footer .cc-footer-wordmark strong {
  font-size: 26px;
  font-weight: 900;
}
.cc-header .cc-wordmark em,
.cc-header .cc-wordmark-mobile em,
.cc-footer .cc-footer-wordmark em {
  color: #3f7ea8;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}
.cc-footer .cc-footer-wordmark {
  padding: 13px 14px;
  background: rgba(255,255,255,0.94);
  border-radius: 8px;
}
.cc-footer .cc-footer-wordmark strong {
  font-size: 30px;
}
@media (max-width: 575px) {
  .cc-header .cc-wordmark strong,
  .cc-header .cc-wordmark-mobile strong { font-size: 22px; }
  .cc-header .cc-wordmark em,
  .cc-header .cc-wordmark-mobile em { font-size: 15px; }
}

/* AUTrading contrast corrections */
.cc-header .cc-brand,
.cc-mobile .cc-mobile-brand,
.cc-footer .cc-footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(206, 212, 218, .74);
  border-radius: 7px;
}

.cc-header .cc-logo,
.cc-header .sc-logo {
  width: 170px;
}

.cc-mobile .cc-mobile-logo.sc-logo {
  width: 150px;
}

.aut-institutional,
.aut-review,
.cc-footer {
  color: #F6F8FA;
}

.aut-institutional .section-kicker,
.aut-institutional .institutional-grid h2,
.aut-institutional .institutional-grid p,
.aut-institutional .institutional-list span,
.aut-review .text span,
.aut-review .text h2,
.aut-review .text p,
.aut-review .card-item strong,
.aut-review .card-item span,
.cc-footer h2,
.cc-footer h3,
.cc-footer p,
.cc-footer a,
.cc-footer span,
.cc-footer strong {
  color: #F6F8FA;
}

.aut-institutional .section-kicker,
.aut-review .text span {
  color: #B8D7DE;
}

.aut-institutional .btn-primary,
.cc-footer .cc-footer-primary {
  background: #F6F8FA;
  border-color: #F6F8FA;
  color: #122328;
}

.aut-institutional .institutional-list div,
.aut-review .card-item,
.cc-footer .cc-footer-brand-block {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(206, 212, 218, .24);
}

.aut-review .card-item i,
.aut-institutional .institutional-list i {
  color: #B8D7DE;
}

.cc-footer .cc-footer-quote-panel {
  background: rgba(246, 248, 250, .94);
}

.cc-footer .cc-footer-quote-panel h2,
.cc-footer .cc-footer-quote-panel p,
.cc-footer .cc-footer-quote-panel span,
.cc-footer .cc-footer-secondary {
  color: #303841;
}

.cc-footer .cc-footer-secondary {
  border-color: rgba(48, 56, 65, .18);
  background: #fff;
}

.cc-footer .cc-footer-proof span,
.cc-footer .cc-footer-line,
.cc-footer .cc-footer-legal-strip,
.cc-footer .cc-footer-toplink {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(206, 212, 218, .18);
}

.cc-footer .cc-footer-bottom,
.cc-footer .cc-footer-legal-strip {
  border-color: rgba(206, 212, 218, .16);
}

.cc-header .cc-brand,
.cc-mobile .cc-mobile-brand {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cc-header .cc-logo,
.cc-header .sc-logo {
  width: 178px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .28));
}

.cc-mobile .cc-mobile-logo.sc-logo {
  width: 160px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .22));
}

/* AUTrading dark mobile navigation */
.cc-header .cc-toggle {
  background: rgba(246, 248, 250, .06);
  border: 1px solid rgba(206, 212, 218, .18);
  color: #F6F8FA;
  box-shadow: none;
}

.cc-header .cc-toggle:hover {
  background: rgba(246, 248, 250, .12);
  border-color: rgba(206, 212, 218, .28);
}

.cc-header .cc-toggle .cc-ico {
  color: #303841;
}

.cc-header .cc-mobile {
  background: rgba(3, 10, 13, .72);
}

.cc-header .cc-mobile-panel {
  background: #10181d;
  border-right: 1px solid rgba(206, 212, 218, .16);
  box-shadow: 28px 0 80px rgba(0, 0, 0, .48);
}

.cc-header .cc-mobile-head,
.cc-header .cc-mobile-foot {
  background: #10181d;
  border-color: rgba(206, 212, 218, .14);
}

.cc-header .cc-mobile-close {
  background: rgba(184, 215, 222, .12);
  border: 1px solid rgba(184, 215, 222, .26);
  color: #F6F8FA;
  box-shadow: none;
}

.cc-header .cc-mobile-close .cc-ico {
  color: #F6F8FA;
}

.cc-header .cc-mobile-label {
  color: #B8D7DE;
}

.cc-header .cc-mobile-links,
.cc-header .cc-mobile-actions {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cc-header .cc-mobile-link,
.cc-header .cc-mobile-sublink,
.cc-header .cc-mobile-cta {
  background: rgba(246, 248, 250, .06);
  border: 1px solid rgba(206, 212, 218, .14);
  color: #F6F8FA;
  border-radius: 7px;
}

.cc-header .cc-mobile-link + .cc-mobile-link,
.cc-header .cc-mobile-cta + .cc-mobile-cta {
  margin-top: 8px;
}

.cc-header .cc-mobile-link:after,
.cc-header .cc-mobile-sublink:before,
.cc-header .cc-mobile-cta:after {
  color: #B8D7DE;
}

.cc-header .cc-mobile-link:hover,
.cc-header .cc-mobile-sublink:hover,
.cc-header .cc-mobile-cta:hover {
  background: rgba(15, 76, 92, .36);
  color: #fff;
}

.cc-header .cc-mobile-drop {
  display: grid;
  gap: 8px;
}

.cc-header .cc-mobile-drop-list {
  margin: 8px 0 0;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(184, 215, 222, .22);
  display: grid;
  gap: 8px;
}

.cc-header .cc-mobile-drop-list .cc-mobile-sublink {
  min-height: 42px;
  background: rgba(246, 248, 250, .075);
  border-color: rgba(206, 212, 218, .12);
  color: rgba(246, 248, 250, .86);
}

.cc-header .cc-mobile-drop-list .cc-mobile-sublink:before {
  color: #B8D7DE;
}

.cc-header .cc-mobile-cta .cc-ico {
  background: rgba(184, 215, 222, .12);
  color: #B8D7DE;
}

.cc-header .cc-mobile-cta-primary {
  background: #F6F8FA;
  color: #122328;
  border-color: #F6F8FA;
}

.cc-header .cc-mobile-cta-primary .cc-ico {
  background: #DCECEF;
  color: #0F4C5C;
}

.cc-header .cc-mobile-foot-note {
  color: rgba(246, 248, 250, .72);
}
