/**
 * WTMS – Homepage section styles (v2 redesign)
 * 1) Values section: "Unsere Werte. Ihr Vorteil."
 */

.wtms-values {
  --wv-red: var(--color-primary, #dc3545);
  --wv-ink: #16191d;
  --wv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  padding: 92px 0 84px;
  font-family: var(--font-secondary, "Poppins", sans-serif);
}
.wtms-values .container {
  position: relative;
  z-index: 2;
}

/* Decorations */
.wv-deco-dots {
  position: absolute;
  top: 74px;
  left: 26px;
  width: 168px;
  height: 128px;
  z-index: 1;
  color: rgba(20, 25, 30, 0.14);
  background-image: radial-gradient(currentColor 1.4px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: linear-gradient(135deg, #000 10%, transparent 72%);
  mask-image: linear-gradient(135deg, #000 10%, transparent 72%);
  pointer-events: none;
}
.wv-deco-arrows {
  position: absolute;
  top: -10px;
  right: -30px;
  width: 300px;
  height: 300px;
  z-index: 1;
  color: rgba(20, 25, 30, 0.045);
  transform: skewX(-6deg);
  pointer-events: none;
}

/* Heading */
.wv-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.wv-eyebrow {
  display: inline-block;
  color: var(--wv-red);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.wv-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54px;
  height: 2px;
  background: var(--wv-red);
}
.wv-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--wv-ink);
  text-wrap: balance;
}
.wv-title .text-primary {
  color: var(--wv-red) !important;
}

/* Grid */
.wv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 58px;
}
.wv-item {
  text-align: center;
}

/* Icon badge (neumorphic circle + red arc + red dot) */
.wv-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin: 0 auto 30px;
  border-radius: 50%;
  color: #232a32;
  background: linear-gradient(145deg, #ffffff, #e8eaee);
  box-shadow:
    9px 9px 20px rgba(20, 25, 30, 0.1),
    -9px -9px 20px rgba(255, 255, 255, 0.95);
  transition:
    transform 0.35s var(--wv-ease),
    color 0.3s,
    box-shadow 0.3s;
}
.wv-badge i {
  font-size: 2.55rem;
  transition:
    color 0.3s,
    transform 0.3s;
}
/* red arc on the top-left */
.wv-badge::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--wv-red);
  border-left-color: var(--wv-red);
  transform: rotate(-8deg);
  transition: transform 0.6s var(--wv-ease);
}
/* red dot on the right edge */
.wv-badge::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wv-red);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.14);
}
.wv-item:hover .wv-badge {
  transform: translateY(-6px);
}
.wv-item:hover .wv-badge i {
  color: var(--wv-red);
  transform: scale(1.08);
}
.wv-item:hover .wv-badge::before {
  transform: rotate(120deg);
}

/* Number ( — 01 — , centered) */
.wv-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wv-red);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.wv-num::before,
.wv-num::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(20, 25, 30, 0.2);
}

.wv-name {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--wv-ink);
}
.wv-desc {
  margin: 0 auto;
  max-width: 300px;
  color: #6a7480;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Bottom connector with hex badge */
.wv-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 66px;
}
.wv-line {
  flex: 1 1 auto;
  max-width: 440px;
  height: 2px;
  position: relative;
}
.wv-line:first-child {
  background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.55));
}
.wv-line:last-child {
  background: linear-gradient(90deg, rgba(220, 53, 69, 0.55), transparent);
}
.wv-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wv-red);
}
.wv-line:first-child::after {
  right: -3px;
}
.wv-line:last-child::after {
  left: -3px;
}
.wv-hex {
  flex: none;
  width: 66px;
  height: 66px;
  margin: 0 18px;
  display: grid;
  place-items: center;
  background: #ffffff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 10px 20px rgba(20, 25, 30, 0.18));
}
.wv-hex img {
  width: 46px;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 991px) {
  .wv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 26px;
  }
  .wv-deco-arrows {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 575px) {
  .wtms-values {
    padding: 70px 0 66px;
  }
  .wv-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .wv-line {
    max-width: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wv-badge,
  .wv-badge i,
  .wv-badge::before {
    transition: none;
  }
}

/* =====================================================================
 * 2) About section: "Starke Werte. Klare Mission."
 * ===================================================================== */
.wtms-about {
  --wv-red: var(--color-primary, #dc3545);
  --wv-ink: #16191d;
  --wv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  padding: 88px 0 92px;
  font-family: var(--font-secondary, "Poppins", sans-serif);
}
.wtms-about .container {
  position: relative;
  z-index: 2;
}

.wa-sub {
  margin: 18px auto 0;
  max-width: 640px;
  color: #6a7480;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Dotted decorations */
.wa-dots {
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 120px;
  color: rgba(20, 25, 30, 0.13);
  background-image: radial-gradient(currentColor 1.4px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
.wa-dots-tl {
  top: 150px;
  left: 22px;
  -webkit-mask-image: linear-gradient(135deg, #000 8%, transparent 72%);
  mask-image: linear-gradient(135deg, #000 8%, transparent 72%);
}
.wa-dots-bl {
  bottom: 40px;
  left: 36px;
  width: 120px;
  height: 92px;
  -webkit-mask-image: linear-gradient(45deg, #000 8%, transparent 72%);
  mask-image: linear-gradient(45deg, #000 8%, transparent 72%);
}

/* Grid */
.wa-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}

/* =========================
   WTMS ABOUT VISUAL
========================= */
.wa-media {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1.06;
  margin: 0 auto;
  isolation: isolate;
}

/* PHOTO */
.wa-photo {
  position: absolute;
  z-index: 4;
  width: 76%;
  height: 86%;
  left: 18%;
  top: 3%;
  overflow: hidden;
  border-radius: 24px 0 0 0;
  clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 82%, 88% 100%, 20% 100%, 0 84%);
  box-shadow: none;
}
.wa-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
  transform: none;
}

/* RED BACKGROUND SHAPE */
.wa-media-shape {
  position: absolute;
  z-index: 1;
  left: 5%;
  top: 17%;
  width: 27%;
  height: 61%;
  background: linear-gradient(145deg, #ff1c2e 0%, #e51627 55%, #c90f1f 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0 84%, 0 17%);
  border-radius: 28px 0 0 28px;
  box-shadow: none;
}

/* GHOST OUTLINE */
.wa-frame-ghost {
  position: absolute;
  z-index: 2;
  left: 21%;
  top: 8%;
  width: 77%;
  height: 84%;
  border: 1.5px solid rgba(30, 35, 40, 0.09);
  border-radius: 24px 72px 84px 84px;
  transform: translate(10px, 16px);
  pointer-events: none;
}

/* LOGO */
.wa-logo {
  position: absolute;
  z-index: 6;
  left: 8%;
  bottom: 6%;
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(10, 15, 20, 0.18));
}

/* DOT PATTERN */
.wa-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 150px;
  background-image: radial-gradient(
    circle,
    rgba(120, 130, 140, 0.18) 2px,
    transparent 2.5px
  );
  background-size: 17px 17px;
  pointer-events: none;
}

/* Right content */
.wa-eyebrow-sm {
  display: inline-block;
  color: var(--wv-red);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wa-h3 {
  margin: 0 0 26px;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--wv-ink);
}
.wa-h3 .text-primary {
  color: var(--wv-red) !important;
}

/* Tabs */
.wa-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e2e5ea;
}
.wa-tabs li {
  margin-bottom: -1px;
}
.wa-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  color: #6a7480;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.wa-tab i {
  font-size: 1.05rem;
}
.wa-tab:hover {
  color: var(--wv-ink);
}
.wa-tab.active {
  color: var(--wv-red);
  border-bottom-color: var(--wv-red);
}

/* Panes */
.wa-panes {
  padding-top: 26px;
}
.wa-intro {
  position: relative;
  margin: 0 0 26px;
  padding-left: 16px;
  color: #4b5560;
  font-size: 1rem;
  line-height: 1.6;
}
.wa-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: var(--wv-red);
}

.wa-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.wa-feature:last-child {
  margin-bottom: 0;
}
.wa-fic {
  flex: none;
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--wv-red);
  font-size: 1.35rem;
  box-shadow: 0 10px 24px -12px rgba(16, 19, 24, 0.28);
}
.wa-fic::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--wv-red);
  border-left-color: var(--wv-red);
  transform: rotate(-20deg);
}
.wa-feature h4 {
  margin: 0 0 5px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--wv-ink);
}
.wa-feature p {
  margin: 0;
  color: #6a7480;
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .wtms-about {
    padding: 72px 0 78px;
  }
  .wa-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .wa-dots-tl {
    top: auto;
  }
}
@media (max-width: 767px) {
  .wa-media {
    width: 100%;
    max-width: 480px;
  }
  .wa-photo {
    width: 77%;
    left: 17%;
  }
  .wa-logo {
    width: 92px;
    height: 92px;
    left: 7%;
    bottom: 7%;
  }
  .wa-media-shape {
    width: 28%;
  }
}
@media (max-width: 575px) {
  .wa-tab {
    padding: 10px 12px;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-tab {
    transition: none;
  }
}

/* =====================================================================
 * 3) CTA section: "Kostenlose Beratung anfordern"
 * ===================================================================== */
.wtms-cta {
  --wv-red: var(--color-primary, #dc3545);
  --wv-ink: #16191d;
  background: #ffffff;
  padding: 72px 0;
  font-family: var(--font-secondary, "Poppins", sans-serif);
}
.wc-card {
  position: relative;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
  border-radius: 34px;
  padding: 58px 60px;
  box-shadow: 0 40px 80px -44px rgba(16, 19, 24, 0.22);
  overflow: hidden;
}
.wc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ---- Left content ---- */
.wc-badgeline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.wc-hex {
  flex: none;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--wv-red);
  font-size: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 8px 16px rgba(16, 19, 24, 0.12));
}
.wc-line {
  width: 66px;
  height: 2px;
  background: var(--wv-red);
  border-radius: 2px;
}
.wc-linedots {
  display: flex;
  gap: 6px;
}
.wc-linedots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wv-red);
  opacity: 0.7;
}

.wc-title {
  margin: 0 0 20px;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--wv-ink);
}
.wc-title .text-primary {
  color: var(--wv-red) !important;
}
.wc-text {
  margin: 0 0 30px;
  max-width: 520px;
  color: #6a7480;
  font-size: 1.02rem;
  line-height: 1.7;
}

.wc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border-radius: 12px;
  background: var(--wv-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(220, 53, 69, 0.55);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.wc-btn i {
  transition: transform 0.25s;
}
.wc-btn:hover {
  background: var(--color-primary-dark, #c82333);
  color: #fff;
  transform: translateY(-2px);
}
.wc-btn:hover i {
  transform: translateX(5px);
}

.wc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  margin-top: 40px;
}
.wc-feat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wc-fic {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--wv-red);
  font-size: 1.15rem;
  box-shadow: 0 8px 18px -8px rgba(16, 19, 24, 0.2);
}
.wc-feat b {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wv-ink);
  line-height: 1.25;
}

/* ---- Right media ---- */
.wc-media {
  position: relative;
}
.wc-photo {
  position: relative;
  z-index: 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(16, 19, 24, 0.4);
}
.wc-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.12;
}

/* Solid red block peeking on the right */
.wc-deco-red {
  position: absolute;
  z-index: 1;
  right: -26px;
  top: 14%;
  width: 74px;
  height: 58%;
  background: linear-gradient(160deg, #ff1c2e 0%, #c90f1f 100%);
  border-radius: 16px;
}
/* Red outline brackets */
.wc-bracket {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(220, 53, 69, 0.6);
}
.wc-bracket-l {
  left: -24px;
  top: 7%;
  width: 60%;
  height: 78%;
  border-radius: 20px;
}
.wc-bracket-b {
  right: -20px;
  bottom: -26px;
  width: 58%;
  height: 46%;
  border-radius: 24px;
}
/* Dot patterns */
.wc-dots {
  position: absolute;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(120, 130, 140, 0.28) 2px,
    transparent 2.5px
  );
  background-size: 16px 16px;
  pointer-events: none;
}
.wc-dots-tr {
  top: -16px;
  right: 24px;
  width: 118px;
  height: 64px;
}
.wc-dots-br {
  bottom: -26px;
  left: 26px;
  width: 150px;
  height: 74px;
}
/* Red phone hexagon at the photo corner */
.wc-phone {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: -14px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #ff1c2e 0%, #c90f1f 100%);
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 12px 20px rgba(220, 20, 40, 0.4));
  transition: transform 0.2s;
}
.wc-phone:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}

@media (max-width: 991px) {
  .wc-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .wc-card {
    padding: 44px;
  }
  .wc-media {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .wtms-cta {
    padding: 44px 0;
  }
  .wc-card {
    padding: 28px 20px;
    border-radius: 26px;
  }
  .wc-features {
    gap: 16px 20px;
  }
  .wc-feat {
    flex: 1 1 42%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wc-btn,
  .wc-btn i,
  .wc-phone {
    transition: none;
  }
}

/* =====================================================================
 * 4) OnFocus section
 * "Individuelle Lösungen für Unternehmen"
 * ===================================================================== */

.wtms-onfocus {
  --wo-red: #ed2436;
  --wo-red-dark: #c91124;
  --wo-dark: #0d1621;
  --wo-dark-2: #14202d;

  position: relative;
  padding: 56px 24px;
  background: #f7f8fa;
  font-family: var(--font-secondary, "Poppins", sans-serif);
}

/* =========================================================
   CONTAINER
========================================================= */

.wtms-onfocus > .container {
  width: min(1640px, calc(100% - 48px));
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   MAIN CARD
========================================================= */

.wo-card {
  position: relative;
  width: 100%;
  height: clamp(430px, 28vw, 470px);
  overflow: hidden;
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 88% 72%,
      rgba(62, 82, 105, 0.22),
      transparent 44%
    ),
    linear-gradient(135deg, #172331 0%, #111b27 55%, #0c141e 100%);

  box-shadow: 0 28px 70px rgba(15, 23, 32, 0.13);
  isolation: isolate;
}

/* =========================================================
   LAYOUT WRAPPER
========================================================= */

.wo-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =========================================================
   CURVED RED DIVIDER
========================================================= */

.wo-divider {
  position: absolute;
  z-index: 5;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
  pointer-events: none;                     
}

.wo-divider-svg {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wo-dark-shape {
  fill: var(--wo-dark);
}

.wo-divider-path {
  fill: none;

  stroke: var(--wo-red);
  stroke-width: 14;

  stroke-linecap: round;
  stroke-linejoin: round;

  vector-effect: non-scaling-stroke;

  filter: drop-shadow(2px 0 2px rgba(120, 0, 15, 0.18));
}

/* =========================================================
   LEFT MEDIA
========================================================= */

.wo-media {
  position: absolute;
  z-index: 1;

  inset: 0 auto 0 0;

  width: 64%;
  height: 100%;

  background-image:
    linear-gradient(rgba(15, 18, 22, 0.08), rgba(15, 18, 22, 0.18)),
    url("/assets/img/onfocus-video-bg.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 46% center;

  /* WICHTIG */
  clip-path: none;
}

/* Old separate line is not needed anymore */
.wo-red-edge {
  display: none !important;
}

/* =========================================================
   PLAY BUTTON
========================================================= */

.wo-play {
  position: absolute;
  z-index: 6;
  left: 45%;
  top: 47%;
  transform: translate(-50%, -50%);

  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 31px;

  background: linear-gradient(145deg, #ff3346, #dd172b);

  box-shadow:
    0 0 0 13px rgba(238, 31, 49, 0.17),
    0 15px 32px rgba(217, 20, 40, 0.3);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wo-play i {
  margin-left: 4px;
}

.wo-play:hover {
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.06);

  box-shadow:
    0 0 0 17px rgba(238, 31, 49, 0.14),
    0 19px 38px rgba(217, 20, 40, 0.36);
}

/* =========================================================
   PARTNER BADGE
========================================================= */

.wo-partner {
  position: absolute;
  z-index: 6;
  left: 38px;
  bottom: 34px;

  min-width: 260px;
  padding: 13px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: 15px;
  color: #ffffff;

  background: rgba(13, 22, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.wo-partner img {
  flex: none;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.wo-partner div {
  display: flex;
  flex-direction: column;
}

.wo-partner b {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.wo-partner span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.3;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.wo-content {
  position: absolute;

  z-index: 4;

  top: 0;
  right: 0;

  width: 44%;
  height: 100%;

  padding: 42px 68px 42px 54px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #fff;
}

/* =========================================================
   EYEBROW
========================================================= */

.wo-eyebrow {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;

  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.wo-eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  border-radius: 10px;
  background: var(--wo-red);
}

/* =========================================================
   TITLE
========================================================= */

.wo-title {
  max-width: 620px;
  margin: 0 0 18px;

  color: #ffffff;
  font-size: clamp(35px, 2.7vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.15px;
  text-wrap: balance;
}

.wo-title .text-primary {
  color: var(--wo-red) !important;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.wo-text {
  max-width: 590px;
  margin: 0 0 23px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

/* =========================================================
   CHECK LIST
========================================================= */

.wo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;

  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.wo-list li {
  display: flex;
  align-items: center;
  gap: 13px;

  color: rgba(255, 255, 255, 0.93);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
}

/* =========================================================
   CHECK ICON
========================================================= */

.wo-check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1.7px solid var(--wo-red);
  border-radius: 50%;

  color: var(--wo-red);
  font-size: 13px;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.wo-btn {
  width: fit-content;
  min-width: 215px;
  height: 54px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;

  font-size: 14.5px;
  font-weight: 700;

  background: linear-gradient(135deg, #f62b3f, #d9162a);

  box-shadow: 0 14px 30px rgba(235, 35, 54, 0.26);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.wo-btn i {
  transition: transform 0.25s ease;
}

.wo-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(235, 35, 54, 0.34);
}

.wo-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   RIGHT BACKGROUND DECORATION
========================================================= */

.wo-content::after {
  content: "";
  position: absolute;
  z-index: -1;

  width: 510px;
  height: 510px;

  right: -225px;
  bottom: -255px;

  border-radius: 50%;
  opacity: 0.11;

  border: 1px solid rgba(255, 255, 255, 0.24);

  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.02),
    0 0 0 76px rgba(255, 255, 255, 0.016),
    0 0 0 114px rgba(255, 255, 255, 0.012);

  pointer-events: none;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {
  .wo-card {
    height: 470px;
  }

  .wo-content {
    padding-left: 58px;
    padding-right: 70px;
  }

  .wo-title {
    font-size: 48px;
  }
}

/* =========================================================
   LAPTOP / SMALL DESKTOP
========================================================= */

@media (max-width: 1199px) {
  .wtms-onfocus > .container {
    width: min(1100px, calc(100% - 32px));
  }

  .wo-card {
    height: clamp(400px, 43vw, 440px);
  }

  .wo-media {
    width: 56.6%;
  }

  .wo-content {
    width: 45%;
    padding: 34px 34px 34px 40px;
  }

  .wo-title {
    font-size: clamp(31px, 3.3vw, 38px);
    margin-bottom: 14px;
  }

  .wo-text {
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .wo-list {
    gap: 11px;
    margin-bottom: 20px;
  }

  .wo-list li {
    font-size: 13px;
  }

  .wo-check {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 11px;
  }

  .wo-btn {
    height: 48px;
    min-width: 185px;
    font-size: 13px;
  }

  .wo-play {
    width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .wo-partner {
    min-width: 220px;
    left: 26px;
    bottom: 24px;
    padding: 10px 14px;
  }

  .wo-partner img {
    width: 44px;
    height: 44px;
  }

  .wo-partner b {
    font-size: 15px;
  }

  .wo-partner span {
    font-size: 10px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .wtms-onfocus {
    padding: 42px 16px;
  }

  .wtms-onfocus > .container {
    width: 100%;
  }

  .wo-card {
    height: 400px;
  }

  .wo-media {
    width: 57%;
  }

  .wo-content {
    width: 44%;
    padding: 30px 26px 30px 30px;
  }

  .wo-eyebrow {
    font-size: 9px;
  }

  .wo-title {
    font-size: 30px;
  }

  .wo-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .wo-list li {
    font-size: 11.5px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .wtms-onfocus {
    padding: 36px 15px;
  }

  .wtms-onfocus > .container {
    width: 100%;
  }

  .wo-card {
    height: auto;
    border-radius: 20px;
  }

  .wo-grid {
    height: auto;
  }

  .wo-divider {
    display: none;
  }

  .wo-media {
    position: relative;
    width: 100%;
    height: 360px;
    min-height: 360px;

    clip-path: none;
    background-position: center;
  }

  .wo-play {
    left: 50%;
    top: 48%;
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .wo-partner {
    left: 20px;
    bottom: 20px;
    min-width: 215px;
    padding: 10px 14px;
  }

  .wo-content {
    position: relative;
    width: 100%;
    height: auto;
    padding: 42px 28px 46px;
  }

  .wo-eyebrow {
    font-size: 10px;
  }

  .wo-title {
    max-width: 500px;
    font-size: clamp(30px, 8vw, 38px);
  }

  .wo-text {
    font-size: 14px;
  }

  .wo-list {
    gap: 13px;
    margin-bottom: 28px;
  }

  .wo-list li {
    font-size: 14px;
  }

  .wo-check {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .wo-btn {
    height: 52px;
    min-width: 210px;
    font-size: 14px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .wo-media {
    height: 310px;
    min-height: 310px;
  }

  .wo-partner {
    left: 14px;
    bottom: 14px;
    min-width: 190px;
  }

  .wo-partner img {
    width: 40px;
    height: 40px;
  }

  .wo-content {
    padding: 36px 20px 40px;
  }

  .wo-title {
    font-size: 29px;
  }

  .wo-text {
    font-size: 13px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .wo-play,
  .wo-btn,
  .wo-btn i {
    transition: none;
  }
}
