:root {
  --line: #e5e7eb;
  --muted: #6b7280;
  --muted2: #374151;
  --text: #111;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(17, 17, 17, .06);
}


/* HERO */
.svc-hero {
  padding: 4rem 0 3rem
}

.eyebrow {
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 .5rem
}

.svc-hero h1 {
  font-size: 2rem;
  line-height: 1.08;
  margin: 0 0 .6rem
}

@media (min-width: 1024px) {
  .svc-hero h1 {
    font-size: 3.2rem;
  }
}

.svc-hero .lead {
  max-width: 720px;
  color: var(--muted2);
  margin: 0
}

/* Align hero container with cases section */
.svc-hero .container {
  max-width: 1300px;
}

/* ========================= Industries Section - Horizontal scroll ========================= */
.industries {
  padding: 0 0 3rem;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.industries .hero-bottom {
  min-height: 200px;
}

.industries-carousel-container {
  position: relative;
  overflow: hidden;
}

/* Gradient fade on the right */
.industries-carousel-container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  opacity: 1;
}

/* Gradient fade on the left (hidden by default) */
.industries-carousel-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* Klasy sterujące widocznością cieni */
.industries-carousel-container.show-left-shadow::before,
.industries.show-left-shadow::before {
  opacity: 1;
}

.industries-carousel-container.hide-right-shadow::after,
.industries.hide-right-shadow::after {
  opacity: 0;
}

.industries-header {
  text-align: center;
  margin-bottom: 3rem;
}

.industries-header h2 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 1rem;
}

@media (min-width: 1024px) {
  .industries-header h2 {
    font-size: 2.8rem;
  }
}

.industries-header .lead {
  font-size: 1rem;
  color: var(--muted2);
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

.industries-middle {
  text-align: center;
  margin-bottom: 3rem;
}

.industries-middle h2 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.25;
  margin: 120px 0 1rem;
}

@media (min-width: 1024px) {
  .industries-middle h2 {
    font-size: 2.8rem;
  }
}

.industries-middle .lead {
  font-size: 1rem;
  color: var(--muted2);
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}


/* Scroll wrapper */
.industries-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 0 2rem;
  margin: 0 -2rem;
}

.industries-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.industries-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 1rem 0;
}

/* Pojedynczy kafelek branży */
.industry-card {
  width: 380px;
  min-width: 380px;
  height: 280px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
  border-color: #ccc;
}

/* Wzór geometryczny na górze */
.industry-pattern {
  width: 100%;
  height: 200px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.industry-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.industry-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Układ: lewa kolumna (h3 nad p), prawa kolumna (przycisk) */
.industry-content {
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.industry-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.industry-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: 'Source Serif 4', serif;
  line-height: 1.2;
}

.industry-content p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
}

/* Przycisk po prawej stronie, wyrównany do góry */
.industry-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 1rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #111;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 0.7rem;
}

.industry-more:hover {
  background: #f9fafb;
  border-color: #bbb;
}

.industry-more .arrow {
  transition: transform .25s ease;
}

.industry-more:hover .arrow {
  transform: translateY(2px);
}

/* Strzałka scroll (opcjonalna) */
/* Strzałka scroll (opcjonalna) */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-arrow-right {
  right: 2rem;
}

.scroll-arrow-left {
  left: 2rem;
  /* Domyślnie ukryta - startujemy od lewej */
  opacity: 0;
  pointer-events: none;
}

.scroll-arrow-left.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
  transform: translateY(-50%) scale(1.05);
}

.scroll-arrow svg {
  color: #111;
}

.eyebrow {
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 .5rem
}

/* Oferty */

/* ================================= Metrics  =================================== */
.metrics {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  /* Match product-description container */
  margin: 0 auto;
  /* Center the container */
}

.metric-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 900px) {
  .metric-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: normal;
    /* Grid handles layout */
  }
}

.metric-list li {
  list-style: none
}

.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  flex: 1;
  min-width: 200px;
  /* Ensure they don't get too squashed on desktop, forcing wrap if needed */
  max-width: 300px;
  /* Optional: keep them from getting too wide in flex stretch */
}

.metric__value {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1
}

@media (min-width: 1024px) {
  .metric__value {
    font-size: 2rem;
  }
}

.metric__label {
  display: block;
  color: #000;
  font-size: .95rem;
  margin-top: .25rem
}

@media (max-width: 768px) {
  .metric .metric__value {
    color: #000 !important;
    font-size: 19px !important;
  }

  .metric .metric__label {
    font-size: 13px !important;
  }
}

/* ================================= Products description  =================================== */
.product-description {
  padding: 3rem 0;
}


.product-description .container {
  max-width: 1000px;
}


.product-description__body p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #0f172a;
  text-align: justify;
  font-size: 0.85rem;
}


/* Style dla Wykresu (Wzrost Automatyzacji) */
.metric__chart-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.metric__chart {
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 10px 15px 0;
  margin-bottom: 5px;
}

.metric__chart::before,
.metric__chart::after,
.metric__chart:nth-child(1)::before {
  content: '';
  display: block;
  width: 20%;
  border-radius: 4px 4px 0 0;
  transition: height 0.8s ease-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.metric__chart:nth-child(1)::before {
  content: "10%";
  height: 10%;
  background: var(--accent);
  order: 1;
  background-color: var(--accent);
  color: var(--text);
  font-size: 0.7rem;
  padding-top: 5px;
  text-align: center;
}

.metric__chart::before {
  content: "40%";
  height: 40%;
  background: var(--accent);
  order: 2;
  background-color: var(--accent);
  color: var(--text);
  font-size: 0.7rem;
  padding-top: 5px;
  text-align: center;
}

.metric__chart::after {
  content: "90%";
  height: 90%;
  background: var(--text);
  order: 3;
  color: #fff;
  font-size: 0.7rem;
  padding-top: 5px;
  text-align: center;
}

.metric__chart-wrapper .metric__label {
  margin-top: 0.5rem;
}

/* produkty -------------------------------------------- */
.offers {
  padding: 2rem 0 2rem;
  margin-bottom: 50px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.offers-grid--three-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  align-items: stretch;
}

.offer {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1.5rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Ikona na górze */
.offer::before {
  content: '';
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  background: #f5f5f5;
  border-radius: 8px;
  display: block;
}

.offer h2 {
  font-size: 1.3rem;
  text-align: center;
  height: auto;
  min-height: 30px;
  font-weight: 400;
  margin: 0 0 1rem;
  font-family: 'Source Serif 4', serif;
}

.offer>p {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  min-height: 3em;
}

/* Sekcja z danymi (Użytkownicy, Kraje UE, Wyszukiwarki) */
.kv {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}

.kv li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.kv .k {
  color: var(--muted2);
  font-weight: 400;
}

.kv .v {
  font-weight: 600;
  color: #111;
}

/* Funkcje podstawowe */
.offer__body h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 600;
}

.bullets {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0 0 1.5rem;
}

.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.5;
}

.bullets li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Przyciski na dole */
.offer__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
}

/* Button styles */
.offer__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.1;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #111;
  /* Explicit border for default */
  cursor: pointer;
  background: transparent;
  color: #111;
  width: 100%;
  /* Ensure full width if desired, or match styling */
  border-radius: 0;
  /* Verify if radius is needed */
}

/* Primary Button Style (First Child) */
.btn:first-child {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.btn--ghost:hover {
  background: #f9f9f9;
  border-color: #ccc;
}

/* Wyróżnienie środkowej karty (DOMYŚLNE dla 2 kolumn) */
.offer:nth-child(2),
.offer.recommended {
  position: relative;
  border-color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.offer:nth-child(2):hover,
.offer.recommended:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.offer:nth-child(2) .btn:first-child,
.offer.recommended .btn:first-child {
  background: #111;
}

/* Unset default highlight for 2nd child in 3-col grid (Audyt page) UNLESS it is explicitly recommended */
.offers-grid--three-col .offer:nth-child(2):not(.recommended) {
  border-color: var(--line);
  box-shadow: none;
}

.offers-grid--three-col .offer:nth-child(2):hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Force black stroke for Silver icon on Audit page */
.offers-grid--three-col .offer .service-icon svg circle,
.offers-grid--three-col .offer .service-icon svg path,
.offers-grid--three-col .offer .service-icon svg line {
  stroke: #000 !important;
}

/* Note pod ofertami */
.note {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .75rem;
}

/* CTA Section styling wrapper */
.product-cta-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 50px;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
}

.product-cta-section .container-bottom {
  /* Ensure it doesn't overflow if container-bottom has specific width behavior */
  width: 100%;
  max-width: 1300px;
  padding: 80px 20px;
}

.product-cta-section .main-heading {
  font-size: 1.6rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.product-cta-section .container-bottom::before {
  /* Use radial gradient to fade out on sides (left/right) as well as top/bottom */
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}

/* Ikona usługi - zastępuje ::before */
/* Ikona usługi - zastępuje ::before */
.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease;
}

.service-icon2 {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom right, #FFFDE7, #FFECB3, #FFCC80);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease;
}

.service-icon svg,
.service-icon2 svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: #000 !important;
}

.offer .service-icon svg circle,
.offer .service-icon svg path,
.offer .service-icon svg line {
  stroke: #bebebe;
  transition: stroke 0.3s ease;
}

.offer .service-icon2 svg circle,
.offer .service-icon2 svg path,
.offer .service-icon2 svg line {
  stroke: #000;
  transition: stroke 0.3s ease;
}

/* Skalowanie ikon przy hover - bez zmiany kolorów */
.offer:hover .service-icon,
.offer:hover .service-icon2 {
  transform: scale(1.05);
}

/* Usuń stare ::before */
.offer::before {
  display: none;
}

.service-icon-bronze {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom right, #f5eadd, #dcbba3, #c5a085);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease;
}

.service-icon-bronze svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: #000 !important;
}

.offer:hover .service-icon-bronze {
  transform: scale(1.05);
}

.offer .service-icon-bronze svg circle,
.offer .service-icon-bronze svg path,
.offer .service-icon-bronze svg line {
  stroke: #000;
  transition: stroke 0.3s ease;
}

/*----------------------------------------------------

/* ===== Case Studies sticky layout ===== */
* {
  box-sizing: border-box;
}

/* sticky sekcja */
.cases {
  z-index: 10;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
  overflow: hidden;
  margin-top: -50px;
  width: 95vw;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.cases+.cases {
  margin-top: 100px;
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 570px;
  overflow-y: auto;
  padding-right: 1rem;
  position: relative;
  /* Removed mask-image to fix obscuration at bottom */
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, #eef0f3 1px, transparent 1px);
  background-size: calc(100%/6) 100%;
  z-index: 0;
}

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

.cases h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #111;
  margin-top: -90px;
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .cases h2 {
    font-size: 2.4rem;
  }
}

.cases h2 .label {
  display: block;
  font-size: .6rem;
  letter-spacing: .1em;
  color: #6b7280;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.cases-lead {
  color: #374151;
  max-width: 640px;
  margin-top: .75rem;
}

/* kafelki */
.cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0vh;

  /* Default (Small Group <= 4): Restrict container to 2/3 width to force 2 cols with same visual size */
  width: calc(66.666% - 0.333rem);
  margin-left: auto;
}

/* Default Card (Small Group): 1/2 of restricted container ~= 1/3 of full page */
.cases-card {
  width: calc(50% - 0.5rem);
  display: block;
  padding: 1.25rem;
  padding-bottom: 5.5rem;
  /* Rezerwacja miejsca na absolutny przycisk */
  min-height: 250px;
  /* wypełnia równą wysokość */
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: #FFFDE7;
  background-image:
    radial-gradient(at 10% 10%, #ffffff 0px, transparent 60%),
    radial-gradient(at 90% 90%, hsla(36, 100%, 75%, 0.8) 0px, transparent 50%),
    radial-gradient(at 90% 10%, hsla(20, 90%, 90%, 1) 0px, transparent 50%),
    radial-gradient(at 10% 90%, hsla(45, 100%, 85%, 1) 0px, transparent 50%);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  /* Dla pozycjonowania .meta */
}

/* Scoped override for Services page only */
.page-services .cases-card {
  background-color: #fdfaff;
  min-height: 420px;
  /* Scoped height increase for services content */
  background-image:
    radial-gradient(at 10% 10%, #ffffff 0px, transparent 60%),
    radial-gradient(at 90% 90%, hsla(25, 100%, 85%, 0.8) 0px, transparent 50%),
    radial-gradient(at 90% 10%, hsla(210, 100%, 90%, 1) 0px, transparent 50%),
    radial-gradient(at 10% 90%, hsla(200, 90%, 95%, 1) 0px, transparent 50%);
}

/* Large Group (>= 5): Full width container, 3 columns */
.cases-grid:has(.cases-card:nth-child(5)) {
  width: 100%;
  margin-left: 0;
}

.cases-grid:has(.cases-card:nth-child(5)) .cases-card {
  width: calc((100% - 2rem) / 3);
}

/* Media Queries */
@media (max-width: 1100px) {

  /* Reset container widths for tablet */
  .cases-grid,
  .cases-grid:has(.cases-card:nth-child(5)) {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    /* or flex-start, depending on preference, but usually full width */
  }

  /* Force 2 columns everywhere */
  .cases-card,
  .cases-grid:has(.cases-card:nth-child(5)) .cases-card {
    width: calc((100% - 1rem) / 2) !important;
  }
}

@media (max-width: 700px) {

  /* Force 1 column */
  .cases-card,
  .cases-grid:has(.cases-card:nth-child(5)) .cases-card {
    width: 100% !important;
    height: auto;
    /* Change to auto to fit content or specific height */
    min-height: 250px;
    /* Increased from base height logic */
    padding: 1.5rem;
    padding-bottom: 4.5rem;
  }
}

.cases-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  border-color: #e0e2e6;
}

.cases-card h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
  color: #111;
}

.cases-card p {
  color: #374151;
  font-size: .95rem;
  margin-bottom: .6rem;

  /* Limit to 3 lines */
  /* Remove clamping for detail view if needed, or keep?
     The new content is structured with <p> and <ul>. Clamping <p> might break "Cel" or "Dla kogo".
     It's better to remove clamping for the rich content cards or scope it.
     However, standard <p> style here applies to all paragraphs.
     Let's override clamping for the specific paragraphs inside card-content if necessary, 
     but actually the previous CSS targeted direct `p`.
  */
  display: block;
  /* Reset display to default to avoid clamping issues with multiple paragraphs */
  -webkit-line-clamp: unset;
  opacity: 0.8;
  /* Slightly transparent text */
}

/* Detail Content Styling */
.cases-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  opacity: 1;
  /* Headers solid */
}

.cases-card ul {
  list-style-type: none;
  /* Custom bullet or none? User wants clean look. Let's use none with simple styling or dash */
  padding-left: 0;
  margin: 0 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 0.3rem;
  /* Optional: adjust vertical gap */
}

.cases-card ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.85rem;
  /* Reduced from 0.95rem */
  color: #374151;
  /* Match p color logic approx */
  margin-bottom: 0;
  /* Let grid gap handle vertical spacing */
  opacity: 0.8;
}

.cases-card ul li::before {
  content: '–';
  /* En dash */
  position: absolute;
  left: 0;
  color: #9ca3af;
}

.cases-card .cta-text {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #111;
  font-size: 1rem;
}

.cases-card .meta {
  font-size: .8rem;
  color: #111;
  background-color: rgba(255, 255, 255, 0.6);
  /* Semi-transparent */
  backdrop-filter: blur(8px);
  /* Blur effect */
  -webkit-backdrop-filter: blur(8px);
  /* Safari prefix */
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  /* Semi-transparent border */
  border-radius: 9999px;
  display: inline-block;
  font-weight: 500;

  /* Absolute positioning */
  position: absolute;
  bottom: 0.8rem;
  /* ok. 12px, lekki odstęp od krawędzi */
  left: 1.25rem;
  /* wyrównanie do lewego paddingu karty */

  transition: all 0.2s ease;
  margin-top: 0;
}

.cases-card:hover .meta {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(209, 213, 219, 0.8);
}

.card-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
  margin-top: auto;
  padding-top: 0.75rem;
  padding-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

/* Page Services Override: Single Column Stacked Cards */
.page-services .cases-grid {
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 85%;
  /* Slightly reduced width */
}

.page-services .cases-card {
  width: 100%;
}

/* Packages Grid Override: Stacked Rows of Groups */
.packages-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align rows to the left */
  gap: 2rem;
  width: 100%;
}

.package-row-link:nth-child(2) {
  margin-left: calc(180px + 32px + 3rem);
}

.package-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  /* Fit to content */
  min-width: 600px;
  /* Optional: give it some minimum if needed, or remove for purely fit-content */
  text-decoration: none;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  gap: 2rem;
  /* Ensure gap between group and button */
}

.package-row-link:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  border-color: #e0e2e6;
  transform: translateY(-2px);
}

.package-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.package-component {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #FFFDE7;
  /* Reusing the gradient background logic if desired, or kept simple */
  background-image:
    radial-gradient(at 10% 10%, #ffffff 0px, transparent 60%),
    radial-gradient(at 90% 90%, hsla(36, 100%, 75%, 0.5) 0px, transparent 50%);
  text-align: center;
}

.package-component h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
  color: #111;
}

.package-plus {
  font-size: 2rem;
  color: #111;
  font-weight: 300;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.package-cta-mobile {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  padding: 0.5rem 1rem;
  border: 1px solid #111;
  border-radius: 999px;
  white-space: nowrap;
}

.package-row-link:hover .package-cta-mobile {
  background: #111;
  color: #fff;
}

/* Responsiveness for Packages */
@media (max-width: 900px) {
  .package-row-link {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .package-row-link:nth-child(2) {
    margin-left: 0;
  }

  .package-cta-mobile {
    align-self: flex-end;
  }
}

@media (max-width: 600px) {
  .package-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1rem;
  }

  .package-component {
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .package-plus {
    transform: rotate(90deg);
    /* Optional: vertical plus */
  }
}

/* Page Services Override: Sticky Header */
.page-services .cases {
  align-items: start;
  overflow: visible;
}

.page-services .cases>div:first-child {
  position: sticky;
  top: 150px;
  z-index: 5;
}

.page-services .cases h2 {
  margin-top: 0;
}

/* wrapper jak w "O nas" */
.sticky-wrapper {
  height: 100%;
  position: relative;
  margin-bottom: 80px;
}

/* ===== FAQ: wyśrodkowane FAQ + lewy CTA na środku wysokości ===== */
:root {
  --faq-width: 720px;
  /* szerokość kolumny FAQ */
  --faq-gap-left: 240px;
  /* odległość CTA od FAQ */
}

/* Sekcja */
.faq {
  position: relative;
  display: flex;
  justify-content: center;
  /* FAQ na środku */
  padding: 0 0 140px;
  background: #fff;
  color: #111;
  margin-top: -80px;
  /* Moves FAQ higher */
  z-index: 15;
  /* Ensures it's above .cases (which has z-index: 10) */
}

/* Obniżenie FAQ na stronie pojedynczego produktu */
.page-product .faq {
  margin-top: 4rem;
}

.faq.faq-uslugi {
  margin-top: 100px;
}

/* Reset negative margin on FAQ for products page due to CTA section */
.page-products .faq {
  margin-top: 0;
}


/* Główna kolumna FAQ */
.faq-main {
  width: var(--faq-width);
  max-width: 550px;
  z-index: 1;
}

/* Lewy box – po lewej stronie, wyśrodkowany pionowo */
.faq-cta-floating {
  position: absolute;
  top: 50%;
  /* środek sekcji */
  left: calc(50% - (var(--faq-width) / 2) - var(--faq-gap-left));
  transform: translateY(-50%);
  width: 280px;
  text-align: left;
}

.faq-cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;

  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Tekst i przycisk CTA */
.faq-note {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 0.95rem;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid #000;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-cta:hover {
  background: #eeeeee;
  transform: translateY(-1px);
}

/* --- FAQ styl właściwy --- */
.faq-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.faq-sub {
  color: #6b7280;
  margin-bottom: 24px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.faq-item {
  border: 1px solid #e5e7eb;

  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, .06);
}

summary.faq-q {
  padding: 18px 56px 18px 20px;
  list-style: none;
  cursor: pointer;
  position: relative;
  user-select: none;
}

summary.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q__text {
  font-weight: 500;
  color: #000;
  font-size: 0.85rem;
}

.chev {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.chev svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

details[open] .chev svg {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 20px 18px 20px;
  color: #111827;
}

/* Dots */
.dots {
  position: absolute;
  inset: auto 0 -120px 0;
  height: 360px;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.45;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
}

/* --- Strona Produkty - override (dla relocated Card) --- */
.page-product .offer {
  padding: 1rem 1.5rem;
  /* Reduced from 1.5rem 2rem */
}

/* Base text in offer */
.page-product .offer>p {
  font-size: 0.85rem;
  /* Reduced from 0.95rem */
  margin-bottom: 0.75rem;
  min-height: 0;
  /* Remove min-height constraint for tighter fit */
}

/* KV list items */
.page-product .offer .kv li {
  font-size: 0.8rem;
  /* Reduced from 0.9rem */
  padding: 0.35rem 0;
}

/* Bullets list items */
.page-product .offer .bullets li {
  font-size: 0.8rem;
  /* Reduced from 0.9rem */
  margin-bottom: 0.35rem;
}

/* Button font size */
.page-product .offer .btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}

/* --- Strona Produkty - override --- */
.page-products .cases-card {
  min-height: 200px;
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-products .cases-card p {
  font-size: 0.82rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.page-products .card-price {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

/* --- Responsywność --- */

@media (max-width: 1100px) {
  .cases {
    grid-template-columns: 1fr;
    height: auto;
    padding: 3rem 1.25rem 2rem;
  }

  .cases-grid {
    margin-top: .5rem;
  }

  .cases-card {
    grid-column: span 6;
  }

  :root {
    --faq-gap-left: 260px;
  }
}

@media (max-width: 700px) {
  .cases-card {
    grid-column: span 12;
  }
}


/* ----------------------------------------------RWD */
@media (max-width: 768px) {

  .page-products .industries-header .lead,
  .page-services .industries-header .lead {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }

  .industries {
    padding: 3rem 0 2rem;
    margin-bottom: 60px;
  }

  .industries::after {
    width: 20px;
    top: auto;
    bottom: 2rem;
    height: calc(320px + 2rem);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .industries-header {
    margin-bottom: 2rem;
  }

  .industries-header h2 {
    font-size: 1.8rem;
  }

  .industries-header .lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .industries-carousel-container::after {
    width: 20px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .industries::before,
  .industries-carousel-container::before {
    display: none;
  }

  .industries-middle h2 {
    text-align: center;
    margin-top: 2rem;
  }

  .industries-scroll-wrapper {
    padding: 0 5vw;
    margin: 0;
  }

  .industry-card {
    width: 80vw;
    min-width: 80vw;
    height: 320px;
  }

  .industry-pattern {
    height: 66%;
  }

  .industry-content {
    height: 34%;
    padding: 1rem;
    display: flex;
    /* Ensure flexbox is active */
    /* Maintain base justify-content/align-items unless override needed */
  }

  .industry-content h3 {
    font-size: 1.35rem;
  }

  .scroll-arrow {
    display: flex;
  }

  .faq {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 100px;
    margin-top: 0 !important;
    /* Reset overlap on mobile */
  }

  .faq-cta-floating {
    position: static;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
  }

  .faq-cta-box {
    align-items: flex-start;
    width: 100%;
  }

  .faq-main {
    width: 100%;
    max-width: 700px;
  }

  /* Mobile optimizations for products/services */
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cases {
    padding: 3rem 1.25rem;
    overflow: visible !important;
    /* Prevent vertical clipping */
    grid-template-columns: 1fr !important;
    /* Ensure single column */
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  /* Disable Sticky on Tablet */
  .page-services .cases>div:first-child {
    position: static !important;
    margin-bottom: 2rem;
    text-align: center;
  }

  .page-services .cases-grid {
    max-width: 100%;
    /* Full width */
    margin-top: 0;
  }

  .page-services .cases-card {
    width: 100% !important;
  }


  .svc-hero {
    padding: 3rem 0 1rem;
  }

  .svc-hero h1 {
    font-size: 2.2rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Mobile Typography & Spacing */
  .svc-hero h1 {
    font-size: 2rem;
  }

  .industries-header h2 {
    font-size: 1.6rem;
  }

  .page-services .cases {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .page-services .cases-grid {
    width: 100%;
    max-width: 100%;
  }

  .cases-card {
    padding: 1.25rem;
  }

  .stage-label {
    margin-top: 1.5rem;
    font-size: 0.8rem;
  }

  .stage-label::after {
    font-size: 1.5rem;
  }

  /* FAQ Mobile Cleanup */
  .faq.faq-uslugi {
    padding: 2rem 1rem 4rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  summary.faq-q {
    padding: 1rem 3rem 1rem 1rem;
  }

  .faq-a {
    font-size: 0.9rem;
    line-height: 1.5;
  }


  /* Modern Mobile Cards & Readability */
  .cases-card {
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: #f3f4f6;
    aspect-ratio: auto;
    height: auto;
    min-height: 300px;
    gap: 1rem;
  }

  .page-products .cases-card {
    justify-content: flex-start;
  }

  .cases-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
  }

  .cases-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .cases-card .meta {
    display: block;
    background: rgba(245, 245, 245, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    margin-top: 20px;
    border: 1px solid #000;
    flex-shrink: 0;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .card-content {
    margin-bottom: 30px;
  }

  /* Fix for cut-off titles */
  .cases h2 {
    margin-top: 0;
    font-size: 1.8rem;
    text-align: left;
  }

  .cases-lead {
    text-align: left;
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
  }

  .cases h2 .label {
    margin-bottom: 0.1rem;
    display: block;
  }

  /* FAQ Tablet Adjustments */
  .faq.faq-uslugi {
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
  }

  .faq-cta-floating {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 2rem;
    max-width: 600px;
  }

  .faq-main {
    width: 100%;
    max-width: 600px;
  }

  .faq-cta-box {
    align-items: center;
    text-align: center;
  }
}

/* Opis produktu - Grid */
.product-description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 4rem;
  /* Reduced row gap */
  align-items: center;
}

#product-description-title,
#service-description-title {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.product-description-image {
  /* background: #f3f4f6; Removed to let the Offer Card stand alone cleanly */
  border-radius: 12px;
  overflow: visible;
  /* visible to allow card shadows */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  /* Placeholder height */
}

.product-description-image .offer {
  width: 100%;
  max-width: 400px;
  /* Limit width to look more like audyt.html elements */
  margin: 0 auto;
}

.product-description-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.product-description .container {
  max-width: 1200px;
  /* Increased max-width for 2 cols */
}

@media (max-width: 768px) {
  .product-description-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-description-image .offer {
    max-width: none;
  }

  .product-description-image {
    order: 2;
    /* Image second on mobile */
  }

  #product-description-title,
  #service-description-title {
    /* Title is now inside body, so this might be redundant or for fallback */
    order: 1;
    margin-top: 0;
  }

  #enterprise-title {
    margin-top: 0;
    font-family: 'Source Serif 4', serif !important;
    font-weight: 400 !important;
    margin-bottom: 0.25rem !important;
  }

  .product-description__body {
    order: 1;
    /* Body (with title) first */
  }

  .metric-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 0;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .metric {
    min-width: 0;
    flex: 1;
    min-height: 120px;
    max-width: 80vw;
  }

  .metric__label {
    font-size: 0.8rem;
  }
}

/* Styl ceny w ofercie */
.offer-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.25rem 0;
  letter-spacing: -0.02em;
}

/* Update hero-bottom gradient only for uslugi page */
.page-services .hero-bottom::before {
  background-color: #fdfaff;
  background-image:
    radial-gradient(at 10% 10%, #ffffff 0px, transparent 60%),
    radial-gradient(at 90% 90%, hsla(25, 100%, 85%, 0.8) 0px, transparent 50%),
    radial-gradient(at 90% 10%, hsla(210, 100%, 90%, 1) 0px, transparent 50%),
    radial-gradient(at 10% 90%, hsla(200, 90%, 95%, 1) 0px, transparent 50%);
}



@media (max-width: 768px) {
  .hero-bottom {
    min-height: 30vh !important;
    position: relative !important;
    display: block !important;
  }

  .page-products .hero-bottom,
  .page-services .hero-bottom {
    min-height: 10vh !important;
  }
}

/* Badge Najpopularniejszy */
.offer {
  position: relative;
  /* Ensure specific positioning context */
}

.offer.recommended {
  border-color: #333;
  /* slightly darker border for emphasis */
}

.offer-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1a1a1a;
  color: #fff;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Stage Label Styling for Services Page */
.stage-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stage-label::after {
  content: '↓';
  display: block;
  font-family: sans-serif;
  font-weight: 300;
  font-size: 2rem;
  font-family: sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  opacity: 0.7;
}

.cases-grid .stage-label:first-child {
  margin-top: 0;
}

/* Animation Styles */
.stage-label,
.cases-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stage-label.visible,
.cases-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================= */
/* NOWE STYLE DLA SEKCJI PRICING (Pakiety) */
/* ========================================= */

.pricing-section {
  padding: 4rem 0;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Wyróżniona karta (środkowa lub ostatnia) */
.pricing-card.highlight {
  background: #fff;
  border-color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.pricing-card.highlight:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Badge Styl jak w offer */
.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1a1a1a;
  color: #fff;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 2;
}

.pricing-card.highlight::before {
  display: none;
}

/* Header karty */
.pricing-header {
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #111;
  margin: 0 0 1rem;
  font-family: 'Source Serif 4', serif;
  min-height: 30px;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Wizualizacja komponentów (Ikony) */
.pricing-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 16px;
}

.pricing-icon-box {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pricing-icon-box svg {
  width: 100%;
  height: 100%;
  stroke: #111;
}

.pricing-plus {
  color: #9ca3af;
  font-size: 1.2rem;
  font-weight: 300;
}

/* Lista benefitów */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  flex: 1;
  /* Pycha CTA na dół */
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA */
.pricing-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.pricing-card:hover .pricing-cta {
  background: #111;
  color: #fff;
}

.pricing-card.highlight .pricing-cta {
  background: #111;
  color: #fff;
}

.pricing-card.highlight .pricing-cta:hover {
  background: #333;
  border-color: #333;
}

/* Responsywność */
@media (max-width: 900px) {
  .pricing-section.container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 1.5rem 2rem;
    align-items: center;
    border: 1px solid var(--line);
  }

  /* Match offer h2 styling */
  .pricing-title {
    font-size: 1.3rem;
    text-align: center;
    height: auto;
    min-height: 30px;
    font-weight: 400;
    margin: 0 0 1rem;
    font-family: 'Source Serif 4', serif;
  }

  /* Match offer p styling */
  .pricing-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    min-height: 0;
  }

  /* Match offer icon spacing */
  .pricing-visual {
    margin-bottom: 1rem;
    padding: 0;
  }

  .pricing-header {
    margin-bottom: 0;
    width: 100%;
  }

  /* Match service-icon sizing */
  .pricing-card .service-icon,
  .pricing-card .service-icon2,
  .pricing-card .service-icon-bronze {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }
}

/* ================================= Enterprise Section  =================================== */
.enterprise-section {
  padding: 3rem 0;
  margin-bottom: 50px;
}

.enterprise-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

/* Karta Enterprise (lewa strona) */
.enterprise-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.enterprise-card-wrapper .offer {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Opis Enterprise (prawa strona) */
.enterprise-info {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.enterprise-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  /* Match standard typography */
}

.enterprise-info p {
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .enterprise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .enterprise-card-wrapper {
    justify-content: center;
    /* Card centers in its column */
  }

  .enterprise-info {
    justify-content: center;
    /* Text centers in its column */
    text-align: left;
  }
}