/*!
Theme Name: LexCyber AI
Theme URI: 
Author: LexCyber AI
Author URI:
Version: 1.0
*/

/* Don't overwrite this file. Compile "/assets/main.scss" to "/assets/dist/main.css" */

/* From http://codex.wordpress.org/CSS */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

html :where(.wp-block) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
}

:root {
  --ibm-blue: #0f62fe;
  --ibm-blue-60: #0043ce;
  --ibm-blue-80: #002d9c;
  --ibm-gray-10: #f4f4f4;
  --ibm-gray-20: #e0e0e0;
  --ibm-gray-30: #c6c6c6;
  --ibm-gray-50: #8d8d8d;
  --ibm-gray-70: #525252;
  --ibm-gray-90: #262626;
  --ibm-gray-100: #161616;
  --ibm-green: #24a148;
  --ibm-red: #da1e28;
  --ibm-purple: #8a3ffc;
  --ibm-cyan: #1192e8;
  --card-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  line-height: 1.6;
  color: var(--ibm-gray-100);
  background: #fff
}

.container {
  max-width: 1584px;
  margin: 0 auto;
  padding: 0 5%
}

.ibm-grid {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 32px;
  align-items: center
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f3f3f3;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ibm-gray-20);
  z-index: 1000;
  padding: 16px 0
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--ibm-gray-100);
  text-decoration: none
}

.nav {
  display: flex;
  gap: 40px
}

.nav a {
  color: var(--ibm-gray-100);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: color .2s;
  padding: 4px 0;
}

.nav a:hover {
  color: var(--ibm-blue)
}

.hero {
  background: linear-gradient(135deg, var(--ibm-gray-100) 0%, var(--ibm-gray-90) 100%);
  color: #fff;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="2" height="40" fill="rgba(15,98,254,0.12)"/><rect width="40" height="2" fill="rgba(15,98,254,0.12)"/></pattern></defs><rect width="400" height="400" fill="url(%23grid)"/></svg>');
  opacity: .35;
}

.hero-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.hero-content {
  z-index: 1
}

.hero-badge {
  display: inline-block;
  background: var(--ibm-blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.hero h1 {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #fff
}

.hero h1 strong {
  font-weight: 600;
  color: var(--ibm-blue)
}

.subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--ibm-gray-20);
  max-width: 720px
}

.description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 48px;
  color: var(--ibm-gray-20);
  max-width: 720px
}

.ibm-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ibm-blue);
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .2s;
  text-transform: uppercase;
  letter-spacing: .5px
}

.ibm-btn:hover {
  background: var(--ibm-blue-60);
  transform: translateY(-1px)
}

.ibm-btn--secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff
}

.ibm-btn--secondary:hover {
  background: #fff;
  color: var(--ibm-gray-100)
}

/* HERO TILES (kafelki po prawej) */
.hero-tiles {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tile {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 28px;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
  background: rgba(255, 255, 255, .08)
}

.tile-number {
  font-size: 44px;
  font-weight: 300;
  color: var(--ibm-blue);
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1;
  margin-bottom: 8px
}

.tile-label {
  font-size: 16px;
  color: #fff;
  opacity: .9
}

/* Sekcje poniżej (jak wcześniej) */
.section {
  padding: 120px 0
}

.section--gray {
  background: var(--ibm-gray-10)
}

.section-header {
  text-align: center;
  margin-bottom: 64px
}

.section-eyebrow {
  font-size: 16px;
  font-weight: 500;
  color: var(--ibm-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  color: var(--ibm-gray-100);
  margin-bottom: 8px
}

@media only screen and (max-width: 768px) {
.section-title {
  font-size: 36px;
}
}

.section-subtitle,
.lede {
  font-size: 20px;
  color: var(--ibm-gray-70);
  max-width: 780px;
  margin: 8px auto 0;
  text-align: center
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 32px
}

.module-card {
  background: #fff;
  border: 1px solid var(--ibm-gray-20);
  padding: 48px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--ibm-blue);
  transform: scaleY(0);
  transition: transform .25s ease
}

.module-card:hover::before {
  transform: scaleY(1)
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow)
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px
}

.module-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--ibm-gray-100)
}

.module-count {
  background: var(--ibm-blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600
}

.module-description {
  font-size: 16px;
  color: var(--ibm-gray-70);
  margin-bottom: 16px;
  line-height: 1.6
}

.module-features {
  list-style: none;
  padding-left: 0;
}

.module-features li {
  padding: 6px 0;
  color: var(--ibm-gray-70);
  font-size: 14px;
  position: relative;
  padding-left: 24px
}

.module-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ibm-green);
  font-weight: 600
}

.clients-swiper {
  position: relative;
}

.clients-swiper .swiper-wrapper {
  align-items: center;
}

.clients-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.logo-box {
  width: 180px;
  height: 64px;
  border: 1px solid var(--ibm-gray-20);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: .85;
  transition: all .2s;
  border-radius: 10px;
  text-decoration: none;
}

.logo-box:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.logo-box span {
  font-size: 14px;
  color: var(--ibm-gray-70);
}

@media (min-width: 768px) {
  .clients-swiper .swiper-slide {
    padding: 16px;
  }

  .logo-box {
    width: 200px;
    height: 72px;
  }
}


.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

@media (max-width: 767px) {
  .testimonials, .cards-grid {
    grid-template-columns: 1fr !important;
  }
}


.testimonial {
  background: #fff;
  border: 1px solid var(--ibm-gray-20);
  padding: 32px;
  transition: transform .2s, box-shadow .2s
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow)
}

.q {
  font-size: 18px;
  color: var(--ibm-gray-90);
  margin-bottom: 16px
}

.author {
  font-size: 14px;
  color: var(--ibm-gray-70)
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 16px
}

.cards-grid.two-col {
  grid-template-columns: repeat(2, minmax(320px, 1fr))
}

@media (max-width:1024px) {
  .cards-grid.two-col {
    grid-template-columns: 1fr
  }
}

.card {
  background: #fff;
  border: 1px solid var(--ibm-gray-20);
  padding: 32px;
  transition: transform .2s, box-shadow .2s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow)
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--ibm-gray-100)
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  color: var(--ibm-gray-90)
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ibm-green);
  font-weight: 700
}

.bullets {
  margin-left: 18px
}

.bullets li {
  margin: 8px 0;
  color: var(--ibm-gray-90)
}

.notice {
  margin-top: 16px;
  border: 1px solid var(--ibm-gray-20);
  background: linear-gradient(180deg, #fff, #fafafa);
  padding: 16px 20px;
  border-left: 4px solid var(--ibm-blue);
  color: var(--ibm-gray-90)
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.contact {
  background: #fff;
  padding: 120px 0;
  text-align: center;
  margin-top: 80px;
  border-top: 1px solid var(--ibm-gray-20)
}

.contact .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.contact .section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-call {
  background: #0f62fe;
  color: #fff;
  border: 2px solid #0f62fe;
}

.footer {
  background: var(--ibm-gray-100);
  color: var(--ibm-gray-50);
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
  margin-top: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px)
}

.reveal.in-view {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease
}

.img-fluid {
  max-width: 100%;
  height: auto;
}


.header-content img {
  height: 36px;
}

@media (max-width:1200px) {
  .hero::before {
    width: 0
  }
}

@media (max-width:1056px) {
  .hero h1 {
    font-size: 48px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width:672px) {
  .nav {
    display: none
  }

  .hero {
    padding: 120px 0 80px
  }

  .hero h1 {
    font-size: 32px
  }

  .modules-grid {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 5%
  }

  .hero-tiles {
    grid-template-columns: 1fr
  }
}

.header {
  position: relative;
  z-index: 100
}

.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.header .logo {
  display: inline-flex;
  align-items: center
}

.menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.menu li a {
  display: inline-block;
  padding: 10px 0;
  text-decoration: none
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #f3f3f3;
  }

  .nav.open {
    display: block
  }

  .menu {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }

  .menu li a {
    display: block;
    padding: 14px 16px
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center
}

.nav-toggle .icon {
  display: none
}

.nav-toggle .icon-open {
  display: block
}

body.nav-open .nav-toggle .icon-open {
  display: none
}

body.nav-open .nav-toggle .icon-close {
  display: block
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex
  }
}

.compliance-table-container {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
  margin-top: 0;
  clear: both;
}

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

.table-header {
  background: var(--ibm-gray-100);
  color: #fff;
}

.table-header th {
  padding: 20px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  word-wrap: break-word;
}

.table-header th:nth-child(1) {
  width: 25%
}

.table-header th:nth-child(2) {
  width: 20%
}

.table-header th:nth-child(3) {
  width: 35%
}

.table-header th:nth-child(4) {
  width: 20%
}

.table-row {
  border-bottom: 1px solid var(--ibm-gray-20);
  transition: background .2s;
}

.table-row:hover {
  background: var(--ibm-gray-10);
}

.table-cell {
  padding: 16px 12px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.function-cell {
  font-weight: 600;
  color: var(--ibm-gray-100);
  width: 25%;
}

.article-cell {
  font-family: 'IBM Plex Mono', monospace;
  background: var(--ibm-gray-10);
  border-radius: 4px;
  padding: 8px;
  font-size: 11px;
  color: var(--ibm-blue);
  font-weight: 500;
  word-break: break-word;
  width: 20%;
}

.benefit-cell {
  color: var(--ibm-gray-70);
  width: 35%;
  line-height: 1.5;
}

.support-cell {
  width: 20%;
  padding: 16px 8px;
  vertical-align: top;
}

.tag {
  display: inline-block;
  background: var(--ibm-blue);
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
  margin: 1px 2px 1px 0;
  white-space: nowrap;
  line-height: 1.2;
}

.tag.iso {
  background: var(--ibm-green);
}

.tag.rodo {
  background: var(--ibm-purple);
}

.tag.audit {
  background: var(--ibm-cyan);
}

.expandable-section {
  background: #fff;
  border: 1px solid var(--ibm-gray-20);
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  clear: both
}

.expandable-header {
  background: var(--ibm-gray-10);
  padding: 24px;
  cursor: pointer;
  transition: all .3s;
  border-bottom: 1px solid var(--ibm-gray-20)
}

.expandable-header:hover {
  background: var(--ibm-gray-20)
}

.expandable-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ibm-gray-100);
  margin-bottom: 8px
}

.expandable-subtitle {
  font-size: 14px;
  color: var(--ibm-gray-70)
}

.expandable-content {
  padding: 0;
  transition: max-height .3s ease
}

.expandable-section.is-open .expandable-content {
  border-top: 0
}

.bullets {
  padding-left: 0;
}

@media only screen and (max-width: 768px) {
  .section {
    padding: 60px 0 !important;
  }

  .hero {
    padding: 60px 0;
  }
}

@media (max-width:672px) {
  .expandable-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    transition: max-height .45s ease, padding .25s ease;
  }

  .expandable-section.is-open .expandable-content {
    max-height: 2000px !important;
    overflow: visible !important;
    padding: 12px !important;
  }

  .compliance-table-container {
    overflow: visible;
    -webkit-overflow-scrolling: auto;
  }

  .compliance-table,
  .compliance-table thead,
  .compliance-table tbody,
  .compliance-table tr,
  .compliance-table th,
  .compliance-table td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .compliance-table thead,
  .compliance-table thead tr,
  .compliance-table thead th,
  .compliance-table tr:first-child {
    display: none !important;
  }

  .table-row {
    display: block !important;
    border: 1px solid var(--ibm-gray-20) !important;
    border-radius: 8px !important;
    padding: 12px !important;
    margin-bottom: 12px !important;
    background: #fff !important;
  }

  .table-row:hover {
    background: #fff !important;
  }

  .table-row>* {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 6px 0 !important;
    border: 0 !important;
    word-break: break-word !important;
  }

  .table-row>*::before {
    font-weight: 600;
    color: var(--ibm-gray-100);
    flex: 0 0 110px;
    min-width: 90px;
    white-space: nowrap;
    margin-right: 8px;
  }

  .table-row>*:nth-child(1)::before {
    content: "Funkcja";
  }

  .table-row>*:nth-child(2)::before {
    content: "Artykuł";
  }

  .table-row>*:nth-child(3)::before {
    content: "Korzyść";
  }

  .table-row>*:nth-child(4)::before {
    content: "Wsparcie";
  }

  .table-cell,
  .function-cell,
  .benefit-cell,
  .support-cell,
  .article-cell {
    display: block !important;
    flex: 1 1 auto !important;
    padding: 0 !important;
    color: var(--ibm-gray-70) !important;
    background: transparent !important;
    overflow: visible !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .article-cell {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--ibm-blue) !important;
  }

  .compliance-table {
    min-width: 0 !important;
    table-layout: auto !important;
  }
}

.section_page {
  margin-top: 50px;
  font-size: 20px;
  color: var(--ibm-gray-70);
}

.section_page h1 {
  font-size: 54px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 600;
  color: var(--ibm-blue);
}

.section_page h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--ibm-gray-100);
  margin-bottom: 8px;
  margin-bottom: 10px;
}

.section_page h3 {
  font-size: 30px;
  font-weight: 400;
  color: var(--ibm-gray-100);
  margin-bottom: 8px;
  margin-bottom: 10px;
}

.section_page b,
strong {
  font-weight: 600;
  color: var(--ibm-gray-100);
}

.section_page a {
  color: var(--ibm-blue);
}

.section_page a:hover {
  text-decoration: none;
}


.page-template-podstrona-kolor footer{
  margin-top: 0;
}

.section_page_color {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 40px 20px;
  background: linear-gradient(180deg, #161616 0%, #262626 100%);
  color: #ffffff;
}

.section_page_color h1 {
    color: #ffffff;
    border-bottom: 3px solid #0f62fe;
    padding-bottom: 15px;
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
}
.section_page_color h2 {
    color: #0f62fe;
    margin-top: 40px;
    font-size: 1.8em;
    font-weight: 600;
}
.section_page_color h3 {
    color: #78a9ff;
    margin-top: 25px;
    font-size: 1.3em;
    font-weight: 500;
}
.section_page_color p {
    color: #f4f4f4;
    margin: 15px 0;
}
.section_page_color ul {
    margin: 15px 0;
    padding-left: 30px;
}
.section_page_color li {
    margin: 12px 0;
    color: #f4f4f4;
}
.section_page_color strong {
    color: #ffffff;
    font-weight: 600;
}
.section_page_color a {
    color: #0f62fe;
    text-decoration: none;
    transition: color 0.3s ease;
}
.section_page_color a:hover {
    color: #78a9ff;
    text-decoration: underline;
}
.section_page_color .update-date {
    color: #c6c6c6;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.footer_top__title {
  height: 29px;
}

.sdlc-container .wrap {
  padding-bottom: 80px !important;
}

@media only screen and (max-width: 768px) {
.menu ul.sub-menu li a {
    margin: 0 30px !important;
}
}

.sdlc-container .hero {
  background: transparent !important;
}