/* ============================================================
   OPMI – Design System & Global Styles
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800;900&family=Open+Sans:wght@400;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #1A325D;
  --accent: #F6921E;
  --secondary: #30A826;
  --bg: #F0F0F0;
  --white: #FFFFFF;
  --dark-text: #333333;
  --light-text: #F0F0F0;
  --border: rgba(26, 50, 93, 0.15);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-logo .logo-shield {
  width: 42px;
  height: 42px;
}

.nav-logo span {
  max-width: 140px;
}

/* Desktop menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a.active-link::after {
  width: calc(100% - 1.8rem);
}

.nav-links a:hover {
  color: var(--accent);
}

/* Language toggle */
.lang-toggle {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  margin-left: 0.5rem;
}

.lang-toggle:hover {
  background: var(--primary);
  color: var(--white);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* ── Dropdown nav items (desktop) ─────────────────────────── */
.nav-item {
  position: relative;
}

.nav-item > .nav-dropdown-toggle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  padding: 0.5rem 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
  letter-spacing: 0.06em;
  /* text-transform set to match links – NOT uppercase */
  position: relative;
}

.nav-item > .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-item:hover > .nav-dropdown-toggle::after,
.nav-item.active > .nav-dropdown-toggle::after {
  width: calc(100% - 1.8rem);
}

.nav-item:hover > .nav-dropdown-toggle,
.nav-item.active > .nav-dropdown-toggle {
  color: var(--accent);
}

.nav-dropdown-toggle .caret {
  display: inline-block;
  transition: transform 0.22s ease;
  font-size: 0.75rem;
  line-height: 1;
}

.nav-item:hover > .nav-dropdown-toggle .caret {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-bottom: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 0.25rem 0 0.5rem;
  z-index: 200;
}

.nav-item:hover > .nav-dropdown {
  display: block;
}

.nav-dropdown a,
.nav-dropdown span.nav-disabled {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--primary);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown a:hover {
  color: var(--accent);
  background: rgba(246, 146, 30, 0.06);
}

.nav-dropdown span.nav-disabled {
  color: rgba(26, 50, 93, 0.4);
  cursor: default;
  pointer-events: none;
}

/* ── Mobile sub-menus ────────────────────────────────────── */
.nav-mobile-item {
  border-bottom: 1px solid var(--border);
}

.nav-mobile-item:last-child {
  border-bottom: none;
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  padding: 0.65rem 0;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-toggle .plus-icon {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.22s ease;
  font-style: normal;
}

.nav-mobile-item.open .nav-mobile-toggle .plus-icon {
  transform: rotate(45deg);
}

.nav-mobile-sub {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  padding-bottom: 0.4rem;
}

.nav-mobile-item.open .nav-mobile-sub {
  display: flex;
}

.nav-mobile-sub a,
.nav-mobile-sub span.nav-disabled {
  padding: 0.45rem 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-mobile-sub a:hover {
  color: var(--accent);
}

.nav-mobile-sub span.nav-disabled {
  color: rgba(26, 50, 93, 0.4);
  pointer-events: none;
}

.nav-mobile a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}



/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(246, 146, 30, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-inner {
    padding: 5rem 2rem;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    text-align: left;
  }
}



.hero-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(246, 146, 30, 0.1);
  border: 1px solid rgba(246, 146, 30, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.61rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.73rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Shield area */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}

/* Elliptical floating shadow BELOW the shield */
.shield-container::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22) 0%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}

/* Shield floats and shadow pulses in sync */
.shield-wrap {
  animation: shieldFloat 4s ease-in-out infinite;
  max-width: 400px;
  width: 100%;
  display: block;
}

/* Shadow shrinks & fades as shield rises, grows as it descends */
.shield-container::after {
  animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shieldFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scaleX(0.72);
    opacity: 0.55;
  }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PM SKIPPER DARK SECTION
   ============================================================ */
.skipper-section {
  background: var(--primary);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.skipper-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
}

@media (min-width: 992px) {
  .skipper-inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.skipper-visual {
  position: relative;
  width: 100%;
  display: flex;
}

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

.skipper-badge-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(40%, 25%);
  z-index: 10;
}

.skipper-badge {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.skipper-content {
  padding: 4rem 3rem 4rem 5rem;
  align-self: center;
}

.skipper-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.skipper-content h2 .highlight {
  color: var(--accent);
}

.skipper-sub {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.skipper-pillars {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */
.workflow-section {
  background: var(--white);
}

.workflow-diagram {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
}

.workflow-step {
  background: var(--white);
  border: 2.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  width: 220px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(26, 50, 93, 0.07);
}

.workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.workflow-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}

.ws-strategy .workflow-step-icon {
  background: rgba(26, 50, 93, 0.1);
}

.ws-technical .workflow-step-icon {
  background: rgba(246, 146, 30, 0.1);
}

.ws-gtm .workflow-step-icon {
  background: rgba(48, 168, 38, 0.1);
}

.workflow-step h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.workflow-step ul {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: var(--primary);
}

.workflow-arrow svg {
  width: 28px;
}

.workflow-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 2rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Cycle arrow (top arc) */
.workflow-cycle {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.workflow-arc {
  width: 100%;
  max-width: 700px;
  margin: 0 auto -2px;
  display: block;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: var(--bg);
}

.why-headline-large {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(26, 50, 93, 0.06);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(246, 146, 30, 0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card-icon-blue {
  background: rgba(26, 50, 93, 0.1);
  color: var(--primary);
}

.card-icon-orange {
  background: rgba(246, 146, 30, 0.12);
  color: var(--accent);
}

.card-icon-green {
  background: rgba(48, 168, 38, 0.1);
  color: var(--secondary);
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}



/* ============================================================
   STRATEGO SECTION
   ============================================================ */
.stratego-section {
  background: var(--white);
}

.stratego-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 1.5rem;
}

@media (min-width: 992px) {
  .stratego-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 5rem;
    padding: 6rem 2rem;
  }
}

.stratego-visual {
  background: linear-gradient(135deg, #1A325D 0%, #243f75 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stratego-logo-text {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stratego-logo-text span {
  color: var(--accent);
}

.stratego-tagline {
  color: rgba(240, 240, 240, 0.7);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-style: italic;
}

.stratego-features {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stratego-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
}

.stratego-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(26, 50, 93, 0.05);
  transition: all var(--transition);
}

.partner-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(246, 146, 30, 0.4);
}

.partner-flag {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.partner-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.partner-location {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 0.6rem;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.partner-tag {
  background: rgba(26, 50, 93, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   CERTIFICATION PAGE
   ============================================================ */
.cert-levels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .cert-levels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cert-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.cert-card.foundation::before {
  background: var(--secondary);
}

.cert-card.practitioner::before {
  background: var(--accent);
}

.cert-card.skipper::before {
  background: var(--primary);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.cert-level-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cert-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.cert-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.page-hero .section-label {
  color: var(--accent);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   PM SKIPPER PAGE
   ============================================================ */
.pmskipper-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 992px) {
  .pmskipper-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 1.25rem 2rem 2.5rem;
  border-radius: 0 !important;  /* Keine Rundung – scharfe, klare Kacheln */
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pillar-card.p-strategy {
  background: var(--primary);
}

.pillar-card.p-technical {
  background: var(--accent);
}

.pillar-card.p-gtm {
  background: var(--secondary);
}

.pillar-card .pillar-icon {
  font-size: 4rem;              /* Verbesserung 2: deutlich grösser */
  margin-bottom: 0.5rem;        /* Verbesserung 3: kleinerer Abstand Icon → Titel */
  text-align: center;
}

.pillar-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;            /* Verbesserung 5: grösser, mehr Gewicht */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;       /* Mehr Luft zwischen Titel und Fliesstext */
  text-align: center;
}

.pillar-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.65;
  text-align: left;             /* Verbesserung 4: linksbündig */
}

/* ============================================================
   STANDARD PAGE
   ============================================================ */
.standard-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.standard-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .standard-step {
    grid-template-columns: auto 1fr;
  }
}

.standard-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .standard-step-num {
    margin: 0;
  }
}

.sn-1 {
  background: var(--primary);
}

.sn-2 {
  background: var(--accent);
}

.sn-3 {
  background: var(--secondary);
}

.standard-step-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.standard-step-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* ============================================================
   STRATEGO PAGE
   ============================================================ */
.stratego-page-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #243f75 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--white);
  text-align: center;
}

.stratego-page-logo {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.stratego-page-logo span {
  color: var(--accent);
}

.stratego-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .stratego-process {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: #1A325D;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1A325D;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-text {
    order: 1;
  }

  .shield-wrap {
    max-width: 60%;
  }

  .skipper-visual {
    min-height: 280px;
  }

  .skipper-content {
    padding: 3rem 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .shield-wrap {
    max-width: 75%;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .workflow-diagram {
    flex-direction: column;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .workflow-step {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   PM SKIPPER EXTRAS
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.btn-toggle-more {
  background: transparent;
  color: #F6921E;
  border: 1px solid #F6921E;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 2rem;
  align-self: flex-start;
  transition: all var(--transition);
}

.btn-toggle-more:hover {
  background: #F6921E;
  color: var(--white);
}

.hidden-item {
  display: none !important;
}

.shown-item {
  display: list-item !important;
}

.skipper-badge-wrap-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

/* ─────────────────────────────────────────
   NAVY-SEKTION: pm-surface-section (v2.3)
───────────────────────────────────────── */

.pm-surface-section {
  background-color: #1A325D;
  padding: 100px 24px;
  text-align: center;
}

.pm-surface-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Eyebrow */
.pm-surface-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F6921E;
  margin-bottom: 16px;
}

/* Headline */
.pm-surface-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 24px;
}

/* Subtext */
.pm-surface-subtext {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 40px;
}

/* Button */
.pm-surface-btn {
  display: inline-block;
  background-color: #F6921E;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.pm-surface-btn:hover,
.pm-surface-btn:focus {
  background-color: #d4790f;
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}

/* ─────────────────────────────────────────
   RESPONSIVE – Mobile
───────────────────────────────────────── */

@media (max-width: 768px) {
  .pm-surface-section {
    padding: 60px 20px;
  }

  .pm-surface-headline {
    font-size: 28px;
  }

  .pm-surface-subtext {
    font-size: 16px;
  }

  .pm-surface-btn {
    font-size: 14px;
    padding: 16px 28px;
    width: 100%;
    text-align: center;
  }
}
/* Alle Icons auf der PM Skipper Seite */
.pm-skipper-page i[class*="fa-"] {
  display: inline-block;
  line-height: 1;
}

.domain-card .icon i {
  font-size: 72px; /* Icons deutlich grösser – mindestens doppelt so gross – führen die Kachel visuell */
  color: #FFFFFF;
}

.department-card .icon i {
  font-size: 40px;
  color: #F6921E;
}

@media (max-width: 768px) {
  .domain-card .icon i,
  .department-card .icon i {
    font-size: 56px; /* Mobile: auch deutlich grösser */
  }
}
/* ─────────────────────────────────────────
   HERO-SEKTION (v2.4 / Hotfix v2.4.1)
───────────────────────────────────────── */

/* Overflow Fix – verhindert horizontale Scrollbar */
body {
  overflow-x: hidden;
}

/* Overflow Fix – verhindert horizontale Scrollbar */
body {
  overflow-x: hidden;
}

/* Sektion – volle Breite, solides Navy als Basis */
.pm-hero-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1A325D; /* Solides Navy – kein Foto darunter */
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Schicht 1 – Foto: nur rechte 55% der Sektion */
.pm-hero-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55%; /* Foto deckt nur die rechte Hälfte ab */
  background-size: cover;
  background-position: left 15%; /* Gesicht im linken Bereich des Fotos → erscheint in der rechten Hälfte der Sektion */
  background-repeat: no-repeat;
  z-index: 0;
}

/* Schicht 2 – Verlauf: Navy → transparent, beginnt erst bei 55% */
.pm-hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%; /* Übernimmt erst ab 45% → Verlauf startet bei ~55% der Viewport-Breite */
  right: 0;
  background: linear-gradient(
    to right,
    #1A325D 0%,             /* Linke Kante des Overlays: volldeckend Navy */
    rgba(26, 50, 93, 0.4) 25%,   /* Weicher Übergang */
    rgba(26, 50, 93, 0) 60%      /* Ab ~70% Viewport: Foto vollständig sichtbar */
  );
  z-index: 1;
}

/* Schicht 3 – Text: linksbündig, bleibt links der Mitte */
.pm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 48%;
  padding: 128px 60px 80px; /* 128px oben = Nav (~80px) + 48px Mindestabstand */
}

/* Eyebrow */
.pm-hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F6921E;
  margin-bottom: 24px;
}

/* Headline */
.pm-hero-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 32px;
}

/* Body */
.pm-hero-body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 40px;
}

/* Button */
.pm-hero-btn {
  display: inline-block;
  background-color: #F6921E;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.pm-hero-btn:hover,
.pm-hero-btn:focus {
  background-color: #d4790f;
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}

/* ─────────────────────────────────────────
   RESPONSIVE – Tablet
───────────────────────────────────────── */

@media (max-width: 1024px) {
  .pm-hero-section {
    min-height: 500px;
  }

  .pm-hero-photo {
    width: 50%;
  }

  .pm-hero-inner {
    padding: 60px 40px;
    max-width: 55%;
  }

  .pm-hero-headline {
    font-size: 44px;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE – Mobile
───────────────────────────────────────── */

/* Mobile: zwei saubere Blöcke übereinander */
@media (max-width: 768px) {
  .pm-hero-section {
    flex-direction: column;
    min-height: auto;
    width: 100%;
    left: 0;
    transform: none;
  }

  /* Foto-Block unterhalb des Textes auf Mobile */
  .pm-hero-photo {
    position: relative;
    width: 100%;
    height: 400px;
    background-position: center 15%;
    order: 2;
  }

  /* Overlay verbirgt sich auf Mobile */
  .pm-hero-overlay {
    display: none;
  }

  .pm-hero-inner {
    padding: 60px 20px;
    max-width: 100%;
    width: 100%;
    order: 1;
  }

  .pm-hero-headline {
    font-size: 36px;
  }

  .pm-hero-body {
    font-size: 16px;
  }

  .pm-hero-btn {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .skipper-why-grid {
    flex-direction: column !important;
    text-align: center;
  }
  .btn-toggle-more {
    margin-top: 1.5rem;
    align-self: center;
  }
}

/* ══ DIAGNOSE + WORKFLOW SEKTION (v3.8) ══════════════════════════════════ */
.diagnose-workflow-section {
  background-color: #F0F0F0;
  padding: 100px 24px 80px;
  text-align: center;
}

.diagnose-workflow-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Diagnose Eyebrow ── */
.diagnose-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F6921E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

/* ── Diagnose Sätze ── */
.diagnose-satz {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1A325D;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Abschlusszeile ── */
.diagnose-abschluss {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #30A826;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Trennlinie ── */
.section-divider {
  width: 60px;
  height: 3px;
  background: #F6921E;
  margin: 64px auto;
  border-radius: 2px;
}

/* ── Workflow Eyebrow ── */
.workflow-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F6921E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ── Workflow Titel ── */
.workflow-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #1A325D;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 8px;
}

/* ── Workflow Untertitel ── */
.workflow-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── Iterations-Pfeil ── */
.iteration-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.iteration-arrow::before,
.iteration-arrow::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: #9CA3AF;
}

/* ── Workflow Bild ── */
.workflow-image-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.workflow-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CTA ── */
.workflow-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1A325D;
  text-decoration: none;
  padding: 13px 28px;
  border: 1.5px solid #1A325D;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.workflow-cta:hover {
  color: #F6921E;
  border-color: #F6921E;
}

@media (max-width: 1024px) {
  .workflow-title {
    font-size: 36px;
    white-space: normal;
  }
}

/* ══ MOBILE ══ */
@media (max-width: 768px) {
  .diagnose-workflow-section {
    padding: 64px 20px;
  }
  .diagnose-eyebrow {
    margin-bottom: 32px;
  }
  .diagnose-satz {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .diagnose-abschluss {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .section-divider {
    margin: 48px auto;
  }
  .workflow-title {
    font-size: 26px;
    white-space: normal;
  }
  .workflow-image-wrapper {
    overflow-x: auto;
  }
  .workflow-image-wrapper img {
    width: auto;
    min-width: 800px;
    height: auto;
  }
}

/* ── Download-Karte ── */
.workflow-download-card {
  padding: 0;
}

.workflow-download-inner {
  max-width: 1200px;
  margin: 48px auto 0;
  background: #FFFFFF;
  border-top: 3px solid #F6921E;
  border-radius: 0 0 8px 8px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
}

.workflow-download-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-download-text {
  flex: 1;
  text-align: left;
}

.workflow-download-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #F6921E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px 0;
}

.workflow-download-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1A325D;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.workflow-download-sub {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}

.workflow-download-btn {
  flex-shrink: 0;
  display: inline-block;
  background: #F6921E;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.1s ease;
}

.workflow-download-btn:hover {
  background: #1A325D;
  transform: translateY(-1px);
}

.iteration-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  color: #6B7280;
  font-style: italic;
}

@media (max-width: 767px) {
  .workflow-download-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    margin-top: 32px;
    gap: 20px;
  }
  .workflow-download-text {
    text-align: center;
  }
  .workflow-download-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Kontrollierter Umbruch in der Abschlusszeile ── */
.diagnose-break {
  display: block;
}

@media (max-width: 768px) {
  .diagnose-break {
    display: none;
  }
}

/* ══ WIE MAN EINER WIRD – PM Skipper Seite (v3.14) ══════════════════════ */
.wie-man-section {
  background-color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.wie-man-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.wie-man-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F6921E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.wie-man-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #1A325D;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 40px;
}

.wie-man-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 24px;
}

.wie-man-text--last {
  margin-bottom: 48px;
}

.wie-man-image-wrapper {
  max-width: 860px;
  margin: 0 auto 48px;
  width: 100%;
  background: #F0F0F0;
  padding: 24px;
  border-radius: 6px;
}

.wie-man-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.wie-man-closing {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1A325D;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

.wie-man-cta {
  display: inline-block;
  background: #F6921E;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.wie-man-cta:hover {
  background: #1A325D;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .wie-man-section {
    padding: 60px 0;
  }
  .wie-man-headline {
    font-size: 32px;
  }
  .wie-man-text {
    font-size: 16px;
  }
  .wie-man-closing {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .wie-man-section {
    padding: 48px 24px;
  }
  .wie-man-headline {
    font-size: 28px;
  }
  .wie-man-text {
    font-size: 15px;
  }
}

/* ============================================================
   VERGLEICHSGRAFIK OPMS vs. SCRUM
   ============================================================ */

.wrapper {
  max-width: 960px;
  margin: 0 auto;
}

/* Headline */
.wrapper .headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 28px);
  color: #1A325D;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

/* Tabelle */
.wrapper .table-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.wrapper table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Spaltenbreiten */
.wrapper col.c-left  { width: 44%; }
.wrapper col.c-mid   { width: 12%; }
.wrapper col.c-right { width: 44%; }

/* ── HEADER ── */
.wrapper thead tr th {
  padding: 28px 20px;
  vertical-align: middle;
}

.wrapper th.h-left {
  background: #1A325D;
  text-align: center;
}
.wrapper th.h-left .sys, .wrapper th.h-right .sys {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.wrapper th.h-right .sys {
  font-weight: 400;
}
.wrapper th.h-left .sub, .wrapper th.h-right .sub {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(255,255,255,0.82);
  display: block;
}

.wrapper th.h-mid {
  background: #F6921E;
  text-align: center;
  vertical-align: middle;
}
.wrapper th.h-mid .eq {
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.wrapper th.h-mid .vs {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

.wrapper th.h-right {
  background: #6B7280;
  text-align: center;
}

/* ── DATENZEILEN ── */
.wrapper tbody tr td {
  padding: 22px 24px;
  vertical-align: middle;
  border-bottom: 1px solid #E5E7EB;
}
.wrapper tbody tr:last-child td { border-bottom: none; }

.wrapper tbody tr:nth-child(odd)  td.d-left,
.wrapper tbody tr:nth-child(odd)  td.d-right { background: #ffffff; }
.wrapper tbody tr:nth-child(even) td.d-left,
.wrapper tbody tr:nth-child(even) td.d-right { background: #F9FAFB; }

/* Ergebnis-Zeile */
.wrapper tbody tr.result td.d-left,
.wrapper tbody tr.result td.d-right {
  background: #FFF4E5 !important;
  border-top: 2.5px solid #F6921E;
  border-bottom: none;
}

.wrapper td.d-left {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 19px);
  color: #1A325D;
  line-height: 1.45;
}
.wrapper tbody tr.result td.d-left {
  font-weight: 900;
  font-size: clamp(17px, 2vw, 21px);
}

.wrapper td.d-mid {
  background: #F6921E;
  text-align: center;
  vertical-align: middle;
  padding: 16px 8px;
}
.wrapper td.d-mid .lbl {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 5px;
}
.wrapper td.d-mid .eq {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.wrapper tbody tr.result td.d-mid .lbl { font-size: 12px; }
.wrapper tbody tr.result td.d-mid .eq  { font-size: clamp(22px, 2.6vw, 30px); }

.wrapper td.d-right {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 17px);
  color: #6B7280;
  line-height: 1.45;
}
.wrapper tbody tr.result td.d-right {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #555555;
}

/* Footer */
.wrapper .footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #6B7280;
  opacity: 0.7;
}

/* ── MOBILE UND TABLET ── */
@media (max-width: 768px) {
  .wrapper col.c-mid { width: 18%; }
  .wrapper col.c-left, .wrapper col.c-right { width: 41%; }
  .wrapper thead tr th { padding: 18px 10px; }
  .wrapper tbody tr td { padding: 16px 10px; }
}

/* ============================================================
   QUOTE CARDS (Zitatskarten v2.0)
   ============================================================ */
.quote-section {
  background: #1B2A4A;
  padding: 80px 20px;
}

.quote-section-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-grid--single {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.quote-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #F6921E;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.quote-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1B2A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F6921E;
  flex-shrink: 0;
  text-transform: uppercase;
}

.quote-meta {
  display: flex;
  flex-direction: column;
}

.quote-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #1A325D;
  margin-bottom: 4px;
}

.quote-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.4;
}

.quote-text {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #1A325D;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .quote-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .quote-grid {
    gap: 16px;
  }
}

  @media (max-width: 600px) {
    .quote-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  
/* ============================================================
   SEKTION WAHRHEIT (pm-skipper.html)
   ============================================================ */
.section-wahrheit {
  background-color: #FFFFFF;
}

.section-wahrheit__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.section-wahrheit__container .eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F6921E;
  margin-bottom: 12px;
}

.section-wahrheit__headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1A325D;
  margin-bottom: 24px;
  line-height: 1.15;
}

.section-wahrheit__quote-wrapper {
  margin-bottom: 32px;
}

.section-wahrheit__quote {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: #1A325D;
  margin: 0 0 8px 0;
}

.section-wahrheit__quote-author {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.section-wahrheit__subtext {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-wahrheit__container {
    max-width: 100%;
    padding: 60px 32px;
  }
}

@media (max-width: 375px) {
  .section-wahrheit__container {
    padding: 48px 20px;
  }
}

/* ============================================================
   KORREKTUREN PM SKIPPER v1.0
   ============================================================ */
.hero-textlink {
  color: #F6921E;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}

.hero-textlink:hover {
  text-decoration: underline;
}

.domaenen-subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #333333 !important; /* !important um inline styles zu überschreiben falls nötig */
}

.workflow-graph-desktop { display: block; }
.workflow-graph-mobile { display: none; }

@media (max-width: 768px) {
  .workflow-graph-desktop { display: none; }
  .workflow-graph-mobile { display: block; }
}

/* ============================================================
   RE-DESIGN STANDARD v1.0
   ============================================================ */

.phase-token {
  display: inline-block;
  border-radius: 20px;
  padding: 4px 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 8px 8px 0;
}
.token-navy {
  background-color: rgba(26, 50, 93, 0.1);
  border: 1px solid #1A325D;
  color: #1A325D;
}
.token-orange {
  background-color: rgba(246, 146, 30, 0.1);
  border: 1px solid #F6921E;
  color: #F6921E;
}
.token-green {
  background-color: rgba(48, 168, 38, 0.1);
  border: 1px solid #30A826;
  color: #30A826;
}


.domain-card-v2 {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.domain-card-v2--navy {
  border-left: 6px solid #1A325D;
  border-top: 1px solid #1A325D;
  border-right: 1px solid #1A325D;
  border-bottom: 1px solid #1A325D;
}
.domain-card-v2--orange {
  border-left: 6px solid #F6921E;
  border-top: 1px solid #F6921E;
  border-right: 1px solid #F6921E;
  border-bottom: 1px solid #F6921E;
}
.domain-card-v2--green {
  border-left: 6px solid #30A826;
  border-top: 1px solid #30A826;
  border-right: 1px solid #30A826;
  border-bottom: 1px solid #30A826;
}

.fact-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.fact-card {
  background-color: #F9FAFB;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.fact-card-icon {
  font-size: 64px;
  color: #1A325D;
  margin-bottom: 16px;
}
.fact-card-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #1A325D;
  margin-bottom: 12px;
}
.fact-card-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================================================
   SECTION: THE THREE DOMAINS (v3.2)
   ============================================================ */
.domains-section {
    background: #FFFFFF;
    padding: 30px 20px 80px;
    font-family: 'Open Sans', sans-serif;
}

.domains-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.domains-eyebrow {
    font-weight: 600;
    font-size: 13px;
    color: #F6921E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.domains-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 42px);
    color: #1A325D;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.domains-intro {
    font-size: 16px;
    color: #333333;
    max-width: 720px;
    margin: 0 auto 64px;
    line-height: 1.65;
}

/* --- Graphics Area --- */
.domains-visual {
    margin-bottom: 24px;
}

/* Desktop Chevron Layout */
.chevron-row {
    display: flex;
    justify-content: center;
    height: 200px;
    margin-bottom: 24px;
}

.chevron-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    transition: transform 0.2s ease;
}

.chevron-item span {
    font-size: 2.2rem;
    z-index: 2;
}

.chevron-gtm span {
    font-size: 1.8rem;
}

.chevron-strat {
    background-color: #1A325D;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%);
    z-index: 3;
}

.chevron-tech {
    background-color: #F6921E;
    margin-left: -40px;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%, 40px 50%);
    z-index: 2;
}

.chevron-gtm {
    background-color: #30A826;
    margin-left: -40px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 40px 50%);
    z-index: 1;
}

/* Desktop Text Columns */
.domains-text-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 64px;
}

.domain-col p {
    font-size: 15px;
    color: #333333;
    line-height: 1.65;
}

.domain-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.col-title-strat { color: #1A325D; }
.col-title-tech { color: #F6921E; }
.col-title-gtm { color: #30A826; }

.col-footnote, .band-footnote {
    font-size: 12px;
    color: #6B7280 !important;
    margin-top: 8px;
    font-style: italic;
}

/* Mobile Band Layout (Default hidden) */
.band-stack {
    display: none;
}

.domains-outro {
    font-size: 18px;
    font-weight: 600;
    color: #1A325D;
    margin-bottom: 16px;
}

.domains-cta {
    font-weight: 700;
    font-size: 18px;
    color: #1A325D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #F6921E;
    margin-top: 32px;
    transition: all 0.2s ease;
}

.domains-cta:hover {
    border-bottom-color: transparent !important;
    border-bottom: 2px solid transparent !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.domains-cta .cta-arrow {
    transition: transform 0.2s ease;
    display: inline-block;
}

.domains-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* --- Responsiveness --- */

@media (max-width: 992px) {
    .chevron-row {
        height: 160px;
    }
    .chevron-item span {
        font-size: 1.8rem;
    }
    .chevron-gtm span {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .domains-text-columns {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .domains-section {
        padding: 48px 20px;
    }
    
    .chevron-row, .domains-text-columns {
        display: none;
    }

    .band-stack {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .band-item {
        padding: 40px 24px;
        text-align: left;
        color: #FFFFFF;
        background-color: transparent;
    }

    .band-item h3 {
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: 22px;
        text-transform: uppercase;
        text-align: left;
        margin-bottom: 12px;
    }

    .band-item p {
        font-size: 14px;
        line-height: 1.65;
        margin: 0;
    }

    .band-footnote {
        color: rgba(255, 255, 255, 0.7) !important;
        display: block;
        margin-top: 12px;
    }

    .band-strat {
        background-color: #1A325D;
        clip-path: none;
        z-index: 1;
    }

    .band-tech {
        background-color: #F6921E;
        color: #1A325D;
        margin-top: 0;
        clip-path: none;
        z-index: 1;
    }

    .band-tech h3, .band-tech p {
        color: #1A325D;
    }

    .band-tech .band-footnote {
        color: rgba(26, 50, 93, 0.7) !important;
    }

    .band-gtm {
        background-color: #30A826;
        margin-top: 0;
        clip-path: none;
        z-index: 1;
    }
}

/* ── Workflow Phase Graphic (v3.8.2 Hotfix) ─────────── */
.workflow-section {
    background-color: #FFFFFF;
    padding: 24px 20px 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .workflow-section { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 767px) {
    .workflow-section { padding-left: 16px; padding-right: 16px; }
}

.workflow-section h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1A325D;
    margin: 0 0 24px;
    text-align: center;
}

.workflow-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
}

/* Hide scrollbar for cleaner look if desired, but keep functionality */
.workflow-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.workflow-scroll-container::-webkit-scrollbar-track {
    background: #e5e7eb;
}
.workflow-scroll-container::-webkit-scrollbar-thumb {
    background: #1A325D;
    border-radius: 3px;
}

.workflow-image {
    min-width: 1100px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.workflow-scroll-hint {
    display: none; /* Hidden on desktop */
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #6B7280;
    margin: 10px 0 0;
}

.workflow-download-link {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1A325D;
    text-decoration: none;
    margin: 20px 0 0;
    transition: color 0.2s ease;
}

.workflow-download-link:hover {
    color: #F6921E;
}

@media (max-width: 767px) {
    .workflow-scroll-hint {
        display: block;
    }
}

/* ============================================================
   COMPARISON GRAPHIC (OPMS vs SCRUM) - v1.0
   ============================================================ */
.comp-graphic-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}

.comp-graphic-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.comp-graphic-table-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.comp-graphic-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comp-graphic-table col.c-left  { width: 44%; }
.comp-graphic-table col.c-mid   { width: 12%; }
.comp-graphic-table col.c-right { width: 44%; }

.comp-graphic-table thead tr th {
  padding: 28px 20px;
  vertical-align: middle;
}

.comp-graphic-table th.h-left {
  background: var(--primary);
  text-align: center;
}
.comp-graphic-table th.h-left .sys {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.comp-graphic-table th.h-left .sub {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(255,255,255,0.82);
  display: block;
}

.comp-graphic-table th.h-mid {
  background: var(--accent);
  text-align: center;
  vertical-align: middle;
}
.comp-graphic-table th.h-mid .eq {
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.comp-graphic-table th.h-mid .vs {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

.comp-graphic-table th.h-right {
  background: #6B7280;
  text-align: center;
}
.comp-graphic-table th.h-right .sys {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.comp-graphic-table th.h-right .sub {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(255,255,255,0.82);
  display: block;
}

.comp-graphic-table tbody tr td {
  padding: 22px 24px;
  vertical-align: middle;
  border-bottom: 1px solid #E5E7EB;
}
.comp-graphic-table tbody tr:last-child td { border-bottom: none; }

.comp-graphic-table tbody tr:nth-child(odd)  td.d-left,
.comp-graphic-table tbody tr:nth-child(odd)  td.d-right { background: #ffffff; }
.comp-graphic-table tbody tr:nth-child(even) td.d-left,
.comp-graphic-table tbody tr:nth-child(even) td.d-right { background: #F9FAFB; }

.comp-graphic-table tbody tr.result td.d-left,
.comp-graphic-table tbody tr.result td.d-right {
  background: #FFF4E5 !important;
  border-top: 2.5px solid var(--accent);
  border-bottom: none;
}

.comp-graphic-table td.d-left {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--primary);
  line-height: 1.45;
}
.comp-graphic-table tbody tr.result td.d-left {
  font-weight: 900;
  font-size: clamp(17px, 2vw, 21px);
}

.comp-graphic-table td.d-mid {
  background: var(--accent);
  text-align: center;
  vertical-align: middle;
  padding: 16px 8px;
}
.comp-graphic-table td.d-mid .lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 5px;
}
.comp-graphic-table td.d-mid .eq {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.comp-graphic-table tbody tr.result td.d-mid .lbl { font-size: 12px; }
.comp-graphic-table tbody tr.result td.d-mid .eq  { font-size: clamp(22px, 2.6vw, 30px); }

.comp-graphic-table td.d-right {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 17px);
  color: #6B7280;
  line-height: 1.45;
}
.comp-graphic-table tbody tr.result td.d-right {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #555555;
}

.comp-graphic-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #6B7280;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .comp-graphic-table col.c-mid { width: 18%; }
  .comp-graphic-table col.c-left, 
  .comp-graphic-table col.c-right { width: 41%; }
  .comp-graphic-table thead tr th { padding: 18px 10px; }
  .comp-graphic-table tbody tr td { padding: 16px 10px; }
}
