/* Design System Variables */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-silver: #c0c0c0;
  --color-light-gray: #d8d8d8;
  --color-bg-gray: rgba(240, 240, 240, 0.85);
  --color-text-secondary: #666666;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding {
  padding: var(--space-3xl) var(--space-lg);
}

.section-padding-full {
  padding: var(--space-3xl) 0;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(248, 248, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-light-gray);
  padding: var(--space-md) 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--color-black);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav a:hover {
  color: var(--color-black);
}

.header-buttons {
  display: flex;
  gap: var(--space-sm);
}

.btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-silver);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-silver);
}

.btn-secondary:hover {
  background-color: var(--color-bg-gray);
}
/* --- Launch Sticky Footer (Bottom Bar) --- */

.launch-banner {
  position: fixed;
  bottom: 24px; /* Odsunięcie od krawędzi ekranu - wygląda nowocześniej */
  left: 50%;
  transform: translateX(-50%) translateY(150%); /* Start ukryty na dole */
  width: 90%;
  max-width: 900px; /* Nie za szeroki na dużych ekranach */
  z-index: 2000;
  
  background-color: #1a1a1a; /* Ciemny grafit, mocny kontrast */
  color: #ffffff;
  
  padding: 16px 24px;
  border-radius: 12px; /* Nowoczesne zaokrąglenia */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* Głęboki cień */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Delikatny obrys */
  
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

/* Klasa dodawana przez JS żeby pokazać pasek */
.launch-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.launch-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0; /* Reset paddingu kontenera wewnątrz */
}

/* Sekcja lewa: Ikona + Tekst */
.launch-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.launch-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fbbf24; /* Złoty/Amber kolor ikony dla uwagi */
}

.launch-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.launch-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
}

.launch-sub {
  font-size: 13px;
  color: #a0a0a0; /* Szary tekst pomocniczy */
  margin: 0;
  line-height: 1.4;
}

.launch-sub strong {
  color: #ffffff;
  font-weight: 500;
}

/* Sekcja prawa: Guzik + Zamknij */
.launch-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Specjalny styl guzika Discord w tym pasku */
.btn-discord-glow {
  background-color: #5865F2; /* Brandowy Discorda */
  color: white;
  border: none;
  font-weight: 500;
  padding: 10px 20px;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); /* Lekka poświata */
}

.btn-discord-glow:hover {
  background-color: #4752c4;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.launch-close {
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Mobile styles */
@media (max-width: 768px) {
  .launch-banner {
    width: 100%;
    max-width: 100%;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    border-radius: 16px 16px 0 0; /* Tylko górne rogi */
    padding: 20px;
  }
  
  .launch-banner.is-visible {
    transform: translateY(0);
  }

  .launch-banner-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .launch-content {
    width: 100%;
  }
  
  .launch-actions {
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse; /* Guzik po prawej, X po lewej (łatwiej kciukiem) */
  }
  
  .btn-discord-glow {
    width: auto;
    flex-grow: 1;
    text-align: center;
  }
}



/* Hero Section */

.hero {
    padding: 200px var(--space-lg) var(--space-3xl);
    text-align: center;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 52px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--color-black);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg); /* było var(--space-xl) – przesuniemy część „ciężaru” na listę */
    font-weight: 300;
    letter-spacing: 1px;
}
.hero-benefits {
    max-width: 1200px;
    margin: 0 auto var(--space-xl);
    padding: 0;
    list-style: none;      /* nadal bez domyślnych bulletów */
    text-align: center;    /* wyśrodkowanie tekstu */
}

.hero-benefits li {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding-left: 0;       /* usuwamy miejsce na „kropkę” */
    position: relative;
    margin-bottom: var(--space-xs);
}

.hero-benefits li::before {
    content: none;         /* całkowicie wyłączamy własny bullet */
}


.hero-cta {
    margin-top: var(--space-lg);       /* trochę bliżej listy, całość jest bardziej zwarta */
}


/* Features Section */
.features {
  background-color: var(--color-bg-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-item {
  padding: var(--space-md) 0;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: 1px;
}

.feature-item p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Features – subtitle under section title */
.features-subtitle {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-bg-gray);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: var(--space-xs);
}

.faq-section .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.faq-item {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.3px;
}

.faq-answer {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Stack FAQ cards on small screens */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* Process Section */
.process {
  background-color: var(--color-white);
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  transition: var(--transition);
}

.process-step:hover .step-number {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.5px;
}

.process-step p {
  font-size: 13px;
  color: var(--color-text-secondary);
}


/* Pricing Section */
.pricing {
  background-color: var(--color-bg-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.pricing-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  padding: var(--space-xl);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-black);
  transform: translateY(-4px);
}

.pricing-card.recommended {
  border: 2px solid var(--color-black);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 4px 16px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.pricing-period {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  min-height: 280px;
}

.pricing-features li {
  font-size: 13px;
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-light-gray);
}

/* Enterprise / Elite – gold frame + side bar, z zachowaniem białego tła */

.pricing-card.pricing-elite {
    border: 1px solid #d4af37;   /* złota ramka, tło zostaje białe z .pricing-card */
    position: relative;
    overflow: hidden;
}


/* Złoty pasek po lewej – jak w .use-case-card, pojawia się po hoverze */

.pricing-card.pricing-elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #d4af37 0%,
        rgba(212, 175, 55, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.pricing-elite:hover::before {
    opacity: 1;
}

/* Hover – ten sam ruch i cień, ale bez czarnego obramowania */

.pricing-card.pricing-elite:hover {
    box-shadow: var(--shadow-lg);
    border-color: #d4af37;
    transform: translateY(-4px);
}


/* CTA Section */
.cta-section {
  background-color: var(--color-black);
  text-align: center;
  color: var(--color-white);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.btn-cta-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-cta-primary:hover {
  background-color: var(--color-silver);
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* CTA – extended content */
.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 32px;
    font-size: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto var(--space-lg);
    text-align: left;
}

.cta-benefit {
    flex: 1 1 280px;
    max-width: 340px;
}

.cta-benefit h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.5px;
    text-transform: none;
}

.cta-benefit p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.cta-footnote {
    margin-top: var(--space-lg);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding-bottom: var(--space-lg);
    margin-top: 0;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.footer-brand {
    flex: 1 1 260px;
    max-width: 360px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-columns {
    display: flex;
    flex: 2 1 400px;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: flex-end;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li + li {
    margin-top: 6px;
}

.footer-column a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer – responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-columns {
        justify-content: flex-start;
    }
}



/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-black);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }
}

/* Unified mobile styles */
@media (max-width: 768px) {
  /* Header / hero / footer / CTA */
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* Modules section */
  .modules-section {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .module-content.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modules-tabs {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .module-tab {
    font-size: 14px;
    padding: 10px 16px;
    white-space: nowrap;
  }

  .module-visual {
    min-height: 300px;
  }

  .module-info h3 {
    font-size: 24px;
  }

  /* Use cases / resources */
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

}

/* Hero image in hero section */
.hero-image-section {
    margin: var(--space-xl) auto;
    max-width: 1200px;
    padding: var(--space-md);
    position: relative;
    overflow: visible;
}

.hero-image-section img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}


/* Modules section */
.modules-section {
    padding: var(--space-2xl) var(--space-xl); /* zamiast 120px 80px */
    background: linear-gradient(
        135deg,
        rgba(240, 240, 240, 0.95) 0%,
        rgba(248, 248, 248, 0.95) 100%
    );
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
    position: relative;
    overflow: hidden;
}


.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-black);
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 300;
}

.modules-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 24px;
  position: relative;
  z-index: 20; /* zakładki ponad .module-visual:hover (z-index: 10) */
}


.module-tab {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  background: transparent;
  color: var(--color-text-secondary);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-tab:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-silver);
}

.module-tab.active {
  color: var(--color-black);
  border-bottom-color: var(--color-silver);
  font-weight: 700;
}

.module-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  opacity: 1;
  animation: fadeIn 0.3s ease;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.module-visual {
    background: var(--color-bg-gray);
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    position: relative;
    overflow: visible;
}


.module-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(192, 192, 192, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}

.module-screenshot {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  max-height: none;
  object-fit: contain;
}
/* Duży zoom obrazów w hero i modules */

.hero-image-section img,
.module-screenshot {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover – mocny zoom, obraz praktycznie wypełnia sekcję */

.hero-image-section:hover img,
.module-visual:hover .module-screenshot {
    transform: scale(1.5); /* możesz podnieść do 2.0 jeśli chcesz jeszcze większy efekt */
}

/* Opcjonalnie: wyniesienie powiększonej karty nad sąsiadów */

.hero-image-section:hover,
.module-visual:hover {
    z-index: 10;
}

.module-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.module-info h4 {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
}

.module-description {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}

.module-features {
  list-style: none;
}

.module-features li {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  font-weight: 300;
}

.module-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-silver);
  font-weight: bold;
  font-size: 18px;
}

/* Use Cases Section */
.use-cases-section {
  background: var(--color-white);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.use-case-card {
  background: linear-gradient(
    135deg,
    rgba(248, 248, 248, 0.95) 0%,
    rgba(240, 240, 240, 0.95) 100%
  );
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #d4af37 0%,
    rgba(212, 175, 55, 0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.use-case-card:hover::before {
  opacity: 1;
}

.use-case-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #d4af37;
  transform: translateY(-4px);
}

.use-case-number {
  color: rgba(212, 175, 55, 0.25);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.use-case-card h3 {
  color: var(--color-black);
  font-size: 20px;
  margin-bottom: var(--space-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

.use-case-objective {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  font-style: italic;
  font-family: var(--font-body);
}

.use-case-solution {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-light-gray);
}

.use-case-solution strong {
  color: #d4af37;
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.use-case-solution p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 14px;
  font-family: var(--font-body);
}