@charset "UTF-8";
/* CUTLANCA HERO + NAV (SCSS) */
/* Use IBM Plex Sans in your project (Google Fonts or self-host). */
html,
body {
  height: 100%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  background: rgb(255, 255, 255);
  padding: 0px;
  margin: 0px;
}

/* iOS Safari: kill blue phone/mail styling */
a[href^=tel],
a[href^=mailto] {
  color: inherit !important;
  text-decoration: none !important;
}

/* also fix when Safari injects styles internally */
.clc-footer a {
  -webkit-text-fill-color: currentColor;
}

body {
  overflow-x: hidden;
}

:root {
  /* Professional, consistent system */
  --clc-white: #ffffff;
  --clc-ink: #0b0d10;
  --clc-text: #111318;
  /* Brand accents (refined) */
  --clc-yellow: #f2c94c; /* primary CTA */
  --clc-blue: #1e5eff; /* system */
  --clc-blue-soft: #a9c7ff; /* hover / subtle accents */
  --clc-ember: #d9652b; /* action alt */
  /* Neutrals / UI */
  --clc-muted: rgba(255, 255, 255, 0.78);
  --clc-border: rgba(255, 255, 255, 0.16);
  --clc-radius: 10px;
  /* Component tokens (used in-place so no structure changes) */
  --clc-nav-border: rgba(255, 255, 255, 0.16);
  --clc-burger-border: rgba(255, 255, 255, 0.22);
  --clc-burger-bg: rgba(0, 0, 0, 0.14);
  --clc-burger-line: rgba(255, 255, 255, 0.92);
  --clc-mobile-divider: rgba(255, 255, 255, 0.12);
  --clc-hero-bg: #f6f7f9;
  --clc-btn-primary-bg: var(--clc-yellow);
  --clc-btn-primary-fg: var(--clc-ink);
  --clc-btn-primary-border: rgba(198, 144, 47, 0.9);
  --clc-btn-outline-border: rgba(255, 255, 255, 0.72);
  --clc-btn-outline-border-hover: rgba(255, 255, 255, 0.78);
  --clc-scroll-stroke: rgba(169, 199, 255, 0.92);
  --clc-scroll-fill: rgba(169, 199, 255, 0.96);
  --clc-title-ink: #121416;
  --clc-title-sub: rgba(18, 20, 22, 0.62);
  --clc-title-line: rgba(18, 20, 22, 0.22);
  --clc-title-maxw: 1200px;
}

/* NAV */
.clc-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100vw;
  background-color: transparent;
  position: fixed;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clc-nav-border);
}

.clc-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.clc-brand {
  display: flex;
  align-items: center;
  line-height: 0;
}
.clc-brand img {
  width: auto;
  max-width: 220px;
  display: block;
}

.clc-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.clc-menu__link {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-decoration: none;
  color: var(--clc-white);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  opacity: 0.92;
}
.clc-menu__link:hover {
  opacity: 1;
}
.clc-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 1.5px;
  background: var(--clc-blue-soft);
  transition: width 180ms ease;
}
.clc-menu__link:hover::after {
  width: 100%;
}

.clc-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--clc-burger-border);
  background: var(--clc-burger-bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /* FIX: remove padding + reset button defaults that shift bars */
  padding: 0;
  margin: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  /* FIX: proper layout for the 3 lines */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  /* FIX: remove the old margin stacking */
}
.clc-burger span {
  display: block;
  width: 22px; /* FIX: don't use 100% */
  height: 2px;
  background: var(--clc-burger-line);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}
.clc-burger span + span {
  margin-top: 0;
}

/* Mobile menu panel (hidden by default) */
.clc-mobile {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 28px 18px;
}

.clc-mobile__link {
  display: block;
  padding: 14px 6px;
  text-decoration: none;
  color: var(--clc-white);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.92;
  border-top: 1px solid var(--clc-mobile-divider);
}
.clc-mobile__link:hover {
  opacity: 1;
}

/* NAV: light mode when on white sections */
.clc-nav.is-light {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.clc-nav.is-light .clc-menu__link {
  color: rgba(17, 19, 24, 0.92);
}

.clc-nav.is-light .clc-menu__link::after {
  background: #a9c7ff !important;
}

/* burger in light mode */
.clc-nav.is-light .clc-burger {
  border: 1px solid rgba(17, 19, 24, 0.18);
  background: rgba(255, 255, 255, 0.6);
}

.clc-nav.is-light .clc-burger span {
  background: rgba(17, 19, 24, 0.86);
}

/* mobile links in light mode */
.clc-nav.is-light .clc-mobile__link {
  color: rgba(17, 19, 24, 0.92);
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

/* HERO */
.clc-hero {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--clc-hero-bg);
}

.clc-hero__media {
  position: absolute;
  inset: 0;
  background: url("../imgs/bgtesting1.jpg") center/cover no-repeat;
  will-change: transform;
  transform: scale(1.02);
  -webkit-animation: heroFloat 40s ease-in-out infinite;
          animation: heroFloat 40s ease-in-out infinite;
}

@-webkit-keyframes heroFloat {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.25) translate3d(-10%, -8%, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes heroFloat {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.25) translate3d(-10%, -8%, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
}
/* overlay for readability + moody industrial look */
.clc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 22% 30%, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.08) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

/* subtle grain/noise to avoid “flat template” */
.clc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
}

.clc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 113px 0 31px 0;
  margin-left: 8%;
}

.clc-hero__headline {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(44px, 5.6vw, 84px);
  margin: 0 0 18px;
}

.clc-hero__accent {
  color: var(--clc-blue-soft);
}

/* If you want the “less sterile / more firefighting” option:
   switch ONE accent line to ember by adding this class in HTML:
   <span class="clc-hero__accent clc-hero__accent--ember">...</span>
*/
.clc-hero__accent--ember {
  color: var(--clc-ember);
}

.clc-hero__sub {
  margin: 0 0 34px;
  max-width: 70ch;
  color: var(--clc-muted);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.clc-hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.clc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--clc-radius);
  text-decoration: none;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.clc-btn:active {
  transform: translateY(1px);
}

.clc-btn--primary {
  background: var(--clc-btn-primary-bg);
  color: var(--clc-btn-primary-fg);
  border: 2px solid var(--clc-btn-primary-border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.clc-btn--primary:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  filter: saturate(1.05);
}

/* If you want the “firefighting” version: swap primary to ember */
.clc-btn--primary.is-ember {
  background: var(--clc-ember);
}

.clc-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--clc-btn-outline-border);
}
.clc-btn--outline:hover {
  border-color: var(--clc-btn-outline-border-hover);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* scroll indicator */
.clc-hero__scroll {
  position: absolute;
  bottom: 80px;
  z-index: 2;
  opacity: 0.9;
  width: 100vw;
  display: flex;
  justify-content: left;
}

.clc-scroll {
  width: 26px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--clc-scroll-stroke);
  display: inline-block;
  position: relative;
}
.clc-scroll::after {
  content: "";
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: var(--clc-scroll-fill);
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  -webkit-animation: clcScroll 1.6s ease-in-out infinite;
          animation: clcScroll 1.6s ease-in-out infinite;
}

@-webkit-keyframes clcScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
  60% {
    transform: translate(-50%, 14px);
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
}

@keyframes clcScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
  60% {
    transform: translate(-50%, 14px);
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
}
/* responsive */
@media (max-width: 950px) {
  .clc-menu {
    display: none;
  }
  .clc-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .clc-hero__content {
    padding-top: 78px;
  }
  /* Show mobile menu when header has .is-open */
  .clc-nav.is-open .clc-mobile {
    display: block;
  }
  .clc-hero__content {
    padding: 0% 5% 0px 5% !important;
  }
  /* Animate burger into an "X" when open */
  .clc-nav.is-open .clc-burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .clc-nav.is-open .clc-burger span:nth-child(2) {
    opacity: 0;
  }
  .clc-nav.is-open .clc-burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .clc-background-animation__steps {
    padding-left: 5%;
  }
}
@media (max-width: 520px) {
  .clc-nav__inner {
    padding: 16px 18px;
  }
  .clc-hero__sub {
    font-size: 16px;
  }
  .clc-btn {
    width: 100%;
  }
  .clc-hero__content {
    margin-left: 0px;
  }
  .clc-hero__scroll {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
  }
  .clc-background-animation__steps {
    max-width: 100% !important;
    --stepW: 100px !important;
    margin-left: 0px !important;
    padding-left: 0px !important;
  }
}
/* HERO ANIMATION LAST LOADING */
/* ===== SEGMENTED TIMER BAR (per step) ===== */
.clc-background-animation__steps {
  /* number of steps */
  --n: 4;
  /* preferred step size on desktop */
  --stepW: 80px;
  /* min step size for small screens */
  --stepMin: 52px;
  /* gap is computed from available width, but clamped */
  --gap: clamp(
    8px,
    calc((min(100vw, 520px) - (var(--n) * var(--stepW))) / (var(--n) - 1)),
    22px
  );
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  /* each step gets a fixed width (but can shrink on small screens) */
  grid-template-columns: repeat(var(--n), minmax(var(--stepMin), var(--stepW)));
  gap: var(--gap);
  /* never exceed viewport */
  max-width: 95%;
  overflow: hidden;
  margin-left: 8%;
}

/* step button */
.clc-background-animation__step {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  /* space for the bar above the number */
  padding: 18px 0 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  /* 🔹 TEXT SHADOW ADDED */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.65);
  position: relative;
  /* IMPORTANT: remove manual width so grid controls it */
  width: 100%;
  /* per-segment progress (0..1) — JS can animate this later */
  --p: 0;
}

/* grey track */
.clc-background-animation::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background-color: rgb(255, 255, 255);
}

/* blue fill (constant speed) */
.clc-background-animation::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: calc(var(--p) * 100%);
  background: #75A6FB;
  transition: width 120ms linear; /* fast, constant speed */
}

.clc-background-animation.is-active {
  color: rgba(255, 255, 255, 0.85);
}

.clc-background-animation.is-done {
  --p: 1;
}

/* grey track */
.clc-background-animation__step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: rgb(255, 255, 255);
  /* 🔹 SHADOW ADDED */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.65));
}

/* blue fill (constant speed) */
.clc-background-animation__step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: calc(var(--p) * 100%);
  background: #75A6FB;
  transition: width 120ms linear; /* fast, constant speed */
}

/* ===== HERO MEDIA SLIDE ANIMATION ===== */
.clc-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0; /* 🔹 Behind the gradient overlay */
  transition: none; /* Remove any default transitions */
  /* Animation for slide effect */
}
.clc-hero__media.is-transitioning {
  -webkit-animation: slideBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1);
          animation: slideBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@-webkit-keyframes slideBlur {
  0% {
    transform: translateX(20px);
    filter: blur(8px);
    opacity: 0.7;
  }
  100% {
    transform: translateX(0);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes slideBlur {
  0% {
    transform: translateX(20px);
    filter: blur(8px);
    opacity: 0.7;
  }
  100% {
    transform: translateX(0);
    filter: blur(0px);
    opacity: 1;
  }
}
.clc-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: none;
  /* 🔹 Ensure transform resets when not animating */
  transform: translateX(0);
  filter: blur(0px);
  opacity: 1;
}
.clc-hero__media.is-transitioning {
  -webkit-animation: slideBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: slideBlur 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 🔹 Gradient overlay - make sure it's above the background */
.clc-hero::before {
  z-index: 1;
}

/* 🔹 Content above everything */
.clc-hero__content {
  position: relative;
  z-index: 2;
}

.clc-strip {
  width: 100%;
  height: 86px;
  position: relative;
  overflow: hidden;
  /* JS writes these polygons */
  --poly-left: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  --poly-right: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  /* animation feel */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* colored layers */
.clc-strip::before,
.clc-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: -webkit-clip-path 420ms var(--ease);
  transition: clip-path 420ms var(--ease);
  transition: clip-path 420ms var(--ease), -webkit-clip-path 420ms var(--ease);
  will-change: clip-path;
  pointer-events: none;
}

.clc-strip::before {
  background: #86aaf7;
  -webkit-clip-path: var(--poly-left);
          clip-path: var(--poly-left);
}

.clc-strip::after {
  background: #f2dc7f;
  -webkit-clip-path: var(--poly-right);
          clip-path: var(--poly-right);
}

/* clickable halves */
.clc-strip__hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10px, 2.2vw, 14px) clamp(16px, 4.2vw, 44px);
  text-decoration: none;
  color: #fff;
  z-index: 5;
}
.clc-strip__hit .clc-strip__title {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.clc-strip__hit .clc-strip__sub {
  margin-top: clamp(2px, 0.9vw, 6px);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(12px, 2.2vw, 22px);
  opacity: 0.9;
}

.clc-strip__hit--left {
  left: 0;
  align-items: flex-start;
}

.clc-strip__hit--right {
  right: 0;
  align-items: flex-end;
  text-align: right;
}

/* STANDARD SECTION TITLE (reusable) */
.clc-section-title {
  max-width: var(--clc-title-maxw);
  margin-top: 10px;
}

.clc-section-title__h {
  margin: 0;
  margin-left: 5%;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--clc-title-ink);
  /* responsive, standardized */
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.05;
}

.clc-section-title__sub {
  margin: clamp(8px, 1.2vw, 12px) 0 0;
  margin-left: 5%;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: var(--clc-title-sub);
  /* responsive, standardized */
  font-size: clamp(16px, 1.65vw, 22px);
  line-height: 1.5;
  max-width: 70ch;
}

.clc-section-title__rule {
  margin-top: clamp(18px, 2.2vw, 26px);
  height: 1px;
  width: 100%;
  background: var(--clc-title-line);
}

/* PRODUCTS SECTION WRAPPER */
:root {
  --clc-zoom-dur: 680ms;
  --clc-zoom-ease: cubic-bezier(.22, .61, .36, 1);
  --clc-safe-top: env(safe-area-inset-top, 0px);
  --clc-safe-right: env(safe-area-inset-right, 0px);
  --clc-safe-bottom: env(safe-area-inset-bottom, 0px);
  --clc-safe-left: env(safe-area-inset-left, 0px);
}

@supports (padding-top: constant(safe-area-inset-top)) {
  :root {
    --clc-safe-top: constant(safe-area-inset-top);
    --clc-safe-right: constant(safe-area-inset-right);
    --clc-safe-bottom: constant(safe-area-inset-bottom);
    --clc-safe-left: constant(safe-area-inset-left);
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: #111318;
}

.clc-section-title {
  max-width: 95%;
  margin: 0 auto;
  padding: 42px 18px 0;
}

.clc-section-title__h {
  margin: 0 0 10px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3vw, 42px);
}

.clc-section-title__sub {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(18, 20, 22, 0.68);
  max-width: 70ch;
}

.clc-section-title__rule {
  margin-top: 18px;
  height: 1px;
  width: min(520px, 100%);
  background: rgba(18, 20, 22, 0.12);
}

.clc-products {
  background: #fff;
  padding-bottom: clamp(42px, 6vw, 74px);
}

.clc-products__grid {
  max-width: 95%;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px) clamp(18px, 3.2vw, 28px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2.2vw, 24px);
}

.clc-product {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr 44px;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(14px, 2.2vw, 18px);
  border: 1px solid rgba(18, 20, 22, 0.22);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.clc-product:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.clc-product::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid #75A6FB;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: -webkit-clip-path 220ms linear;
  transition: clip-path 220ms linear;
  transition: clip-path 220ms linear, -webkit-clip-path 220ms linear;
  pointer-events: none;
}

.clc-product:hover::after {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.clc-product__media {
  border-radius: 8px;
  overflow: hidden;
  background: #f2f3f5;
  position: relative;
}

.clc-product__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.clc-product__kicker {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(18, 20, 22, 0.46);
  margin-bottom: 8px;
}

.clc-product__title {
  margin: 0 0 8px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111318;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.15;
}

.clc-product__desc {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
  color: rgba(18, 20, 22, 0.68);
  max-width: 62ch;
}

.clc-product__cta {
  display: grid;
  place-items: center;
}

.clc-product__arrow {
  font-size: 34px;
  line-height: 1;
  color: #75A6FB;
  opacity: 0.95;
  transform: translateX(0);
  transition: transform 160ms ease, opacity 160ms ease;
}

.clc-product:hover .clc-product__arrow {
  transform: translateX(4px);
  opacity: 1;
}

@media (max-width: 1208px) {
  .clc-product {
    grid-template-columns: 1fr;
    padding: clamp(8px, 2vw, 12px);
    gap: clamp(6px, 1.5vw, 10px);
  }
  .clc-product__cta {
    display: none;
  }
  .clc-product__kicker {
    font-size: clamp(12px, 2vw, 11px);
    margin-bottom: 4px;
  }
  .clc-product__title {
    font-size: clamp(18px, 3vw, 16px);
    margin-bottom: 4px;
  }
  .clc-product__desc {
    font-size: clamp(16px, 2.5vw, 13px);
    line-height: 1.4;
  }
}
/* ─── ZOOM SYSTEM ─── */
body.clc-zoom-open {
  overflow: hidden;
}

.clc-page-wrapper {
  transition: transform var(--clc-zoom-dur) var(--clc-zoom-ease);
  will-change: transform;
}

.clc-zoom {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--clc-zoom-ease);
  height: 100dvh;
  height: 100vh;
}

body.clc-zoom-open .clc-zoom {
  opacity: 1;
  pointer-events: auto;
}

.clc-zoom__underlay {
  position: absolute;
  inset: 0;
  background: #fff;
}

.clc-zoom__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.97);
}

.clc-zoom__iframe-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

body.clc-zoom-iframe-visible .clc-zoom__iframe-wrap {
  opacity: 1;
  pointer-events: auto;
}

.clc-zoom__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.clc-zoom__close {
  position: absolute;
  bottom: calc(45px + var(--clc-safe-bottom));
  left: calc(0px + var(--clc-safe-left));
  z-index: 10;
  width: 90px;
  height: 70px;
  border-radius: 0% 50% 50% 0%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  opacity: 0;
  pointer-events: none;
}

.clc-zoom__close img {
  transform: rotate(180deg);
  width: 40%;
}

body.clc-zoom-iframe-visible .clc-zoom__close {
  opacity: 1;
  pointer-events: auto;
  transition: background 180ms ease, transform 180ms ease, opacity 320ms ease;
}

.clc-zoom__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.clc-zoom__close svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

.clc-zoom__close.is-root {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.clc-zoom__close.is-detail {
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --clc-zoom-dur: 1ms;
  }
  .clc-page-wrapper, .clc-zoom, .clc-zoom__iframe-wrap, .clc-zoom__close {
    transition: none !important;
  }
}
/* BENEFITS SECTION */
.clc-benefits {
  background: #fff;
  padding-bottom: clamp(46px, 6vw, 78px);
}

.clc-benefits__wrap {
  margin: 0 auto;
  padding: clamp(18px, 3.2vw, 28px);
}

.clc-benefit__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.clc-benefit__panel.is-open {
  /* max-height is set dynamically by JS for perfect smoothness */
}

.clc-benefit__panel-inner {
  padding: 16px 0; /* adjust to match your spacing */
}

.clc-benefit.is-open .clc-benefit__arrow {
  transform: rotate(90deg);
  transition: transform 300ms ease;
}

.clc-benefits__list {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 20, 22, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

/* ROW */
.clc-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 46px;
  align-items: center;
  padding: clamp(14px, 1.6vw, 16px) clamp(14px, 2vw, 18px);
  text-decoration: none;
  color: rgba(18, 20, 22, 0.9);
  border-top: 1px solid rgba(18, 20, 22, 0.1);
  transition: background 140ms ease, transform 140ms ease;
  margin-bottom: 5px;
}

/* left yellow rail */
.clc-benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(242, 201, 76, 0.9); /* your yellow */
}

/* number */
.clc-benefit__num {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  opacity: 0.75;
}

/* main text */
.clc-benefit__text {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.25;
}

/* right arrow */
.clc-benefit__arrow {
  justify-self: end;
  font-size: 34px;
  line-height: 1;
  color: #75A6FB; /* your blue */
  opacity: 0.95;
  transform: translateX(0);
  transition: transform 140ms ease, opacity 140ms ease;
}
.clc-benefit__arrow img {
  height: 22px;
}

/* hover */
.clc-benefit-item:hover {
  cursor: pointer;
}
.clc-benefit-item:hover .clc-benefit {
  background: rgba(117, 166, 251, 0.06);
}

.clc-benefit-item:hover::before {
  width: 6px;
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.18);
}

.clc-benefit:hover .clc-benefit__arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 520px) {
  .clc-benefit {
    grid-template-columns: 44px 1fr 38px;
  }
  .clc-benefit__arrow {
    font-size: 30px;
  }
}
/* Wrapper so the yellow rail can extend through the open panel */
.clc-benefit-item {
  position: relative;
}

/* Replace the row-only rail with a full-height rail on the wrapper */
.clc-benefit-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0; /* this makes it extend across row + expanded panel */
  width: 4px;
  background: rgba(242, 201, 76, 0.9);
  border-radius: 2px;
  transition: width 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  opacity: 0.9;
}

/* IMPORTANT: disable the old rail on the row (since wrapper now owns the rail) */
.clc-benefit::before {
  content: none;
}

/* Smooth, professional panel motion */
.clc-benefit__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

/* Add subtle fade/slide on inner content */
.clc-benefit__panel-inner {
  padding: 14px clamp(14px, 2vw, 18px) 18px;
  /* align content with your grid; number column is 52px, plus a little gap */
  padding-left: calc(52px + clamp(14px, 2vw, 18px));
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

/* When open: inner content becomes visible */
.clc-benefit__panel.is-open .clc-benefit__panel-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Your requested paragraph typography */
.clc-benefit__desc {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.25;
  color: rgba(18, 20, 22, 0.78);
}

.spacer-br-clc-benefit__desc {
  margin-bottom: 15px;
}

/* Arrow open state (keep your existing rule if you want) */
.clc-benefit.is-open .clc-benefit__arrow {
  transform: rotate(90deg);
  transition: transform 300ms ease;
}

/* Rail “expands” when open (professional: slightly thicker + soft glow) */
.clc-benefit-item.is-open::before {
  width: 6px;
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.18);
  opacity: 1;
}

/* Mobile alignment (since your grid columns change) */
@media (max-width: 520px) {
  .clc-benefit__panel-inner {
    padding-left: calc(44px + clamp(14px, 2vw, 18px));
  }
}
.clc-benefit__panel {
  transition: max-height 320ms ease;
}

.clc-benefit__panel-inner {
  transition: opacity 320ms ease, transform 320ms ease;
}

.clc-benefit__list {
  margin: 18px 0 22px;
  padding-left: 0;
  list-style: none;
}

.clc-benefit__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(18, 20, 22, 0.85);
}

/* custom bullet */
.clc-benefit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.9); /* your yellow */
}

/* subtle emphasis for attachment names */
.clc-benefit__list strong {
  font-weight: 600;
  color: rgba(18, 20, 22, 0.95);
}

/* METHODTA */
/* METODA / PRESENTATION */
.clc-method {
  background: #fff;
  padding-bottom: clamp(42px, 6vw, 78px);
}

.clc-method__wrap {
  margin: 0 auto;
  margin-left: 5%;
}

/* SLIDER FRAME (prepared for multiple slides) */
.clc-method__slider {
  position: relative;
}

/* Each slide (only one active for now) */
.clc-method__slide {
  display: none;
}

.clc-method__slide.is-active {
  display: block;
}

/* 2-column layout like screenshot */
.clc-method__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
  padding: clamp(14px, 2.2vw, 20px) 0 0;
}

/* LEFT SIDE */
.clc-method__left {
  padding-right: clamp(0px, 2vw, 12px);
}

.clc-method__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.clc-method__kbar {
  width: 4px;
  height: 18px;
  background: var(--clc-yellow);
  display: inline-block;
}

.clc-method__ktext {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 20, 22, 0.55);
}

.clc-method__headline {
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f1218;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 56px);
}

.clc-method__meta {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(18, 20, 22, 0.9);
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: clamp(14px, 1.9vw, 20px);
}

.clc-method__desc {
  margin: 0;
  max-width: 62ch;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.55;
  color: rgba(18, 20, 22, 0.72);
}

/* RIGHT SIDE IMAGE */
.clc-method__img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
  /* soft fade on edges like screenshot */
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000 62%, transparent 92%);
  mask-image: radial-gradient(circle at 70% 50%, #000 62%, transparent 92%);
}

.clc-method__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* FOOTER NAV */
.clc-method__footer {
  margin-top: clamp(18px, 2.6vw, 26px);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  /* IMPORTANT: give it a real width so the step bar can fit properly */
  width: 100%;
  max-width: 100%;
}

/* ===== SEGMENTED TIMER BAR (per step) ===== */
.clc-method__steps {
  /* number of steps */
  --n: 6;
  /* preferred step size on desktop */
  --stepW: 80px;
  /* min step size for small screens */
  --stepMin: 52px;
  /* gap is computed from available width, but clamped */
  --gap: clamp(
    8px,
    calc((min(100vw, 520px) - (var(--n) * var(--stepW))) / (var(--n) - 1)),
    22px
  );
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  /* each step gets a fixed width (but can shrink on small screens) */
  grid-template-columns: repeat(var(--n), minmax(var(--stepMin), var(--stepW)));
  gap: var(--gap);
  /* never exceed viewport */
  max-width: 95%;
  overflow: hidden;
}

/* step button */
.clc-method__step {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  /* space for the bar above the number */
  padding: 18px 0 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 20, 22, 0.55);
  position: relative;
  /* IMPORTANT: remove manual width so grid controls it */
  width: 100%;
  /* per-segment progress (0..1) — JS can animate this later */
  --p: 0;
}

/* grey track */
.clc-method__step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: rgba(18, 20, 22, 0.22);
}

/* blue fill (constant speed) */
.clc-method__step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: calc(var(--p) * 100%);
  background: #75A6FB;
  transition: width 120ms linear; /* fast, constant speed */
}

.clc-method__step.is-active {
  color: rgba(18, 20, 22, 0.85);
}

.clc-method__step.is-done {
  --p: 1;
}

/* Buttons (unchanged) */
.clc-method__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.clc-method__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 12px 18px;
  cursor: pointer;
  border: 1px solid rgba(18, 20, 22, 0.26);
  background: transparent;
  color: rgba(18, 20, 22, 0.82);
}

.clc-method__btn--solid {
  background: rgba(255, 255, 255, 0.9);
}

.clc-method__btn--ghost {
  opacity: 0.45;
}

.clc-method__btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

/* MOBILE: stack image under text */
@media (max-width: 900px) {
  .clc-method__grid {
    grid-template-columns: 1fr;
  }
  .clc-method__img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
/* ABOUT */
/* ABOUT */
.clc-about {
  background: #fff;
  padding-bottom: clamp(46px, 6vw, 84px);
}

.clc-about__hero {
  position: relative;
  margin-top: clamp(16px, 2.4vw, 24px);
  border-top: 1px solid rgba(18, 20, 22, 0.18);
  border-bottom: 1px solid rgba(18, 20, 22, 0.18);
  overflow: hidden;
}

/* background image */
.clc-about__bg {
  position: absolute;
  inset: 0;
  background-image: url("../imgs/aboutusBackground.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

/* subtle white wash like screenshot */
.clc-about__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0.55) 100%);
  pointer-events: none;
}

.clc-about__inner {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 3.2vw, 28px);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
}

/* left text */
.clc-about__p {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: rgba(18, 20, 22, 0.92);
  font-weight: 700;
}

.clc-about__p--strong {
  font-weight: 500;
  font-size: clamp(20px, 1.65vw, 32px);
}

/* stat card */
.clc-about__stat {
  position: relative;
  justify-self: end;
  width: min(280px, 100%);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6823529412);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
  z-index: 0;
}

.clc-about__stat {
  position: relative;
  border-radius: 16px;
}

/* allow the angle to interpolate smoothly */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.clc-about__stat {
  position: relative;
  border-radius: 16px;
}

/* animated gradient border */
.clc-about__stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.5px;
  background: linear-gradient(var(--angle), #FBDF75 0%, #75A6FB 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  -webkit-animation: border-wander 25s linear infinite;
          animation: border-wander 25s linear infinite;
}

/* smooth “random-ish” drift */
@-webkit-keyframes border-wander {
  0% {
    --angle: 15deg;
  }
  10% {
    --angle: 210deg;
  }
  22% {
    --angle: 85deg;
  }
  36% {
    --angle: 330deg;
  }
  50% {
    --angle: 160deg;
  }
  63% {
    --angle: 280deg;
  }
  77% {
    --angle: 45deg;
  }
  90% {
    --angle: 300deg;
  }
  100% {
    --angle: 375deg;
  } /* >360 avoids snap */
}
@keyframes border-wander {
  0% {
    --angle: 15deg;
  }
  10% {
    --angle: 210deg;
  }
  22% {
    --angle: 85deg;
  }
  36% {
    --angle: 330deg;
  }
  50% {
    --angle: 160deg;
  }
  63% {
    --angle: 280deg;
  }
  77% {
    --angle: 45deg;
  }
  90% {
    --angle: 300deg;
  }
  100% {
    --angle: 375deg;
  } /* >360 avoids snap */
}
.clc-about__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(30, 94, 255, 0.9);
  background: rgba(255, 255, 255, 0.75);
}

.clc-about__num {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(18, 20, 22, 0.86);
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.05;
  margin-top: 8px;
  font-style: italic;
}

.clc-about__label {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 30px);
  color: rgba(18, 20, 22, 0.78);
}

/* responsive */
@media (max-width: 900px) {
  .clc-about__inner {
    grid-template-columns: 1fr;
    justify-items: center; /* centers the items in the single column */
  }
  .clc-about__stat {
    justify-self: center; /* explicitly centers the stat card */
  }
  .clc-about__hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0.7) 100%);
  }
}
/* AKTUALNOSCI */
.clc-updates {
  background: #fff;
  padding: clamp(44px, 6vw, 84px) 0;
}
.clc-updates #aktualnosci-titel-M,
.clc-updates #aktualnosci-titel-SUB {
  margin-left: 0%;
}
.clc-updates #aktualnosci-titel-CONT,
.clc-updates #aktualnosci-titel-SUB {
  max-width: 100vw;
}

/* optional if you want centered title in this section only */
.clc-section-title--center {
  text-align: center;
}
.clc-section-title--center .clc-section-title__rule {
  margin-left: auto;
  margin-right: auto;
}

.clc-updates__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px) clamp(18px, 3.2vw, 28px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: start;
}

/* FEED HEAD */
.clc-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.clc-feed__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.clc-feed__name {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.1vw, 22px);
  color: rgba(18, 20, 22, 0.92);
}

/* icons */
.clc-feed__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
}

.clc-feed__icon--fb {
  background: #2563eb;
} /* Facebook blue */
.clc-feed__icon--yt {
  background: #dc2626;
} /* YouTube red */
/* LISTS */
.clc-feed__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Facebook cards */
.clc-post {
  background: #fff;
  border: 1px solid rgba(18, 20, 22, 0.14);
  border-radius: 10px;
  padding: 18px 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
}

.clc-post__date {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(18, 20, 22, 0.55);
  margin-bottom: 8px;
}

.clc-post__title {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.7vw, 18px);
  letter-spacing: -0.01em;
  color: rgba(18, 20, 22, 0.92);
  margin-bottom: 8px;
}

.clc-post__desc {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(18, 20, 22, 0.72);
}

/* YouTube rows */
/* YouTube rows */
.clc-video {
  text-decoration: none;
  display: grid;
  grid-template-columns: 199px 1fr;
  gap: 16px;
  align-items: stretch;
  border: 1px solid rgba(18, 20, 22, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
  min-height: 112px;
}

.clc-video__thumb {
  height: auto;
  min-height: 112px;
  width: 100% auto;
  background: rgba(18, 20, 22, 0.28);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
}
.clc-video__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.clc-video__meta {
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.clc-video__title {
  margin: 0;
  line-height: 1.25;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(18, 20, 22, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clc-video__views {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(18, 20, 22, 0.55);
}

/* "more" links */
.clc-feed__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  text-decoration: none;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.clc-feed__more--fb {
  color: #2563eb;
}

.clc-feed__more--yt {
  color: #dc2626;
}

@media (max-width: 920px) {
  .clc-updates__wrap {
    grid-template-columns: 1fr;
  }
  .clc-feed__list {
    /* horizontal carousel */
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 520px);
    overscroll-behavior-x: contain;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    gap: 14px;
  }
  .clc-post,
.clc-video {
    scroll-snap-align: start;
  }
  /* hide scrollbar without breaking scroll */
  .clc-feed__list::-webkit-scrollbar {
    height: 0;
  }
  .clc-feed__list {
    scrollbar-width: none;
  }
}
.clc-video__date {
  text-decoration: underline !important;
  font-size: 13px;
  color: rgba(18, 20, 22, 0.55);
  margin-bottom: 6px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.clc-video {
  position: relative;
}

.clc-video__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  border-radius: 7px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: rgba(249, 213, 71, 0.3803921569);
  color: #000;
  line-height: 1;
  stroke: 1px s;
  border: 2px solid #F9D547;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(249, 213, 71, 0.07), 0 0 12px rgba(249, 213, 71, 0.93);
}

/* FOOTER */
.clc-footer {
  position: relative;
  overflow: hidden;
  background: #0f1216;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(34px, 5vw, 54px) 0 clamp(18px, 3vw, 26px);
}

/* subtle top fade like screenshot */
.clc-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 420px at 20% 0%, rgba(255, 255, 255, 0.08), transparent 55%), radial-gradient(900px 360px at 75% 10%, rgba(255, 255, 255, 0.06), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%);
  pointer-events: none;
}

/* BIG watermark word */
.clc-footer__bgword {
  position: absolute;
  left: -4%;
  top: 42%;
  transform: translateY(-50%);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 20vw;
  font-style: italic;
  color: rgba(255, 255, 255, 0.022);
  line-height: 1;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 0;
}

.clc-footer__inner {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 clamp(18px, 3.2vw, 28px);
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.9fr 1.25fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

/* headings */
.clc-footer__title {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 14px;
}

.clc-footer__logo {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 14px;
}

.clc-footer__desc,
.clc-footer__desc2 {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  font-size: clamp(14px, 1.15vw, 16px);
  color: rgba(255, 255, 255, 0.62);
}

.clc-footer__desc {
  max-width: 30ch;
  margin-bottom: 18px;
}

.clc-footer__desc2 {
  max-width: 38ch;
  margin-bottom: 18px;
}

/* links */
.clc-footer__links {
  display: grid;
  gap: 10px;
}
.clc-footer__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.clc-footer__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* contact rows */
.clc-footer__contact {
  display: grid;
  gap: 12px;
}

.clc-footer__row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}
.clc-footer__row span {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.clc-footer__ico {
  color: #75A6FB;
  opacity: 0.95;
}

/* socials */
.clc-footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.clc-footer__social .borderradious {
  border-radius: 5px;
}

.clc-footer__socialbtn {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 160ms ease, filter 160ms ease;
}
.clc-footer__socialbtn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.clc-footer__socialbtn--fb {
  background: #2D62FF;
}

.clc-footer__socialbtn--yt {
  background: #E11B22;
}

/* CTAs */
.clc-footer__ctaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.clc-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  min-width: 210px;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.clc-footer__btn:active {
  transform: translateY(1px);
}

.clc-footer__btn--primary {
  background: #FBDF75;
  color: #0b0d10;
  border: 1px solid rgba(251, 223, 117, 0.75);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.clc-footer__btn--primary:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.clc-footer__btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.clc-footer__btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

/* bottom bar */
.clc-footer__bottom {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  margin: clamp(22px, 3vw, 30px) auto 0;
  padding: clamp(18px, 2.6vw, 22px) clamp(18px, 3.2vw, 28px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clc-footer__copyright {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.clc-footer__legal {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  flex-wrap: wrap;
}
.clc-footer__legal a {
  text-decoration: none;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.55);
}
.clc-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.86);
}

/* responsive */
@media (max-width: 980px) {
  .clc-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .clc-footer__inner {
    /* mobile grid: brand on top, then 2 cols (nav + contact), then cta full */
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    align-items: start;
    /* prevents columns from overflowing */
  }
  .clc-footer__inner > * {
    min-width: 0;
  }
  /* Assign areas by your existing order (NO HTML changes):
     1) brand, 2) nav, 3) contact, 4) cta */
  .clc-footer__inner > .clc-footer__col:nth-child(1) {
    grid-column: 1/-1; /* brand full width */
  }
  .clc-footer__inner > .clc-footer__col:nth-child(2) {
    grid-column: 1/2; /* nav left */
  }
  .clc-footer__inner > .clc-footer__col:nth-child(3) {
    grid-column: 2/3; /* contact right */
  }
  .clc-footer__inner > .clc-footer__col:nth-child(4) {
    grid-column: 1/-1; /* partnership full width */
  }
  /* CTA buttons full width on mobile (looks like your good screenshot) */
  .clc-footer__btn {
    min-width: 100%;
  }
  /* bottom bar stacked (keep) */
  .clc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  /* watermark: keep visible but not dominating/cropping weirdly */
  .clc-footer__bgword {
    top: 58%;
    left: -24%;
    font-size: clamp(90px, 28vw, 180px);
  }
}
/* ultra-small phones: if it still feels tight, collapse nav/contact to 1 col */
@media (max-width: 380px) {
  .clc-footer__inner {
    grid-template-columns: 1fr;
  }
  .clc-footer__inner > .clc-footer__col:nth-child(2),
.clc-footer__inner > .clc-footer__col:nth-child(3) {
    grid-column: 1/-1;
  }
}
/* AI CHATBOT */
#ai-chatbot-cont {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

/* your existing image styles */
#ai-chatbot-cont img {
  z-index: 1;
  position: relative;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#ai-chatbot-cont:hover {
  transform: scale(1.05);
}

/* NEW: nudge bubble */
.ai-chatbot-nudge {
  position: absolute;
  right: 90px;
  bottom: 14px;
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 16px);
  white-space: nowrap;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* visible state */
.ai-chatbot-nudge.is-visible {
  opacity: 1;
  transform: translateY(-31px);
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.457);
  cursor: pointer;
}

#ai-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 380px;
  height: 560px;
  background: #f6f6f6;
  color: #111;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3000;
}

#ai-chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ai-chat-panel__header {
  padding: 20px 18px 20px 18px;
  display: flex;
  align-items: center;
  background-color: #2E2E2E;
  border-radius: 22px 22px 0 0;
}
.ai-chat-panel__header #ai-chat-panel__header-ailogo {
  width: 50px;
  right: 10px;
  position: absolute;
}

.ai-chat-panel__close {
  background: transparent;
  border: 0;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 12px;
  transition: background 0.15s ease;
}

.ai-chat-panel__close:hover {
  color: rgb(213, 213, 213);
}

.ai-chat-panel__close-x {
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.ai-chat-panel__close-text {
  font-size: 18px;
  font-weight: 600;
}

.ai-chat-panel__body {
  flex: 1;
  padding: 10px 18px 0 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ai-chat-panel__logo-wrap {
  position: absolute;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 16px 0 10px 0;
  width: 90%;
  height: 70%;
}
.ai-chat-panel__logo-wrap #ai-chat-panel__logo-long {
  width: 90%;
}

.ai-chat-panel__logo {
  width: 140px;
  height: auto;
  opacity: 0.1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.18));
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.ai-chat-panel__messages {
  flex: 1;
  z-index: 2;
  overflow-y: auto;
  padding: 10px 0 0 0;
  scroll-behavior: smooth;
}

.ai-chat-panel__footer {
  padding: 14px 16px 16px 16px;
  z-index: 3;
}

.ai-chat-panel__form {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 7px 12px;
}

.ai-chat-panel__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #111;
  font-size: 16px;
  padding: 6px 8px;
}

.ai-chat-panel__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.ai-chat-panel__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.ai-chat-panel__input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.ai-chat-panel__send {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background-color: #86aaf7;
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}

.ai-chat-panel__send:hover {
  background: #6095eb;
  transform: scale(1.04);
}

/* Responsive: mobile -> near full screen */
@media (max-width: 520px) {
  #ai-chat-panel {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    height: min(92vh, 640px);
    border-radius: 18px;
  }
}
/* Messages container */
.ai-chat-panel__messages {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
}

/* Message row - FIXED: Now uses relative positioning to allow avatar overlap */
.ai-msg {
  display: flex;
  align-items: flex-start;
  gap: 0; /* Changed from 12px to 0 since we're using absolute positioning */
  max-width: 100%;
  position: relative; /* Added to enable absolute positioning of children */
  padding-top: 27px; /* Added to create space for the avatar */
}

/* Assistant = left */
.ai-msg--assistant {
  justify-content: flex-start;
  padding-left: 27px; /* Added to create space for the avatar on the left */
}

/* User = right */
.ai-msg--user {
  justify-content: flex-end;
  padding-right: 27px; /* Added to create space for the avatar on the right */
}

/* Avatar circle - FIXED: Now positioned absolutely to overlap the bubble */
.ai-msg__avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
  position: absolute; /* Changed from relative to absolute */
  top: 0; /* Position at the top of the message */
  z-index: 10; /* Ensure avatar appears above the bubble */
}

/* Position assistant avatar on the left */
.ai-msg--assistant .ai-msg__avatar {
  left: 0;
  border: 4px solid rgba(95, 151, 255, 0.85); /* blue ring */
}

/* Position user avatar on the right */
.ai-msg--user .ai-msg__avatar {
  right: 0;
  border: 4px solid rgba(245, 208, 92, 0.95); /* yellow ring */
}

.ai-msg__avatar-img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* Bubble base */
.ai-msg__bubble {
  padding: 16px 40px;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  max-width: min(520px, 72%);
  line-height: 1.25;
  font-size: 22px; /* adjust to match your site */
  font-weight: 500;
  color: #2E2E2E;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  position: relative; /* Added to maintain proper stacking context */
  z-index: 1; /* Ensure bubble is below avatar */
}

/* Bot bubble (blue) */
.ai-msg--assistant .ai-msg__bubble {
  background: rgba(169, 198, 255, 0.5411764706);
  border-top-left-radius: 14px;
}

/* User bubble (yellow) */
.ai-msg--user .ai-msg__bubble {
  background: rgba(242, 201, 76, 0.4784313725);
  border-top-right-radius: 14px;
}

/* Optional: make long text wrap nicely */
.ai-msg__bubble {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.userpicture img {
  width: 30px;
}

/* CONTACT SECTION */
/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}
.drawer-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.drawer-overlay.has-logo-cutout::before {
  mask-image: var(--logo-mask);
  mask-size: var(--logo-size, 200px);
  mask-position: var(--logo-position, center);
  mask-repeat: no-repeat;
  -webkit-mask-image: var(--logo-mask);
  -webkit-mask-size: var(--logo-size, 200px);
  -webkit-mask-position: var(--logo-position, center);
  -webkit-mask-repeat: no-repeat;
}

.drawer-overlay-logo {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--logo-size, 200px);
  height: auto;
  pointer-events: none;
}
.drawer-overlay-logo.top-left {
  top: 10%;
  left: 10%;
  transform: none;
}
.drawer-overlay-logo.top-right {
  top: 10%;
  left: auto;
  right: 10%;
  transform: none;
}
.drawer-overlay-logo.bottom-left {
  top: auto;
  bottom: 10%;
  left: 10%;
  transform: none;
}
.drawer-overlay-logo.bottom-right {
  top: auto;
  bottom: 10%;
  left: auto;
  right: 10%;
  transform: none;
}

/* Contact Drawer */
.contact-drawer {
  border-left: 5px solid white;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 500px;
  max-width: 90vw;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}
.contact-drawer.active {
  transform: translateX(0);
}
.contact-drawer.form-active {
  overflow-y: auto;
}
@media (max-width: 768px) {
  .contact-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Drawer Header */
.drawer-header {
  padding: 0.5rem 2rem 1.5rem;
  border-bottom: 1px solid #e8e8e8;
  background: rgba(41, 41, 41, 0.5215686275);
  z-index: 10;
}
@media (max-width: 768px) {
  .drawer-header {
    padding: 2rem 1.5rem 1.25rem;
  }
}

.drawer-title {
  font-size: 3rem;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.drawer-subtitle {
  font-size: 1rem;
  font-weight: 400;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  margin: 0px;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
/* Drawer Content */
.drawer-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: white;
}
@media (max-width: 768px) {
  .drawer-content {
    padding: 1.5rem;
  }
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
  justify-content: center;
}

.contact-option {
  padding-left: 2rem;
  background: #fafafa;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-option .contact-option-text h3, .contact-option p {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.contact-option:hover {
  background: rgba(169, 199, 255, 0.2941176471);
  color: white;
  transform: translateX(-4px);
}
.contact-option:hover .contact-option-text h3 {
  color: rgb(0, 0, 0);
}
.contact-option:hover .contact-option-text p {
  color: rgb(0, 0, 0);
}

.contact-option-scierniwo .contact-option-icon {
  width: 65px;
  height: 65px;
}
.contact-option-scierniwo .contact-option-icon img {
  width: 100%;
  height: 100%;
}

.contact-option-szkolenie .contact-option-icon {
  width: 54px;
  height: 54px;
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.contact-option-icon img {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.contact-option-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
  letter-spacing: -0.3px;
  transition: all 0.3s ease;
}
.contact-option-text p {
  font-size: 0.875rem;
  color: #666;
  transition: all 0.3s ease;
}

.close-btn img {
  width: 100%;
}

/* NEWS DRAWER */
/* News Drawer Styles */
/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.drawer-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* News Drawer */
.news-drawer {
  border-right: 5px solid white;
  position: fixed;
  left: 0; /* ✅ was right: 0 */
  top: 0;
  height: 100vh;
  width: 500px;
  max-width: 90vw;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.15); /* optional: flip shadow */
  transform: translateX(-100%); /* ✅ slide in from left */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.news-drawer.active {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .news-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}
/* Drawer Header */
.drawer-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #e8e8e8;
  background: rgba(41, 41, 41, 0.5215686275);
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .drawer-header {
    padding: 2rem 1.5rem 1.25rem;
  }
}
.drawer-title {
  font-size: 3rem;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  padding-right: 50px;
}

.drawer-subtitle {
  font-size: 1rem;
  font-weight: 400;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  margin: 0;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  color: rgb(213, 213, 213);
  transform: scale(1.1);
}

/* Drawer Image */
.drawer-image-container {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.drawer-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#drawerImageContainer {
  border-top: 3px solid #a9c7ff;
}

/* Drawer Content */
.drawer-content {
  flex: 1;
  overflow-y: auto;
  background-color: white;
}

.drawer-content-contact {
  padding: 0px !important;
}

@media (max-width: 768px) {
  .drawer-content {
    padding: 1.5rem;
  }
}
.drawer-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Animations */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.iti__dropdown-content .iti__search-input {
  padding-left: 1rem !important;
  box-sizing: border-box;
}/*# sourceMappingURL=main.css.map */