/* =========================================================
   WORKWEAR — HERO
   ========================================================= */

.ct-workwear-hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 150px 0 100px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 25%,
      rgba(0, 174, 239, 0.07),
      transparent 30%
    ),
    var(--ct-bg);
}

.ct-workwear-hero__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(420px, 1.05fr);

  gap: clamp(70px, 8vw, 140px);

  align-items: center;
}

/* CONTENT */

.ct-workwear-hero__content {
  position: relative;

  z-index: 3;
}

.ct-workwear-hero__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-workwear-hero__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-workwear-hero__title {
  max-width: 850px;

  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(58px, 5.8vw, 104px);
  font-weight: 600;

  line-height: 0.91;
  letter-spacing: -0.055em;
}

.ct-workwear-hero__title span {
  display: block;

  color: #8d98a6;
}

.ct-workwear-hero__lead {
  max-width: 650px;

  margin: 36px 0 0;

  color: #aeb7c2;

  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
}

.ct-workwear-hero__actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 42px;
}

.ct-workwear-hero__meta {
  display: flex;
  flex-wrap: wrap;

  gap: 10px 22px;

  margin-top: 48px;

  color: #56616d;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.17em;
}

/* VISUAL */

.ct-workwear-hero__visual {
  position: relative;

  min-height: 720px;

  overflow: hidden;

  background: #111721;

  clip-path: polygon(9% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 14%);
}

.ct-workwear-hero__image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.72) contrast(1.05) brightness(0.72);

  transform: scale(1.02);
}

.ct-workwear-hero__overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.03), rgba(7, 10, 15, 0.52)),
    linear-gradient(120deg, rgba(47, 48, 130, 0.1), transparent 55%);
}

.ct-workwear-hero__label {
  position: absolute;

  left: 30px;
  bottom: 30px;

  z-index: 4;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 12px 15px;

  background: rgba(7, 10, 15, 0.76);

  border-left: 2px solid #00aeef;

  backdrop-filter: blur(8px);
}

.ct-workwear-hero__label span {
  color: #00aeef;

  font-family: monospace;
  font-size: 10px;
}

.ct-workwear-hero__label strong {
  color: #ffffff;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.15em;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .ct-workwear-hero {
    min-height: auto;

    padding: 140px 0 80px;
  }

  .ct-workwear-hero__grid {
    grid-template-columns: 1fr;
  }

  .ct-workwear-hero__visual {
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .ct-workwear-hero {
    padding: 120px 0 70px;
  }

  .ct-workwear-hero__title {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .ct-workwear-hero__lead {
    margin-top: 24px;
  }

  .ct-workwear-hero__actions {
    flex-direction: column;
    margin-top: 32px;
  }

  .ct-workwear-hero__visual {
    min-height: 430px;
  }
}

/* =========================================================
   WORKWEAR — EGYSÉGES MEGJELENÉS
   ========================================================= */

.ct-workwear-presence {
  position: relative;

  padding: 150px 0;

  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(0, 174, 239, 0.05),
      transparent 28%
    ),
    #0c1118;
}

.ct-workwear-presence__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.95fr);

  gap: clamp(70px, 9vw, 150px);

  align-items: start;
}

/* INTRO */

.ct-workwear-presence__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 28px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-workwear-presence__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-workwear-presence__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(54px, 5vw, 90px);
  font-weight: 600;

  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ct-workwear-presence__title span {
  display: block;

  color: #8d98a6;
}

.ct-workwear-presence__lead {
  max-width: 650px;

  margin: 32px 0 0;

  color: #a8b1bc;

  font-size: 16px;
  line-height: 1.75;
}

/* BENEFITS */

.ct-workwear-presence__benefits {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-workwear-presence__benefit {
  display: grid;

  grid-template-columns: 42px 1fr;

  gap: 20px;

  padding: 30px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-workwear-presence__benefit > span {
  padding-top: 4px;

  color: #00aeef;

  font-family: monospace;
  font-size: 10px;
}

.ct-workwear-presence__benefit h3 {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: 24px;
  font-weight: 600;

  letter-spacing: -0.03em;
}

.ct-workwear-presence__benefit p {
  margin: 10px 0 0;

  color: #7f8a96;

  font-size: 14px;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .ct-workwear-presence__grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }
}

@media (max-width: 620px) {
  .ct-workwear-presence {
    padding: 90px 0;
  }

  .ct-workwear-presence__title {
    font-size: clamp(46px, 13vw, 64px);
  }
}

/* =========================================================
   WORKWEAR — LOGÓZÁS
   ========================================================= */

.ct-workwear-branding {
  position: relative;

  padding: 150px 0;

  background:
    radial-gradient(
      circle at 20% 70%,
      rgba(0, 174, 239, 0.05),
      transparent 30%
    ),
    var(--ct-bg);
}

.ct-workwear-branding__grid {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.9fr)
    minmax(0, 1.1fr);

  gap: clamp(70px, 9vw, 150px);

  align-items: center;
}

/* VISUAL */

.ct-workwear-branding__visual {
  position: relative;

  min-height: 650px;

  overflow: hidden;

  background: #111721;

  clip-path: polygon(0 0, 90% 0, 100% 12%, 100% 100%, 10% 100%, 0 88%);
}

.ct-workwear-branding__image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.7) contrast(1.06) brightness(0.68);

  transform: scale(1.02);
}

.ct-workwear-branding__overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.04), rgba(7, 10, 15, 0.55)),
    linear-gradient(135deg, rgba(0, 174, 239, 0.09), transparent 55%);
}

.ct-workwear-branding__badge {
  position: absolute;

  left: 28px;
  bottom: 28px;

  z-index: 4;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 12px 15px;

  background: rgba(7, 10, 15, 0.76);

  border-left: 2px solid #00aeef;
}

.ct-workwear-branding__badge span {
  color: #00aeef;

  font-family: monospace;
  font-size: 10px;
}

.ct-workwear-branding__badge strong {
  color: #ffffff;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.15em;
}

/* CONTENT */

.ct-workwear-branding__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 28px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-workwear-branding__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-workwear-branding__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(52px, 4.8vw, 84px);
  font-weight: 600;

  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ct-workwear-branding__title span {
  display: block;

  color: #8d98a6;
}

.ct-workwear-branding__lead {
  max-width: 680px;

  margin: 30px 0 0;

  color: #a8b1bc;

  font-size: 16px;
  line-height: 1.75;
}

.ct-workwear-branding__note {
  display: grid;

  grid-template-columns: 54px 1fr;

  gap: 20px;

  margin-top: 42px;

  padding: 24px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-workwear-branding__note span {
  color: #00aeef;

  font-family: monospace;
  font-size: 9px;

  letter-spacing: 0.12em;
}

.ct-workwear-branding__note p {
  margin: 0;

  color: #8d98a6;

  font-size: 14px;
  line-height: 1.7;
}

.ct-workwear-branding__action {
  margin-top: 34px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .ct-workwear-branding__grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .ct-workwear-branding__visual {
    min-height: 540px;
  }
}

@media (max-width: 620px) {
  .ct-workwear-branding {
    padding: 90px 0;
  }

  .ct-workwear-branding__visual {
    min-height: 420px;
  }

  .ct-workwear-branding__title {
    font-size: clamp(46px, 13vw, 64px);
  }
}
