/* ================================================================
   EVOLUTION OSK – Główny arkusz stylów
   ================================================================ */

:root {
  --red:      #E8161A;
  --red-dark: #b01013;
  --black:    #0A0A0A;
  --dark:     #111111;
  --dark2:    #1a1a1a;
  --gray:     #888888;
  --light:    #f5f5f5;
  --white:    #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html   { scroll-behavior: smooth; }
body   { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
img    { display: block; max-width: 100%; }
a      { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-badge {
  width: 42px; height: 42px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 18px; letter-spacing: -1px;
  clip-path: polygon(10% 0%,90% 0%,100% 10%,100% 90%,90% 100%,10% 100%,0% 90%,0% 10%);
}
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 2px; color: #fff; }
.nav-logo-text span { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red); color: #fff;
  padding: 10px 24px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.45) 100%);
}

/* Two-column inner */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  width: 100%;
  padding: 100px 48px 48px;
  align-items: center;
}

/* LEFT – headline */
.hero-content { padding: 0; }
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.hero-label::before { content: ''; width: 32px; height: 2px; background: var(--red); }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 100px); font-weight: 900;
  line-height: .9; text-transform: uppercase; letter-spacing: -1px;
  margin-bottom: 20px; animation: fadeUp .8s ease both;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.72);
  max-width: 440px; line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp .8s .15s ease both;
}

/* Stats inside left column */
.hero-stats-inline {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px;
  animation: fadeUp .8s .3s ease both;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900; line-height: 1;
}
.hero-stat-num sup { color: var(--red); font-size: 20px; }
.hero-stat-label { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.45); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* RIGHT – glass form panel */
.hero-form-panel {
  background: rgba(10,10,10,.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  padding: 36px 32px 32px;
  animation: fadeUp .8s .2s ease both;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-form-header { margin-bottom: 24px; }
.hero-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -.5px; margin-bottom: 8px;
}
.hero-form-title em { color: var(--red); font-style: normal; }
.hero-form-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Form field styles inside hero */
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hf-field { margin-bottom: 10px; }
.hf-field label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 6px;
}
.hf-field input,
.hf-field select,
.hf-field textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; padding: 11px 13px; font-size: 16px;
  font-family: 'Barlow', sans-serif; outline: none;
  transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.hf-field input::placeholder,
.hf-field textarea::placeholder { color: rgba(255,255,255,.25); }
.hf-field input:focus,
.hf-field select:focus,
.hf-field textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,.1);
}
.hf-field select option { background: #111; color: #fff; }
.hf-field textarea { height: 76px; resize: none; }
.hf-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.hf-check input { width: 15px; height: 15px; flex-shrink: 0; accent-color: var(--red); margin-top: 2px; }
.hf-check label { font-size: 11px; color: rgba(255,255,255,.38); line-height: 1.5; }
.hf-check label a { color: rgba(255,255,255,.55); text-decoration: none; }
.hf-check label a:hover { color: var(--red); }
.hf-submit {
  width: 100%;
  background: var(--red); color: #fff; border: none;
  padding: 14px; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: background .2s, transform .2s;
}
.hf-submit:hover:not(:disabled) { background: var(--red-dark); transform: translateX(3px); }
.hf-submit.sent { background: #1a7a40; transform: none; }

/* Slide nav stays right edge */
.hero-slide-nav {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 8px;
}
.slide-dot { width: 4px; height: 24px; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s, height .3s; }
.slide-dot.active { background: var(--red); height: 48px; }


/* ── STRIP ── */
.about-strip {
  background: var(--red); padding: 20px 48px;
  display: flex; align-items: center; gap: 48px; overflow-x: auto;
}
.strip-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; flex-shrink: 0; }
.strip-icon { font-size: 22px; }
.strip-text { font-size: 14px; font-weight: 600; letter-spacing: .5px; }
.strip-divider { width: 1px; height: 24px; background: rgba(255,255,255,.3); flex-shrink: 0; }

/* ── SECTION HELPERS ── */
section { padding: 100px 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  text-transform: uppercase; line-height: 1; letter-spacing: -1px; margin-bottom: 24px;
}
.section-title em { color: var(--red); font-style: normal; }

/* ── ABOUT ── */
#about { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; object-position: center 30%; clip-path: polygon(0 0,100% 0,100% 85%,90% 100%,0 100%); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  clip-path: polygon(15% 0%,85% 0%,100% 15%,100% 85%,85% 100%,15% 100%,0% 85%,0% 15%);
}
.about-badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge-txt { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-align: center; }
.about-text { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 32px; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.about-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.85); }
.about-features li::before { content: ''; width: 20px; height: 2px; background: var(--red); flex-shrink: 0; }

/* ── PRICING ── */
#oferta { background: var(--black); }
.offer-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.06); }
.price-card { background: var(--dark); padding: 40px 32px; position: relative; transition: transform .25s, background .25s; overflow: hidden; }
.price-card:hover { background: var(--dark2); transform: translateY(-4px); }
.price-card.featured { background: var(--dark2); border: 1px solid var(--red); }
.price-card.featured::before {
  content: 'POLECAMY'; position: absolute;
  top: 18px; right: -30px;
  background: var(--red); font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 5px 40px; transform: rotate(45deg); white-space: nowrap;
}
.price-cat { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.price-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 24px; line-height: 1.2; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 22px; font-weight: 400; color: var(--gray); }
.price-note { font-size: 12px; color: var(--gray); margin-bottom: 28px; min-height: 32px; }
.price-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); }
.price-features li .chk { color: var(--red); font-size: 16px; flex-shrink: 0; }
.price-features li .x   { color: #444;       font-size: 16px; flex-shrink: 0; }
.price-btn {
  display: block; text-align: center; padding: 13px;
  border: 1px solid rgba(255,255,255,.2); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; color: #fff;
  transition: background .2s, border-color .2s;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
}
.price-btn:hover,
.price-card.featured .price-btn { background: var(--red); border-color: var(--red); }

/* ── WHY US ── */
#why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(255,255,255,.06); margin-top: 56px; }
.why-item { background: var(--dark); padding: 48px 32px; transition: background .2s; }
.why-item:hover { background: var(--dark2); }
.why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: rgba(255,255,255,.07); line-height: 1; margin-bottom: 16px; }
.why-icon { font-size: 28px; margin-bottom: 16px; }
.why-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── COURSE STARTS ── */
#terminy { background: var(--dark); }
.starts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.06);
  margin-top: 48px;
  margin-bottom: 32px;
}
.start-card {
  background: var(--dark);
  padding: 32px 28px;
  position: relative;
  transition: background .2s;
  overflow: hidden;
}
.start-card:hover { background: var(--dark2); }
.start-card.full { opacity: .45; pointer-events: none; }
.start-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
}
.start-date-block {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px;
}
.start-day-box {
  background: var(--red);
  min-width: 62px; height: 62px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
}
.start-day  { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; line-height: 1; }
.start-mon  { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.start-meta { display: flex; flex-direction: column; gap: 4px; padding-top: 4px; }
.start-year { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.start-time-row { display: flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; }
.start-mode { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; }
.start-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 6px;
}
.start-note { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 16px; min-height: 16px; }
.start-spots-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.start-spots-label { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; }
.start-spots-num   { font-size: 14px; font-weight: 700; }
.start-spots-num.low  { color: #f0a000; }
.start-spots-num.full { color: #666; }
.start-spots-num.free { color: #4aaa6a; }
.start-bar { height: 3px; background: rgba(255,255,255,.07); margin-bottom: 20px; }
.start-bar-fill { height: 100%; background: var(--red); transition: width .4s ease; }
.start-bar-fill.low  { background: #f0a000; }
.start-bar-fill.free { background: #4aaa6a; }
.start-badge-full {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; background: #333; color: #666;
  padding: 4px 14px; text-transform: uppercase; margin-top: 4px;
}
.starts-cta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
}
.starts-cta p { font-size: 14px; color: rgba(255,255,255,.45); }

@media (max-width: 900px) {
  .starts-cta { flex-direction: column; align-items: flex-start; }
}

/* ── VEHICLES ── */
#pojazdy { background: var(--black); }
.vehicles-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2px; background: rgba(255,255,255,.06); margin-top: 56px; }
.vehicle-card { background: var(--dark); overflow: hidden; position: relative; }
.vehicle-card img { width: 100%; height: 340px; object-fit: cover; object-position: center 60%; transition: transform .6s ease; filter: grayscale(20%); }
.vehicle-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.vehicle-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
}
.vehicle-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.vehicle-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; }

/* ── FORM ── */
#zapisy { background: var(--dark); }
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.form-info p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(232,22,26,.15); border: 1px solid rgba(232,22,26,.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.contact-item-val { font-size: 16px; font-weight: 500; }
.contact-item-val a { text-decoration: none; transition: color .2s; }
.contact-item-val a:hover { color: var(--red); }
form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #fff; padding: 14px 16px; font-size: 15px; font-family: 'Barlow', sans-serif;
  outline: none; transition: border-color .2s; appearance: none; -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field select option { background: #1a1a1a; }
.form-field textarea { height: 120px; resize: vertical; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--red); margin-top: 2px; }
.form-check label { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }
.form-check label a { color: rgba(255,255,255,.65); }
.form-submit {
  background: var(--red); color: #fff; border: none;
  padding: 16px 40px; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: background .2s, transform .2s; align-self: flex-start;
}
.form-submit:hover:not(:disabled) { background: var(--red-dark); transform: translateX(4px); }
.form-submit.sent { background: #1a7a40; }

/* ── FOOTER ── */
footer { background: #050505; padding: 64px 48px 32px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 300px; margin-top: 16px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; color: rgba(255,255,255,.45); font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── HAMBURGER + MOBILE MENU ── */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none;
  cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: #fff; transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 56px; z-index: 999;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 18px 0;
  font-size: 22px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.8); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-cta {
  margin-top: 24px; background: var(--red); color: #fff;
  text-align: center; padding: 16px; border: none;
  font-size: 16px; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
}

/* ── RESPONSIVE 1100px ── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Sections */
  section { padding: 56px 20px; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 20px 32px;
    gap: 24px;
    min-height: 100vh;
    align-items: flex-start;
  }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-stats-inline { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 28px; }
  .hero-form-panel {
    border: 1px solid rgba(255,255,255,.1);
    padding: 24px 20px;
    background: rgba(10,10,10,.7);
  }
  .hero-form-title { font-size: 24px; }
  .hf-row { grid-template-columns: 1fr; }
  .hero-slide-nav { display: none; }

  /* Strip */
  .about-strip { padding: 14px 20px; gap: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .strip-text { font-size: 12px; }

  /* About */
  #about { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px; }
  .about-img-wrap { display: none; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { padding: 28px 20px; }

  /* Offer */
  .offer-header { flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 2px; }
  .price-card { padding: 28px 20px; }
  .price-amount { font-size: 40px; }

  /* Vehicles */
  .vehicles-grid { grid-template-columns: 1fr; }

  /* Contact / Zapisy */
  #zapisy { padding: 56px 20px; }
  .form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap iframe { min-height: 260px; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Subpages */
  .page-hero { padding: 88px 20px 36px; }
  .page-content { padding: 36px 20px; }
  .info-cards { grid-template-columns: 1fr; }
  .cta-bar { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .starts-cta { flex-direction: column; align-items: flex-start; }

  /* Rental */
  .rental-grid { grid-template-columns: 1fr; }

  /* Legal sidebar */
  .legal-wrap { grid-template-columns: 1fr !important; padding: 36px 20px 64px !important; gap: 0 !important; }
  .toc { display: none; }
}

/* ── RESPONSIVE 600px ── */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-stats-inline { gap: 16px; }
  .hero-stat-num { font-size: 24px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 24px 20px; }

  .section-title { font-size: clamp(28px, 8vw, 42px); }

  .price-card.featured::before { font-size: 8px; padding: 4px 28px; }

  footer { padding: 40px 16px 20px; }

  .hf-submit { font-size: 12px; padding: 14px; }
  .hf-field input, .hf-field select, .hf-field textarea { font-size: 16px; } /* prevent zoom on iOS */
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; }

  .page-hero h1 { font-size: clamp(32px, 10vw, 52px); }

  .about-strip { gap: 16px; }
  .strip-text { font-size: 11px; }
  .strip-divider { display: none; } /* hide dividers on small screens */

  /* Contact grid 1 col */
  .contact-items { gap: 14px; }

  /* Info cards 1 col */
  .rights-grid, .rights-row { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE 400px ── */
@media (max-width: 400px) {
  nav { height: 56px; }
  .nav-logo-text { font-size: 16px; }
  .nav-logo-badge { width: 34px; height: 34px; font-size: 14px; }

  .hero-inner { padding: 72px 16px 28px; }
  .hero-title { font-size: 38px; }

  section { padding: 48px 16px; }
  .page-hero { padding: 78px 16px 28px; }
  footer { padding: 36px 16px 20px; }
  .about-strip { padding: 12px 16px; }

  .price-amount { font-size: 36px; }
  .pricing-grid { gap: 1px; }

  .rights-grid, .rights-row { grid-template-columns: 1fr; }
}

/* ================================================================
   PODSTRONY – wspólne style
   ================================================================ */

/* Page hero banner */
.page-hero {
  padding: 140px 48px 60px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(232,22,26,.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.page-hero-label::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -1px;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.6);
  max-width: 560px; line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.35);
  margin-bottom: 20px; letter-spacing: .5px;
}
.breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,.6); }
.breadcrumb::before { content: '›'; display: none; }

/* Content blocks */
.page-content { padding: 64px 48px; background: var(--black); max-width: 1200px; margin: 0 auto; }

/* Prose text */
.prose { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.9; }
.prose p { margin-bottom: 20px; }
.prose strong { color: #fff; font-weight: 600; }
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #fff; margin: 40px 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.prose h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  color: var(--red); letter-spacing: 1px; margin: 28px 0 10px;
}
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.prose ul li::before { content: '—'; color: var(--red); flex-shrink: 0; font-weight: 700; }

/* Info cards grid */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; background: rgba(255,255,255,.06);
  margin: 48px 0;
}
.info-card {
  background: var(--dark); padding: 36px 28px;
  border-left: 3px solid var(--red);
  transition: background .2s;
}
.info-card:hover { background: var(--dark2); }
.info-card-icon { font-size: 32px; margin-bottom: 14px; }
.info-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px;
}
.info-card-text { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* Accordion / rules blocks */
.rules-block {
  background: var(--dark); border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 10px; overflow: hidden;
}
.rules-block-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  transition: background .2s;
}
.rules-block-header:hover { background: rgba(255,255,255,.03); }
.rules-block-num {
  width: 32px; height: 32px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; flex-shrink: 0;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
}
.rules-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  flex: 1;
}
.rules-block-arrow { color: var(--red); font-size: 14px; transition: transform .3s; flex-shrink: 0; }
.rules-block-arrow.open { transform: rotate(180deg); }
.rules-block-body {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.rules-block-body.open { max-height: 2000px; padding: 0 24px 24px; }
.rules-block-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rules-block-body ul li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.rules-block-body ul li::before { content: '—'; color: var(--red); flex-shrink: 0; }
.rules-block-body p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 12px; }

/* Rental cards */
.rental-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; background: rgba(255,255,255,.06);
  margin: 48px 0;
}
.rental-card { background: var(--dark); overflow: hidden; transition: background .2s; }
.rental-card:hover { background: var(--dark2); }
.rental-card-img { width: 100%; height: 220px; object-fit: cover; object-position: center 60%; filter: grayscale(20%); display: block; transition: filter .4s, transform .5s; }
.rental-card:hover .rental-card-img { filter: grayscale(0); transform: scale(1.03); }
.rental-card-img-wrap { overflow: hidden; }
.rental-card-body { padding: 28px 24px; }
.rental-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.rental-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.rental-card-price { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.rental-card-price span { font-size: 16px; font-weight: 400; color: var(--gray); }
.rental-card-note { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.rental-card-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.rental-card-features li { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.rental-card-features li::before { content: '✓'; color: var(--red); flex-shrink: 0; }

/* CTA bar */
.cta-bar {
  background: var(--red); padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.cta-bar-text h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }
.cta-bar-text p { font-size: 15px; color: rgba(255,255,255,.8); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--red);
  padding: 14px 28px; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background .2s, transform .2s;
}
.btn-white:hover { background: #f0f0f0; transform: translateX(4px); }


