/* ==========================================================================
   KOBIL — Company: Gartner (Figma 16578:18628, Frame heißt "mpower", 1280x471)
   Weiße Flush-Fläche: Eyebrow "Trusted by Industry Experts", links H2
   "A Consistent Global Leader at [Gartner-Wortmarke]" (532px), rechts (598px,
   Gap 15) Body L mit Hype-Cycle-Aufzählung (5px-Punkte als Trenner).
   Deko: geblurrter Blau-Glow aus Figma als PNG gebacken (auf Weiß geflattet,
   1218x1510, Frame-Ursprung bei y=-584); läuft im Figma weit über die
   Sektionsgrenzen — overflow:clip schneidet ihn wie die deckenden
   Nachbarflächen im Design.
   Mobile (Figma "Gartner" 16578:18842 in M-Company, 345x379): 60/16-Padding,
   H2 28/36, Wortmarke 108px, Fließtext Inter 14/22 mit Punkt-Trennern.
   ========================================================================== */

.sec-company-gartner {
  position: relative;
  isolation: isolate;
  background: var(--white);
  overflow: clip;
}

/* Figma-Frame ist 1280 breit — zentriert in der 1360er-Sektionsfläche.
   471px Gesamthöhe: 104 + 18 (Eyebrow) + 65 + 122 (Spalten) + 162 */
.sec-company-gartner__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 104px 40px 162px;
}

/* ---- Deko-Glow (hinter dem Inhalt, über der weißen Sektionsfläche) ---- */

.sec-company-gartner__glow {
  position: absolute;
  z-index: -1;
  left: 0;
  top: -584px;
  width: 1218px;
  height: 1510px;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

/* ---- Eyebrow (Figma: Punkt 12px, Gap 10, Tracking 0.48, System/%70) ---- */

.sec-company-gartner .eyebrow {
  display: flex; /* inline-flex würde im 23px-Zeilenkasten des Absatzes reiten */
  gap: 10px;
  letter-spacing: 0.48px;
  color: var(--navy-70);
}

.sec-company-gartner .eyebrow::before {
  width: 12px;
  height: 12px;
}

/* ---- Zwei Spalten: H2 links (532), Aufzählung rechts (598, Gap 15) ---- */

.sec-company-gartner__columns {
  margin-top: 65px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.sec-company-gartner__title {
  flex: 0 1 532px;
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--navy);
}

/* Wortmarke sitzt im Figma bei x=189 / y=56 (Box 50..100) der Titelzeile */
.sec-company-gartner__wordmark {
  display: inline-block;
  width: 164px;
  height: auto;
  margin-left: 5px;
  vertical-align: -5px;
}

/* ---- Rechte Spalte: Intro + Hype-Cycle-Aufzählung (Body L, System/80%) ---- */

.sec-company-gartner__right {
  flex: 0 1 598px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec-company-gartner__intro {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 26px;
  color: var(--navy-80);
}

.sec-company-gartner__intro strong {
  font-weight: 600;
}

.sec-company-gartner__domains {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 6px;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 26px;
  color: var(--navy-80);
}

/* "In-App Protection" füllt die Restzeile — zwingt "Building …" in Zeile 3 */
.sec-company-gartner__item--grow {
  flex: 1 0 0;
  min-width: 1px;
}

.sec-company-gartner__dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}

/* ---- Tablet: Spalten untereinander ---- */

@media (max-width: 1024px) {
  .sec-company-gartner__inner {
    padding: 72px 40px 80px;
  }

  .sec-company-gartner__columns {
    margin-top: 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .sec-company-gartner__title {
    flex: none;
  }

  .sec-company-gartner__br {
    display: none;
  }

  .sec-company-gartner__right {
    flex: none;
    max-width: 640px;
  }

  .sec-company-gartner__item--grow {
    flex: 0 0 auto;
    min-width: 0;
  }
}

/* ---- Mobile (Figma 16578:18842: 60/16-Padding, H2 28/36, Inter 14/22) ---- */

@media (max-width: 768px) {
  .sec-company-gartner__inner {
    padding: 60px 16px;
  }

  /* Glow im Mobile-Frame: 0.5x, Mitte bei (50%, 70px) */
  .sec-company-gartner__glow {
    left: 50%;
    top: -310px;
    width: 613px;
    height: 760px;
    transform: translateX(-50%);
  }

  /* Tagline/mobile: Punkt 8px, Gap 8 */
  .sec-company-gartner .eyebrow {
    gap: 8px;
  }

  .sec-company-gartner .eyebrow::before {
    width: 8px;
    height: 8px;
  }

  .sec-company-gartner__columns {
    margin-top: 24px;
    gap: 16px;
  }

  .sec-company-gartner__title {
    font-size: 28px;
    line-height: 36px;
  }

  /* Wortmarke im Mobile-Figma: 108px, x=131 / y=40.8 (Box 36..72) */
  .sec-company-gartner__wordmark {
    width: 108px;
    margin-left: 4px;
    vertical-align: -5px;
  }

  .sec-company-gartner__intro,
  .sec-company-gartner__domains {
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 22px;
    color: var(--navy-70);
  }

  .sec-company-gartner__domains {
    column-gap: 6px;
    row-gap: 0;
  }

  .sec-company-gartner__dot {
    width: 3px;
    height: 3px;
  }
}
