/* ── PRIVATE STYLES FOR INDEX ── */

/* ── HERO ── */
.home-page .hero {
  position: relative;
  padding: 8.5rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(160deg, #060f1e 0%, #0A192F 55%, #0d2240 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media(min-width:768px) {
  .home-page .hero {
    padding: 10rem 0 4rem;
    min-height: 100vh;
  }
}

.home-page .hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .85rem;
  border-radius: 100px;
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .25);
  color: var(--accent);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 2s infinite;
}

.hero-sub {
  font-family: var(--font-h);
  font-size: clamp(.9rem, 1.6vw, 1rem);
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.home-page .hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero h1 .gt {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* buttons */
/* buttons moved to style.css */

/* promo strip */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.75rem;
  border-radius: 18px;
  background: rgba(0, 180, 216, .07);
  border: 1px solid rgba(0, 180, 216, .22);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  max-width: 600px;
}

.hero-promo:hover {
  background: rgba(0, 180, 216, .13);
  border-color: rgba(0, 180, 216, .45);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 180, 216, .12);
}

.promo-red {
  background: #ef4444;
  color: #fff;
  font-family: var(--font);
  font-size: .66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  animation: badgePing 2.5s infinite;
}

.promo-text {
  text-align: left;
}

.promo-label {
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.promo-title {
  font-family: var(--font-h);
  font-size: .96rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.promo-sub {
  font-family: var(--font);
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.promo-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .25s;
}

.hero-promo:hover .promo-arrow {
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  animation: fadeUp .5s .5s ease both;
}

.stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1;
  letter-spacing: -.03em;
}

.stat-label {
  font-family: var(--font);
  font-size: .73rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ── SECTION BASE ── */
.home-page .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* base sections moved to style.css */

/* ── ABOUT ── */
#o-mnie {
  padding: 2.5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-frame {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 340px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(0, 180, 216, .15) 0%, transparent 60%), radial-gradient(circle at 75% 75%, rgba(100, 255, 218, .07) 0%, transparent 60%);
}

.about-mono {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 180, 216, .18);
  letter-spacing: -.04em;
  position: relative;
  z-index: 1;
}

.about-photo-lbl {
  font-family: var(--font);
  font-size: .72rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-pill {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  border: 1px solid var(--slate-100);
  text-align: center;
  z-index: 2;
}

.about-pill .big {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.03em;
}

.about-pill .sm {
  font-family: var(--font);
  font-size: .7rem;
  color: var(--slate-500);
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.35;
}

.about-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--accent);
}

.about-text p {
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 400;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: .6rem;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .9rem;
  border-radius: 100px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all .2s;
}

.skill-chip svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.skill-chip:hover {
  background: rgba(0, 180, 216, .07);
  border-color: rgba(0, 180, 216, .3);
  color: var(--brand);
}

/* Expert Cards are now shared in style.css */

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

/* ── O NAS TEAM VIDEO LAYOUT ── */
#o-nas-team {
  padding: 5rem 0;
  background: var(--white);
  overflow: hidden;
}

#o-nas-team .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

#o-nas-team .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.o-nas-text-extra {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 180, 216, 0.2);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.video-iframe-mobile {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-iframe-mobile iframe {
  width: 100%;
  height: 100%;
}

.video-wrapper:hover .video-thumb {
  filter: brightness(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 25, 47, 0.2);
  transition: background 0.3s;
}

.video-wrapper:hover .play-overlay {
  background: rgba(10, 25, 47, 0.1);
}

.play-btn-outer {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  position: relative;
}

.play-btn-outer::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 50%;
  animation: playPulse 2s infinite;
}

.play-btn-inner {
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
  transition: all 0.3s;
}

.play-btn-inner svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 3px;
}

.video-wrapper:hover .play-btn-outer {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--accent-bright);
}

.video-wrapper:hover .play-btn-inner {
  background: var(--accent-bright);
  color: var(--brand);
}

@keyframes playPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── MODAL ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 15, 30, 0.95);
  backdrop-filter: blur(15px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.show .modal-content {
  transform: scale(1);
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  #o-nas-team .section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
}

/* ── SZKOLENIA ── */
#szkolenia {
  padding: 2.5rem 0;
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sz-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.sz-blob {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 180, 216, .07) 0%, transparent 60%);
  pointer-events: none;
}

.sz-inner {
  position: relative;
  z-index: 1;
}

#szkolenia .section-eyebrow {
  color: var(--accent-bright);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tcard {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  overflow: hidden;
  transition: all .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tcard:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(0, 180, 216, .3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.tcard.featured {
  border-color: rgba(0, 180, 216, .4);
  background: rgba(0, 180, 216, .06);
  box-shadow: 0 0 0 1px rgba(0, 180, 216, .2), 0 12px 48px rgba(0, 180, 216, .1);
}

.feat-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: #fff;
  font-family: var(--font);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: badgePing 2.5s infinite;
}

.card-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.tcard:hover .card-bar,
.tcard.featured .card-bar {
  transform: scaleX(1);
}

.card-body-inner {
  padding: 1.5rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-num {
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  flex-shrink: 0;
}

.card-ico svg {
  width: 24px;
  height: 24px;
  color: var(--accent-bright);
}

.tcard:hover .card-ico {
  transform: scale(1.08) rotate(-4deg);
}

.card-body-inner h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}

.card-body-inner p {
  font-family: var(--font);
  font-size: .86rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  flex: 1;
}

.card-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.cchip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .3rem .8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
}

.cchip svg {
  width: 11px;
  height: 11px;
  color: var(--accent);
  flex-shrink: 0;
}

.card-foot {
  padding: .75rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cprice {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.cprice .free {
  color: var(--accent-bright);
}

.cprice .soon {
  color: var(--accent);
  font-weight: 500;
  font-size: .9rem;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  border-radius: 100px;
  background: rgba(0, 180, 216, .15);
  border: 1px solid rgba(0, 180, 216, .3);
  color: var(--accent-bright);
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}

.btn-card svg {
  width: 13px;
  height: 13px;
  transition: transform .2s;
}

.btn-card:hover {
  background: rgba(0, 180, 216, .25);
  border-color: var(--accent-bright);
  transform: translateY(-1px);
}

.btn-card:hover svg {
  transform: translateX(3px);
}

.tcard.featured .btn-card {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--brand);
}

.tcard.featured .btn-card:hover {
  background: #7fffd6;
}

.more-topics {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.more-topics>div>p {
  font-family: var(--font);
  font-size: .8rem;
  color: rgba(255, 255, 255, .52);
  margin-bottom: .75rem;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tchip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .32rem .85rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font);
  font-size: .76rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .52);
  transition: all .2s;
}

.tchip svg {
  width: 11px;
  height: 11px;
  color: var(--accent);
  flex-shrink: 0;
}

.tchip:hover {
  background: rgba(0, 180, 216, .1);
  border-color: rgba(0, 180, 216, .3);
  color: rgba(255, 255, 255, .85);
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
  white-space: nowrap;
  transition: gap .25s;
}

.more-link svg {
  width: 15px;
  height: 15px;
  transition: transform .25s;
  flex-shrink: 0;
}

.more-link:hover {
  gap: .75rem;
}

.more-link:hover svg {
  transform: translateX(4px);
}

/* ── NAJBLIŻSZE ── */
#najblizsze {
  padding: 2.5rem 0;
  background: var(--slate-50);
}

.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.upcoming-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .9rem;
}

.upcoming-text h2 .hl {
  background: linear-gradient(100deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.upcoming-text p {
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 400;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.event-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
  transition: all .3s;
}

.event-card:hover {
  box-shadow: 0 20px 60px rgba(0, 180, 216, .1);
  border-color: rgba(0, 180, 216, .3);
  transform: translateY(-4px);
}

.event-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}

.event-inner {
  padding: 1.5rem;
}

.event-badges {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.badge-free {
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .25);
  color: var(--accent);
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-promo {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .25);
  color: #ef4444;
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: badgePing 2.5s infinite;
}

.event-inner h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: .65rem;
}

.event-inner>p {
  font-family: var(--font);
  font-size: .88rem;
  color: var(--slate-600);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.event-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.event-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font);
  font-size: .88rem;
  color: var(--slate-600);
  font-weight: 400;
}

.event-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.event-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 1.25rem;
}

.price-big {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
}

.price-desc {
  font-family: var(--font);
  font-size: .8rem;
  color: var(--slate-400);
  font-weight: 300;
  line-height: 1.4;
}

/* ── PILLARS ── */
#o-nas {
  padding: 2.5rem 0;
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: all .3s ease;
}

.pillar-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .2);
}

.pillar-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: transform .3s;
}

.pillar-card:hover .pillar-ico {
  transform: scale(1.1);
}

.pillar-ico svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.pillar-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}

.pillar-card p {
  font-family: var(--font);
  color: var(--slate-600);
  line-height: 1.75;
  font-size: .88rem;
  font-weight: 400;
}

/* ── HUB ── */
#hub {
  padding: 2.5rem 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hub-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

.hub-inner {
  position: relative;
  z-index: 1;
}

#hub .section-eyebrow {
  color: var(--accent-bright);
  justify-content: center;
}

.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.htag {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  transition: all .25s;
}

.htag svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.htag:hover {
  background: rgba(0, 180, 216, .1);
  border-color: rgba(0, 180, 216, .3);
  color: #fff;
}

/* ── KONTAKT ── */
#kontakt {
  padding: 2.5rem 0;
  background: var(--slate-50);
}

.contact-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .08);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 980px;
  margin: 0 auto;
}

.contact-left {
  background: var(--brand);
  padding: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

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

.contact-left h2 {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.contact-left>p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: .88rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-bright);
}

.ci-lbl {
  font-family: var(--font);
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .2rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ci-val {
  font-family: var(--font);
  font-size: .92rem;
  color: var(--white);
  font-weight: 500;
}

.contact-right {
  padding: 2rem;
}

.contact-right h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}

.contact-right .csub {
  font-family: var(--font);
  font-size: .85rem;
  color: var(--slate-500);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .75rem;
}

.form-group label {
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 400;
  color: var(--slate-900);
  outline: none;
  transition: all .2s;
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10, 25, 47, .08);
}

.form-group textarea {
  resize: none;
  height: 100px;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

.form-alert {
  padding: .85rem 1rem;
  border-radius: 12px;
  font-family: var(--font);
  font-size: .85rem;
  margin-bottom: 1.25rem;
  display: none;
}

.form-alert.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.form-alert.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.form-alert.show {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.form-alert span {
  display: block;
}

input.field-error,
select.field-error,
textarea.field-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, .04) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12) !important;
}

.btn-submit {
  width: 100%;
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 14px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.btn-submit:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 25, 47, .25);
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
}

.form-note {
  text-align: center;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 300;
  color: var(--slate-400);
  margin-top: .75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 1.75rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.footer-logo-ico {
  width: 32px;
  height: 32px;
  background: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-pill {
    right: 0;
  }
}

@media(max-width:768px) {

  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .contact-left,
  .contact-right {
    padding: 2rem;
  }

  .more-topics {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

@media(max-width:500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── NARZĘDZIA ── */
#narzedzia {
  padding: 3.5rem 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.narzedzia-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

#narzedzia .section-inner {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

#narzedzia h2 {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

#narzedzia h2 span {
  color: var(--accent);
}

.tools-marquee {
  display: flex;
  width: 100vw;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 2;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tools-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: scrollTools 35s linear infinite;
  padding: 0 1.75rem;
}

.tools-track:hover {
  animation-play-state: paused;
}

.tools-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  filter: grayscale(100%) opacity(0.65);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  mix-blend-mode: multiply;
  background: white;
  /* In case any have transparent backgrounds */
  padding: 4px;
  /* Gives a nice border padding for logos if they are pure edges */
}

/* override mix band mode and background for some logos if needed, but safe base */
.tools-logo {
  mix-blend-mode: normal;
  background: transparent;
  padding: 0;
}

.tools-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

@keyframes scrollTools {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
