/* =========================================
   Wakacje z AI — styles.css
   ========================================= */

/* --- Zmienne --- */
:root {
  --bg:         #f7efe2;
  --bg-alt:     #f4e7cf;
  --surface:    #f7efe2;
  --orange:     #f59a23;
  --orange-mid: #f5a534;
  --orange-lt:  #fce7bb;
  --navy:       #0f172a;
  --muted:      #5f6b7a;
  --border:     rgba(245, 154, 35, 0.18);
  --sand:       #efd9a7;
  --sand-deep:  #4fd5ce;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow-sm:  0 4px 16px rgba(120, 70, 10, 0.07);
  --shadow-md:  0 12px 40px rgba(120, 70, 10, 0.10);
  --shadow-lg:  0 24px 64px rgba(120, 70, 10, 0.13);
  --transition: 0.22s ease;
  --max-w:      1140px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #ea580c;
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 96px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a4200;
  background: #ffad00;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
}

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

.text-center .section-lead {
  margin-inline: auto;
}

/* --- Nawigacja --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 239, 226, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo img {
  height: 30px;
  width: auto;
  display: block;
}

.navbar__brand-logo {
  height: 44px;
  width: auto;
  max-width: 260px;
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--orange);
}

.navbar__cta {
  background: linear-gradient(135deg, #f59a23, #f5b316);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(245, 154, 35, 0.28);
  transition: all var(--transition);
}

.navbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245, 154, 35, 0.38);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  padding-block: clamp(72px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 154, 35, 0.10), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(245, 154, 35, 0.07), transparent 40%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-lt);
  border: 1px solid rgba(245, 154, 35, 0.28);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #c47510;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero__title .accent {
  background: linear-gradient(135deg, #f59a23, #f5b316 55%, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f59a23, #f5b316);
  color: #fff;
  box-shadow: 0 10px 28px rgba(245, 154, 35, 0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245, 154, 35, 0.40);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--orange-lt);
  border-color: var(--orange);
  color: #ea580c;
}

/* --- Hero visual — collage + floating pills --- */
.hero__visual {
  position: relative;
  padding: 28px 20px 28px 0;
}

/* Kontener kompozycji — kwadrat, relative */
.hero-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-inline: auto;
}

/* ---- Zdjęcia ---- */
.hero-collage__photo {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Obie warstwy hero leżą jedna na drugiej — JS steruje opacity */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Główne — centrum, duże */
.hero-collage__photo--main {
  width: 68%;
  aspect-ratio: 3 / 4;
  top: 8%;
  left: 16%;
  z-index: 2;
  animation: photo-float-main 8s ease-in-out infinite;
}

/* Górne lewe — mniejsze */
.hero-collage__photo--top {
  width: 36%;
  aspect-ratio: 1 / 1;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: var(--radius-md);
  animation: photo-float-top 7s ease-in-out 1.2s infinite;
}

/* Dolne prawe — mniejsze */
.hero-collage__photo--bottom {
  width: 38%;
  aspect-ratio: 4 / 3;
  bottom: 0;
  right: 0;
  z-index: 3;
  border-radius: var(--radius-md);
  animation: photo-float-bottom 9s ease-in-out 0.6s infinite;
}

/* Mały akcent — lewy dolny */
.hero-collage__photo--accent {
  width: 26%;
  aspect-ratio: 1 / 1;
  bottom: 10%;
  left: 0;
  z-index: 4;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  animation: photo-float-accent 10s ease-in-out 2s infinite;
}

/* ---- Animacje float ---- */
@keyframes photo-float-main {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes photo-float-top {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes photo-float-bottom {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(6px) rotate(1deg); }
}

@keyframes photo-float-accent {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-5px) rotate(-2deg); }
}

/* ---- Crossfade sterowany przez JS ---- */

/* Warstwa #2 (inactive) domyślnie ukryta — JS ustawia transition i opacity inline */
.hero-img:nth-child(2) {
  opacity: 0;
}

/* Reduced motion: blokuj wszelkie przejścia opacity w kolażu */
@media (prefers-reduced-motion: reduce) {
  .hero-img {
    transition: none !important;
  }
  .hero-img:nth-child(1) { opacity: 1 !important; }
  .hero-img:nth-child(2) { opacity: 0 !important; }
}

/* ---- Floating pills ---- */
.hero-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(252, 246, 234, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 154, 35, 0.22);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  box-shadow: 0 8px 24px rgba(120, 70, 10, 0.10);
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

.hero-pill__icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-pill__text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* Pozycje i animacje poszczególnych pills */
.hero-pill--one {
  top: 5%;
  right: -4%;
  animation: pill-float-a 6s ease-in-out infinite;
}

.hero-pill--two {
  bottom: 22%;
  right: -6%;
  animation: pill-float-b 7s ease-in-out 1s infinite;
}

.hero-pill--three {
  top: 36%;
  left: -8%;
  animation: pill-fade 8s ease-in-out 2s infinite;
}

.hero-pill--four {
  bottom: 4%;
  right: 8%;
  animation: pill-fade 8s ease-in-out 4.5s infinite;
}

/* ---- Brand badge nad kolażem ---- */
@keyframes pill-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

@keyframes pill-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(5px); }
}

@keyframes pill-fade {
  0%, 15%   { opacity: 0; transform: translateY(6px); }
  30%, 70%  { opacity: 1; transform: translateY(0px); }
  85%, 100% { opacity: 0; transform: translateY(-4px); }
}

/* --- Co dostajesz? --- */
.benefits {
  background: var(--bg-alt);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.benefit-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Dla kogo? --- */
.audience {
  background: var(--bg);
}

.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.audience__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.audience__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.audience__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.audience__item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience__item-title {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
}

.audience__item-desc {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: 4px;
}

.audience__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.audience__visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* --- Jak to działa? --- */
.how {
  background: var(--bg-alt);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% + 20px);
  width: calc(33.33% - 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-mid));
  opacity: 0.3;
}

.how__steps::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(66.66% + 20px);
  width: calc(33.33% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-mid), #facc15);
  opacity: 0.3;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 28px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-card__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59a23, #f5b316);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(245, 154, 35, 0.28);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.step-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- FAQ --- */
.faq {
  background: var(--bg);
  padding-bottom: 0;
}

.faq__list {
  max-width: 760px;
  margin: 56px auto 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.84), rgba(239, 217, 167, 0.30));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.is-open {
  border-color: rgba(245, 154, 35, 0.42);
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--orange);
}

.faq-item.is-open .faq__question {
  color: var(--orange);
}

.faq__q-text {
  flex: 1;
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-lt);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.is-open .faq__icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease, padding-bottom 0.28s ease;
  padding-bottom: 0;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

/* --- Beach Divider --- */
/*
   PNG 1916×821 px → proporcja 2.334:1 → naturalny height = 100/2.334 = 42.8vw.
   Używamy 43vw żeby kontener miał dokładnie tę wysokość co obraz → palmy nieucięte.
   background-color = kolor footera → transparentne obszary PNG pokazują ten sam
   kolor co stopka → zero białego pasa między separatorem a footerem.
*/
.footer-beach-divider {
  position: relative;
  width: 100%;
  height: clamp(160px, 43vw, 640px);
  margin-top: clamp(48px, 7vw, 96px);
  margin-bottom: 0;
  /* Sand — identyczny z footerem, wypełnia transparentne obszary PNG */
  background-color: var(--sand-deep);
  background-image: url("./assets/liniaOddzielajaca2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  pointer-events: none;
}

/* Wtopienie dolnej krawędzi PNG w kolor stopki */
.footer-beach-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent 0%, var(--sand-deep) 100%);
  pointer-events: none;
}

/* --- Footer --- */
/*
   Tło footera musi być ciepłą pomarańczowo-kremową barwą dopasowaną
   do dolnej krawędzi beach-divider — bez przejścia w czerń.
*/
.footer {
  background: var(--sand-deep);
  color: var(--navy);
  padding-block: 56px 36px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer__brand-name {
  margin-bottom: 16px;
}

.footer__brand-logo {
  height: 38px;
  width: auto;
  max-width: 180px;
  display: block;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(195, 4, 202, 0.863);
  max-width: 300px;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 7, 143, 0.76);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: #000000;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--navy);
}

.footer__bottom {
  border-top: 1px solid rgba(245, 154, 35, 0.28);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgb(15, 23, 42);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgb(42, 15, 15);
}

.footer__bottom-links a:hover {
  color: var(--navy);
}

/* --- Dlaczego teraz? --- */
.why-now {
  background: var(--bg-alt);
}

.why-now__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.why-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Co zrobisz z tym pakietem? --- */
.use-cases {
  background: var(--bg);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.use-case-card {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.use-case-card__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.use-case-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.use-case-card__desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Quiz / Mini-test --- */
.quiz-section {
  background: var(--bg-alt);
}

.quiz-widget {
  max-width: 680px;
  margin: 56px auto 0;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.88), rgba(239, 217, 167, 0.32));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}

.quiz-progress {
  height: 4px;
  background: rgba(245, 154, 35, 0.18);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}

.quiz-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #facc15);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.quiz-step__num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.quiz-step__question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.4;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  background: rgba(255, 252, 245, 0.90);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: inherit;
}

.quiz-option:hover {
  border-color: var(--orange);
  background: var(--orange-lt);
  color: #7a4a00;
}

.quiz-option.is-selected {
  border-color: var(--orange);
  background: var(--orange-lt);
  color: #7a4a00;
  font-weight: 600;
}

.quiz-result {
  text-align: center;
  padding: 8px 0;
}

.quiz-result__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.quiz-result__score {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  margin: 12px 0 20px;
}

.quiz-result__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.quiz-result__desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 500px;
  margin-inline: auto;
}

.quiz-result__recommendation {
  background: rgba(245, 154, 35, 0.10);
  border: 1px solid rgba(245, 154, 35, 0.28);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-weight: 600;
  color: #6f3f08;
  margin-bottom: 28px;
  text-align: left;
}

.quiz-result__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.quiz-result__cta {
  flex-shrink: 0;
}

.quiz-result__secondary {
  flex-shrink: 0;
}

.quiz-result__note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 460px;
  margin-inline: auto;
}

.quiz-reset {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
  display: block;
  margin-inline: auto;
}

.quiz-reset:hover {
  color: var(--navy);
}

/* --- Nie obiecujemy magii --- */
.honest {
  background: var(--bg-alt);
}

.honest__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.honest__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 24px;
}

.honest__contrasts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.honest__contrast-item {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}

.honest__no {
  font-size: 0.88rem;
  color: rgba(15, 23, 42, 0.42);
  margin-bottom: 8px;
  text-decoration: line-through;
  text-decoration-color: rgba(15, 23, 42, 0.2);
}

.honest__yes {
  font-size: 0.93rem;
  font-weight: 600;
  color: #7a5200;
}

/* --- Co dokładnie jest w pakiecie? --- */
.package-section {
  background: var(--bg);
}

.package__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
  max-width: 780px;
  margin-inline: auto;
  margin-block-start: 56px;
}

.package__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(239, 217, 167, 0.28));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.package__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.package__item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.package__item-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.package__item-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

.package__cta {
  text-align: center;
  margin-top: 44px;
}

/* --- Końcowe CTA --- */
.final-cta {
  background: linear-gradient(
    to bottom,
    var(--bg-alt) 0%,
    #f3e4c8 68%,
    #ecd49b 100%
  );
  padding-bottom: 0;
}

.final-cta__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: clamp(56px, 7vw, 96px);
}

/* --- Beach Divider --- */
.footer-beach-divider {
  position: relative;
  width: 100%;
  height: clamp(220px, 36vw, 520px);
  margin-top: 0;
  margin-bottom: 0;

  background-image:
    url("./assets/liniaOddzielajaca2.png"),
    linear-gradient(
      to bottom,
      #ecd49b 0%,
      #ecd49b 18%,
      #efd9a7 48%,
      var(--sand-deep) 100%
    );

  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, 100% 100%;
  background-position: center bottom, center center;
  pointer-events: none;
}

/* Miękkie połączenie górnej krawędzi dividera z CTA */
.footer-beach-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 96px;
  background: linear-gradient(
    to bottom,
    #ecd49b 0%,
    rgba(236, 212, 155, 0.78) 35%,
    rgba(236, 212, 155, 0) 100%
  );
  pointer-events: none;
}

/* Miękkie połączenie dolnej krawędzi PNG ze stopką */
.footer-beach-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 96px;
  background: linear-gradient(
    to bottom,
    rgba(231, 205, 145, 0) 0%,
    var(--sand-deep) 100%
  );
  pointer-events: none;
}

/* --- Footer --- */
.footer {
  background: var(--sand-deep);
  color: var(--navy);
  padding-block: 56px 36px;
}

/* --- Partnerzy programu --- */
.partners-strip {
  padding: clamp(28px, 4vw, 48px) 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 239, 226, 0.65),
    rgba(244, 231, 207, 0.45)
  );
  border-top: 1px solid rgba(245, 154, 35, 0.10);
  border-bottom: 1px solid rgba(245, 154, 35, 0.10);
  overflow: hidden;
}

.partners-strip__eyebrow {
  margin: 0 0 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.40);
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 6px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.partners-carousel__track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}

.partners-carousel:hover .partners-carousel__track {
  animation-play-state: paused;
}

.partners-carousel__item {
  width: clamp(140px, 13vw, 190px);
  height: clamp(68px, 7vw, 88px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.80);
  border: 1px solid rgba(245, 154, 35, 0.14);
  box-shadow: 0 8px 24px rgba(120, 80, 20, 0.05);
  backdrop-filter: blur(6px);
  transition: box-shadow var(--transition), transform var(--transition);
}

.partners-carousel__item:hover {
  box-shadow: 0 12px 32px rgba(120, 80, 20, 0.10);
  transform: translateY(-2px);
}

.partners-carousel__item img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.90) opacity(0.78);
  transition: filter var(--transition), opacity var(--transition);
}

.partners-carousel__item:hover img {
  filter: saturate(1.05) opacity(1);
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Footer helper */
.footer__company {
  font-size: 0.85rem;
  color: rgb(0, 0, 0);
  margin-top: 8px;
}

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================
   Z URLOPU DO PRACY — PORÓWNANIE
   ========================================= */

.compare__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 24px;
  align-items: stretch;
  margin-top: clamp(40px, 5vw, 64px);
}

.compare__card {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}

.compare__card--bad {
  background: rgba(100, 116, 139, 0.06);
  border: 1.5px solid rgba(100, 116, 139, 0.14);
}

.compare__card--good {
  background: rgba(245, 154, 35, 0.07);
  border: 1.5px solid rgba(245, 154, 35, 0.22);
}

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

.compare__card-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.compare__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.45;
}

.compare__item--no::before {
  content: "✗";
  color: #9da8b4;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare__item--yes::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
  flex-shrink: 0;
}

/* =========================================
   PIERWSZY DZIEŃ PO URLOPIE — TIMELINE
   ========================================= */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
  margin-top: clamp(40px, 5vw, 64px);
  position: relative;
  align-items: start;
}

/* Linia łącząca między kartami */
.timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(to right, var(--orange-lt), var(--sand));
  pointer-events: none;
}

.timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline__time {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline__card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.timeline__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.timeline__icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}

.timeline__title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* =========================================
   AI SURVIVAL KIT
   ========================================= */

.kit-section {
  background: var(--bg-alt);
}

.kit-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.kit-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}

.kit-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kit-section__list-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.kit-section__list-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.kit-section__list-item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.kit-section__cta {
  margin-top: 36px;
}

/* Mockup pakietu — trzy nałożone kartki */
.kit-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.kit-mockup__stack {
  position: relative;
  width: 280px;
  height: 330px;
}

.kit-mockup__page {
  position: absolute;
  border-radius: var(--radius-lg);
}

.kit-mockup__page--3 {
  inset: 14px -14px -10px 14px;
  background: var(--sand);
  border-radius: var(--radius-md);
  z-index: 1;
}

.kit-mockup__page--2 {
  inset: 7px -7px -5px 7px;
  background: var(--orange-lt);
  border-radius: var(--radius-md);
  z-index: 2;
}

.kit-mockup__page--1 {
  inset: 0;
  background: #fff9f2;
  border: 1.5px solid rgba(245, 154, 35, 0.2);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.kit-mockup__cover {
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kit-mockup__cover-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 999px;
  padding: 4px 12px;
  align-self: flex-start;
}

.kit-mockup__cover-icon {
  font-size: 2rem;
  margin-top: 6px;
}

.kit-mockup__cover-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.kit-mockup__cover-sub {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: -2px;
}

.kit-mockup__cover-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.kit-mockup__cover-items li {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

/* =========================================
   AI W PRAKTYCE — NARZĘDZIA
   ========================================= */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}

.tool-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.tool-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.tool-card__chip {
  display: inline-block;
  background: rgba(245, 154, 35, 0.10);
  border: 1px solid rgba(245, 154, 35, 0.24);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.71rem;
  font-weight: 600;
  color: #a05c08;
  align-self: flex-start;
  letter-spacing: 0.01em;
}

.tool-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}

.tool-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Flow procesu */
.ai-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 22px clamp(16px, 3vw, 36px);
  flex-wrap: nowrap;
}

.ai-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.ai-flow__step-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.ai-flow__step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.ai-flow__arrow {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  /* Align visually with the icon row, above the label */
  align-self: flex-start;
  margin-top: 6px;
}

.tools-section__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  max-width: 580px;
  margin: 28px auto 0;
  line-height: 1.65;
}

/* =========================================
   MODAL
   ========================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.22);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-alt);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.modal__close:hover {
  background: var(--sand);
  color: var(--navy);
}

.modal__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.modal__title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.modal__desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.modal__field input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff9f0;
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal__field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 154, 35, 0.18);
}

.modal__field input.is-invalid {
  border-color: #e04e4e;
}

.modal__field-error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1em;
}

.modal__submit {
  margin-top: 4px;
  justify-content: center;
  width: 100%;
}

.modal__privacy {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
}

/* Stan sukcesu */
.modal__success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

#modal-success {
  text-align: center;
  padding-block: 8px;
}

#modal-success .modal__desc {
  margin-bottom: 32px;
}

.modal__back {
  margin-inline: auto;
}

@media (max-width: 480px) {
  .modal {
    padding: 36px 24px 28px;
  }

  .modal__title {
    font-size: 1.3rem;
  }
}

/* =========================================
   SCROLL BACKGROUND
   ========================================= */

body {
  background: #f7efe2;
}

.scroll-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
  background: #f7efe2;
}

.scroll-bg__layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  will-change: opacity;
  transition: opacity 80ms linear;
  filter: saturate(0.92) brightness(1.03);
}

.scroll-bg__layer--one {
  background-image: url("assets/bg3.png");
  opacity: var(--bg-one-opacity, 1);
}

.scroll-bg__layer--two {
  background-image: url("assets/bg4.png");
  opacity: var(--bg-two-opacity, 0);
}

.scroll-bg__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 239, 226, 0.32) 0%,
    rgba(247, 239, 226, 0.60) 35%,
    rgba(247, 239, 226, 0.80) 70%,
    rgba(247, 239, 226, 0.92) 100%
  );
}

/* Karty i panele — lekkie szkło nad tłem */
.benefit-card,
.tool-card,
.step-card,
.why-card,
.use-case-card,
.timeline__card,
.compare__card,
.quiz-widget,
.faq-item {
  background: rgba(251, 244, 232, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Mobile — mocniejszy wash, żeby treść była czytelna */
@media (max-width: 768px) {
  .scroll-bg__layer {
    background-position: center top;
  }

  .scroll-bg__wash {
    background: linear-gradient(
      to bottom,
      rgba(247, 239, 226, 0.72) 0%,
      rgba(247, 239, 226, 0.88) 45%,
      rgba(247, 239, 226, 0.94) 100%
    );
  }
}

/* =========================================
   RESPONSYWNOŚĆ
   ========================================= */

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

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

  .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__steps::before,
  .how__steps::after {
    display: none;
  }

  /* Hero collage — tablet: lekko zmniejsz, zachowaj 4 zdjęcia */
  .hero-collage {
    max-width: 460px;
  }

  /* Narzędzia — tablet: 2 kolumny */
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
    padding: 20px;
  }

  /* Hero collage — stacked layout: max 3 zdjęcia, dymki bez overflow */
  .hero-collage {
    max-width: 400px;
  }

  /* Kit section */
  .kit-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kit-mockup {
    order: -1;
  }

  .kit-mockup__stack {
    width: 240px;
    height: 285px;
  }

  .hero-pill--one   { right: 2%; }
  .hero-pill--two   { right: 1%; }
  .hero-pill--three { left: 2%; }

  .hero__stat-card--tl {
    top: -12px;
    left: -12px;
  }

  .hero__stat-card--br {
    bottom: -12px;
    right: -12px;
  }

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

  .audience__visual {
    order: -1;
    max-width: 400px;
    margin-inline: auto;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 64px;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247, 239, 226, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 20px;
    align-items: flex-start;
  }

  .navbar__links.is-open {
    display: flex;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar__logo img {
    height: 24px;
  }

  .navbar__brand-logo {
    height: 28px;
    max-width: 130px;
  }

  .footer__brand-logo {
    height: 32px;
    max-width: 150px;
  }

  .benefits__grid,
  .why-now__cards,
  .use-cases__grid,
  .package__grid {
    grid-template-columns: 1fr;
  }

  /* Narzędzia — mobile: 1 kolumna + pionowy flow */
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .ai-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px;
  }

  .ai-flow__step {
    flex-direction: row;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .ai-flow__step:last-child {
    border-bottom: none;
  }

  .ai-flow__arrow {
    display: none;
  }

  /* Compare — mobile: karty jedna pod drugą */
  .compare__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .compare__vs {
    width: 100%;
    height: 40px;
    writing-mode: horizontal-tb;
  }

  /* Timeline — mobile: 2 kolumny */
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .timeline::before {
    display: none;
  }

  /* Hero collage — mobile: zostają tylko 2 zdjęcia (main + top), max 2 dymki */
  .hero__visual {
    padding: 16px;
  }

  .hero-collage__photo--bottom,
  .hero-collage__photo--accent {
    display: none;
  }

  .hero-collage__photo--main {
    width: 72%;
    left: 14%;
  }

  .hero-pill--three,
  .hero-pill--four {
    display: none;
  }

  .hero-pill--one { top: 2%; right: 2%; }
  .hero-pill--two { bottom: 16%; right: 2%; }

  .partners-carousel {
    max-width: 100%;
  }

  .partners-carousel__track {
    gap: 16px;
    animation-duration: 22s;
  }

  .partners-carousel__item {
    width: 138px;
    height: 68px;
    border-radius: 16px;
    padding: 12px 14px;
  }

  .partners-carousel__item img {
    max-height: 40px;
  }

  .quiz-widget {
    padding: 28px 24px;
  }

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

  .footer-beach-divider {
    /* 43vw nadal działa — przy 768px = 330px, przy 375px = 161px */
    background-size: 100% auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .final-cta__actions .btn {
    justify-content: center;
  }

  .quiz-result__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-result__cta,
  .quiz-result__secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__stat-card {
    display: none;
  }

  /* Timeline — bardzo małe: 1 kolumna */
  .timeline {
    grid-template-columns: 1fr;
  }

  /* Hero collage — bardzo małe ekrany: tylko główne zdjęcie, bez dymków */

  .hero-collage__photo--top {
    display: none;
  }

  .hero-collage__photo--main {
    width: 86%;
    left: 7%;
    top: 4%;
  }

  .hero-pill {
    display: none;
  }
}

/* =========================================
   GDY NIE WIEJE — KITE & SPORT
   ========================================= */

.wind-section {
  background: var(--bg-alt);
}

.wind-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.wind-card {
  background: rgba(251, 244, 232, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

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

.wind-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.wind-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.wind-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.wind-section__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 32px;
  font-style: italic;
}

/* =========================================
   AI W ZWYKŁEJ PRACY — PRZYKŁADY Z ŻYCIA
   ========================================= */


/* =========================================
   ZACZNIJ ZA DARMO — PROGRESSION
   ========================================= */

.progression {
  background: var(--bg-alt);
}

.progression__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.progression__levels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.prog-level {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(251, 244, 232, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.prog-level--active {
  border-color: rgba(245, 154, 35, 0.38);
  background: rgba(252, 231, 187, 0.55);
  box-shadow: var(--shadow-md);
}

.prog-level__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59a23, #f5b316);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(245, 154, 35, 0.28);
}

.prog-level__body {
  flex: 1;
}

.prog-level__name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.prog-level__desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

.prog-level__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 4px 12px;
  flex-shrink: 0;
  margin-top: 2px;
  white-space: nowrap;
}

/* =========================================
   WIND SECTION — "NIE TYLKO KITE" BOX
   ========================================= */

.wind-notkite {
  max-width: 880px;
  margin: 40px auto 0;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(251, 244, 232, 0.88);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wind-notkite__intro {
  max-width: 720px;
}

.wind-notkite__title {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.wind-notkite__text {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.wind-notkite__scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.wind-notkite__scenario {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 238, 0.72);
  border: 1px solid rgba(245, 154, 35, 0.16);
}

.wind-notkite__scenario-icon {
  display: inline-flex;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.wind-notkite__scenario h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.wind-notkite__scenario p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* =========================================
   WEATHER GALLERY
   ========================================= */

.weather-gallery {
  max-width: 1040px;
  margin: 44px auto 0;
}

.weather-gallery__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.weather-gallery__title {
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.weather-gallery__lead {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}

.weather-gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.weather-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 230px;
  background: rgba(251, 244, 232, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.weather-card--large {
  grid-row: span 2;
  min-height: 480px;
}

.weather-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(0.97);
}

.weather-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.00) 35%,
    rgba(15, 23, 42, 0.28) 68%,
    rgba(15, 23, 42, 0.66) 100%
  );
  pointer-events: none;
}

.weather-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff7e8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.weather-card figcaption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff7e8;
}

.weather-card figcaption span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 247, 232, 0.88);
}

@media (max-width: 1024px) {
  .weather-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .weather-card--large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .weather-gallery {
    margin-top: 32px;
  }

  .weather-gallery__grid {
    grid-template-columns: 1fr;
  }

  .weather-card,
  .weather-card--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .weather-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .weather-card figcaption strong {
    font-size: 0.9rem;
  }

  .weather-card figcaption span {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .weather-card,
  .weather-card--large {
    min-height: 220px;
  }
}

/* =========================================
   BEFORE / AFTER SLIDER
   ========================================= */

.weather-before-after {
  background: var(--bg-alt);
}

.before-after-slider {
  position: relative;
  max-width: 1040px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: rgba(251, 244, 232, 0.88);
  border: 1px solid var(--border);
  user-select: none;
}

.before-after-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after-slider__after {
  position: absolute;
  inset: 0;
  width: 100%;
  clip-path: inset(0 50% 0 0);
  overflow: hidden;
}

.before-after-slider__label {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.92);
  border: 1px solid rgba(245, 154, 35, 0.25);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.before-after-slider__label--before {
  left: 18px;
}

.before-after-slider__label--after {
  right: 18px;
}

.before-after-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 247, 232, 0.96);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.28);
}

.before-after-slider__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 248, 238, 0.97);
  border: 1px solid rgba(245, 154, 35, 0.38);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  display: grid;
  place-items: center;
}

.before-after-slider__handle span::before {
  content: "↔";
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.before-after-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
  margin: 0;
}

.before-after-slider__hint {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .before-after-slider {
    border-radius: var(--radius-md);
    aspect-ratio: 4 / 3;
  }

  .before-after-slider__label {
    top: 12px;
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .before-after-slider__label--before {
    left: 12px;
  }

  .before-after-slider__label--after {
    right: 12px;
  }

  .before-after-slider__handle span {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .before-after-slider {
    aspect-ratio: 1 / 1;
  }

  .before-after-slider__label {
    max-width: 44%;
    white-space: normal;
    line-height: 1.2;
  }
}

/* =========================================
   CASE CAROUSEL CTA
   ========================================= */

.case-carousel-cta {
  max-width: 720px;
  margin: 36px auto 0;
  padding: 28px 32px;
  text-align: center;
  background: rgba(251, 244, 232, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.case-carousel-cta__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.case-carousel-cta__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 auto 20px;
  max-width: 560px;
}

/* =========================================
   ORGANIZER BOX
   ========================================= */

.org-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(251, 244, 232, 0.88);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.org-box__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.org-box__body {
  flex: 1;
}

.org-box__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.org-box__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   WEBINAR CTA BOX
   ========================================= */

.webinar-cta-section {
  background: var(--bg);
  padding-block: 56px;
}

.webinar-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(251, 244, 232, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(245, 154, 35, 0.28);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin-inline: auto;
}

.webinar-box__icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.webinar-box__text {
  flex: 1;
}

.webinar-box__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.webinar-box__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.webinar-box__desc em {
  font-style: italic;
  color: var(--navy);
}

.webinar-box__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 8px 0 0;
  opacity: 0.85;
}

/* Pomocniczy styl dla małych wyjaśnień technicznego słownictwa */
.kit-term {
  font-weight: 400;
  font-size: 0.82em;
  color: var(--muted);
}

/* =========================================
   KARUZELA CASE STUDIES — AI W ZWYKŁEJ PRACY
   ========================================= */

.real-work {
  background: var(--bg);
}

.case-carousel {
  position: relative;
  max-width: 920px;
  margin: clamp(40px, 5vw, 64px) auto 0;
}

.case-carousel__viewport {
  position: relative;
}

.case-slide {
  display: none;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  background: rgba(251, 244, 232, 0.90);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.case-slide.is-active {
  display: grid;
  animation: caseFade 0.32s ease both;
}

@keyframes caseFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Lewa kolumna — zdjęcie */
.case-slide__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 320px;
  background: rgba(239, 217, 167, 0.45);
  border: 1px solid rgba(245, 154, 35, 0.18);
}

.case-slide__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(0.98);
}

/* Delikatna nakładka u dołu zdjęcia */
.case-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.00) 60%,
    rgba(15, 23, 42, 0.06) 100%
  );
  pointer-events: none;
}

/* Prawa kolumna — treść */
.case-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-slide__eyebrow {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a5a0a;
  background: rgba(245, 154, 35, 0.12);
  border: 1px solid rgba(245, 154, 35, 0.18);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

.case-slide__title {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.18;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
}

.case-slide__block {
  margin-bottom: 18px;
}

.case-slide__block h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 6px;
}

.case-slide__block p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.case-slide__block--solution {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(245, 154, 35, 0.08);
  border: 1px solid rgba(245, 154, 35, 0.16);
}

.case-slide__effect {
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #6f3f08;
  line-height: 1.55;
}

/* Strzałki nawigacyjne */
.case-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(245, 154, 35, 0.28);
  background: rgba(255, 248, 238, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-carousel__arrow:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.case-carousel__arrow--prev {
  left: -22px;
}

.case-carousel__arrow--next {
  right: -22px;
}

/* Kropki */
.case-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.case-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(245, 154, 35, 0.28);
  cursor: pointer;
  padding: 0;
  transition:
    width var(--transition),
    background var(--transition);
}

.case-carousel__dot.is-active {
  width: 28px;
  background: var(--orange);
}

/* =========================================
   RESPONSYWNOŚĆ — NOWE SEKCJE
   ========================================= */

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

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

@media (max-width: 900px) {
  /* Karuzela — tablet/mobile: układ jednokolumnowy, strzałki na dole */
  .case-slide {
    grid-template-columns: 1fr;
  }

  .case-slide__media {
    min-height: 240px;
  }

  .case-slide__media img {
    min-height: 240px;
  }

  .case-carousel__arrow {
    top: auto;
    bottom: -4px;
    transform: none;
  }

  .case-carousel__arrow--prev {
    left: calc(50% - 76px);
  }

  .case-carousel__arrow--next {
    right: calc(50% - 76px);
  }

  .case-carousel__dots {
    margin-top: 28px;
    padding-bottom: 58px;
  }
}

@media (max-width: 768px) {
  .webinar-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .webinar-box .btn {
    width: 100%;
    justify-content: center;
  }

  .org-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .org-box .btn {
    width: 100%;
    justify-content: center;
  }

  .wind-notkite {
    padding: 26px 20px;
  }

  .wind-notkite__scenarios {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-carousel-cta {
    padding: 24px 20px;
  }

  .case-carousel-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wind-cards {
    grid-template-columns: 1fr;
  }

  .case-slide {
    padding: 24px 20px;
  }

  .case-slide__media {
    min-height: 210px;
  }

  .case-slide__media img {
    min-height: 210px;
  }

  .case-slide__title {
    font-size: 1.25rem;
  }

  .case-slide__block p,
  .case-slide__effect {
    font-size: 0.9rem;
  }
}
