﻿:root{
  --accent: #0aafc6;
  --accent-2: #2563eb;
  --accent-dark: #0897aa;

  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tertiary: #f9fafb;

  --text: #0f172a;
  --text-secondary: #334155;
  --muted: #475569;

  --border: #e5e7eb;
  --border-light: #f0f1f3;

  --radius: 16px;
  --max-width: 1280px;

  --shadow-sm: 0 1px 3px rgba(2,6,23,.06);
  --shadow-md: 0 12px 28px rgba(2,6,23,.10);
  --shadow-lg: 0 20px 60px rgba(2,6,23,.14);

  --ring: 0 0 0 3px rgba(10,175,198,.22);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 320ms;

  --hero-min-h: 420px;
  --hero-min-h-md: 360px;
  --hero-min-h-sm: 320px;

  --hero-overlay-a: rgba(0,0,0,.58);
  --hero-overlay-b: rgba(37,99,235,.35);

  --glass: rgba(10,175,198, 0.06);
  --glass-border: rgba(10,175,198, 0.25);
}

/* =========================
   BAZA */

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  background:
    radial-gradient(1100px 540px at -10% -12%, rgba(10,175,198,.08), rgba(10,175,198,0) 62%),
    radial-gradient(900px 480px at 108% -6%, rgba(37,99,235,.07), rgba(37,99,235,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
}

@media (prefers-reduced-motion: no-preference){
  .site-header,
  main,
  .site-footer{
    opacity: 0;
    transform: translate3d(18px, 0, 0);
    animation: page-load-enter 480ms var(--ease-out) forwards;
  }

  .site-header{ animation-delay: 20ms; }
  main{ animation-delay: 80ms; }
  .site-footer{ animation-delay: 140ms; }
}

@keyframes page-load-enter{
  from{
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-radius: 12px;
}

p{ margin: 0 0 16px; color: var(--muted); font-weight: 450; }
li{ color: var(--muted); }

h1,h2,h3,h4,h5,h6{
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px){
  .container{ padding: 0 20px; }
}

/* =========================
   REVEAL (wejście przy scroll)
   ========================= */

.reveal-on-scroll{
  opacity: 0;
  transform: translate3d(16px, 0, 0);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   HEADER / NAV
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  isolation: isolate;
  overflow: visible;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  height: 84px;
}

.logo-img{
  height: 84px;
  width: auto;
  max-width: 420px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  row-gap: 8px;
  min-width: 0;
}

.nav a{
  color: var(--text-secondary);
  font-weight: 650;
  font-size: 14px;
  transition: color var(--t-fast) ease;
}

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

.nav-item{ position: relative; }
.nav-item > a{ display: inline-flex; align-items: center; gap: 6px; }

.dropdown-arrow{
  display: inline-block;
  transition: transform var(--t-med) ease;
  font-size: 12px;
  opacity: .9;
}

.nav-item:hover .dropdown-arrow,
.nav-item:focus-within .dropdown-arrow{
  transform: rotate(180deg);
}

.nav-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--t-med) var(--ease-out);
  z-index: 1001;
  overflow: hidden;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.active .nav-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a{
  display: block;
  padding: 12px 14px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  transition: background var(--t-fast) ease, color var(--t-fast) ease, padding var(--t-fast) ease;
}

.nav-dropdown a:hover{
  background: rgba(10,175,198,.08);
  color: var(--accent);
  padding-left: 18px;
}

.nav-dropdown a.current{
  background: rgba(10,175,198,.12);
  color: var(--accent);
  font-weight: 800;
}

/* =========================
   SOLUTION CATEGORY ICONS
   ========================= */

:root{
  --solution-icon-ai: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'4'%20y%3D'4'%20width%3D'16'%20height%3D'16'%20rx%3D'2'%2F%3E%3Crect%20x%3D'9'%20y%3D'9'%20width%3D'6'%20height%3D'6'%2F%3E%3Cpath%20d%3D'M9%201v3M15%201v3M9%2020v3M15%2020v3M20%209h3M20%2014h3M1%209h3M1%2014h3'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-company-health: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M12%202l7%203v6c0%205-3.5%209-7%2011-3.5-2-7-6-7-11V5l7-3z'%2F%3E%3Cpath%20d%3D'm9%2012%202%202%204-4'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-cybersecurity: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'4'%20y%3D'11'%20width%3D'16'%20height%3D'11'%20rx%3D'2'%2F%3E%3Cpath%20d%3D'M8%2011V7a4%204%200%200%201%208%200v4'%2F%3E%3Ccircle%20cx%3D'12'%20cy%3D'16'%20r%3D'1.2'%2F%3E%3Cpath%20d%3D'M12%2017.2V19'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-workforce: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Ccircle%20cx%3D'8'%20cy%3D'8'%20r%3D'3'%2F%3E%3Ccircle%20cx%3D'16'%20cy%3D'8'%20r%3D'3'%2F%3E%3Cpath%20d%3D'M3%2019a5%205%200%200%201%2010%200'%2F%3E%3Cpath%20d%3D'M11%2019a5%205%200%200%201%2010%200'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-esg: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M20%204c-7%200-12%204-12%2010a6%206%200%200%200%2012%200V4z'%2F%3E%3Cpath%20d%3D'M6%2020c2-4%206-7%2010-9'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-anomaly: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'3'%20y%3D'7'%20width%3D'18'%20height%3D'13'%20rx%3D'2'%2F%3E%3Cpath%20d%3D'M9%207V5a3%203%200%200%201%206%200v2'%2F%3E%3Cpath%20d%3D'M3%2012h18'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-idm: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M7%203h8l4%204v14H7z'%2F%3E%3Cpath%20d%3D'M15%203v4h4'%2F%3E%3Cpath%20d%3D'M9%2013h8M9%2017h8M9%209h4'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-it-excellence: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'3'%20y%3D'4'%20width%3D'18'%20height%3D'6'%20rx%3D'2'%2F%3E%3Crect%20x%3D'3'%20y%3D'14'%20width%3D'18'%20height%3D'6'%20rx%3D'2'%2F%3E%3Cpath%20d%3D'M7%207h.01M7%2017h.01M11%207h4M11%2017h4'%2F%3E%3C%2Fsvg%3E");
  --solution-icon-process-mining: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Ccircle%20cx%3D'6'%20cy%3D'6'%20r%3D'2'%2F%3E%3Ccircle%20cx%3D'18'%20cy%3D'6'%20r%3D'2'%2F%3E%3Ccircle%20cx%3D'12'%20cy%3D'18'%20r%3D'2'%2F%3E%3Cpath%20d%3D'M8%206h8M6.9%207.8l4.2%208.4M17.1%207.8l-4.2%208.4'%2F%3E%3C%2Fsvg%3E");
}

.nav-dropdown a[href*="solutions-"],
.impact-solution-links__list a[href*="solutions-"]{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-dropdown a[href*="solutions-"]{
  width: 100%;
  --solution-icon-size: 14px;
}

.impact-solution-links__list a[href*="solutions-"]{
  --solution-icon-size: 16px;
}

#solution-categories .solution-header h3{
  display: flex;
  align-items: center;
  gap: 10px;
  --solution-icon-size: 18px;
}

body.page-case-studies .case-category-heading{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  --solution-icon-size: 18px;
}

body.page-ai .hero-title,
body.page-company-health .hero-title,
body.page-cybersecurity .hero-title,
body.page-workforce .hero-title,
body.page-esg .hero-title,
body.page-anomaly .hero-title,
body.page-idm .hero-title,
body.page-it-excellence .hero-title,
body.page-process-mining .hero-title{
  display: flex;
  align-items: flex-start;
  gap: .36em;
  --solution-icon-size: 0.92em;
}

.nav-dropdown a[href*="solutions-"]::before,
.impact-solution-links__list a[href*="solutions-"]::before,
#solution-categories .solution-header h3::before,
body.page-case-studies .case-category-heading::before,
body.page-ai .hero-title::before,
body.page-company-health .hero-title::before,
body.page-cybersecurity .hero-title::before,
body.page-workforce .hero-title::before,
body.page-esg .hero-title::before,
body.page-anomaly .hero-title::before,
body.page-idm .hero-title::before,
body.page-it-excellence .hero-title::before,
body.page-process-mining .hero-title::before{
  content: "";
  flex: 0 0 auto;
  width: var(--solution-icon-size, 1em);
  height: var(--solution-icon-size, 1em);
  background-color: currentColor;
  -webkit-mask-image: var(--solution-icon);
  mask-image: var(--solution-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

body.page-ai .hero-title::before,
body.page-company-health .hero-title::before,
body.page-cybersecurity .hero-title::before,
body.page-workforce .hero-title::before,
body.page-esg .hero-title::before,
body.page-anomaly .hero-title::before,
body.page-idm .hero-title::before,
body.page-it-excellence .hero-title::before,
body.page-process-mining .hero-title::before{
  margin-top: .15em;
}

.nav-dropdown a[href$="solutions-ai.html"],
.impact-solution-links__list a[href$="solutions-ai.html"],
#solution-ai .solution-header h3,
body.page-ai .hero-title,
body.page-case-studies .case-category-heading[data-en="AI"]{
  --solution-icon: var(--solution-icon-ai);
}

.nav-dropdown a[href$="solutions-company-health.html"],
.impact-solution-links__list a[href$="solutions-company-health.html"],
#solution-company-health .solution-header h3,
body.page-company-health .hero-title,
body.page-case-studies .case-category-heading[data-en="Company Health Check"]{
  --solution-icon: var(--solution-icon-company-health);
}

.nav-dropdown a[href$="solutions-cybersecurity.html"],
.impact-solution-links__list a[href$="solutions-cybersecurity.html"],
#solution-cybersecurity .solution-header h3,
body.page-cybersecurity .hero-title,
body.page-case-studies .case-category-heading[data-en="Cybersecurity"]{
  --solution-icon: var(--solution-icon-cybersecurity);
}

.nav-dropdown a[href$="solutions-workforce.html"],
.impact-solution-links__list a[href$="solutions-workforce.html"],
#solution-workforce .solution-header h3,
body.page-workforce .hero-title,
body.page-case-studies .case-category-heading[data-en="Digital Workforce"]{
  --solution-icon: var(--solution-icon-workforce);
}

.nav-dropdown a[href$="solutions-esg.html"],
.impact-solution-links__list a[href$="solutions-esg.html"],
#solution-esg .solution-header h3,
body.page-esg .hero-title,
body.page-case-studies .case-category-heading[data-en="ESG"]{
  --solution-icon: var(--solution-icon-esg);
}

.nav-dropdown a[href$="solutions-anomaly.html"],
.impact-solution-links__list a[href$="solutions-anomaly.html"],
#solution-anomaly .solution-header h3,
body.page-anomaly .hero-title,
body.page-case-studies .case-category-heading[data-en="Expert Leasing"]{
  --solution-icon: var(--solution-icon-anomaly);
}

.nav-dropdown a[href$="solutions-idm.html"],
.impact-solution-links__list a[href$="solutions-idm.html"],
#solution-idm .solution-header h3,
body.page-idm .hero-title,
body.page-case-studies .case-category-heading[data-en="Intelligent Document Management"]{
  --solution-icon: var(--solution-icon-idm);
}

.nav-dropdown a[href$="solutions-it-excellence.html"],
.impact-solution-links__list a[href$="solutions-it-excellence.html"],
#solution-it-excellence .solution-header h3,
body.page-it-excellence .hero-title,
body.page-case-studies .case-category-heading[data-en="IT Excellence"]{
  --solution-icon: var(--solution-icon-it-excellence);
}

.nav-dropdown a[href$="solutions-process-mining.html"],
.impact-solution-links__list a[href$="solutions-process-mining.html"],
#solution-process-mining .solution-header h3,
body.page-process-mining .hero-title,
body.page-case-studies .case-category-heading[data-en="Process Mining"]{
  --solution-icon: var(--solution-icon-process-mining);
}

/* JĘZYK */
.language-switcher{
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 1002;
}

.mobile-nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}

.mobile-nav-toggle:hover{
  transform: translateY(-1px);
  border-color: rgba(10,175,198,.40);
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.mobile-nav-toggle-box{
  width: 18px;
  display: grid;
  gap: 4px;
}

.mobile-nav-toggle-line{
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--t-fast) ease, opacity var(--t-fast) ease;
}

.site-header.mobile-menu-open .mobile-nav-toggle-line:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}

.site-header.mobile-menu-open .mobile-nav-toggle-line:nth-child(2){
  opacity: 0;
}

.site-header.mobile-menu-open .mobile-nav-toggle-line:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

.lang-btn{
  background: #fff;
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--t-fast) ease;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.lang-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(10,175,198,.45);
  box-shadow: 0 8px 20px rgba(2,6,23,.08);
}

.lang-btn.active-pl{
  background: rgba(10,175,198,.10);
  border-color: rgba(10,175,198,.35);
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease, border-color var(--t-fast) ease;
  will-change: transform;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-nav{
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn-nav:hover{
  border-color: rgba(10,175,198,.35);
  box-shadow: 0 10px 26px rgba(2,6,23,.10);
}

.btn-primary{
  background: var(--accent);
  border-color: rgba(0,0,0,0);
  color: #fff;
  box-shadow: 0 10px 26px rgba(10,175,198,.22);
}

.btn-primary:hover{
  background: var(--accent-dark);
  box-shadow: 0 14px 34px rgba(10,175,198,.28);
}

.btn-link{
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.btn-link:hover{
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.14);
}

.btn-lg{
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 14px;
}

/* =========================
   HERO (wspólny rozmiar dla wszystkich kart) */

.hero{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: var(--hero-min-h);
  display: flex;
  align-items: center;

  padding: 72px 0 84px;
  border-bottom: 1px solid var(--border);

  background: linear-gradient(180deg, rgba(10,175,198,.18) 0%, rgba(10,175,198,.10) 100%);
  color: #fff;
}

.hero::before{
  content: "";
  position: absolute;
  inset: -96px 0;
  z-index: 0;
  background-image:
    linear-gradient(135deg, var(--hero-overlay-a), var(--hero-overlay-b)),
    var(--hero-illustration, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(
    var(--hero-drift-x, 0px),
    calc(var(--hero-parallax-y, 0px) + var(--hero-drift-y, 0px)),
    0
  );
  will-change: transform;
}

.hero > *{ position: relative; z-index: 1; }

.hero--home .hero-home-video{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero--home .hero-home-video video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  display: block;
}

.hero--home::before{
  z-index: 1;
}

.hero--home::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10,175,198,.20) 0%,
    rgba(10,175,198,.34) 100%
  );
}

.hero--home .hero-inner{
  position: relative;
  z-index: 2;
}

.hero-inner{
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.hero-content{
  display: grid;
  gap: 18px;
}

.hero-actions{
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-label{
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .92;
  margin: 0;
}

.hero-title{
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
  color: #fff;
}

.hero-desc{
  font-size: 16px;
  line-height: 1.75;
  opacity: .92;
  margin: 0;
  max-width: 70ch;
  font-weight: 450;
  color: rgba(255,255,255,.92);
}

.hero-badges{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
}

@media (max-width: 992px){
  .hero{ min-height: var(--hero-min-h-md); padding: 56px 0 64px; }
  .hero::before{ transform: none; }
}

@media (max-width: 640px){
  .hero{ min-height: var(--hero-min-h-sm); padding: 48px 0 56px; }
  .hero--home .hero-home-video video{
    transform: none;
  }
}

/* hero grafika per strona */
body.page-home{
  --hero-min-h: clamp(560px, calc(100vw * 3 / 5), 920px);
  --hero-min-h-md: clamp(460px, calc(100vw * 3 / 5), 760px);
  --hero-min-h-sm: clamp(400px, calc(100vw * 3 / 5), 620px);
  --hero-illustration: none;
  --hero-overlay-a: rgba(23,97,176,.58);
  --hero-overlay-b: rgba(44,160,226,.44);
}
body.page-ai{ --hero-illustration: url('../images/backgrounds_hero/AI_Rhenai_website.png'); }
body.page-anomaly{ --hero-illustration: url('../images/backgrounds_hero/DigitalWorkforce_Rhenai_website.png'); }
body.page-esg{ --hero-illustration: url('../images/backgrounds_hero/ESG_Rhenai_website.png'); }
body.page-cybersecurity{ --hero-illustration: url('../images/backgrounds_hero/Cybersecurity_Rhenai_website.png'); }
body.page-workforce{ --hero-illustration: url('../images/backgrounds_hero/DigitalWorkforce_Rhenai_website.png'); }
body.page-idm{ --hero-illustration: url('../images/backgrounds_hero/IntelligentDocumentManagement_Rhenai_website.png'); }
body.page-it-excellence{ --hero-illustration: url('../images/backgrounds_hero/AIExcellence_Rhenai_website.png'); }
body.page-company-health{ --hero-illustration: url('../images/backgrounds_hero/CompanyHealthCheck_Rhenai_website.png'); }
body.page-process-mining{ --hero-illustration: url('../images/backgrounds_hero/ProcessMining_Rhenai_website.png'); }
body.page-about{ --hero-illustration: url('../images/backgrounds_hero/AboutUs_Rhenai_website.png'); }
body.page-solutions{ --hero-illustration: url('../images/backgrounds_hero/Map_Rhenai_website.png'); }
body.page-case-studies{ --hero-illustration: url('../images/backgrounds_hero/Map_Rhenai_website.png'); }
body.page-knowledge{ --hero-illustration: url('../images/backgrounds_hero/Map_Rhenai_website.png'); }
body.page-contact{ --hero-illustration: url('../images/backgrounds_hero/Map_Rhenai_website.png'); }
body.page-home .nav-home{ color: var(--accent); }
body.page-case-studies .nav-case-studies{ color: var(--accent); }
body.page-knowledge .nav-knowledge{ color: var(--accent); }

/* =========================
   KNOWLEDGE ARTICLES
   ========================= */

body.page-knowledge .knowledge-articles-topics{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
}

body.page-knowledge .knowledge-topic{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10,175,198,.28);
  background: rgba(10,175,198,.10);
  color: #0f3e52;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .02em;
}

body.page-knowledge .knowledge-articles-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.page-knowledge .knowledge-article-card{
  margin: 0;
  padding: 20px 20px 18px;
  border-radius: 14px;
  border: 1px solid rgba(10,175,198,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
  display: grid;
  gap: 10px;
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}

body.page-knowledge .knowledge-article-media{
  margin: 0 0 2px;
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(10,175,198,.2);
  background: linear-gradient(180deg, #eef7fd 0%, #deeffb 100%);
}

body.page-knowledge .knowledge-article-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-knowledge .knowledge-article-card:hover{
  transform: translateY(-2px);
  border-color: rgba(10,175,198,.40);
  box-shadow: 0 14px 30px rgba(2,6,23,.12);
}

body.page-knowledge .knowledge-article-meta{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

body.page-knowledge .knowledge-article-category{
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(10,175,198,.12);
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 850;
}

body.page-knowledge .knowledge-article-card h3{
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
  color: var(--text);
}

body.page-knowledge .knowledge-article-card p{
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.72;
}

body.page-knowledge .knowledge-article-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 4px;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(10,175,198,.34);
  background: rgba(10,175,198,.12);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
  width: fit-content;
  transition: transform var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

body.page-knowledge .knowledge-article-link:hover{
  transform: translateY(-1px);
  border-color: rgba(10,175,198,.48);
  background: rgba(10,175,198,.18);
  box-shadow: 0 10px 18px rgba(10,175,198,.14);
}

body.page-knowledge .knowledge-article-content{
  padding-top: 78px;
  padding-bottom: 78px;
}

body.page-knowledge .knowledge-article-sections{
  display: grid;
  gap: 16px;
}

body.page-knowledge .knowledge-article-section{
  scroll-margin-top: 116px;
  border: 1px solid rgba(10,175,198,.24);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: 0 12px 24px rgba(2,6,23,.08);
  padding: 20px;
  display: grid;
  gap: 10px;
}

body.page-knowledge .knowledge-article-section:target{
  border-color: rgba(10,175,198,.58);
  box-shadow: 0 0 0 3px rgba(10,175,198,.16), 0 16px 30px rgba(2,6,23,.12);
}

body.page-knowledge .knowledge-article-section-meta{
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

body.page-knowledge .knowledge-article-section h3{
  margin: 0;
  font-size: 28px;
  line-height: 1.24;
  color: var(--text);
}

body.page-knowledge .knowledge-article-section p{
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.78;
}

body.page-knowledge .knowledge-back-link{
  margin-top: 2px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-knowledge .knowledge-back-link:hover{
  color: var(--accent);
}

/* =========================
   CONTACT FORM
   ========================= */

body.page-contact .contact-layout{
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.35fr);
  gap: 20px;
  align-items: start;
}

body.page-contact .contact-info-stack{
  display: grid;
  gap: 14px;
}

body.page-contact .contact-info-stack .why-card{
  margin: 0;
}

body.page-contact .contact-form-card{
  border: 1px solid rgba(196,242,249,.55);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(10,175,198,.98) 0%, rgba(8,151,170,.96) 100%);
  box-shadow: 0 16px 34px rgba(3,66,74,.28);
  padding: 22px;
}

body.page-contact .contact-form-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.22;
  font-weight: 900;
  color: #f8fcff;
}

body.page-contact .contact-form-lead{
  margin: 0 0 16px;
  color: rgba(233,246,255,.94);
  font-size: 14px;
  line-height: 1.6;
}

body.page-contact .contact-form{
  display: grid;
  gap: 14px;
}

body.page-contact .contact-form-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.page-contact .contact-field{
  display: grid;
  gap: 8px;
}

body.page-contact .contact-field span{
  font-size: 12px;
  font-weight: 800;
  color: rgba(236,248,255,.96);
  letter-spacing: .03em;
  text-transform: uppercase;
}

body.page-contact .contact-field input,
body.page-contact .contact-field textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: #0f172a;
  padding: 11px 12px;
  font: inherit;
  line-height: 1.5;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}

body.page-contact .contact-field textarea{
  resize: vertical;
  min-height: 130px;
}

body.page-contact .contact-field input:hover,
body.page-contact .contact-field textarea:hover{
  border-color: rgba(255,255,255,.8);
}

body.page-contact .contact-field input:focus-visible,
body.page-contact .contact-field textarea:focus-visible{
  outline: none;
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 0 0 3px rgba(181,232,255,.42);
  background: #ffffff;
}

body.page-contact .contact-consent{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: rgba(233,246,255,.94);
  font-size: 13px;
  line-height: 1.5;
}

body.page-contact .contact-consent input{
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #e8f7ff;
}

body.page-contact .contact-form-actions{
  margin-top: 4px;
}

@media (max-width: 900px){
  body.page-knowledge .knowledge-articles-grid{
    grid-template-columns: 1fr;
  }

  body.page-knowledge .knowledge-article-card h3{
    font-size: 20px;
  }

  body.page-knowledge .knowledge-article-content{
    padding-top: 66px;
    padding-bottom: 66px;
  }

  body.page-knowledge .knowledge-article-section h3{
    font-size: 24px;
  }

  body.page-contact .contact-layout{
    grid-template-columns: 1fr;
  }

  body.page-contact .contact-form-row{
    grid-template-columns: 1fr;
  }
}

/* =========================
   CASE STUDIES (accordion + flip cards)
   ========================= */

body.page-case-studies .case-studies-section .section-desc{
  margin-bottom: 28px;
}

body.page-case-studies .case-coming-soon{
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(10,175,198,.18);
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fdff 0%, #f1f9fd 100%);
  box-shadow: var(--shadow-sm);
}

body.page-case-studies .case-coming-soon__intro{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

body.page-case-studies .case-coming-soon__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

body.page-case-studies .case-coming-soon__card{
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(10,175,198,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  display: grid;
  align-content: start;
  gap: 8px;
}

body.page-case-studies .case-coming-soon__card h3{
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 850;
  color: var(--text);
}

body.page-case-studies .case-coming-soon__card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

body.page-case-studies .case-status-pill{
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(16,55,79,.08);
  color: #10374f;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.page-case-studies .case-categories{
  display: grid;
  gap: 14px;
}

body.page-case-studies .case-category{
  border: 1px solid rgba(10,175,198,.26);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

body.page-case-studies .case-category summary{
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #10374f;
}

body.page-case-studies .case-category summary::-webkit-details-marker{
  display: none;
}

body.page-case-studies .case-category summary::marker{
  content: "";
}

body.page-case-studies .case-category summary::after{
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(206,238,248,.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eaf8ff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}

body.page-case-studies .case-category[open] summary::after{
  content: "-";
  background: rgba(206,238,248,.20);
}

body.page-case-studies .case-category summary:hover::after{
  background: rgba(206,238,248,.28);
}

body.page-case-studies .case-category-summary{
  display: grid;
  gap: 4px;
  min-width: 0;
}

body.page-case-studies .case-category-heading{
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  color: #f7fdff;
}

body.page-case-studies .case-category-lead{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 550;
  color: rgba(226,245,255,.86);
}

body.page-case-studies .case-category-content{
  padding: 18px;
  border-top: 1px solid rgba(10,175,198,.18);
  background: #ffffff;
}

body.page-case-studies .case-cards-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

body.page-case-studies .case-flip-card{
  position: relative;
  min-height: 344px;
  perspective: 1200px;
  outline: none;
}

body.page-case-studies .case-flip-card:focus-visible{
  border-radius: 14px;
  box-shadow: var(--ring);
}

body.page-case-studies .case-flip-card__inner{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 344px;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease-out);
}

body.page-case-studies .case-flip-card:hover .case-flip-card__inner,
body.page-case-studies .case-flip-card:focus .case-flip-card__inner,
body.page-case-studies .case-flip-card:focus-within .case-flip-card__inner{
  transform: rotateX(180deg);
}

body.page-case-studies .case-flip-card__face{
  position: absolute;
  inset: 0;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(10,175,198,.26);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
  display: grid;
  align-content: start;
  gap: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

body.page-case-studies .case-flip-card__face--front{
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

body.page-case-studies .case-flip-card__face--back{
  transform: rotateX(180deg);
  background: linear-gradient(160deg, #0d2f4a 0%, #165f85 100%);
  border-color: rgba(111,208,231,.34);
}

body.page-case-studies .case-flip-card__eyebrow{
  margin: 0;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 850;
}

body.page-case-studies .case-flip-card__primary{
  margin: -2px 0 0;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0f607e;
  font-weight: 850;
}

body.page-case-studies .case-flip-card h3{
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--text);
}

body.page-case-studies .case-flip-card__scope{
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--text-secondary);
}

body.page-case-studies .case-flip-card__topic{
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: var(--muted);
}

body.page-case-studies .case-tag-list{
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-case-studies .case-tag{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(16,55,79,.08);
  color: #123952;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
}

body.page-case-studies .case-flip-card__face--back h4{
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(209,243,255,.95);
  font-weight: 850;
}

body.page-case-studies .case-flip-card__face--back p{
  margin: 0;
  color: rgba(235,248,255,.96);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 460;
}

@media (max-width: 768px){
  body.page-case-studies .case-coming-soon{
    padding: 16px;
  }

  body.page-case-studies .case-coming-soon__grid{
    grid-template-columns: 1fr;
  }

  body.page-case-studies .case-category summary{
    padding: 16px;
  }

  body.page-case-studies .case-category-heading{
    font-size: 18px;
  }

  body.page-case-studies .case-category-content{
    padding: 14px;
  }

  body.page-case-studies .case-cards-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (hover: none){
  body.page-case-studies .case-flip-card{
    min-height: 0;
  }

  body.page-case-studies .case-flip-card__inner{
    min-height: 0;
    display: grid;
    gap: 10px;
    transform: none !important;
  }

  body.page-case-studies .case-flip-card__face{
    position: relative;
    inset: auto;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }

  body.page-case-studies .case-flip-card__face--back{
    transform: none;
  }
}

/* =========================
   EXPERT LEASING PAGE
   ========================= */

body.page-anomaly{
  --el-ink: #11283d;
  --el-steel: #2a455d;
  --el-accent: #2f8ec4;
  --el-accent-strong: #74b2db;
  --el-soft: #eef6fc;
  --hero-overlay-a: rgba(7,16,31,.72);
  --hero-overlay-b: rgba(35,95,131,.46);
}

body.page-anomaly .hero-content{
  max-width: 96ch;
}

body.page-anomaly .hero-title{
  max-width: 20ch;
}

body.page-anomaly .hero-desc{
  max-width: 92ch;
}

body.page-anomaly .hero-badges .badge{
  background: rgba(9,23,39,.36);
  border-color: rgba(214,230,247,.44);
}

body.page-anomaly .hero-actions .btn-link{
  background: rgba(255,255,255,.14);
  border-color: rgba(219,236,255,.48);
}

body.page-anomaly .hero-actions .btn-link:hover{
  background: rgba(255,255,255,.22);
}

body.page-anomaly .el-overview{
  background: linear-gradient(180deg, rgba(47,142,196,.18) 0%, rgba(47,142,196,.10) 100%);
  border-top: 1px solid rgba(47,142,196,.32);
  border-bottom: 1px solid rgba(47,142,196,.24);
}

body.page-anomaly .el-overview .impact-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(245,251,255,.98) 100%);
  border-color: rgba(47,142,196,.36);
  box-shadow: 0 16px 30px rgba(17,40,61,.14);
}

body.page-anomaly .el-overview .impact-title{
  color: var(--el-ink);
}

body.page-anomaly .el-overview .impact-sub{
  color: #24465e;
  font-weight: 540;
}

body.page-anomaly .el-how{
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fe 100%);
}

body.page-anomaly .el-how h2,
body.page-anomaly .el-benefits h2,
body.page-anomaly .el-fit h2,
body.page-anomaly .el-options h2,
body.page-anomaly .el-profiles .section-title{
  color: var(--el-ink);
}

.el-steps{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.el-step{
  position: relative;
  overflow: hidden;
  padding: 16px 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(47,142,196,.28);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 10px 22px rgba(17,40,61,.10);
}

.el-step::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--el-accent) 0%, var(--el-accent-strong) 100%);
}

.el-step-no{
  margin: 0 0 8px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #3f78a1 0%, #5a97c2 100%);
  box-shadow: 0 8px 16px rgba(17,40,61,.24);
}

.el-step h3{
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.32;
  color: var(--el-ink);
}

.el-step p{
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
  color: #2b495f;
  font-weight: 520;
}

body.page-anomaly .el-benefits{
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 64%, #f5fafe 100%);
}

.el-benefits-grid{
  margin-top: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.el-benefits-grid .why-card{
  min-height: 156px;
  border-color: rgba(47,142,196,.22);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.el-benefits-grid .why-card h4{
  color: var(--el-ink);
}

.el-benefits-grid .why-card p{
  color: #2d4b62;
  font-weight: 520;
}

.el-result{
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(47,142,196,.30);
  background: linear-gradient(180deg, #eaf5ff 0%, #f3f9ff 100%);
  color: #1d3d54;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 620;
}

.el-result strong{
  color: #0f2f46;
}

body.page-anomaly .el-profiles{
  background: #ffffff;
}

.el-profiles-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.el-profile-card{
  min-height: 220px;
  border-color: rgba(47,142,196,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.el-profile-card h3{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--el-ink);
}

.el-profile-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.el-profile-list li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #2c4960;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 620;
}

.el-profile-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--el-accent);
  box-shadow: 0 0 0 3px rgba(47,142,196,.18);
}

body.page-anomaly .el-fit{
  background: linear-gradient(180deg, #ffffff 0%, var(--el-soft) 100%);
}

.el-fit-list{
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.el-fit-list li{
  position: relative;
  margin: 0;
  padding: 14px 14px 14px 34px;
  border-radius: 14px;
  border: 1px solid rgba(47,142,196,.26);
  background: #ffffff;
  color: #26455b;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 640;
  box-shadow: 0 8px 18px rgba(17,40,61,.08);
}

.el-fit-list li::before{
  content: '';
  position: absolute;
  left: 13px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--el-accent);
  box-shadow: 0 0 0 3px rgba(47,142,196,.17);
}

body.page-anomaly .el-options{
  background: linear-gradient(180deg, #f5fafe 0%, #ffffff 100%);
}

.el-options-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.el-option-card{
  min-height: 230px;
  border-color: rgba(47,142,196,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.el-option-label{
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3f637f;
  font-weight: 850;
}

.el-option-card h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--el-ink);
}

.el-option-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: #2c4a61;
  font-weight: 520;
}

body.page-anomaly .el-cta{
  background: linear-gradient(135deg, rgba(47,142,196,.16) 0%, rgba(255,255,255,.96) 100%);
}

.el-cta-list{
  list-style: none;
  margin: 0 auto 30px;
  padding: 0;
  max-width: 780px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.el-cta-list li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #26475e;
  font-size: 15px;
  line-height: 1.66;
  font-weight: 620;
}

.el-cta-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--el-accent);
  box-shadow: 0 0 0 3px rgba(47,142,196,.18);
}

@media (max-width: 1200px){
  .el-steps{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px){
  .el-benefits-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .el-profiles-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .el-fit-list{
    grid-template-columns: 1fr;
  }

  .el-options-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  body.page-anomaly .el-how,
  body.page-anomaly .el-benefits,
  body.page-anomaly .el-profiles,
  body.page-anomaly .el-fit,
  body.page-anomaly .el-options,
  body.page-anomaly .el-cta{
    padding: 68px 0;
  }

  .el-steps{
    grid-template-columns: 1fr;
  }

  .el-step h3{
    font-size: 16px;
  }

  .el-step p{
    font-size: 14px;
  }

  .el-benefits-grid{
    grid-template-columns: 1fr;
  }

  .el-profiles-grid{
    grid-template-columns: 1fr;
  }

  .el-profile-card{
    min-height: 0;
  }

  .el-option-card h3{
    font-size: 20px;
  }

  .el-cta-list{
    margin-bottom: 24px;
  }
}

/* =========================
   IT EXCELLENCE / AIOPS PAGE
   ========================= */

body.page-it-excellence{
  --aiops-ink: #0f2b40;
  --aiops-accent: #1a86b4;
  --aiops-accent-2: #4eaed8;
  --aiops-soft: #eef7fc;
  --hero-overlay-a: rgba(5,16,30,.72);
  --hero-overlay-b: rgba(21,96,134,.48);
}

body.page-it-excellence .hero-content{
  max-width: 92ch;
}

body.page-it-excellence .hero-title{
  max-width: 18ch;
}

body.page-it-excellence .hero-desc{
  max-width: 80ch;
}

body.page-it-excellence .hero-actions .btn-link{
  background: rgba(255,255,255,.14);
  border-color: rgba(219,236,255,.50);
}

body.page-it-excellence .hero-actions .btn-link:hover{
  background: rgba(255,255,255,.22);
}

body.page-it-excellence .aiops-overview{
  background: linear-gradient(180deg, rgba(26,134,180,.18) 0%, rgba(26,134,180,.10) 100%);
  border-top: 1px solid rgba(26,134,180,.30);
  border-bottom: 1px solid rgba(26,134,180,.24);
}

body.page-it-excellence .aiops-proof{
  padding: 22px 0 24px;
  background: linear-gradient(180deg, rgba(26,134,180,.20) 0%, rgba(26,134,180,.12) 100%);
  border-top: 1px solid rgba(26,134,180,.32);
  border-bottom: 1px solid rgba(26,134,180,.26);
}

body.page-it-excellence .aiops-proof-head{
  margin-bottom: 12px;
}

body.page-it-excellence .aiops-proof-head .impact-title{
  color: var(--aiops-ink);
}

body.page-it-excellence .aiops-proof-head .impact-sub{
  color: #285069;
  font-weight: 540;
}

body.page-it-excellence .aiops-proof-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.page-it-excellence .aiops-proof-panel{
  border-color: rgba(26,134,180,.34);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(243,249,255,.98) 100%);
  box-shadow: 0 14px 28px rgba(15,43,64,.11);
}

body.page-it-excellence .aiops-proof-kicker{
  margin: 0 0 10px;
  color: #21465f;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 880;
}

body.page-it-excellence .aiops-proof-metrics{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.page-it-excellence .aiops-proof-metrics .impact-metric{
  min-height: 106px;
  background: rgba(26,134,180,.08);
  border-color: rgba(26,134,180,.22);
}

body.page-it-excellence .aiops-proof-metrics .impact-value{
  font-size: clamp(30px, 3vw, 42px);
  color: var(--aiops-accent);
}

body.page-it-excellence .aiops-proof-metrics .impact-label{
  color: #22475f;
  font-weight: 760;
}

body.page-it-excellence .aiops-overview .impact-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(245,251,255,.98) 100%);
  border-color: rgba(26,134,180,.34);
  box-shadow: 0 16px 30px rgba(15,43,64,.14);
}

body.page-it-excellence .aiops-overview .impact-title{
  color: var(--aiops-ink);
}

body.page-it-excellence .aiops-overview .impact-sub{
  color: #27465d;
  font-weight: 540;
}

body.page-it-excellence .aiops-overview .impact-sub + .impact-sub{
  margin-top: 10px;
}

body.page-it-excellence .aiops-solutions{
  background: linear-gradient(180deg, #ffffff 0%, #f4fafe 100%);
}

body.page-it-excellence .aiops-solutions-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

body.page-it-excellence .aiops-solutions-grid > .aiops-accordion + .aiops-accordion{
  margin-top: 0;
}

body.page-it-excellence .aiops-instana-metrics{
  margin: 8px 0 22px;
  border: 1px solid rgba(26,134,180,.30);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(241,249,255,.98) 100%);
  box-shadow: 0 12px 24px rgba(15,43,64,.10);
}

body.page-it-excellence .aiops-metrics-title{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2c4d65;
}

body.page-it-excellence .aiops-instana-metrics .impact-grid{
  grid-template-columns: 1fr;
  gap: 12px;
}

body.page-it-excellence .aiops-instana-metrics .impact-metric{
  min-height: 136px;
  border: 1px solid rgba(26,134,180,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

body.page-it-excellence .aiops-instana-metrics .impact-value{
  font-size: clamp(40px, 4.8vw, 58px);
  color: var(--aiops-accent);
}

body.page-it-excellence .aiops-instana-metrics .impact-label{
  color: #1f4560;
  font-weight: 760;
}

body.page-it-excellence .aiops-accordion--instana .aiops-instana-metrics .impact-metric{
  min-height: 84px;
  padding: 10px 10px 8px;
}

body.page-it-excellence .aiops-accordion--instana .aiops-instana-metrics .impact-value{
  font-size: clamp(22px, 2.1vw, 30px);
  margin-bottom: 4px;
}

body.page-it-excellence .aiops-accordion--instana .aiops-instana-metrics .impact-label{
  font-size: 12px;
  line-height: 1.35;
}

body.page-it-excellence .aiops-accordion--instana .aiops-instana-metrics{
  margin: 4px 0 14px;
  padding: 14px 14px 12px;
}

body.page-it-excellence .aiops-accordion--instana .aiops-instana-metrics .impact-grid{
  gap: 8px;
}

body.page-it-excellence .aiops-accordion--instana .aiops-card{
  padding: 18px 16px 14px;
}

body.page-it-excellence .aiops-accordion--instana .aiops-list{
  gap: 8px;
}

body.page-it-excellence .aiops-accordion--instana .aiops-list li{
  font-size: 13px;
  line-height: 1.56;
}

body.page-it-excellence .aiops-accordion--turbonomic .aiops-why-grid{
  grid-template-columns: 1fr;
  gap: 12px;
}

body.page-it-excellence .aiops-accordion--turbonomic .aiops-card{
  padding: 20px 18px 18px;
  min-height: 0;
  box-shadow: 0 8px 18px rgba(15,43,64,.08);
}

body.page-it-excellence .aiops-accordion--turbonomic .aiops-card h4{
  margin: 0 0 8px;
}

body.page-it-excellence .aiops-accordion--turbonomic .aiops-card-intro{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.62;
  color: #244a63;
  font-weight: 540;
}

body.page-it-excellence .aiops-accordion--turbonomic .aiops-list{
  gap: 8px;
}

body.page-it-excellence .aiops-accordion--turbonomic .aiops-list li{
  line-height: 1.6;
}

body.page-it-excellence .aiops-accordion{
  border: 1px solid rgba(26,134,180,.30);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(242,249,255,.98) 100%);
  box-shadow: 0 16px 30px rgba(15,43,64,.12);
  overflow: hidden;
}

body.page-it-excellence .aiops-accordion + .aiops-accordion{
  margin-top: 16px;
}

body.page-it-excellence .aiops-accordion summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 22px 64px 20px 22px;
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.74));
  transition: background var(--t-fast) ease;
}

body.page-it-excellence .aiops-accordion summary::-webkit-details-marker{
  display: none;
}

body.page-it-excellence .aiops-accordion summary::marker{
  content: "";
}

body.page-it-excellence .aiops-accordion summary:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

body.page-it-excellence .aiops-accordion summary::after{
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(26,134,180,.56);
  background: rgba(255,255,255,.92);
  color: var(--aiops-ink);
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  transition: transform var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
}

body.page-it-excellence .aiops-accordion[open] summary{
  background: linear-gradient(180deg, rgba(26,134,180,.12), rgba(255,255,255,.86));
}

body.page-it-excellence .aiops-accordion[open] summary::after{
  transform: rotate(45deg);
  background: var(--aiops-accent);
  color: #ffffff;
  border-color: var(--aiops-accent);
}

body.page-it-excellence .aiops-accordion-title{
  margin: 0;
  color: var(--aiops-ink);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.14;
  font-weight: 930;
  letter-spacing: -0.02em;
}

body.page-it-excellence .aiops-accordion-lead{
  margin: 0;
  color: #27465d;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 540;
}

body.page-it-excellence .aiops-accordion-body{
  padding: 0 22px 22px;
  border-top: 1px solid rgba(26,134,180,.16);
  display: grid;
  gap: 18px;
}

body.page-it-excellence .aiops-accordion-body .aiops-instana-metrics{
  margin: 0;
}

body.page-it-excellence .aiops-delivery{
  background: linear-gradient(180deg, #ffffff 0%, var(--aiops-soft) 100%);
}

body.page-it-excellence .aiops-cta{
  background: linear-gradient(135deg, rgba(26,134,180,.16) 0%, rgba(255,255,255,.96) 100%);
}

body.page-it-excellence .aiops-delivery h2{
  color: var(--aiops-ink);
}

.aiops-why-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aiops-card{
  border-color: rgba(26,134,180,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.aiops-card h4{
  color: var(--aiops-ink);
}

.aiops-card p{
  color: #2b4a61;
  font-weight: 520;
}

.aiops-card-intro{
  margin: 0 0 12px;
}

.aiops-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.aiops-list li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #2a4a60;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 530;
}

.aiops-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aiops-accent);
  box-shadow: 0 0 0 3px rgba(26,134,180,.18);
}

.aiops-delivery-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.aiops-cta-actions{
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px){
  body.page-it-excellence .aiops-proof-grid{
    grid-template-columns: 1fr;
  }

  body.page-it-excellence .aiops-solutions-grid{
    grid-template-columns: 1fr;
  }

  .aiops-why-grid{
    grid-template-columns: 1fr;
  }

  .aiops-delivery-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  body.page-it-excellence .aiops-proof{
    padding: 18px 0;
  }

  body.page-it-excellence .aiops-proof-metrics{
    grid-template-columns: 1fr;
  }

  body.page-it-excellence .aiops-solutions,
  body.page-it-excellence .aiops-delivery,
  body.page-it-excellence .aiops-cta{
    padding: 68px 0;
  }

  body.page-it-excellence .aiops-accordion--instana .aiops-instana-metrics .impact-value{
    font-size: clamp(20px, 7.4vw, 26px);
  }

  body.page-it-excellence .aiops-accordion summary{
    padding: 18px 56px 16px 16px;
  }

  body.page-it-excellence .aiops-accordion-title{
    font-size: clamp(22px, 6vw, 30px);
  }

  body.page-it-excellence .aiops-accordion-lead{
    font-size: 14px;
    line-height: 1.66;
  }

  body.page-it-excellence .aiops-accordion-body{
    padding: 0 14px 14px;
  }
}

/* =========================
   COMPANY HEALTH CHECK PAGE
   ========================= */

body.page-company-health{
  --chc-ink: #162533;
  --chc-steel: #304556;
  --chc-accent: #5f8fb3;
  --chc-accent-strong: #84b7dd;
  --chc-soft: #edf4f9;
  --hero-overlay-a: rgba(8,14,24,.68);
  --hero-overlay-b: rgba(62,89,114,.48);
}

body.page-company-health .hero-content{
  max-width: 94ch;
}

body.page-company-health .hero-title{
  max-width: 18ch;
}

body.page-company-health .chc-hero-lead{
  margin-top: 8px;
  max-width: 86ch;
  color: rgba(255,255,255,.95);
  font-weight: 520;
}

body.page-company-health .chc-context{
  background: linear-gradient(180deg, rgba(48,69,86,.20) 0%, rgba(95,143,179,.14) 100%);
  border-top: 1px solid rgba(48,69,86,.34);
  border-bottom: 1px solid rgba(48,69,86,.24);
}

body.page-company-health .chc-context .impact-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,251,255,.97) 100%);
  border-color: rgba(95,143,179,.36);
  box-shadow: 0 16px 32px rgba(22,37,51,.14);
}

body.page-company-health .chc-context .impact-title{
  font-size: clamp(26px, 3vw, 38px);
  color: var(--chc-ink);
}

body.page-company-health .chc-context .impact-sub{
  max-width: 92ch;
  color: #2b4255;
  font-weight: 550;
}

body.page-company-health .chc-value{
  padding: 84px 0 78px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  border-bottom: 1px solid rgba(95,143,179,.24);
}

.chc-value-intro{
  display: grid;
  gap: 10px;
  max-width: 96ch;
}

.chc-value-kicker{
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4f738f;
}

.chc-value-desc{
  max-width: 92ch;
  margin-bottom: 2px;
  color: #2b4255;
  font-weight: 540;
}

.chc-value-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.chc-value-card{
  position: relative;
  overflow: hidden;
  padding: 16px 15px 14px;
  border-radius: 14px;
  border: 1px solid rgba(95,143,179,.30);
  background: linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
  box-shadow: 0 12px 24px rgba(22,37,51,.10);
}

.chc-value-card::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chc-accent) 0%, var(--chc-accent-strong) 100%);
}

.chc-value-card h3{
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.28;
  color: var(--chc-ink);
  font-weight: 820;
}

.chc-value-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2f465a;
  font-weight: 520;
}

body.page-company-health .chc-challenges{
  padding: 88px 0;
  background: linear-gradient(180deg, #182938 0%, #22384a 52%, #1d3243 100%);
  border-top: 1px solid rgba(132,183,221,.22);
  border-bottom: 1px solid rgba(132,183,221,.18);
}

body.page-company-health .chc-challenges h2{
  color: #edf6ff;
}

body.page-company-health .chc-challenges .why-intro{
  color: rgba(230,242,255,.88);
}

body.page-company-health .chc-challenges .why-card{
  border-color: rgba(165,199,226,.36);
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(244,250,255,.95) 100%);
  box-shadow: 0 14px 28px rgba(8,18,28,.28);
}

.chc-challenges-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.chc-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.chc-list li{
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #2b4255;
  font-weight: 560;
}

.chc-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chc-accent-strong);
  box-shadow: 0 0 0 3px rgba(132,183,221,.24);
}

body.page-company-health .chc-how-it-works{
  padding: 84px 0 62px;
  background: linear-gradient(180deg, #ffffff 0%, var(--chc-soft) 100%);
}

.chc-steps{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.chc-step{
  position: relative;
  overflow: hidden;
  padding: 22px 20px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(95,143,179,.32);
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
  box-shadow: 0 14px 30px rgba(22,37,51,.12);
}

.chc-step::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--chc-accent) 0%, var(--chc-accent-strong) 100%);
}

.chc-step::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.50) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 36%);
}

.chc-step > *{
  position: relative;
  z-index: 1;
}

.chc-step-no{
  width: 40px;
  height: 40px;
  margin: 0 0 10px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #4d7391 0%, #6f9cc2 100%);
  box-shadow: 0 10px 18px rgba(48,69,86,.28);
}

.chc-step h3{
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--chc-ink);
  font-weight: 900;
}

.chc-step-lead{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #2b4255;
  font-weight: 550;
}

body.page-company-health .chc-transform{
  padding: 62px 0 90px;
  background: linear-gradient(180deg, #f2f7fc 0%, #ffffff 58%, #f5f9fd 100%);
}

.chc-transform-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chc-transform-grid .chc-flashcard{
  min-height: 214px;
  padding: 0;
  border-color: rgba(95,143,179,.26);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  cursor: pointer;
}

.chc-transform-grid .chc-flashcard::after{
  display: none;
}

.chc-transform-grid .chc-flashcard:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(95,143,179,.26),
    0 14px 30px rgba(22,37,51,.16);
}

.chc-flashcard-inner{
  position: relative;
  min-height: 214px;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(.22,1,.36,1);
}

.chc-transform-grid .chc-flashcard:focus-within .chc-flashcard-inner{
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine){
  .chc-transform-grid .chc-flashcard:hover .chc-flashcard-inner{
    transform: rotateY(180deg);
  }
}

.chc-flashcard-face{
  position: absolute;
  inset: 0;
  padding: 18px 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.chc-flashcard-front{
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.chc-flashcard-back{
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #f9fcff 0%, #edf5fb 100%);
}

.chc-flashcard-meta{
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4f738f;
}

.chc-flashcard-front h4{
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  color: var(--chc-ink);
}

.chc-flashcard-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #2f465a;
  font-weight: 560;
}

.chc-delivery-panel{
  margin-top: 28px;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(165,199,226,.40);
  background: linear-gradient(135deg, #22384a 0%, #304f66 58%, #416a87 100%);
  box-shadow: 0 18px 34px rgba(22,37,51,.22);
}

.chc-delivery-panel h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #f2f8ff;
}

.chc-delivery-panel p{
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(236,244,255,.94);
  font-weight: 500;
}

.chc-delivery-list{
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chc-delivery-list li{
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(193,218,238,.40);
  background: rgba(255,255,255,.14);
  color: #f3f8ff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 650;
}

.chc-who-for-panel{
  margin-top: 18px;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(95,143,179,.30);
  background: linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
  box-shadow: 0 14px 28px rgba(22,37,51,.12);
}

.chc-who-for-panel h3{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--chc-ink);
}

.chc-who-for-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chc-who-for-list li{
  margin: 0;
  position: relative;
  padding: 12px 14px 12px 28px;
  border-radius: 12px;
  border: 1px solid rgba(165,199,226,.45);
  background: rgba(255,255,255,.88);
  color: #233748;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 580;
}

.chc-who-for-list li::before{
  content: '';
  position: absolute;
  left: 12px;
  top: .88em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chc-accent);
  box-shadow: 0 0 0 3px rgba(95,143,179,.22);
}

body.page-company-health .why-card h4,
body.page-company-health .chc-transform h2,
body.page-company-health .chc-how-it-works .section-title{
  color: var(--chc-ink);
}

body.page-company-health .cta-section{
  background: linear-gradient(135deg, rgba(48,69,86,.12) 0%, rgba(132,183,221,.12) 100%);
}

body.page-company-health .cta-section h2{
  color: var(--chc-ink);
}

body.page-company-health .cta-section p{
  color: #2f465a;
  font-weight: 520;
}

/* =========================
   ESG PAGE
   ========================= */

body.page-esg{
  --esg-ink: #0f2d40;
  --esg-deep: #143d56;
  --esg-accent: #1f87a7;
  --esg-accent-2: #2ea7c7;
  --esg-soft: #eef8fc;
  --hero-overlay-a: rgba(0,18,40,.70);
  --hero-overlay-b: rgba(18,110,142,.48);
}

body.page-esg .hero-content{
  max-width: 96ch;
}

body.page-esg .esg-hero .hero-title{
  max-width: 20ch;
}

body.page-esg .esg-hero .hero-desc{
  max-width: 92ch;
}

body.page-esg .esg-hero-actions{
  gap: 12px;
}

body.page-esg .esg-overview{
  background: linear-gradient(180deg, rgba(31,135,167,.18) 0%, rgba(31,135,167,.10) 100%);
  border-top: 1px solid rgba(31,135,167,.30);
  border-bottom: 1px solid rgba(31,135,167,.24);
}

body.page-esg .esg-overview .impact-panel{
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,252,255,.98) 100%);
  border-color: rgba(31,135,167,.34);
  box-shadow: 0 14px 30px rgba(15,45,64,.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body.page-esg .esg-overview .impact-title{
  color: var(--esg-ink);
}

body.page-esg .esg-overview .impact-sub{
  color: #264458;
  font-weight: 540;
}

body.page-esg .esg-overview .esg-overview-grid{
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 4fr);
  gap: clamp(18px, 2.8vw, 30px);
  align-items: stretch;
}

body.page-esg .esg-overview .impact-inline-wrap{
  height: 100%;
}

.esg-overview-case{
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(31,135,167,.30);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(242,250,255,.98) 100%);
  box-shadow: 0 14px 30px rgba(15,45,64,.12);
  display: flex;
  flex-direction: column;
}

.esg-overview-case::before{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 220px at 92% 8%, rgba(46,167,199,.14), rgba(46,167,199,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,0) 28%);
}

.esg-overview-case__media{
  margin: 0;
  padding: 10px 10px 0;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(31,135,167,.22);
}

.esg-overview-case__media img{
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  max-height: clamp(130px, 14vw, 190px);
  display: block;
}

.esg-overview-case__body{
  position: relative;
  z-index: 1;
  padding: 18px 18px 16px;
}

.esg-overview-case .esg-subtitle{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .12em;
}

.esg-overview-case__body h3{
  margin: 0 0 10px;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--esg-ink);
}

.esg-overview-case__body p{
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: #2b4a5c;
  font-weight: 530;
}

.esg-overview-case__points{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.esg-overview-case__points li{
  position: relative;
  margin: 0;
  padding: 8px 10px 8px 28px;
  border-radius: 10px;
  border: 1px solid rgba(31,135,167,.22);
  background: rgba(255,255,255,.76);
  color: #25475a;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 610;
}

.esg-overview-case__points li::before{
  content: '';
  position: absolute;
  left: 10px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--esg-accent-2);
  box-shadow: 0 0 0 3px rgba(46,167,199,.20);
}

body.page-esg .esg-delivery{
  padding: 88px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

body.page-esg .esg-delivery .section-desc{
  max-width: 94ch;
}

.esg-subtitle{
  margin: 22px 0 14px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2c4f64;
}

.esg-capability-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.esg-capability-card{
  position: relative;
  overflow: hidden;
  padding: 20px 16px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(31,135,167,.26);
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 10px 24px rgba(15,45,64,.10);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

.esg-capability-card::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--esg-accent) 0%, var(--esg-accent-2) 100%);
}

.esg-capability-card:hover{
  transform: translateY(-6px);
  border-color: rgba(31,135,167,.42);
  box-shadow: 0 16px 34px rgba(15,45,64,.14);
}

.esg-capability-card h4{
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
  color: var(--esg-ink);
}

.esg-capability-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #2d4a5c;
  font-weight: 520;
}

body.page-esg .esg-suite{
  padding: 90px 0;
  background: linear-gradient(135deg, #0a2233 0%, #143d56 58%, #1f5f7f 100%);
  border-top: 1px solid rgba(148,205,231,.26);
}

body.page-esg .esg-suite::before{
  background:
    radial-gradient(760px 280px at 12% 10%, rgba(46,167,199,.26), rgba(46,167,199,0) 72%),
    radial-gradient(860px 300px at 92% 92%, rgba(97,176,214,.24), rgba(97,176,214,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 34%);
}

body.page-esg .esg-suite h2{
  color: #edf8ff;
}

body.page-esg .esg-suite .why-intro{
  color: rgba(227,243,255,.94);
  max-width: 96ch;
}

.esg-suite-callout{
  margin: 0 auto;
  max-width: 94ch;
  padding: 18px 18px 14px;
  border-radius: 14px;
  border: 1px solid rgba(164,214,238,.36);
  background: rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(8,20,34,.28);
}

.esg-suite-callout h3{
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  color: #f2f9ff;
}

.esg-suite-callout p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(233,246,255,.94);
}

body.page-esg .esg-outcomes{
  background: linear-gradient(180deg, rgba(31,135,167,.16) 0%, rgba(31,135,167,.08) 100%);
}

body.page-esg .esg-outcomes .impact-panel{
  border-color: rgba(31,135,167,.32);
  box-shadow: 0 14px 30px rgba(15,45,64,.11);
}

.esg-outcomes-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.esg-outcomes-list li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #284759;
  font-weight: 550;
}

.esg-outcomes-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--esg-accent-2);
  box-shadow: 0 0 0 3px rgba(46,167,199,.20);
}

body.page-esg .esg-journey{
  padding: 88px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

body.page-esg .esg-journey .section-desc{
  max-width: 78ch;
}

.esg-journey-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.esg-journey-step{
  position: relative;
  overflow: hidden;
  padding: 18px 16px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(31,135,167,.28);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 10px 24px rgba(15,45,64,.10);
}

.esg-journey-step::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 36%);
}

.esg-journey-step > *{
  position: relative;
  z-index: 1;
}

.esg-step-no{
  width: 34px;
  height: 34px;
  margin: 0 0 10px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  background: linear-gradient(135deg, var(--esg-accent) 0%, var(--esg-accent-2) 100%);
  box-shadow: 0 8px 16px rgba(31,135,167,.24);
}

.esg-journey-step h3{
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.24;
  color: var(--esg-ink);
}

.esg-journey-step p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #2d4a5c;
  font-weight: 520;
}

.esg-rdw-panel{
  margin-top: 24px;
  padding: 20px 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(31,135,167,.30);
  background: linear-gradient(180deg, rgba(31,135,167,.12) 0%, rgba(31,135,167,.07) 100%);
  box-shadow: 0 12px 26px rgba(15,45,64,.10);
}

.esg-rdw-panel h3{
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.24;
  color: var(--esg-ink);
}

.esg-rdw-panel p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #29485b;
  font-weight: 540;
}

.esg-rdw-list{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.esg-rdw-list li{
  margin: 0;
  padding: 9px 11px;
  border-radius: 11px;
  border: 1px solid rgba(31,135,167,.24);
  background: rgba(255,255,255,.80);
  color: #274658;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 640;
}

body.page-esg .esg-cta{
  background: linear-gradient(135deg, rgba(15,61,86,.14) 0%, rgba(46,167,199,.14) 100%);
}

body.page-esg .esg-cta h2{
  color: var(--esg-ink);
}

body.page-esg .esg-cta p{
  color: #2d4a5c;
  font-weight: 540;
}

body.page-esg .esg-cta .cta-actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.page-esg .esg-cta-link{
  color: var(--esg-ink);
  border-color: rgba(31,135,167,.42);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}

body.page-esg .esg-cta-link:hover{
  border-color: rgba(31,135,167,.62);
  background: rgba(255,255,255,.88);
}

@media (max-width: 1200px){
  body.page-esg .esg-overview .esg-overview-grid{
    grid-template-columns: 1fr;
  }

  .esg-capability-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .esg-journey-grid{
    grid-template-columns: 1fr;
  }

  .esg-rdw-list{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  body.page-esg .esg-delivery,
  body.page-esg .esg-suite,
  body.page-esg .esg-journey{
    padding: 68px 0;
  }

  body.page-esg .esg-overview .esg-overview-grid{
    gap: 14px;
  }

  .esg-overview-case__body{
    padding: 14px 14px 12px;
  }

  .esg-overview-case__media img{
    max-height: 160px;
  }

  .esg-overview-case__body h3{
    font-size: clamp(20px, 6.2vw, 26px);
  }

  .esg-capability-grid{
    grid-template-columns: 1fr;
  }

  body.page-esg .esg-hero-actions{
    width: 100%;
  }

  body.page-esg .esg-hero-actions .btn{
    width: 100%;
  }

  body.page-esg .esg-cta .cta-actions .btn{
    width: 100%;
  }
}

/* =========================
   MAIN + nagłówki sekcji
   ========================= */

main{ padding: 64px 0; }
body.page-cybersecurity main{ padding-top: 0; }

/* =========================
   HELP STRIP (HOME)
   ========================= */

.help-strip{
  padding: 26px 0 24px;
  background:
    linear-gradient(180deg, rgba(10,175,198,.18) 0%, rgba(10,175,198,.10) 100%);
  border-top: 1px solid rgba(10,175,198,.28);
  border-bottom: 1px solid rgba(10,175,198,.22);
}

.help-strip-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,175,198,.24);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.help-strip-title{
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 950;
  line-height: 1.15;
  color: var(--text);
}

.help-strip-desc{
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.help-strip-links{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.help-strip-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--accent);
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(10,175,198,.22);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, filter var(--t-fast) ease;
}

.help-strip-link:hover{
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10,175,198,.28);
  filter: none;
}

/* =========================
   IMPACT STRIP (HOME)
   ========================= */

.impact-inline-section{
  padding: 24px 0 26px;
  background:
    linear-gradient(180deg, rgba(10,175,198,.16) 0%, rgba(10,175,198,.09) 100%);
  border-top: 1px solid rgba(10,175,198,.26);
  border-bottom: 1px solid rgba(10,175,198,.20);
}

.impact-inline-wrap{
  margin: 0;
}

.impact-panel{
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,175,198,.24);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.impact-head{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.impact-title{
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 950;
  line-height: 1.12;
  color: var(--text);
}

.impact-sub{
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.impact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.impact-metric{
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(10,175,198,.09);
  border: 1px solid rgba(10,175,198,.20);
  min-height: 118px;
}

.impact-value{
  margin: 0 0 5px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 950;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.impact-label{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
  font-weight: 700;
}

.impact-metric--wide{
  background: rgba(10,175,198,.11);
}

.impact-footnote{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.home-solutions-strip{
  padding: 12px 0 18px;
  background: rgba(10,175,198,.18);
  border-top: 1px solid rgba(10,175,198,.28);
  border-bottom: 1px solid rgba(10,175,198,.24);
}

.home-solutions-strip__inner{
  padding: 16px 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(10,175,198,.24);
  background: rgba(10,175,198,.14);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}

.impact-solution-links{
  margin: 0;
  padding: 0;
  border: 0;
}

.impact-solution-links__label{
  margin: 0 0 10px;
  color: #000000;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 830;
}

.impact-solution-links__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.impact-solution-links__list li{
  margin: 0;
  padding: 0;
  display: flex;
}

.impact-solution-links__list a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 48px;
  padding: 9px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.92);
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.34;
  text-align: center;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(2,6,23,.12);
  transition: transform var(--t-fast) ease, background var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.impact-solution-links__list a:hover{
  transform: translateY(-1px);
  background: #f6fbff;
  border-color: #ffffff;
  color: var(--accent);
  box-shadow: 0 12px 24px rgba(2,6,23,.16);
}

.content-section{
  padding: 92px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.content-section h2{
  font-size: 38px;
  font-weight: 950;
  margin: 0 0 16px;
  text-align: center;
  color: var(--text);
}

.section-intro{
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 82ch;
  margin: 0 auto 50px;
  line-height: 1.85;
  font-weight: 450;
}

.section-title{
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 12px;
  text-align: center;
  color: var(--text);
}

.section-desc{
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 52px;
  font-weight: 450;
}

/* =========================
   PODBIJACZ TŁA (sekcje)
   ========================= */

.content-section,
.products-section,
.cta-section,
.about-section,
.about-partners-text,
.why-section{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.content-section::before,
.products-section::before,
.cta-section::before,
.about-section::before,
.about-partners-text::before,
.why-section::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(120% 90% at 50% 100%, rgba(2,6,23,0.04), rgba(2,6,23,0) 62%);
}

.content-section > *,
.products-section > *,
.cta-section > *,
.about-section > *,
.about-partners-text > *,
.why-section > *{
  position: relative;
  z-index: 1;
}

/* =========================
   EXECUTIVE OUTCOMES
   ========================= */

.exec-outcomes{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 74px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 56%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.exec-outcomes::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 260px at -8% -12%, rgba(10,175,198,.10), rgba(10,175,198,0) 70%),
    radial-gradient(620px 320px at 112% 120%, rgba(37,99,235,.08), rgba(37,99,235,0) 72%);
}

.exec-outcomes > .container{
  position: relative;
  z-index: 1;
}

.exec-outcomes__layout{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 3.4vw, 56px);
}

.exec-outcomes__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 800;
}

.exec-outcomes__intro h2{
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
}

.exec-outcomes__subhead{
  margin: 0 0 26px;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 500;
}

.exec-outcomes__metrics-block{
  padding: 20px 20px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(250,253,255,.96) 100%);
  box-shadow: var(--shadow-sm);
}

.exec-outcomes__metrics-block h3{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.exec-outcomes__metrics{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.exec-outcomes__metrics li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
}

.exec-outcomes__metrics li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10,175,198,.95);
  box-shadow: 0 0 0 3px rgba(10,175,198,.16);
}

.exec-outcomes__cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.exec-outcomes__card{
  position: relative;
  overflow: hidden;
  min-height: 192px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.exec-outcomes__card::after{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.44) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 38%);
}

.exec-outcomes__card > *{
  position: relative;
  z-index: 1;
}

.exec-outcomes__card h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  color: var(--text);
}

.exec-outcomes__card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 500;
}

.exec-outcomes__card:hover{
  transform: translateY(-2px);
  border-color: rgba(10,175,198,.36);
  box-shadow: 0 10px 24px rgba(2,6,23,.09);
}

.exec-outcomes__card:focus-visible{
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(10,175,198,.58);
  box-shadow: var(--ring), 0 12px 24px rgba(2,6,23,.11);
}

@media (max-width: 1024px){
  .exec-outcomes{
    padding: 64px 0 56px;
  }

  .exec-outcomes__layout{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .exec-outcomes__cards{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .exec-outcomes__card{
    min-height: 0;
  }
}

@media (max-width: 768px){
  .exec-outcomes{
    padding: 56px 0 48px;
  }

  .exec-outcomes__subhead{
    margin-bottom: 22px;
    font-size: 15px;
  }

  .exec-outcomes__metrics-block{
    padding: 18px 16px 16px;
  }

  .exec-outcomes__card{
    padding: 18px 16px;
  }

  .exec-outcomes__card h3{
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce){
  .exec-outcomes__card{
    transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  }

  .exec-outcomes__card:hover,
  .exec-outcomes__card:focus-visible{
    transform: none;
  }
}

/* =========================
   AI PAGE
   ========================= */

body.page-ai{
  --ai-operating-pad: 68px 0 12px;
  --ai-operating-intro-mb: 14px;
  --ai-strip-side-pad: clamp(20px, 3vw, 40px);
  --ai-strip-pad: 10px 0 12px;
  --ai-strip-item-min-h: 148px;
  --ai-strip-item-basis: clamp(204px, 17.5vw, 236px);
  --ai-strip-item-pad: 11px 11px 10px;
  --ai-strip-value-size: clamp(20px, 1.95vw, 27px);
  --ai-strip-title-size: 13px;
  --ai-strip-desc-size: 11px;
}

body.page-ai main{
  padding-top: 0;
}

body.page-ai .products-section{
  padding: 84px 0;
}

body.page-ai .ai-operating-advantage{
  padding: var(--ai-operating-pad);
  border-bottom: 0;
}

body.page-ai .ai-operating-advantage .section-intro{
  margin-bottom: var(--ai-operating-intro-mb);
}

body.page-ai .ai-hero-lead{
  max-width: 80ch;
}

body.page-ai .ai-value-strip{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: var(--ai-strip-pad);
  color: var(--text);
  background: linear-gradient(180deg, rgba(10,175,198,.16) 0%, rgba(10,175,198,.09) 100%);
  border-top: 1px solid rgba(10,175,198,.28);
  border-bottom: 1px solid rgba(10,175,198,.22);
}

body.page-ai .ai-value-strip::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(840px 280px at -8% -20%, rgba(37,99,235,.14), rgba(37,99,235,0) 68%),
    radial-gradient(820px 300px at 112% 120%, rgba(10,175,198,.18), rgba(10,175,198,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,0) 42%);
}

body.page-ai .ai-value-strip__rail{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: var(--max-width);
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 var(--ai-strip-side-pad) 2px;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(10,175,198,.38) transparent;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--ai-strip-side-pad);
}

body.page-ai .ai-value-strip__item{
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: var(--ai-strip-item-min-h);
  flex: 0 0 var(--ai-strip-item-basis);
  padding: var(--ai-strip-item-pad);
  border-radius: 14px;
  border: 1px solid rgba(10,175,198,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  scroll-snap-align: start;
  text-align: left;
  transition: transform var(--t-fast) ease, border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

body.page-ai .ai-value-strip__item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(10,175,198,.92), rgba(37,99,235,.72));
}

body.page-ai .ai-value-strip__item:hover{
  transform: translateY(-2px);
  border-color: rgba(10,175,198,.40);
  box-shadow: 0 14px 28px rgba(2,6,23,.10);
}

body.page-ai .ai-value-strip__value{
  margin: 0 0 4px;
  font-size: var(--ai-strip-value-size);
  line-height: 1.03;
  font-weight: 950;
  color: var(--text);
  letter-spacing: -0.025em;
}

body.page-ai .ai-value-strip__title{
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--ai-strip-title-size);
  line-height: 1.38;
  font-weight: 820;
}

body.page-ai .ai-value-strip__desc{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: var(--ai-strip-desc-size);
  line-height: 1.56;
  font-weight: 520;
}

body.page-ai .ai-executive .section-intro{
  max-width: 92ch;
  margin-bottom: 0;
  color: var(--text-secondary);
}

body.page-ai .ai-upfront{
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

body.page-ai .ai-checklist-grid{
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.page-ai .ai-check-item{
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(10,175,198,.22);
  background: #dff0ff;
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}

body.page-ai .ai-check-item::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

body.page-ai .ai-check-item > *{
  position: relative;
  z-index: 1;
}

body.page-ai .ai-check-item h3{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  color: var(--text);
}

body.page-ai .ai-check-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

body.page-ai .ai-check-item:hover{
  transform: translateY(-2px);
  border-color: rgba(10,175,198,.35);
  box-shadow: var(--shadow-md);
}

body.page-ai .ai-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

body.page-ai .ai-step{
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

body.page-ai .ai-step-no{
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(10,175,198,.34);
  background: rgba(10,175,198,.10);
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 40px;
  text-align: center;
}

body.page-ai .ai-step-body h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

body.page-ai .ai-step-body p{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

body.page-ai .ai-step-body p:last-child{
  margin-bottom: 0;
}

body.page-ai .ai-note{
  font-weight: 700;
  color: var(--text-secondary);
}

body.page-ai .ai-pillars-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page-ai .ai-pillars-grid + .section-desc{
  margin: 20px auto 0;
}

body.page-ai .ai-controls{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

body.page-ai .ai-controls-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body.page-ai .ai-control-card{
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

body.page-ai .ai-control-card h3{
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

body.page-ai .ai-control-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

body.page-ai .ai-control-list li{
  position: relative;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

body.page-ai .ai-control-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10,175,198,.92);
  box-shadow: 0 0 0 3px rgba(10,175,198,.16);
}

body.page-ai .ai-engagement-item{
  position: relative;
  overflow: hidden;
  padding: 18px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

body.page-ai .ai-engagement-item h3{
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

body.page-ai .ai-engagement-item p{
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
}

body.page-ai .ai-watsonx{
  position: relative;
  isolation: isolate;
  padding: 88px 0;
  background: linear-gradient(180deg, #061227 0%, #0d2148 35%, #f4f9ff 35.1%, #ffffff 100%);
}

body.page-ai .ai-watsonx::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 260px at -8% 6%, rgba(10,175,198,.24), rgba(10,175,198,0) 70%),
    radial-gradient(820px 280px at 108% 24%, rgba(37,99,235,.30), rgba(37,99,235,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 32%);
}

body.page-ai .ai-watsonx > .container{
  position: relative;
  z-index: 1;
}

body.page-ai .ai-watsonx-hero-panel{
  margin: 0 auto 28px;
  max-width: 1120px;
  padding: 24px 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.20);
  background: linear-gradient(145deg, rgba(7,16,34,.86), rgba(14,35,76,.82));
  box-shadow: 0 24px 48px rgba(2,6,23,.26);
}

body.page-ai .ai-watsonx-kicker{
  margin: 0 0 10px;
  color: rgba(226,232,240,.94);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 850;
}

body.page-ai .ai-watsonx-hero-panel .section-title{
  margin: 0 0 12px;
  max-width: 26ch;
  text-align: left;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

body.page-ai .ai-watsonx .section-intro{
  max-width: 100ch;
  margin: 0 0 12px;
  text-align: left;
  color: rgba(226,232,240,.92);
}

body.page-ai .ai-watsonx .ai-watsonx-intro{
  margin-bottom: 16px;
}

body.page-ai .ai-watsonx-pillars{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-ai .ai-watsonx-pillars li{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .02em;
}

body.page-ai .ai-watsonx-subtitle{
  margin: 0 auto 14px;
  max-width: 1120px;
  text-align: left;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

body.page-ai .ai-watsonx-list{
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

body.page-ai .ai-watsonx-item{
  position: relative;
  overflow: hidden;
  --watsonx-accent: #0aafc6;
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}

body.page-ai .ai-watsonx-item:nth-child(2){
  --watsonx-accent: #2563eb;
}

body.page-ai .ai-watsonx-item:nth-child(3){
  --watsonx-accent: #0891b2;
}

body.page-ai .ai-watsonx-item::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--watsonx-accent), rgba(15,23,42,.45));
}

body.page-ai .ai-watsonx-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(2,6,23,.14);
}

body.page-ai .ai-watsonx-item[open]{
  border-color: var(--watsonx-accent);
  box-shadow: 0 22px 40px rgba(2,6,23,.18);
}

body.page-ai .ai-watsonx-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  min-height: 118px;
  padding: 16px 54px 14px 16px;
  display: grid;
  align-content: start;
  gap: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.74));
}

body.page-ai .ai-watsonx-item[open] summary{
  background: linear-gradient(180deg, rgba(10,175,198,.12), rgba(255,255,255,.88));
}

body.page-ai .ai-watsonx-item summary:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

body.page-ai .ai-watsonx-item summary::-webkit-details-marker{
  display: none;
}

body.page-ai .ai-watsonx-item summary::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--watsonx-accent);
  background: rgba(255,255,255,.86);
  color: var(--text);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  transition: transform var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
}

body.page-ai .ai-watsonx-item[open] summary::after{
  transform: rotate(45deg);
  background: var(--watsonx-accent);
  color: #ffffff;
}

body.page-ai .ai-watsonx-item__name{
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 920;
}

body.page-ai .ai-watsonx-item__hint{
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 720;
}

body.page-ai .ai-watsonx-item__body{
  padding: 0 16px 16px;
  border-top: 1px solid rgba(15,23,42,.08);
}

body.page-ai .ai-watsonx-item__body p{
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

body.page-ai .ai-watsonx-item__lead{
  margin: 12px 0 8px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 820;
}

body.page-ai .ai-watsonx-fit-title{
  margin: 20px 0 8px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 920;
}

body.page-ai .ai-watsonx-fit-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

body.page-ai .ai-watsonx-fit-list li{
  margin: 0;
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

body.page-ai .ai-watsonx-fit-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--watsonx-accent);
}

body.page-ai .ai-faq{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

body.page-ai .ai-faq-item{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

body.page-ai .ai-faq-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 16px 50px 16px 16px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--text);
}

body.page-ai .ai-faq-item summary:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

body.page-ai .ai-faq-item summary::-webkit-details-marker{
  display: none;
}

body.page-ai .ai-faq-item summary::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(10,175,198,.30);
  background: rgba(10,175,198,.10);
  color: var(--text);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  transition: transform var(--t-fast) ease;
}

body.page-ai .ai-faq-item[open] summary::after{
  transform: translateY(-50%) rotate(45deg);
}

body.page-ai .ai-faq-item p{
  margin: 0;
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

body.page-ai .ai-cta .cta-actions{
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1280px){
  body.page-ai .ai-checklist-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-ai .ai-watsonx-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-ai .ai-pillars-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 992px){
  body.page-ai .ai-controls-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  body.page-ai{
    --ai-operating-pad: 56px 0 8px;
    --ai-operating-intro-mb: 10px;
    --ai-strip-side-pad: 20px;
    --ai-strip-pad: 8px 0 10px;
    --ai-strip-item-min-h: 0;
    --ai-strip-item-basis: min(72vw, 244px);
    --ai-strip-item-pad: 10px 10px 9px;
    --ai-strip-value-size: clamp(19px, 7.8vw, 25px);
    --ai-strip-title-size: 13px;
    --ai-strip-desc-size: 11px;
  }

  body.page-ai .products-section{
    padding: 64px 0;
  }

  body.page-ai .ai-watsonx{
    padding: 68px 0;
    background: linear-gradient(180deg, #061227 0%, #0d2148 42%, #f4f9ff 42.1%, #ffffff 100%);
  }

  body.page-ai .ai-watsonx-hero-panel{
    padding: 16px 14px 14px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  body.page-ai .ai-watsonx-kicker{
    font-size: 10px;
  }

  body.page-ai .ai-watsonx-hero-panel .section-title{
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 10px;
  }

  body.page-ai .ai-watsonx .section-intro{
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  body.page-ai .ai-watsonx .ai-watsonx-intro{
    margin-bottom: 12px;
  }

  body.page-ai .ai-watsonx-pillars{
    gap: 8px;
  }

  body.page-ai .ai-watsonx-pillars li{
    padding: 7px 10px;
    font-size: 11px;
  }

  body.page-ai .ai-watsonx-subtitle{
    font-size: 16px;
    margin-bottom: 12px;
    text-align: left;
  }

  body.page-ai .ai-watsonx-list{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-ai .ai-watsonx-item summary{
    min-height: 0;
    padding: 14px 48px 12px 14px;
  }

  body.page-ai .ai-watsonx-item__name{
    font-size: 16px;
  }

  body.page-ai .ai-watsonx-item__hint{
    font-size: 12px;
  }

  body.page-ai .ai-watsonx-item__body{
    padding: 0 14px 14px;
  }

  body.page-ai .ai-watsonx-item__body p{
    font-size: 13px;
  }

  body.page-ai .ai-watsonx-fit-list li{
    font-size: 13px;
  }

  body.page-ai .ai-watsonx-fit-title{
    margin: 16px 0 7px;
  }

  body.page-ai .ai-checklist-grid{
    grid-template-columns: 1fr;
  }

  body.page-ai .ai-step{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.page-ai .ai-step-no{
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
  }

  body.page-ai .ai-pillars-grid{
    grid-template-columns: 1fr;
  }

  body.page-ai .ai-cta .cta-actions .btn{
    width: 100%;
  }
}

/* =========================
   HERO BENEFITS (karty pod hero)
   ========================= */

.hero-benefits-section{
  padding: 28px 0 16px;
  background: #fff;
}

.benefits-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card{
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

.benefit-card::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 35%);
}

.benefit-card > *{ position: relative; z-index: 1; }

.benefit-card:hover{
  transform: translateY(-6px);
  border-color: rgba(10,175,198,.35);
  box-shadow: var(--shadow-md);
}

.benefit-card h3,
.benefit-card h4{
  font-size: 16px;
  font-weight: 850;
  margin: 0 0 8px;
  color: var(--text);
}

.benefit-card p{
  font-size: 14px;
  margin: 0;
  color: var(--muted);
  font-weight: 450;
}

.benefit-link{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 850;
}

.benefit-link:hover{
  color: var(--accent);
}

/* =========================
   ABOUT*/

.about-section{
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-tertiary) 100%);
  border-bottom: 1px solid var(--border);
}

.about-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.about-split{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}

.about-copy{ padding-right: 6px; }

.about-heading{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
  font-weight: 950;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-copy p.about-lead{
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.about-copy p{
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 450;
}

.about-copy p:last-child{ margin-bottom: 0; }

.about-facts{
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 18px;
}

.about-facts::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 35%);
}

.about-facts > *{ position: relative; z-index: 1; }

.about-facts-title{
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.about-facts-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.about-facts-item{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(10,175,198,.06);
  border: 1px solid rgba(10,175,198,.14);
}

.about-facts-metric{
  font-size: 18px;
  font-weight: 950;
  color: var(--text);
  line-height: 1.1;
}

.about-facts-text{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 450;
}

body.page-about .about-facts-item{
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(180deg, #fafdff 0%, #f3f9ff 100%);
  border: 1px solid rgba(10,175,198,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

body.page-about .about-facts-metric{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 8px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(10,175,198,.28);
  box-shadow: 0 8px 18px rgba(10,175,198,.14);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
}

body.page-about .about-facts-text{
  color: var(--text-secondary);
}

.about-partners-text{
  padding: 64px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.about-partners-text .partners-copy{
  max-width: 86ch;
  margin: 0 auto;
}

.about-partners-text .partners-copy p{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 450;
}

.about-partners-text .partners-copy strong{
  font-weight: 900;
  color: var(--text);
}

.about-award-proof{
  padding: 76px 0;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.about-award-wrap{
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 2.8vw, 30px);
  align-items: stretch;
}

.about-award-copy{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(10,175,198,.26);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
  padding: 22px 20px;
}

.about-award-copy::before{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(430px 180px at 100% 0%, rgba(10,175,198,.15), rgba(10,175,198,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0) 32%);
}

.about-award-copy > *{
  position: relative;
  z-index: 1;
}

.about-award-eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.about-award-copy h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-award-copy p{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.74;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-award-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(10,175,198,.34);
  background: rgba(10,175,198,.10);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease;
}

.about-award-link:hover{
  transform: translateY(-1px);
  border-color: rgba(10,175,198,.54);
  background: rgba(10,175,198,.16);
  box-shadow: 0 10px 22px rgba(10,175,198,.16);
}

.about-award-video{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(10,175,198,.28);
  box-shadow: 0 16px 34px rgba(2,6,23,.14);
  background: #ffffff;
  line-height: 0;
}

.about-award-video iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  border: 0;
  display: block;
  background: #ffffff;
}

/* Process Mining: IBM intro and data proofs */
body.page-process-mining .pm-ibm-proof{
  padding-top: 30px;
  padding-bottom: 10px;
}

body.page-process-mining .pm-ibm-panel{
  display: grid;
  gap: 14px;
}

body.page-process-mining .pm-ibm-basics{
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

body.page-process-mining .pm-ibm-basics li{
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 550;
}

body.page-process-mining .pm-ibm-proof-title{
  margin: 4px 0 0;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.25;
  font-weight: 900;
  color: var(--text);
}

body.page-process-mining .pm-ibm-grid .impact-metric{
  min-height: 132px;
}

body.page-process-mining .pm-ibm-grid .impact-label{
  font-weight: 650;
}

body.page-process-mining .pm-ibm-footnote{
  margin-top: 2px;
}

body.page-process-mining .pm-ibm-footnote a{
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-process-mining .pm-ibm-footnote a:hover{
  color: var(--accent-dark);
}

body.page-process-mining .products-section{
  padding-top: 56px;
  padding-bottom: 58px;
}

body.page-process-mining .products-section .why-grid .why-card{
  background:
    linear-gradient(180deg, rgba(10,175,198,.12) 0%, rgba(10,175,198,.05) 100%),
    linear-gradient(180deg, #fbfdff 0%, #f3f9ff 100%);
  border-color: rgba(10,175,198,.28);
}

body.page-process-mining .products-section .why-grid .why-card::after{
  background:
    linear-gradient(135deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(2,6,23,.015) 0%, rgba(2,6,23,0) 38%);
}

body.page-process-mining .products-section .why-grid .why-card:hover{
  border-color: rgba(10,175,198,.38);
}

body.page-process-mining .cta-section[aria-labelledby="cta-title"]{
  padding-top: 58px;
  padding-bottom: 56px;
}

body.page-process-mining .cta-section[aria-labelledby="cta-title"] p{
  margin-bottom: 0;
}

body.page-process-mining .pm-logistics-section{
  padding: 68px 0 66px;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  border-top: 1px solid rgba(10,175,198,.24);
  border-bottom: 1px solid rgba(10,175,198,.16);
}

body.page-process-mining .pm-logistics-section .section-desc{
  margin-bottom: 34px;
}

body.page-process-mining .pm-logistics-accordion{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

body.page-process-mining .pm-logistics-item{
  border: 1px solid rgba(10,175,198,.36);
  border-radius: 16px;
  background: rgba(231,243,252,.98);
  box-shadow: 0 14px 28px rgba(2,6,23,.08);
  overflow: hidden;
}

body.page-process-mining .pm-logistics-item + .pm-logistics-item{
  margin-top: 0;
}

body.page-process-mining .pm-logistics-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 18px 56px 16px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(237,247,254,.96);
}

body.page-process-mining .pm-logistics-item summary::-webkit-details-marker{
  display: none;
}

body.page-process-mining .pm-logistics-item summary::marker{
  content: "";
}

body.page-process-mining .pm-logistics-item summary::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(10,175,198,.56);
  background: rgba(255,255,255,.92);
  color: var(--accent-dark);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: transform var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
}

body.page-process-mining .pm-logistics-item[open] summary{
  background: rgba(224,240,250,.96);
}

body.page-process-mining .pm-logistics-item[open] summary::after{
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

body.page-process-mining .pm-logistics-step{
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--accent-dark);
  background: rgba(10,175,198,.14);
  border: 1px solid rgba(10,175,198,.34);
}

body.page-process-mining .pm-logistics-summary-wrap{
  display: grid;
  gap: 6px;
}

body.page-process-mining .pm-logistics-summary-title{
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 2.0vw, 28px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

body.page-process-mining .pm-logistics-summary-lead{
  margin: 0;
  color: #3b6278;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 560;
}

body.page-process-mining .pm-logistics-body{
  border-top: 1px solid rgba(10,175,198,.18);
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 16px;
}

body.page-process-mining .pm-logistics-gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

body.page-process-mining .pm-logistics-gallery--single{
  grid-template-columns: 1fr;
}

body.page-process-mining .pm-logistics-figure{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10,175,198,.22);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(2,6,23,.08);
}

body.page-process-mining .pm-logistics-figure img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.page-process-mining .pm-logistics-copy{
  display: grid;
  gap: 10px;
}

body.page-process-mining .pm-logistics-copy p{
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-secondary);
  font-weight: 520;
}

body.page-process-mining .pm-logistics-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

body.page-process-mining .pm-logistics-list li{
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 560;
}

/* Process Mining partners: jedna karta pod drugą */
body.page-process-mining .partners-stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}

body.page-process-mining .partner-card{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

body.page-process-mining .partner-card::after{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 36%);
}

body.page-process-mining .partner-card > *{
  position: relative;
  z-index: 1;
}

body.page-process-mining .partner-card:hover{
  transform: translateY(-3px);
  border-color: rgba(10,175,198,.34);
  box-shadow: var(--shadow-md);
}

body.page-process-mining .partner-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}

body.page-process-mining .partner-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 640px){
  body.page-process-mining .pm-logistics-section{
    padding: 56px 0 54px;
  }

  body.page-process-mining .pm-logistics-item summary{
    padding: 14px 46px 14px 14px;
    gap: 10px;
  }

  body.page-process-mining .pm-logistics-summary-title{
    font-size: 18px;
  }

  body.page-process-mining .pm-logistics-summary-lead{
    font-size: 13px;
  }

  body.page-process-mining .pm-logistics-body{
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-process-mining .pm-logistics-gallery{
    grid-template-columns: 1fr;
  }

  body.page-process-mining .pm-ibm-proof-title{
    font-size: 18px;
  }

  body.page-process-mining .partner-card{
    padding: 18px 16px 16px;
  }

  body.page-process-mining .partner-title{
    font-size: 16px;
  }
}

@media (max-width: 980px){
  .about-split{ grid-template-columns: 1fr; }
  .about-copy{ padding-right: 0; }
  .about-award-wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .about-section{ padding: 64px 0; }
  .about-copy p{ font-size: 14px; }
  .about-facts-item{ grid-template-columns: 64px 1fr; }
  .about-facts-metric{ font-size: 17px; }

  body.page-about .about-facts-item{ grid-template-columns: 78px 1fr; }
  body.page-about .about-facts-metric{
    min-height: 46px;
    font-size: 21px;
  }

  .about-award-proof{
    padding: 64px 0;
  }

  .about-award-copy{
    padding: 18px 16px;
  }

  .about-award-copy h2{
    font-size: clamp(24px, 6.3vw, 30px);
  }
}

/* =========================
 SOLUTIONS
   ========================= */

.products-section{
  padding: 72px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

body.page-cybersecurity #products.products-section{
  background: linear-gradient(180deg, #021537 0%, #05225b 48%, #031a45 100%);
  border-top-color: rgba(117,166,255,.34);
  border-bottom-color: rgba(117,166,255,.28);
}

body.page-cybersecurity #products.products-section::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 32%),
    radial-gradient(120% 92% at 50% 100%, rgba(26,132,255,0.24), rgba(26,132,255,0) 66%),
    radial-gradient(90% 70% at 100% 0%, rgba(45,113,255,0.16), rgba(45,113,255,0) 72%);
}

body.page-cybersecurity #products .section-title{
  color: #eef5ff;
}

body.page-cybersecurity #products .section-desc{
  color: rgba(221,234,255,.90);
}

.solutions-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.solution-card{
  position: relative; 
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 120px;

  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid rgba(10,175,198,.24);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);

  display: flex;
  flex-direction: column;

  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

.solution-card:hover{
  transform: translateY(-6px);
  border-color: rgba(10,175,198,.44);
  box-shadow: 0 16px 36px rgba(2,6,23,.13);
}

.solution-card:target{
  border-color: rgba(10,175,198,.62);
  box-shadow: 0 0 0 3px rgba(10,175,198,.16), 0 18px 38px rgba(2,6,23,.16);
  transform: translateY(-3px);
}

.solution-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, rgba(10,175,198,.9), rgba(37,99,235,.78));
  opacity:.6;
  pointer-events:none;
}

.solution-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 35%);
  opacity: .9;
}

.solution-card > *{ position: relative; z-index: 1; }

.solution-header{
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,175,198,.45);
}

.solution-header h3{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1.25;
}

.solution-desc{
  font-size: 14px;
  margin: 0;
  color: var(--muted);
  font-weight: 450;
}

.products-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-option{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, transform var(--t-fast) ease;
}

.product-option:hover{
  border-color: rgba(10,175,198,.35);
  box-shadow: 0 12px 26px rgba(2,6,23,.10);
  transform: translateY(-2px);
}

.product-toggle{
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.toggle-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  background: rgba(10,175,198,.12);
  border: 1px solid rgba(10,175,198,.35);
  color: var(--text);
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  transition: transform var(--t-fast) ease;
}

.product-option.expanded .toggle-icon{ transform: rotate(45deg); }

.product-info{ flex: 1; }

.product-info h4{
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--text);
}

.product-info p{
  font-size: 13px;
  margin: 0;
  color: var(--muted);
  font-weight: 450;
}

.product-details{
  padding: 14px 14px 14px 52px;
  border-top: 1px solid var(--border-light);
  background: #fff;
  animation: slideDown 240ms var(--ease-out);
}

.product-details p{
  font-size: 13px;
  margin: 0 0 10px;
  color: var(--text-secondary);
  font-weight: 650;
}

.product-details ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details li{
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0 6px 16px;
  position: relative;
}

.product-details li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: rgba(10,175,198,.85);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(10,175,198,.14);
}

.product-inline-media{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.product-inline-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@keyframes slideDown{
  from{ opacity: 0; max-height: 0; }
  to{ opacity: 1; max-height: 500px; }
}

.pm-extras{
  margin-top: 34px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(10,175,198,.06);
  border: 1px solid rgba(10,175,198,.18);
}

.pm-extras-title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pm-extras-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pm-extras-list li{
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.pm-extras-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10,175,198,.95);
  box-shadow: 0 0 0 3px rgba(10,175,198,.18);
}

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

.view-full-btn{
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  margin-top: 10px;
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
  width: 100%;
}

.view-full-btn:hover{
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(10,175,198,.24);
}

.view-full-btn.expanded{ background: var(--accent-dark); }

/* =========================
   MODAL */

.modal{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  cursor: pointer;
}

.modal-content{
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  width: min(92vw, 900px);
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
  z-index: 1001;
  animation: slideIn 240ms var(--ease-out);
  border: 1px solid rgba(255,255,255,.2);
}

@keyframes slideIn{
  from{ opacity: 0; transform: translateY(-26px); }
  to{ opacity: 1; transform: translateY(0); }
}

.modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 30px;
  color: var(--muted);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform var(--t-fast) ease, color var(--t-fast) ease;
}

.modal-close:hover{
  color: var(--text);
  transform: rotate(90deg);
}

.modal-content h3{
  font-size: 28px;
  font-weight: 950;
  margin: 0 0 20px;
  color: var(--text);
}

.modal-body{ color: var(--text); }

.modal-body .capability-section{
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.modal-body .capability-section:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.capability-title{
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  margin: 16px 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.capability-heading{
  font-size: 14px;
  font-weight: 900;
  color: var(--accent-2);
  margin: 0 0 8px;
}

.capability-section p{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-weight: 450;
}

.modal-body ul{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.modal-body li{
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0 7px 22px;
  position: relative;
}

.modal-body li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: rgba(10,175,198,.9);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(10,175,198,.16);
}

.qradar-demo-image{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.demo-screenshot{
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: block;
}

.enlargeable-image{
  cursor: zoom-in;
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.enlargeable-image:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.image-lightbox{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.image-lightbox.is-open{
  display: flex;
}

.image-lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.82);
}

.image-lightbox-content{
  position: relative;
  z-index: 1;
  width: min(96vw, 1320px);
  max-height: 92vh;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.image-lightbox-close{
  position: absolute;
  top: -6px;
  right: -6px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15,23,42,.84);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-close:hover{
  background: rgba(8,151,170,.92);
}

#image-lightbox-img{
  width: auto;
  max-width: 100%;
  max-height: 84vh;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 24px 54px rgba(2,6,23,.46);
  background: #0f172a;
  display: block;
}

.image-lightbox-caption{
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

/* =========================
   WHY*/

.why-section{
  padding: 92px 0;
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, #ffffff 55%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}

.why-section h2{
  font-size: 38px;
  font-weight: 950;
  margin: 0 0 16px;
  text-align: center;
  color: var(--text);
}

.why-intro{
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 80ch;
  margin: 0 auto 50px;
  line-height: 1.85;
  font-weight: 450;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.page-disclaimer .why-grid{
  grid-template-columns: 1fr;
}

body.page-disclaimer .why-card{
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 8px;
  align-items: start;
}

body.page-disclaimer .why-card h4{
  grid-column: 1;
  margin: 0;
}

body.page-disclaimer .why-card p,
body.page-disclaimer .why-card ul{
  grid-column: 2;
  margin: 0;
}

body.page-disclaimer .why-card ul{
  padding-left: 18px;
}

.why-card{
  position: relative;
  overflow: hidden;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: left;

  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

.why-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, rgba(2,6,23,.02) 0%, rgba(2,6,23,0) 35%);
}

.why-card > *{ position: relative; z-index: 1; }

.why-card:hover{
  transform: translateY(-6px);
  border-color: rgba(10,175,198,.35);
  box-shadow: var(--shadow-md);
}

.why-card h3,
.why-card h4{
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--text);
}

.why-card p{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  font-weight: 450;
}

/* cybersecurity: styled "Why Choose Rhenai" section INACZEJ*/
.cyber-why-choose{
  padding: 96px 0 90px;
  background: linear-gradient(180deg, #061227 0%, #0d2148 40%, #f5f9ff 40.1%, #ffffff 100%);
  border-top: 1px solid rgba(117,166,255,.30);
}

.cyber-why-choose::before{
  background:
    radial-gradient(760px 280px at 8% 8%, rgba(10,175,198,.28), rgba(10,175,198,0) 72%),
    radial-gradient(860px 300px at 92% 24%, rgba(37,99,235,.30), rgba(37,99,235,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 38%);
}

.cyber-why-hero{
  margin: 0 auto 34px;
  padding: 24px 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(191,223,255,.34);
  background: linear-gradient(135deg, rgba(10,24,52,.94) 0%, rgba(14,52,108,.88) 56%, rgba(20,92,170,.78) 100%);
  box-shadow: 0 20px 42px rgba(2,6,23,.24);
}

.cyber-why-eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(196,228,255,.95);
}

.cyber-why-choose h2{
  margin-bottom: 12px;
  text-align: left;
  color: #eef5ff;
}

.cyber-why-choose .why-intro{
  max-width: none;
  margin: 0 0 18px;
  text-align: left;
  color: rgba(224,236,255,.95);
}

.cyber-why-tags{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cyber-why-tags li{
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191,223,255,.42);
  background: rgba(255,255,255,.14);
  color: #f3f8ff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .02em;
}

.cyber-why-grid{
  gap: 20px;
}

.cyber-why-card{
  padding: 22px 18px 18px;
  border-color: rgba(10,175,198,.24);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 12px 26px rgba(2,6,23,.10);
}

.cyber-why-card .cyber-why-icon{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0aafc6 0%, #2563eb 100%);
  box-shadow: 0 10px 16px rgba(37,99,235,.26);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.cyber-why-card h4{
  margin-bottom: 8px;
  font-size: 17px;
}

.cyber-why-card p{
  color: var(--text-secondary);
  font-weight: 500;
}

.cyber-why-card:hover{
  transform: translateY(-8px);
  border-color: rgba(37,99,235,.40);
  box-shadow: 0 18px 34px rgba(2,6,23,.14);
}

/* cyber intro (inny vibe niż reszta) */
.cyber-intro .cyber-intro-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  justify-content: center;
}

.cyber-intro .container{
  max-width: 1180px;
}

.cyber-intro .why-intro{
  max-width: 76ch;
  margin: 0 auto 56px;
}

.cyber-intro .why-card{
  background: linear-gradient(180deg, rgba(10,175,198,.12) 0%, rgba(10,175,198,.08) 100%);
  border-color: rgba(10,175,198,.26);
  box-shadow: 0 14px 30px rgba(10,175,198,.13);
  padding: 26px 20px;
}

.cyber-intro .why-card h4{
  text-align: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.cyber-intro .why-card ul{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 44ch;
  display: grid;
  gap: 10px;
  color: var(--text-secondary);
}

.cyber-intro .why-card li{
  font-size: 14px;
  position: relative;
  padding-left: 16px;
  line-height: 1.65;
  font-weight: 450;
}

.cyber-intro .why-card li::before{
  content:'';
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background: rgba(10,175,198,.95);
  box-shadow: 0 0 0 3px rgba(10,175,198,.18);
}

/* About: "What We Deliver In Practice" cards side by side */
body.page-about .cyber-intro .cyber-intro-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* cybersecurity: impact values slightly smaller than home */
body.page-cybersecurity .cyber-data-proofs .impact-value{
  font-size: clamp(25px, 2.7vw, 36px);
  color: #1b6ed7;
  text-shadow: 0 8px 16px rgba(37,99,235,.22);
  letter-spacing: -0.02em;
}

@supports (-webkit-background-clip: text){
  body.page-cybersecurity .cyber-data-proofs .impact-value{
    background: linear-gradient(135deg, #0aa7c2 0%, #2563eb 58%, #8ddcff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

body.page-about .cyber-intro .cyber-intro-grid > .why-card:last-child{
  grid-column: auto;
  max-width: none;
  width: auto;
  margin: 0;
}

@media (max-width: 1280px){
  body.page-about .cyber-intro .cyber-intro-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px){
  .cyber-intro .cyber-intro-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cyber-intro .cyber-intro-grid > .why-card:last-child{
    grid-column: 1 / -1;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px){
  .cyber-intro .cyber-intro-grid{ grid-template-columns: 1fr; }
  .cyber-intro .cyber-intro-grid > .why-card:last-child{
    grid-column: auto;
    max-width: none;
  }
  .cyber-intro .why-intro{ margin-bottom: 36px; }

  body.page-about .cyber-intro .cyber-intro-grid{
    grid-template-columns: 1fr;
  }

  .cyber-why-choose{
    padding: 80px 0 72px;
    background: linear-gradient(180deg, #061227 0%, #0d2148 34%, #f5f9ff 34.1%, #ffffff 100%);
  }

  .cyber-why-hero{
    padding: 20px 18px 18px;
    margin-bottom: 24px;
  }

  .cyber-why-tags li{
    font-size: 11px;
  }

  .cyber-why-card .cyber-why-icon{
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

/* =========================
   AUTOMATION LOGOS STRIP
   ========================= */

.automation-logos-section{
  padding: 24px 0 74px;
  background: linear-gradient(180deg, rgba(10,175,198,.18) 0%, rgba(10,175,198,.10) 100%);
  border-top: 1px solid rgba(10,175,198,.28);
  border-bottom: 1px solid rgba(10,175,198,.22);
}

.automation-logos-title{
  margin: 0 0 20px;
  text-align: center;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--text);
}

.automation-logos-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(10,175,198,.22);
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}

.automation-logos-carousel{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(10,175,198,.22);
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}

.automation-logos-track{
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 16px;
  animation: logos-carousel-scroll 68s linear infinite;
}

.automation-logos-carousel:hover .automation-logos-track{
  animation-play-state: paused;
}

@keyframes logos-carousel-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.automation-logo-item{
  margin: 0;
  flex: 0 0 auto;
  width: 170px;
  height: 78px;
  border-radius: 14px;
  border: 1px solid #d6e2f1;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 6px 14px rgba(15,43,64,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.automation-logo-item img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

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

.cta-section{
  padding: 92px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(10,175,198,.10) 0%, rgba(255,255,255,0) 100%);
  border-bottom: 1px solid var(--border);
}

.cta-section h2{
  font-size: 40px;
  font-weight: 950;
  margin: 0 0 18px;
  color: var(--text);
}

.cta-section p{
  font-size: 16px;
  color: var(--muted);
  max-width: 76ch;
  margin: 0 auto 34px;
  line-height: 1.85;
  font-weight: 450;
}

.cta-actions{
  display: flex;
  justify-content: center;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  background: hsl(207, 66%, 21%);
}

.footer-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-inner > p{
  margin: 0;
}

.footer-bottom{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 92px;
}

.footer-links-col p{
  margin: 0;
}

.footer-contact-link a{
  font-weight: 700;
}

.footer-links{
  line-height: 1.6;
}

.footer-social{
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-btn{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.92);
  transition: transform var(--t-fast) ease, background var(--t-fast) ease, border-color var(--t-fast) ease;
}

.footer-social-btn svg{
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.footer-social-btn--youtube svg{
  width: 16px;
  height: 16px;
}

.footer-social-btn:hover{
  transform: translateY(-1px);
  background: rgba(10,175,198,.30);
  border-color: rgba(10,175,198,.62);
  color: #ffffff;
}

.footer-inner a{
  color: rgba(160,212,255,.95);
  transition: color var(--t-fast) ease;
}

.footer-inner a:hover{ color: #ffffff; }

/* =========================
   INTELLIGENT DOCUMENT MANAGEMENT
   ========================= */

body.page-idm{
  --idm-ink: #102739;
  --idm-accent: #197ea9;
  --idm-accent-2: #3ba5d4;
  --idm-soft: #edf6fc;
  --hero-overlay-a: rgba(5,18,33,.72);
  --hero-overlay-b: rgba(20,104,141,.45);
}

body.page-idm .hero-content{
  max-width: 92ch;
}

body.page-idm .hero-title{
  max-width: 18ch;
}

body.page-idm .hero-desc{
  max-width: 82ch;
}

body.page-idm .idm-hero-points{
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 88ch;
}

body.page-idm .idm-hero-points li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(236,248,255,.95);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 560;
}

body.page-idm .idm-hero-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(148,227,255,.96);
  box-shadow: 0 0 0 3px rgba(148,227,255,.2);
}

body.page-idm .idm-hero-actions{
  gap: 12px;
}

body.page-idm .idm-problem{
  background: linear-gradient(180deg, rgba(25,126,169,.17) 0%, rgba(25,126,169,.10) 100%);
  border-top: 1px solid rgba(25,126,169,.28);
  border-bottom: 1px solid rgba(25,126,169,.22);
}

body.page-idm .idm-problem .impact-panel{
  border-color: rgba(25,126,169,.30);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(245,251,255,.98) 100%);
  box-shadow: 0 16px 30px rgba(14,42,58,.12);
}

body.page-idm .idm-problem-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-idm .idm-impact-static{
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: 0;
  color: #0f4f68;
}

body.page-idm .idm-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

body.page-idm .idm-list li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #2a4b62;
  font-size: 14px;
  line-height: 1.64;
  font-weight: 540;
}

body.page-idm .idm-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--idm-accent);
  box-shadow: 0 0 0 3px rgba(25,126,169,.18);
}

body.page-idm .idm-problem-list{
  margin-top: 16px;
}

body.page-idm .idm-deliver{
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

body.page-idm .idm-deliver-panel{
  padding: 18px 20px;
  margin-top: 10px;
}

body.page-idm .idm-deliver-panel .impact-sub{
  color: #26465b;
  font-weight: 530;
}

body.page-idm .idm-capabilities{
  background: linear-gradient(180deg, var(--idm-soft) 0%, #ffffff 52%, #f4faff 100%);
}

body.page-idm .idm-capabilities h2,
body.page-idm .idm-security h2,
body.page-idm .idm-partners h2{
  color: var(--idm-ink);
}

body.page-idm .idm-cap-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-idm .idm-security{
  background: linear-gradient(180deg, #ffffff 0%, #eef7fd 100%);
}

body.page-idm .idm-security-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.page-idm .idm-use-cases{
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

body.page-idm .idm-use-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-idm .idm-partners{
  background: linear-gradient(180deg, #ffffff 0%, #eef7fd 100%);
}

body.page-idm .idm-integration-list{
  margin: 0 auto;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
}

body.page-idm .idm-value{
  background: linear-gradient(180deg, rgba(25,126,169,.17) 0%, rgba(25,126,169,.09) 100%);
}

body.page-idm .idm-value .impact-panel{
  border-color: rgba(25,126,169,.30);
  box-shadow: 0 16px 30px rgba(14,42,58,.12);
}

body.page-idm .idm-value-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-idm .idm-subtitle{
  margin: 18px 0 10px;
  font-size: 16px;
  font-weight: 880;
  color: var(--idm-ink);
}

body.page-idm .idm-kpi-list{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

body.page-idm .idm-delivery{
  background: linear-gradient(180deg, #ffffff 0%, #edf7fd 100%);
}

body.page-idm .idm-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.page-idm .idm-step{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

body.page-idm .idm-step:hover{
  transform: translateY(-6px);
  border-color: rgba(25,126,169,.34);
  box-shadow: var(--shadow-md);
}

body.page-idm .idm-step-no{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin: 0 0 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--idm-accent), var(--idm-accent-2));
  box-shadow: 0 10px 20px rgba(25,126,169,.25);
}

body.page-idm .idm-step h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--idm-ink);
}

body.page-idm .idm-step p{
  margin: 0;
  color: #2a4b62;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 520;
}

body.page-idm .idm-faq{
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

body.page-idm .idm-faq-list{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

body.page-idm .idm-faq-item{
  border: 1px solid rgba(25,126,169,.26);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
  overflow: hidden;
}

body.page-idm .idm-faq-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 16px 50px 16px 16px;
  color: var(--idm-ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 780;
}

body.page-idm .idm-faq-item summary::-webkit-details-marker{
  display: none;
}

body.page-idm .idm-faq-item summary::marker{
  content: "";
}

body.page-idm .idm-faq-item summary::after{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(25,126,169,.58);
  color: var(--idm-ink);
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  background: rgba(255,255,255,.94);
  transition: transform var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
}

body.page-idm .idm-faq-item[open] summary{
  background: linear-gradient(180deg, rgba(25,126,169,.12), rgba(255,255,255,.84));
}

body.page-idm .idm-faq-item[open] summary::after{
  transform: rotate(45deg);
  background: var(--idm-accent);
  border-color: var(--idm-accent);
  color: #ffffff;
}

body.page-idm .idm-faq-item p{
  margin: 0;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(25,126,169,.16);
  color: #2a4b62;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 520;
}

body.page-idm .idm-cta{
  background: linear-gradient(135deg, rgba(25,126,169,.16) 0%, rgba(255,255,255,.96) 100%);
}

body.page-idm .idm-cta-actions{
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px){
  body.page-idm .idm-cap-grid,
  body.page-idm .idm-security-grid,
  body.page-idm .idm-use-grid{
    grid-template-columns: 1fr;
  }

  body.page-idm .idm-integration-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-idm .idm-kpi-list{
    grid-template-columns: 1fr;
  }

  body.page-idm .idm-steps{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  body.page-idm .idm-problem-grid,
  body.page-idm .idm-value-grid{
    grid-template-columns: 1fr;
  }

  body.page-idm .idm-integration-list{
    grid-template-columns: 1fr;
  }

  body.page-idm .idm-hero-points li{
    font-size: 13px;
    line-height: 1.58;
  }

  body.page-idm .idm-step{
    padding: 20px 16px 16px;
  }

  body.page-idm .idm-faq-item summary{
    padding: 14px 44px 14px 14px;
    font-size: 15px;
  }

  body.page-idm .idm-faq-item p{
    padding: 0 14px 14px;
  }
}

/* =========================
   DIGITAL WORKFORCE
   ========================= */

body.page-workforce{
  --hero-overlay-a: rgba(7,22,42,.72);
  --hero-overlay-b: rgba(23,118,153,.44);
}

body.page-workforce .wf-hero .hero-title{
  max-width: 18ch;
}

body.page-workforce .wf-hero .hero-desc{
  max-width: 86ch;
}

body.page-workforce .wf-hero-points{
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 88ch;
}

body.page-workforce .wf-hero-points li{
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(239,251,255,.96);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 560;
}

body.page-workforce .wf-hero-points li::before{
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(138,231,255,.94);
  box-shadow: 0 0 0 3px rgba(138,231,255,.18);
}

body.page-workforce .wf-evidence .impact-panel{
  border-color: rgba(10,175,198,.30);
}

body.page-workforce .wf-rpa-brief{
  padding-top: 28px;
}

body.page-workforce .wf-rpa-panel{
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(243,250,255,.92) 100%);
}

body.page-workforce .wf-rpa-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

body.page-workforce .wf-rpa-kpi-grid{
  margin-top: 2px;
}

body.page-workforce .wf-rpa-kpi-grid .impact-metric{
  min-height: 136px;
  background: linear-gradient(180deg, rgba(10,175,198,.11) 0%, rgba(10,175,198,.06) 100%);
  border-color: rgba(10,175,198,.26);
}

body.page-workforce .wf-rpa-kpi-grid .impact-label{
  font-weight: 650;
}

body.page-workforce .wf-rpa-subtitle{
  margin: 4px 0 0;
  color: var(--text);
  font-size: clamp(20px, 2.0vw, 26px);
  line-height: 1.25;
  font-weight: 900;
}

body.page-workforce .wf-rpa-adv-grid{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-workforce .wf-rpa-adv-grid li{
  position: relative;
  margin: 0;
  padding: 12px 12px 12px 34px;
  border-radius: 12px;
  border: 1px solid rgba(10,175,198,.24);
  background: linear-gradient(180deg, #fbfeff 0%, #f2f9ff 100%);
  color: #24465d;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 620;
}

body.page-workforce .wf-rpa-adv-grid li::before{
  content: '';
  position: absolute;
  left: 14px;
  top: 1.02em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10,175,198,.92);
  box-shadow: 0 0 0 3px rgba(10,175,198,.18);
}

body.page-workforce .wf-rpa-columns{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.page-workforce .wf-rpa-copy{
  border: 1px solid rgba(10,175,198,.20);
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  padding: 14px 14px 12px;
}

body.page-workforce .wf-rpa-copy h3{
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 860;
}

body.page-workforce .wf-rpa-copy p{
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 520;
}

body.page-workforce .wf-rpa-copy p:last-child{
  margin-bottom: 0;
}

body.page-workforce .wf-rpa-fit-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

body.page-workforce .wf-rpa-fit-list li{
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 560;
}

body.page-workforce .wf-kpi-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page-workforce .wf-kpi-grid .impact-metric{
  min-height: 132px;
}

body.page-workforce .wf-risk-grid{
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-workforce .wf-governance{
  background: linear-gradient(180deg, #edf8ff 0%, #f8fdff 52%, #eef8ff 100%);
  border-top: 1px solid rgba(10,175,198,.24);
  border-bottom: 1px solid rgba(10,175,198,.18);
}

body.page-workforce .wf-governance::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(120% 92% at 50% 100%, rgba(10,175,198,.10), rgba(10,175,198,0) 66%);
}

body.page-workforce .wf-governance .why-intro{
  color: #305972;
}

body.page-workforce .wf-governance-grid .why-card{
  background: rgba(255,255,255,.90);
  border-color: rgba(10,175,198,.22);
}

body.page-workforce .wf-shadow-close{
  margin: 20px auto 0;
  max-width: 78ch;
  text-align: center;
  color: #284659;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 580;
}

body.page-workforce .wf-module-grid,
body.page-workforce .wf-governance-grid,
body.page-workforce .wf-use-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-workforce .wf-use-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

body.page-workforce .wf-use-panel{
  border: 1px solid rgba(10,175,198,.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(244,251,255,.94) 100%);
  box-shadow: 0 12px 24px rgba(2,6,23,.08);
  padding: 16px 16px 14px;
}

body.page-workforce .wf-use-panel h3{
  margin: 0 0 8px;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.22;
  color: var(--text);
}

body.page-workforce .wf-use-panel > p{
  margin: 0 0 10px;
  color: #2c5168;
  font-size: 14px;
  line-height: 1.68;
  font-weight: 540;
}

body.page-workforce .wf-use-accordion{
  display: grid;
  gap: 8px;
}

body.page-workforce .wf-use-item{
  border: 1px solid rgba(10,175,198,.24);
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  overflow: hidden;
}

body.page-workforce .wf-use-item summary{
  position: relative;
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 10px 36px 10px 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 820;
}

body.page-workforce .wf-use-item summary::-webkit-details-marker{
  display: none;
}

body.page-workforce .wf-use-item summary::after{
  content: '+';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-dark);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

body.page-workforce .wf-use-item[open] summary::after{
  content: '-';
}

body.page-workforce .wf-use-item ul{
  margin: 0;
  padding: 0 12px 12px 28px;
  display: grid;
  gap: 6px;
}

body.page-workforce .wf-use-item li{
  margin: 0;
  color: #2d4d62;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 560;
}

body.page-workforce .wf-use-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

body.page-workforce .wf-use-list li{
  color: #2d4d62;
  font-size: 14px;
  line-height: 1.64;
  font-weight: 560;
}

body.page-workforce .wf-use-note{
  margin: 10px 0 0;
  color: #2b5269;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 560;
}

body.page-workforce .wf-start-criteria{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

body.page-workforce .wf-start-card{
  border: 1px solid rgba(10,175,198,.24);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(244,251,255,.92) 100%);
  padding: 14px 14px 12px;
}

body.page-workforce .wf-start-card h3{
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 860;
}

body.page-workforce .wf-start-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

body.page-workforce .wf-start-list li{
  color: #2d4f64;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 560;
}

body.page-workforce .wf-use-grid .why-card{
  padding: 20px 18px;
}

body.page-workforce .wf-use-grid .why-card h4{
  margin: 0;
}

body.page-workforce .wf-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.page-workforce .wf-step{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

body.page-workforce .wf-step:hover{
  transform: translateY(-6px);
  border-color: rgba(10,175,198,.35);
  box-shadow: var(--shadow-md);
}

body.page-workforce .wf-step-no{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin: 0 0 14px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 20px rgba(10,175,198,.24);
}

body.page-workforce .wf-step h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

body.page-workforce .wf-step p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

body.page-workforce .wf-cta-actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px){
  body.page-workforce .wf-kpi-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-workforce .wf-rpa-adv-grid,
  body.page-workforce .wf-rpa-columns{
    grid-template-columns: 1fr;
  }

  body.page-workforce .wf-module-grid,
  body.page-workforce .wf-governance-grid,
  body.page-workforce .wf-use-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-workforce .wf-use-layout,
  body.page-workforce .wf-start-criteria{
    grid-template-columns: 1fr;
  }

  body.page-workforce .wf-steps{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  body.page-workforce .wf-rpa-kpi-grid .impact-metric{
    min-height: 0;
  }

  body.page-workforce .wf-rpa-adv-grid li{
    padding: 11px 11px 11px 32px;
    font-size: 13px;
  }

  body.page-workforce .wf-rpa-copy{
    padding: 12px 12px 10px;
  }

  body.page-workforce .wf-rpa-copy h3{
    font-size: 16px;
  }

  body.page-workforce .wf-use-panel{
    padding: 13px 12px 11px;
  }

  body.page-workforce .wf-use-panel h3{
    font-size: 18px;
  }

  body.page-workforce .wf-use-item summary{
    padding: 9px 32px 9px 10px;
    font-size: 13px;
  }

  body.page-workforce .wf-use-item ul{
    padding: 0 10px 10px 24px;
  }

  body.page-workforce .wf-use-item li,
  body.page-workforce .wf-use-list li,
  body.page-workforce .wf-start-list li{
    font-size: 13px;
    line-height: 1.58;
  }

  body.page-workforce .wf-start-card{
    padding: 12px 12px 10px;
  }

  body.page-workforce .wf-start-card h3{
    font-size: 16px;
  }

  body.page-workforce .wf-risk-grid{
    grid-template-columns: 1fr;
  }

  body.page-workforce .wf-hero-points li{
    font-size: 13px;
    line-height: 1.6;
  }

  body.page-workforce .wf-step{
    padding: 20px 16px 16px;
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px){
  .nav{ gap: 16px; }
  .nav a{ font-size: 13px; }
  .brand{ height: 72px; }
  .logo-img{ height: 72px; max-width: 320px; }

  .help-strip-inner{ grid-template-columns: 1fr; }
  .help-strip-links{ align-items: flex-start; }
  .impact-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-metric--wide{ grid-column: 1 / -1; }
  .benefits-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .solutions-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }

  .chc-challenges-grid{ grid-template-columns: 1fr; }
  .chc-steps{ grid-template-columns: 1fr; }
  .chc-value-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .chc-transform-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .chc-delivery-list{ grid-template-columns: 1fr; }
  .chc-who-for-list{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .help-strip{ padding: 18px 0; }
  .help-strip-inner{ padding: 16px 14px; gap: 14px; }
  .help-strip-title{ font-size: clamp(22px, 6vw, 28px); }
  .help-strip-desc{ font-size: 14px; line-height: 1.65; }
  .help-strip-links{ gap: 8px; }
  .help-strip-link{
    min-height: 38px;
    padding: 10px 18px;
    font-size: 13px;
  }
  .impact-inline-section{ padding: 18px 0; }
  .impact-panel{ padding: 16px 14px; }
  .impact-title{ font-size: clamp(22px, 6vw, 28px); }
  .impact-sub{ font-size: 14px; line-height: 1.65; }
  .impact-grid{ grid-template-columns: 1fr; }
  .impact-metric,
  .impact-metric--wide{
    grid-column: auto;
    min-height: 0;
  }
  .impact-value{ font-size: clamp(24px, 9vw, 34px); }
  .impact-label{ font-size: 13px; }
  .impact-footnote{ margin-top: 10px; font-size: 11px; }
  .home-solutions-strip{ padding: 12px 0 14px; }
  .home-solutions-strip__inner{ padding: 12px; border-radius: 14px; }
  .impact-solution-links__label{ margin-bottom: 8px; font-size: 11px; }
  .impact-solution-links__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .impact-solution-links__list a{ min-height: 42px; padding: 7px 10px; font-size: 12px; border-radius: 12px; }

  .header-inner{
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    padding: 52px 0 14px;
  }

  .mobile-nav-toggle{
    display: inline-flex;
    position: absolute;
    top: 8px;
    left: 6px;
    z-index: 1003;
  }

  .brand{
    order: 1;
    margin-left: auto;
    height: 68px;
  }

  .logo-img{
    height: 68px;
    max-width: 280px;
  }

  .nav{
    order: 3;
    display: none;
    width: calc(100% - 12px);
    margin-left: 6px;
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4px;
  }

  .site-header.mobile-menu-open .nav{
    display: flex;
    padding: 8px 10px 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 10px 24px rgba(2,6,23,.08);
  }

  .nav > a:not(.btn-nav){
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-item{ width: 100%; }

  .nav-item > a{
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav .btn-nav{
    align-self: flex-start;
    margin-top: 6px;
  }

  .language-switcher{ top: 8px; right: 0; }
  .lang-btn{ padding: 6px 10px; font-size: 11px; }

  .benefits-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .solutions-grid{ grid-template-columns: 1fr; }

  body.page-company-health .chc-challenges{
    padding: 68px 0;
  }

  body.page-company-health .chc-how-it-works{
    padding: 62px 0 42px;
  }

  body.page-company-health .chc-transform{
    padding: 42px 0 68px;
  }

  body.page-company-health .chc-value{
    padding: 64px 0 60px;
  }

  body.page-company-health .chc-context .impact-title{
    font-size: clamp(24px, 7vw, 32px);
  }

  .chc-value-grid{ grid-template-columns: 1fr; }

  .chc-transform-grid{ grid-template-columns: 1fr; }

  .chc-step{
    padding: 18px 16px 14px;
  }

  .chc-step h3{
    font-size: 18px;
  }

  .chc-transform-grid .chc-flashcard,
  .chc-flashcard-inner{
    min-height: 198px;
  }

  .chc-flashcard-front h4{
    font-size: 19px;
  }

  .chc-delivery-panel{
    padding: 18px 16px;
  }

  .chc-delivery-panel h3{
    font-size: 20px;
  }

  .chc-who-for-panel{
    padding: 18px 16px;
  }

  .chc-who-for-panel h3{
    font-size: 20px;
  }

  main{ padding: 52px 0; }

  .section-title{ font-size: 28px; }
  .content-section h2{ font-size: 32px; }
  .cta-section h2{ font-size: 30px; }

  .automation-logos-row{
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 12px;
  }

  .automation-logos-track{
    padding: 12px;
    animation-duration: 56s;
  }

  body.page-disclaimer .why-card{
    grid-template-columns: 1fr;
  }

  body.page-disclaimer .why-card h4,
  body.page-disclaimer .why-card p,
  body.page-disclaimer .why-card ul{
    grid-column: auto;
  }

  .automation-logo-item{
    width: 156px;
    height: 72px;
  }

  .footer-bottom{ padding-right: 74px; }

  /* dropdown na mobile: rozwijanie tylko dla aktywnej pozycji */
  .nav-dropdown{
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: auto;
    padding: 4px 0 8px 12px;
  }
  .nav-item.active .nav-dropdown{ display: block; }
  .nav-dropdown a{
    padding: 7px 0;
    font-size: 13px;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown{ transform: none; }
}

@media (max-width: 520px){
  .impact-solution-links__list{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .help-strip-link{ width: auto; }
  .nav a{ font-size: 13px; }

  .hero-title{ font-size: 28px; }
  .hero-desc{ font-size: 15px; }
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn{ width: 100%; }

  .btn-lg{ padding: 12px 22px; font-size: 14px; }

  .benefit-card{ padding: 18px 14px; }

  .section-title{ font-size: 24px; }
  .content-section h2{ font-size: 30px; }

  .automation-logos-section{
    padding: 20px 0 60px;
  }

  .automation-logos-title{
    font-size: 18px;
    margin-bottom: 16px;
  }

  .automation-logo-item{
    width: 142px;
    height: 66px;
    padding: 8px 12px;
  }

  .automation-logos-track{
    animation-duration: 48s;
  }
}

@media (prefers-reduced-motion: reduce){
  .automation-logos-track{
    animation: none;
  }
}






