:root {
  --black: #050505;
  --charcoal: #101010;
  --graphite: #171717;
  --graphite-soft: #222;
  --white: #f7f3ee;
  --muted: #c8c0b8;
  --orange: #0b78d1;
  --orange-soft: rgba(11, 120, 209, 0.26);
  --orange-strong: #72c5ff;
  --glass: rgba(12, 12, 12, 0.64);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
  --radius: 10px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --nav-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(11, 120, 209, 0.09), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111 42%, #050505 100%);
}
a { color: inherit; text-decoration: none; }
img, video { display: block; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 700;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 16px; }

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(1180px, calc(100% - 32px));
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -140%);
  opacity: 0;
  transition: transform 0.72s cubic-bezier(.2,.85,.2,1), opacity 0.45s ease, border-radius 0.25s ease;
}
.site-nav.is-visible { transform: translate(-50%, 0); opacity: 1; }
.site-nav.is-open { border-radius: 18px; }

.nav-logo {
  display: inline-grid;
  align-content: center;
  gap: 6px;
  min-width: 210px;
}
.nav-logo img {
  width: auto;
  max-width: min(290px, 100%);
  height: auto;
  image-rendering: auto;
}
.nav-logo-subtitle {
  color: rgba(247, 243, 238, 0.82);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 14px;
  color: rgba(247, 243, 238, 0.84);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(11, 120, 209, 0.12);
  box-shadow: inset 0 0 0 1px rgba(11, 120, 209, 0.38), 0 0 30px rgba(11, 120, 209, 0.13);
}
.nav-links .nav-contact {
  color: #140b02;
  background: linear-gradient(135deg, var(--orange), #8bd0ff);
  box-shadow: 0 10px 30px rgba(11, 120, 209, 0.24);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.04) saturate(1.04) brightness(1.18);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.28) 74%, rgba(5,5,5,0.92) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0.02), rgba(0,0,0,0.28) 82%);
}
.hero-content {
  width: min(1120px, calc(100% - 32px));
  min-height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0 140px;
}
.hero-title-box {
  max-width: 980px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 120, 209, 0.12), transparent 50%),
    rgba(0,0,0,0.28);
  box-shadow: 0 30px 100px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  text-align: center;
}
.hero-brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-brand img {
  width: auto;
  max-width: min(290px, 100%);
  height: auto;
  image-rendering: auto;
}
.hero-brand-subtitle {
  margin: 0;
  color: rgba(247,243,238,0.86);
  font-size: clamp(10px, 1.25vw, 13px);
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  line-height: 1.25;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(40px, 6.6vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.04em;
  text-wrap: balance;
  font-weight: 500;
  text-shadow: 0 10px 30px rgba(0,0,0,0.72), 0 0 28px rgba(11,120,209,0.06);
}
.hero h1.hero-subtitle {
  margin-top: 18px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(20px, 3vw, 37px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: rgba(247, 243, 238, 0.92);
  font-weight: 350;
}
.hero-actions {
  position: absolute;
  left: clamp(16px, 5vw, 68px);
  bottom: clamp(26px, 8vh, 78px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  background: rgba(0,0,0,0.46);
  box-shadow: 0 18px 46px rgba(0,0,0,0.46), inset 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
}
.glass-button:hover,
.glass-button:focus-visible {
  transform: translateY(-3px);
  color: var(--orange-strong);
  border-color: rgba(11,120,209,0.72);
  box-shadow: 0 20px 58px rgba(0,0,0,0.50), 0 0 34px rgba(11,120,209,0.2);
}
.glass-button--accent {
  background: linear-gradient(135deg, rgba(11,120,209,0.88), rgba(114,197,255,0.88));
  color: #150c04;
  border-color: rgba(255, 205, 154, 0.8);
}
.glass-button--accent:hover,
.glass-button--accent:focus-visible { color: #050505; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: rgba(247,243,238,0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  margin: 10px auto 0;
  background: linear-gradient(var(--orange), transparent);
}

.section-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.models-section { position: relative; padding: clamp(82px, 10vw, 140px) 0; overflow: hidden; }
.parallax-section::before {
  content: "";
  position: absolute;
  inset: -15% 0;
  z-index: -2;
  background:
    linear-gradient(rgba(5,5,5,0.80), rgba(5,5,5,0.92)),
    radial-gradient(circle at 18% 28%, rgba(11,120,209,0.15), transparent 25%),
    radial-gradient(circle at 82% 62%, rgba(255,255,255,0.06), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 16px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}
.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading h2,
.producer-panel h2,
.footer-map h2,
.footer-contact h2,
.footer-social h2 {
  margin: 0 0 18px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-weight: 500;
}
.section-heading p,
.producer-panel p,
.footer-brand p,
.footer-contact p { color: var(--muted); margin: 0 0 18px; }
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}
.model-card {
  position: relative;
  min-height: clamp(440px, 65vw, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.06), transparent 37%),
    radial-gradient(circle at 50% 80%, rgba(11,120,209,0.09), transparent 32%),
    linear-gradient(145deg, #080808 0%, #151515 48%, #090909 100%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.03);
  isolation: isolate;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.56)),
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.05), transparent 33%);
  opacity: 0.94;
}
.model-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), rgba(0,0,0,0.52) 56%, transparent);
  pointer-events: none;
}
.model-card:hover,
.model-card:focus-visible,
.model-card.is-touched {
  transform: translateY(-7px);
  border-color: rgba(11,120,209,0.46);
  box-shadow: 0 28px 90px rgba(0,0,0,0.62), 0 0 46px rgba(11,120,209,0.13);
}
.model-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px) clamp(22px, 4vw, 58px) clamp(100px, 12vw, 150px);
}
.model-image-wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(310px, 56vw, 560px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,0.76));
  transform: translateZ(0);
  transition: filter 0.32s ease, transform 0.32s ease;
}
.model-card:hover .model-image-wrap img,
.model-card:focus-visible .model-image-wrap img,
.model-card.is-touched .model-image-wrap img {
  filter: drop-shadow(0 32px 50px rgba(0,0,0,0.82)) drop-shadow(0 0 24px rgba(11,120,209,0.14));
  transform: scale(1.015);
}
.model-copy {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(24px, 4vw, 42px);
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(9px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.42);
}
.model-label {
  color: rgba(247,243,238,0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.model-title {
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(33px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
  transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease;
}
.model-card:hover .model-title,
.model-card:focus-visible .model-title,
.model-card.is-touched .model-title {
  color: var(--orange-strong);
  text-shadow: 0 0 26px rgba(11,120,209,0.44), 0 12px 34px rgba(0,0,0,0.85);
  transform: translateX(3px);
}
.price-card {
  align-items: stretch;
  justify-content: stretch;
  min-height: clamp(440px, 56vw, 600px);
  background: linear-gradient(145deg, #0a0a0a, #1b120b 52%, #070707);
}
.price-card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.price-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) contrast(1.02) saturate(0.98);
}
.price-card::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.66)),
    radial-gradient(circle at 80% 22%, rgba(11,120,209,0.15), transparent 32%);
}
.price-glow {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(11,120,209,0.23);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, rgba(11,120,209,0.10), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
  box-shadow: 0 0 60px rgba(11,120,209,0.08), inset 0 0 80px rgba(0,0,0,0.2);
}
.model-copy--price { left: auto; width: min(82%, 420px); text-align: right; }
.model-note { color: rgba(247,243,238,0.72); font-size: 14px; line-height: 1.55; }
.producer-section {
  padding: clamp(72px, 10vw, 128px) 0 96px;
  background: linear-gradient(180deg, rgba(5,5,5,0), #080808 22%, #050505 100%);
}
.producer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 4vw, 42px);
}
.producer-panel {
  min-height: 420px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)), rgba(15,15,15,0.86);
  box-shadow: var(--shadow);
}
.distributor-panel {
  background: radial-gradient(circle at 18% 0%, rgba(11,120,209,0.14), transparent 38%), linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)), rgba(15,15,15,0.88);
}
.contact-strip {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-strip a,
.contact-strip span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  background: rgba(0,0,0,0.22);
  color: #fff;
  font-weight: 650;
}
.contact-strip a:hover,
.contact-strip a:focus-visible { color: var(--orange-strong); border-color: rgba(11,120,209,0.45); }
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 950;
  display: grid;
  gap: 10px;
}
.float-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(7,7,7,0.78);
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-3px);
  color: var(--orange-strong);
  border-color: rgba(11,120,209,0.58);
  box-shadow: 0 18px 48px rgba(0,0,0,0.55), 0 0 28px rgba(11,120,209,0.16);
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: radial-gradient(circle at 14% 0%, rgba(11,120,209,0.10), transparent 28%), #050505;
  padding: 58px 0 24px;
}
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.9fr 0.65fr;
  gap: 34px;
}
.footer-brand img {
  width: auto;
  max-width: min(290px, 100%);
  height: auto;
  margin-bottom: 16px;
  image-rendering: auto;
}
.footer-map,
.footer-contact,
.footer-social { display: grid; align-content: start; gap: 10px; }
.footer-map h2,
.footer-contact h2,
.footer-social h2 { font-size: 23px; margin-bottom: 10px; }
.footer-map a,
.footer-contact a,
.footer-social a { color: var(--muted); transition: color 0.2s ease; }
.footer-map a:hover,
.footer-contact a:hover,
.footer-social a:hover { color: var(--orange-strong); }
.youtube-link {
  width: fit-content;
  padding: 11px 16px;
  border: 1px solid rgba(11,120,209,0.4);
  border-radius: 12px;
  color: #fff !important;
  background: rgba(11,120,209,0.10);
  font-weight: 700;
}
.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(247,243,238,0.46);
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(.2,.75,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 74px;
    height: auto;
    align-items: center;
    border-radius: 18px;
    padding: 12px;
    flex-wrap: wrap;
  }
  .nav-logo { min-width: 0; max-width: calc(100% - 64px); }
  .nav-logo img {
  width: auto;
  max-width: min(290px, 100%);
  height: auto;
  image-rendering: auto;
}
  .nav-logo-subtitle {
  color: rgba(247, 243, 238, 0.82);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.32s ease, opacity 0.28s ease, transform 0.28s ease, padding-top 0.28s ease;
  }
  .site-nav.is-open .nav-links {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 10px;
  }
  .nav-links a { width: 100%; justify-content: flex-start; font-size: 12px; border-radius: 10px; }
  .hero-content { align-items: center; padding-top: 118px; }
  .hero-actions { right: 16px; bottom: 74px; }
  .model-grid,
  .producer-layout,
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner { gap: 26px; }
  .producer-panel { min-height: auto; }
}

@media (max-width: 640px) {
  .hero-video { object-position: center center; }
  .hero-title-box { padding: 22px 16px; border-radius: 14px; }
  .hero-brand img {
  width: auto;
  max-width: min(290px, 100%);
  height: auto;
  image-rendering: auto;
}
  .hero-brand-subtitle {
  margin: 0;
  color: rgba(247,243,238,0.86);
  font-size: clamp(10px, 1.25vw, 13px);
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  line-height: 1.25;
}
  .hero h1 { font-size: clamp(34px, 10vw, 56px); }
  .hero h1.hero-subtitle { font-size: clamp(18px, 5.2vw, 26px); }
  .hero-actions {
    left: 16px;
    right: 16px;
    bottom: 58px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .glass-button { width: 100%; min-height: 54px; border-radius: 8px; }
  .scroll-cue { display: none; }
  .model-card { min-height: 520px; border-radius: 10px; }
  .model-image-wrap { padding: 38px 18px 130px; }
  .model-image-wrap img { max-height: 400px; }
  .model-copy { left: 16px; right: 16px; bottom: 16px; padding: 16px; border-radius: 10px; }
  .model-copy--price { width: auto; text-align: left; }
  .floating-actions { right: 12px; bottom: 12px; }
  .float-btn { width: 48px; height: 48px; border-radius: 10px; }
  .contact-strip a, .contact-strip span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .parallax-section::before { transform: none !important; }
}


/* === Korekta v4: ostre logo, niższe menu, jaśniejszy hero, niższe kafelki === */
html { scroll-padding-top: 74px; }
.site-nav {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 58px;
  height: 58px;
  padding: 5px clamp(14px, 3vw, 34px);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  gap: 14px;
  transform: translateY(-105%);
  opacity: 0;
}
.site-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.site-nav.is-open { border-radius: 0; }
.nav-logo {
  min-width: 155px;
  max-width: 155px;
  gap: 1px;
}
.nav-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  transform: none !important;
  image-rendering: auto;
}
.nav-logo-subtitle {
  font-size: 7px;
  line-height: 1.05;
  letter-spacing: 0.13em;
  font-weight: 300;
  white-space: nowrap;
}
.nav-links {
  gap: 5px;
  flex-wrap: nowrap;
}
.nav-links a {
  min-height: 34px;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.nav-links .nav-social {
  width: 34px;
  min-width: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
}
.nav-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.hero-video {
  filter: contrast(1.03) saturate(1.06) brightness(1.34);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.20) 76%, rgba(5,5,5,0.88) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0), rgba(0,0,0,0.18) 84%);
}
.hero-title-box {
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 120, 209, 0.10), transparent 50%),
    rgba(0,0,0,0.24);
  box-shadow: 0 24px 86px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-brand img {
  width: 210px !important;
  max-width: 210px !important;
  height: auto !important;
  transform: none !important;
  image-rendering: auto;
}
.hero-brand-subtitle {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 300;
}
.model-card {
  height: 650px;
  min-height: 0;
}
.price-card {
  height: 650px;
  min-height: 0;
}
.model-image-wrap img {
  max-height: 475px;
}
.footer-brand img {
  width: 155px !important;
  max-width: 155px !important;
  height: auto !important;
}
.float-btn--whatsapp svg {
  width: 31px;
  height: 31px;
}
.float-btn--whatsapp .wa-bubble {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linejoin: round;
}
.float-btn--whatsapp .wa-phone {
  fill: currentColor;
}

@media (max-width: 940px) {
  html { scroll-padding-top: 70px; }
  .site-nav {
    top: 0;
    width: 100%;
    min-height: 58px;
    height: auto;
    border-radius: 0;
    padding: 5px 12px;
  }
  .nav-logo {
    min-width: 150px;
    max-width: calc(100% - 58px);
  }
  .nav-logo img {
    width: 145px !important;
    max-width: 145px !important;
  }
  .nav-logo-subtitle {
    font-size: 6.5px;
    letter-spacing: 0.12em;
  }
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .nav-links {
    flex-wrap: initial;
  }
  .site-nav.is-open .nav-links {
    max-height: 360px;
  }
  .nav-links .nav-social {
    width: 100%;
    min-width: 100%;
    justify-content: flex-start;
    padding-left: 11px;
  }
  .hero-content {
    padding-top: 92px;
  }
}

@media (max-width: 640px) {
  .hero-brand img {
    width: 180px !important;
    max-width: 180px !important;
  }
  .hero-brand-subtitle {
    font-size: 8.5px;
    letter-spacing: 0.13em;
  }
  .model-card,
  .price-card {
    height: 560px;
  }
  .model-image-wrap img {
    max-height: 410px;
  }
}

/* === Korekta v5: mobile hero/CTA, menu visible on mobile, footer map models, WhatsApp handset === */
.float-btn--whatsapp svg {
  width: 32px;
  height: 32px;
}
.float-btn--whatsapp .wa-phone {
  transform-box: fill-box;
  transform-origin: center;
}

@media (max-width: 940px) {
  .site-nav {
    transform: none;
    opacity: 1;
    background: rgba(5, 5, 5, 0.56);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    border-bottom-color: rgba(255,255,255,0.12);
    box-shadow: 0 12px 38px rgba(0,0,0,0.34);
  }
  .site-nav.is-visible {
    transform: none;
    opacity: 1;
  }
  .floating-actions {
    display: grid;
    right: 10px;
    bottom: 12px;
    z-index: 2000;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    background: rgba(7,7,7,0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    width: 100%;
    min-height: 100svh;
    padding: 76px 14px 184px;
    align-items: center;
    justify-content: center;
  }
  .hero-title-box {
    width: min(100%, 520px);
    padding: 18px 14px;
    margin: 0 auto;
    background: rgba(0,0,0,0.22);
  }
  .hero-brand {
    gap: 5px;
    margin-bottom: 10px;
  }
  .hero-brand img {
    width: 150px !important;
    max-width: 150px !important;
  }
  .hero-brand-subtitle {
    font-size: 7px;
    letter-spacing: 0.11em;
  }
  .hero h1 {
    font-size: clamp(30px, 8.9vw, 44px);
    line-height: 1.02;
  }
  .hero h1.hero-subtitle {
    margin-top: 10px;
    font-size: clamp(15px, 4.4vw, 21px);
    line-height: 1.16;
  }
  .hero-actions {
    left: auto;
    right: 12px;
    bottom: 78px;
    width: min(178px, calc(100vw - 24px));
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: stretch;
  }
  .glass-button {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0.085em;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.44), inset 0 0 0 1px rgba(255,255,255,0.04);
  }
  .floating-actions {
    right: 10px;
    bottom: 12px;
    gap: 8px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
  .float-btn--whatsapp svg {
    width: 30px;
    height: 30px;
  }
}


/* === Korekta v6: mobile menu/dropdown/CTA/WhatsApp === */
.nav-social span {
  display: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(247, 243, 238, 0.84);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: #fff;
  background: rgba(11, 120, 209, 0.12);
  box-shadow: inset 0 0 0 1px rgba(11, 120, 209, 0.38), 0 0 30px rgba(11, 120, 209, 0.13);
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.22s ease;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(5,5,5,0.86);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-submenu a {
  width: 100%;
  justify-content: flex-start;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 11px;
}

.nav-toggle {
  gap: 4px !important;
}

.nav-toggle span {
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 2px !important;
  min-height: 2px !important;
  max-height: 2px !important;
  flex: 0 0 2px !important;
  display: block;
  margin: 0 !important;
}

.float-btn--whatsapp svg {
  width: 32px !important;
  height: 32px !important;
}

.float-btn--whatsapp .wa-bubble {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linejoin: round;
}

.float-btn--whatsapp .wa-phone {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(.76);
}

/* floating CTA zawsze nad stroną */
.floating-actions {
  position: fixed !important;
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  right: max(12px, env(safe-area-inset-right)) !important;
  bottom: calc(16px + env(safe-area-inset-bottom)) !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
}

.floating-actions .float-btn {
  display: grid !important;
  place-items: center !important;
  pointer-events: auto !important;
}

@media (max-width: 940px) {
  .site-nav {
    row-gap: 2px;
  }

  .nav-toggle {
    width: 40px;
    height: 38px;
  }

  .nav-links {
    padding-top: 0 !important;
    gap: 4px;
  }

  .site-nav.is-open .nav-links {
    padding-top: 2px !important;
    max-height: 520px;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: fit-content;
    min-height: 36px;
    justify-content: flex-start;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 12px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: max-height 0.34s ease, padding-top 0.26s ease, padding-bottom 0.26s ease;
  }

  .nav-dropdown.is-open .nav-submenu {
    max-height: 360px;
    padding-top: 3px;
    padding-bottom: 4px;
  }

  .nav-submenu a {
    width: fit-content;
    min-height: 30px;
    padding: 5px 10px;
    color: rgba(247,243,238,0.72);
    background: rgba(255,255,255,0.025);
  }

  .nav-links .nav-social {
    width: fit-content !important;
    min-width: 0 !important;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px !important;
  }

  .nav-social span {
    display: inline;
    font-size: 12px;
    line-height: 1;
  }

  .floating-actions {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    z-index: 99999 !important;
    display: grid !important;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 74px 14px 168px;
  }

  .hero-title-box {
    margin-top: 0;
    margin-bottom: 22px;
  }

  .hero-actions {
    left: 12px !important;
    right: auto !important;
    bottom: 74px;
    width: min(176px, calc(100vw - 24px));
    display: grid !important;
  }

  .glass-button {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 9.8px;
  }

  .floating-actions {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    gap: 8px;
  }

  .float-btn {
    width: 44px !important;
    height: 44px !important;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .float-btn--whatsapp svg {
    width: 31px !important;
    height: 31px !important;
  }

  .float-btn--whatsapp .wa-phone {
    transform: scale(.72);
  }
}


/* === Korekta v7: WhatsApp handset offset + auto podświetlenie kafelków mobile/tablet === */
.float-btn--whatsapp .wa-phone {
  transform: translate(6px, -3px) scale(.76);
}

.model-card.is-auto-lit {
  transform: translateY(-7px);
  border-color: rgba(11,120,209,0.46);
  box-shadow: 0 28px 90px rgba(0,0,0,0.62), 0 0 46px rgba(11,120,209,0.13);
}

.model-card.is-auto-lit .model-image-wrap img {
  filter: drop-shadow(0 32px 50px rgba(0,0,0,0.82)) drop-shadow(0 0 24px rgba(11,120,209,0.14));
  transform: scale(1.015);
}

.model-card.is-auto-lit .model-title {
  color: var(--orange-strong);
  text-shadow: 0 0 26px rgba(11,120,209,0.44), 0 12px 34px rgba(0,0,0,0.85);
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .float-btn--whatsapp .wa-phone {
    transform: translate(6px, -3px) scale(.72);
  }
}


/* === Korekta v8: przesunięcie słuchawki WhatsApp 12px w lewo względem v7 === */
.float-btn--whatsapp .wa-phone {
  transform: translate(-6px, -3px) scale(.76) !important;
}

@media (max-width: 640px) {
  .float-btn--whatsapp .wa-phone {
    transform: translate(-6px, -3px) scale(.72) !important;
  }
}


/* === Podstrony modeli AudioNostrum === */
.model-detail-page {
  background: #050505;
}

.model-detail-page .site-nav {
  transform: none;
  opacity: 1;
}

.model-detail-hero {
  position: relative;
  min-height: clamp(640px, 88vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0 58px;
  background: #050505;
}

.model-detail-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 30%, rgba(11,120,209,0.20), transparent 22%),
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.12), transparent 18%),
    radial-gradient(circle at 50% 110%, rgba(11,120,209,0.10), transparent 36%),
    linear-gradient(135deg, #050505 0%, #171717 42%, #090909 68%, #050505 100%);
}

.model-detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.44)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 18px);
}

.model-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.model-detail-title {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 0%, rgba(11,120,209,0.12), transparent 46%),
    rgba(0,0,0,0.32);
  box-shadow: 0 28px 90px rgba(0,0,0,0.54);
  backdrop-filter: blur(10px);
}

.model-detail-title h1 {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 500;
  text-shadow: 0 18px 48px rgba(0,0,0,0.62);
}

.model-detail-title h2 {
  margin: 18px 0 0;
  color: rgba(247,243,238,0.9);
  font-size: clamp(19px, 2.7vw, 35px);
  line-height: 1.14;
  font-weight: 350;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.model-detail-title p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(247,243,238,0.68);
  font-size: clamp(16px, 1.6vw, 19px);
}

.model-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.model-detail-product {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.10), transparent 35%),
    radial-gradient(circle at 50% 78%, rgba(11,120,209,0.13), transparent 33%),
    rgba(0,0,0,0.22);
  box-shadow: 0 28px 90px rgba(0,0,0,0.44);
  overflow: hidden;
}

.model-detail-product img {
  max-width: 92%;
  max-height: 610px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 52px rgba(0,0,0,0.78));
}

.model-content-section,
.model-spec-section,
.detail-gallery-section,
.model-next-section {
  padding: clamp(58px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(11,120,209,0.08), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.model-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 42px);
}

.model-content-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    rgba(15,15,15,0.82);
  box-shadow: 0 24px 80px rgba(0,0,0,0.46);
}

.model-content-panel h2 {
  margin: 0 0 20px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.model-content-panel p {
  color: rgba(247,243,238,0.72);
  margin: 0 0 18px;
}

.feature-list,
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px;
  background: rgba(0,0,0,0.26);
  color: rgba(247,243,238,0.82);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spec-list li {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,120,209,0.10), transparent 38%),
    rgba(14,14,14,0.82);
  box-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

.spec-list span {
  color: rgba(247,243,238,0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spec-list strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.16;
  font-weight: 500;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.detail-gallery-card {
  margin: 0;
  min-height: 320px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: #050505;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,0.42);
}

.detail-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.detail-gallery-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.model-next-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.model-next-inner a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  background: rgba(0,0,0,0.28);
  color: rgba(247,243,238,0.82);
  font-weight: 650;
  text-align: center;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.model-next-inner a:hover {
  color: var(--orange-strong);
  border-color: rgba(11,120,209,0.48);
  box-shadow: 0 0 28px rgba(11,120,209,0.12);
}

.nav-submenu a.is-active {
  color: var(--orange-strong);
}

@media (max-width: 940px) {
  .model-detail-hero {
    min-height: auto;
    padding: 82px 0 42px;
  }

  .model-detail-hero-inner,
  .model-content-grid {
    grid-template-columns: 1fr;
  }

  .model-detail-product {
    min-height: 420px;
  }

  .model-detail-product img {
    max-height: 470px;
  }

  .spec-list,
  .detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-next-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .model-detail-hero {
    padding-top: 76px;
  }

  .model-detail-title {
    padding: 22px 16px;
  }

  .model-detail-title h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .model-detail-title h2 {
    font-size: clamp(17px, 5vw, 24px);
  }

  .model-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 210px;
  }

  .model-detail-product {
    min-height: 360px;
  }

  .model-detail-product img {
    max-height: 390px;
  }

  .spec-list,
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery-card,
  .detail-gallery-card img {
    min-height: 280px;
  }
}


/* === Korekta galerii, cennika i zakładek informacyjnych === */
.model-detail-title h2 {
  font-size: clamp(15px, 1.55vw, 25px) !important;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.info-hero .model-detail-title h2 {
  white-space: normal;
}

.model-price-section,
.price-list-section {
  padding: clamp(58px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(11,120,209,0.10), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.model-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: stretch;
}

.model-price-main,
.price-list-card {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,120,209,0.12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(13,13,13,0.88);
  box-shadow: 0 24px 80px rgba(0,0,0,0.44);
}

.model-price-main h2,
.price-list-card h2 {
  margin: 0 0 12px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.price-value {
  margin: 0 0 16px !important;
  color: var(--orange-strong) !important;
  font-size: clamp(28px, 4vw, 54px) !important;
  line-height: 1.05 !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em;
}

.price-spec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.price-list-card {
  display: grid;
  gap: 18px;
}

.price-list-card .glass-button {
  width: fit-content;
}

.price-mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-mini-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.price-mini-list span {
  color: rgba(247,243,238,0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-mini-list strong {
  color: rgba(247,243,238,0.92);
  font-weight: 500;
  text-align: right;
}

.info-hero {
  min-height: clamp(520px, 72vh, 720px);
}

.info-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr);
  align-items: center;
}

.detail-gallery-grid--curated {
  --gallery-max-h: 650px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: clamp(14px, 2vw, 22px);
}

.detail-gallery-grid--curated .detail-gallery-card {
  min-height: 0 !important;
  height: auto !important;
  max-height: var(--gallery-max-h);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(8px, 1.2vw, 14px);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.045), transparent 40%),
    #050505;
  overflow: hidden;
}

.detail-gallery-grid--curated .detail-gallery-card.is-landscape {
  grid-column: span 2;
}

.detail-gallery-grid--curated .detail-gallery-card img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: var(--gallery-max-h);
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center;
  image-rendering: auto;
  transform: none;
}

.detail-gallery-grid--curated .detail-gallery-card:hover img {
  transform: none;
  filter: brightness(1.06) contrast(1.02);
}

.nav-links a.is-active,
.nav-submenu a.is-active {
  color: var(--orange-strong) !important;
  border-color: rgba(11,120,209,0.45);
}

.youtube-link--pdf {
  margin-top: 4px;
}

@media (max-width: 940px) {
  .model-price-layout,
  .price-list-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery-grid--curated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-gallery-grid--curated .detail-gallery-card.is-landscape {
    grid-column: span 2;
  }

  .model-detail-title h2 {
    font-size: clamp(14px, 2.8vw, 22px) !important;
  }
}

@media (max-width: 640px) {
  .model-detail-title h2 {
    font-size: clamp(12px, 3.35vw, 16px) !important;
  }

  .price-spec-list {
    grid-template-columns: 1fr;
  }

  .detail-gallery-grid--curated {
    --gallery-max-h: min(650px, calc(100svh - 96px));
    grid-template-columns: 1fr;
  }

  .detail-gallery-grid--curated .detail-gallery-card,
  .detail-gallery-grid--curated .detail-gallery-card.is-landscape {
    grid-column: span 1;
  }

  .detail-gallery-grid--curated .detail-gallery-card img {
    max-height: var(--gallery-max-h);
  }

  .price-mini-list li {
    grid-template-columns: 1fr;
  }

  .price-mini-list strong {
    text-align: left;
  }
}


/* Korekta galerii Venus */
.detail-gallery-grid--curated .detail-gallery-card.gallery-card--small {
  max-height: 460px;
  align-self: center;
}

.detail-gallery-grid--curated .detail-gallery-card.gallery-card--small img {
  max-height: 430px;
}

@media (max-width: 940px) {
  .detail-gallery-grid--curated .detail-gallery-card.gallery-card--small {
    max-height: 430px;
  }
  .detail-gallery-grid--curated .detail-gallery-card.gallery-card--small img {
    max-height: 400px;
  }
}

@media (max-width: 640px) {
  .detail-gallery-grid--curated .detail-gallery-card.gallery-card--small {
    max-height: 380px;
  }
  .detail-gallery-grid--curated .detail-gallery-card.gallery-card--small img {
    max-height: 350px;
  }
}


/* === Audionostrum premium hero v8: film pionowy + panel zdjęciowy === */
.audionostrum-home-reframed-hero .site-nav:not(.is-visible):not(.is-open) {
  pointer-events: none;
}

.audionostrum-signature-head {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 42vw) minmax(0, 1fr);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
}

.audionostrum-signature-head__film-column,
.audionostrum-signature-head__visual-column {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.audionostrum-signature-head__portrait-film {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.04) brightness(0.94);
  transform: scale(1.01);
}

.audionostrum-signature-head__film-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.24) 76%, rgba(5,5,5,0.84) 100%),
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.02), rgba(0,0,0,0.32) 78%);
  pointer-events: none;
}

.audionostrum-signature-head__visual-column {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(30px, 4vw, 58px) clamp(30px, 5.2vw, 78px) clamp(34px, 5vw, 70px);
  border-left: 1px solid rgba(255,255,255,0.10);
}

.audionostrum-signature-head__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero-poster.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.audionostrum-signature-head__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.54) 44%, rgba(5,5,5,0.72) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.36) 0%, rgba(5,5,5,0.34) 48%, rgba(5,5,5,0.92) 100%),
    radial-gradient(circle at 22% 30%, rgba(11,120,209,0.13), transparent 33%);
  pointer-events: none;
}

.audionostrum-signature-head__top-line,
.audionostrum-signature-head__copy-panel,
.audionostrum-signature-head__cta-row {
  position: relative;
  z-index: 3;
}

.audionostrum-signature-head__mobile-top-line {
  display: none;
}

.audionostrum-signature-head__top-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.audionostrum-signature-head__logo-link {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 17vw, 250px);
  max-width: 58%;
}

.audionostrum-signature-head__logo-link img {
  width: 100%;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.72));
}

.audionostrum-signature-head__menu-button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.19);
  border-radius: 10px;
  background: rgba(0,0,0,0.34);
  box-shadow: 0 14px 42px rgba(0,0,0,0.38), inset 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.audionostrum-signature-head__menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.audionostrum-signature-head__menu-button:hover,
.audionostrum-signature-head__menu-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11,120,209,0.58);
  box-shadow: 0 18px 46px rgba(0,0,0,0.46), 0 0 28px rgba(11,120,209,0.15);
  outline: none;
}

.audionostrum-signature-head__copy-panel {
  align-self: center;
  max-width: 880px;
  padding: clamp(18px, 3vw, 32px) 0;
  transform: translateY(2vh);
}

.audionostrum-signature-head__desktop-h3,
.audionostrum-signature-head__mobile-h3 {
  margin: 0;
  color: #f7f3ee;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(54px, 6.2vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 500;
  text-shadow: 0 14px 38px rgba(0,0,0,0.78), 0 0 32px rgba(11,120,209,0.07);
}

.audionostrum-signature-head__desktop-h3 span,
.audionostrum-signature-head__mobile-h3 span {
  display: block;
}

.audionostrum-signature-head__mobile-h3 {
  display: none;
}

.audionostrum-signature-head__main-h1 {
  margin: clamp(18px, 2.4vw, 34px) 0 0;
  color: rgba(247, 243, 238, 0.92);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 37px);
  line-height: 1.12;
  letter-spacing: 0.025em;
  font-weight: 350;
  white-space: nowrap;
  text-shadow: 0 12px 34px rgba(0,0,0,0.78);
}

.audionostrum-signature-head__main-h1 span {
  display: inline;
}

.audionostrum-signature-head__cta-row {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.audionostrum-signature-head__cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  background: rgba(0,0,0,0.46);
  box-shadow: 0 18px 46px rgba(0,0,0,0.46), inset 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
}

.audionostrum-signature-head__cta:hover,
.audionostrum-signature-head__cta:focus-visible {
  transform: translateY(-3px);
  color: var(--orange-strong);
  border-color: rgba(11,120,209,0.72);
  box-shadow: 0 20px 58px rgba(0,0,0,0.50), 0 0 34px rgba(11,120,209,0.2);
  outline: none;
}

.audionostrum-signature-head__cta--accent {
  background: linear-gradient(135deg, rgba(11,120,209,0.88), rgba(114,197,255,0.88));
  color: #150c04;
  border-color: rgba(255,205,154,0.8);
}

.audionostrum-signature-head__cta--accent:hover,
.audionostrum-signature-head__cta--accent:focus-visible {
  color: #050505;
}

.audionostrum-signature-head__scroll {
  position: absolute;
  left: calc(42vw + 29vw);
  bottom: 30px;
  z-index: 4;
  transform: translateX(-50%);
  color: rgba(247,243,238,0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.audionostrum-signature-head__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  margin: 10px auto 0;
  background: linear-gradient(var(--orange), transparent);
}

@media (max-width: 1180px) {
  .audionostrum-signature-head {
    grid-template-columns: minmax(320px, 40vw) minmax(0, 1fr);
  }

  .audionostrum-signature-head__visual-column {
    padding-left: clamp(24px, 4vw, 52px);
    padding-right: clamp(24px, 4vw, 52px);
  }

  .audionostrum-signature-head__desktop-h3 {
    font-size: clamp(48px, 6vw, 78px);
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(20px, 2.25vw, 28px);
  }
}

@media (max-width: 940px) {
  body.audionostrum-home-reframed-hero .site-nav:not(.is-visible):not(.is-open) {
    transform: translateY(-105%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .audionostrum-signature-head {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }

  .audionostrum-signature-head__film-column {
    min-height: 55svh;
    height: 55svh;
    width: 100%;
  }

  .audionostrum-signature-head__portrait-film {
    filter: contrast(1.03) saturate(1.04) brightness(0.75);
    transform: scale(1.01);
  }

  .audionostrum-signature-head__film-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.24) 48%, rgba(0,0,0,0.38) 100%),
      radial-gradient(circle at 50% 36%, rgba(255,255,255,0.03), rgba(0,0,0,0.30) 78%);
  }

  .audionostrum-signature-head__visual-column {
    min-height: 45svh;
    flex: 1 0 auto;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: clamp(28px, 7vw, 46px) 20px calc(68px + env(safe-area-inset-bottom));
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .audionostrum-signature-head__photo-bg {
    background-position: center center;
  }

  .audionostrum-signature-head__photo-overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.40), rgba(5,5,5,0.56) 48%, rgba(5,5,5,0.93) 100%),
      radial-gradient(circle at 30% 20%, rgba(11,120,209,0.10), transparent 38%);
  }

  .audionostrum-signature-head__top-line {
    display: none;
  }

  .audionostrum-signature-head__mobile-top-line {
    position: absolute;
    left: 16px;
    right: 16px;
    top: max(14px, env(safe-area-inset-top));
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .audionostrum-signature-head__logo-link {
    width: clamp(132px, 42vw, 180px);
    max-width: calc(100% - 68px);
  }

  .audionostrum-signature-head__menu-button {
    width: 44px;
    height: 44px;
    border-radius: 9px;
  }

  .audionostrum-signature-head__desktop-h3 {
    display: none;
  }

  .audionostrum-signature-head__mobile-h3 {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: clamp(28px, 9vh, 54px);
    z-index: 4;
    display: block;
    font-size: clamp(38px, 12.4vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .audionostrum-signature-head__copy-panel {
    align-self: center;
    transform: none;
    padding: 0;
  }

  .audionostrum-signature-head__main-h1 {
    margin: 0;
    font-size: clamp(23px, 7vw, 36px);
    line-height: 1.06;
    letter-spacing: 0.01em;
    white-space: normal;
  }

  .audionostrum-signature-head__main-h1 span {
    display: block;
  }

  .audionostrum-signature-head__cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: min(220px, 58vw);
    justify-self: start;
    align-self: end;
    margin-top: 26px;
  }

  .audionostrum-signature-head__cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0.085em;
    border-radius: 8px;
    text-align: center;
  }

  .audionostrum-signature-head__scroll {
    display: none;
  }
}

@media (max-width: 420px) {
  .audionostrum-signature-head__film-column {
    min-height: 54svh;
    height: 54svh;
  }

  .audionostrum-signature-head__visual-column {
    min-height: 46svh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .audionostrum-signature-head__mobile-h3 {
    left: 16px;
    right: 16px;
    font-size: clamp(36px, 12.7vw, 52px);
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(22px, 7.2vw, 31px);
  }

  .audionostrum-signature-head__cta-row {
    width: min(190px, 62vw);
  }
}

/* === Audionostrum premium hero v9: pionowy film 9:16 + czarny panel z kolumną === */
.audionostrum-signature-head {
  min-height: 100svh;
  grid-template-columns: minmax(320px, min(56.25svh, 46vw)) minmax(0, 1fr);
  background: #050505;
}

@supports not (height: 100svh) {
  .audionostrum-signature-head {
    grid-template-columns: minmax(320px, min(56.25vh, 46vw)) minmax(0, 1fr);
  }
}

.audionostrum-signature-head__film-column {
  min-height: 100svh;
  height: 100svh;
  aspect-ratio: 9 / 16;
  background: #000;
}

.audionostrum-signature-head__portrait-film {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.04) brightness(0.96);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.01);
  transform-origin: center center;
  will-change: transform;
}

.audionostrum-signature-head__film-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.10) 60%, rgba(5,5,5,0.38) 100%),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.03), rgba(0,0,0,0.18) 82%);
}

.audionostrum-signature-head__visual-column {
  background: #050505;
  border-left: 1px solid rgba(255,255,255,0.10);
  grid-template-rows: auto 1fr auto;
  padding: clamp(30px, 4vw, 58px) clamp(28px, 4.8vw, 74px) clamp(34px, 5vw, 70px);
}

.audionostrum-signature-head__product-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(54px, 6vw, 96px) clamp(22px, 5.6vw, 110px) clamp(46px, 5vw, 80px) clamp(22px, 4vw, 70px);
  background: #050505;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  transform-origin: center center;
  will-change: transform;
}

.audionostrum-signature-head__product-stage img {
  width: auto;
  height: min(86svh, 880px);
  max-width: min(42vw, 520px);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 34px 80px rgba(0,0,0,0.72));
}

.audionostrum-signature-head__photo-bg {
  display: none !important;
}

.audionostrum-signature-head__photo-overlay {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.58) 42%, rgba(5,5,5,0.12) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.52) 0%, rgba(5,5,5,0.10) 48%, rgba(5,5,5,0.76) 100%);
}

.audionostrum-signature-head__desktop-h3,
.audionostrum-signature-head__mobile-h3 {
  display: none !important;
}

.audionostrum-signature-head__copy-panel {
  align-self: center;
  max-width: none;
  padding: 0;
  transform: translateY(2vh);
}

.audionostrum-signature-head__main-h1 {
  margin: 0;
  color: rgba(247, 243, 238, 0.94);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 16px 44px rgba(0,0,0,0.82), 0 0 30px rgba(11,120,209,0.08);
}

.audionostrum-signature-head__main-h1 span {
  display: inline;
}

.audionostrum-signature-head__main-h1 span + span::before {
  content: " ";
}

.audionostrum-signature-head__top-line,
.audionostrum-signature-head__copy-panel,
.audionostrum-signature-head__cta-row {
  z-index: 4;
}

@media (max-width: 1180px) {
  .audionostrum-signature-head {
    grid-template-columns: minmax(300px, min(56.25svh, 45vw)) minmax(0, 1fr);
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(22px, 2.3vw, 36px);
  }

  .audionostrum-signature-head__product-stage {
    padding-right: clamp(18px, 4.5vw, 70px);
  }

  .audionostrum-signature-head__product-stage img {
    height: min(82svh, 780px);
    max-width: min(40vw, 430px);
  }
}

@media (max-width: 940px) {
  .audionostrum-signature-head {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .audionostrum-signature-head__film-column {
    width: 100%;
    min-height: 100svh;
    height: 100svh;
    aspect-ratio: auto;
  }

  .audionostrum-signature-head__portrait-film {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.03) saturate(1.04) brightness(0.75);
    transform: translate3d(0, var(--hero-mobile-film-y, 0px), 0) scale(1.01);
  }

  .audionostrum-signature-head__film-overlay {
    background: rgba(0,0,0,0.25);
  }

  .audionostrum-signature-head__mobile-top-line {
    position: absolute;
    left: 16px;
    right: 16px;
    top: max(14px, env(safe-area-inset-top));
    z-index: 7;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .audionostrum-signature-head__visual-column {
    position: relative;
    min-height: 92svh;
    flex: 0 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(34px, 9vw, 56px) 18px calc(72px + env(safe-area-inset-bottom));
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    background: #050505;
  }

  .audionostrum-signature-head__product-stage {
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: 92px 10px 132px;
    transform: none;
  }

  .audionostrum-signature-head__product-stage img {
    height: min(70svh, 720px);
    max-width: 86vw;
    margin: 0 auto;
  }

  .audionostrum-signature-head__photo-overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.72) 0%, rgba(5,5,5,0.24) 34%, rgba(5,5,5,0.28) 64%, rgba(5,5,5,0.90) 100%);
  }

  .audionostrum-signature-head__top-line {
    display: none !important;
  }

  .audionostrum-signature-head__copy-panel {
    align-self: start;
    justify-self: start;
    transform: none;
    padding: 0;
    max-width: 100%;
  }

  .audionostrum-signature-head__main-h1 {
    white-space: normal;
    font-size: clamp(35px, 10.3vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.048em;
    max-width: 92vw;
  }

  .audionostrum-signature-head__main-h1 span {
    display: block;
  }

  .audionostrum-signature-head__main-h1 span + span::before {
    content: none;
  }

  .audionostrum-signature-head__cta-row {
    justify-self: end;
    align-self: end;
    width: min(230px, 64vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 0;
  }
}

@media (max-width: 420px) {
  .audionostrum-signature-head__visual-column {
    min-height: 88svh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(33px, 10.6vw, 48px);
  }

  .audionostrum-signature-head__product-stage img {
    height: min(67svh, 650px);
    max-width: 90vw;
  }

  .audionostrum-signature-head__cta-row {
    width: min(210px, 66vw);
  }
}

/* === Audionostrum hero v10: iPad/tablet 9:16 bez ucinania + prestizowe tlo kolumny === */
.audionostrum-signature-head {
  grid-template-columns: 56.25svh minmax(0, 1fr);
}

@supports not (height: 100svh) {
  .audionostrum-signature-head {
    grid-template-columns: 56.25vh minmax(0, 1fr);
  }
}

.audionostrum-signature-head__film-column {
  width: 56.25svh;
  max-width: none;
  min-width: 0;
  height: 100svh;
  min-height: 100svh;
  aspect-ratio: 9 / 16;
}

@supports not (height: 100svh) {
  .audionostrum-signature-head__film-column {
    width: 56.25vh;
    height: 100vh;
    min-height: 100vh;
  }
}

.audionostrum-signature-head__visual-column {
  background:
    radial-gradient(circle at 72% 48%, rgba(11,120,209,0.34) 0%, rgba(11,120,209,0.18) 18%, rgba(11,120,209,0.04) 42%, rgba(0,0,0,0) 66%),
    radial-gradient(circle at 88% 18%, rgba(114,197,255,0.16) 0%, rgba(114,197,255,0.06) 30%, rgba(0,0,0,0) 58%),
    linear-gradient(135deg, #070707 0%, #020202 44%, #0d0702 100%);
}

.audionostrum-signature-head__product-stage {
  background:
    radial-gradient(ellipse at 72% 54%, rgba(11,120,209,0.44) 0%, rgba(11,120,209,0.23) 20%, rgba(11,120,209,0.07) 42%, rgba(0,0,0,0) 66%),
    radial-gradient(ellipse at 64% 78%, rgba(255,203,145,0.18) 0%, rgba(255,203,145,0.06) 28%, rgba(0,0,0,0) 58%),
    linear-gradient(135deg, #070707 0%, #030303 52%, #120804 100%);
}

.audionostrum-signature-head__product-stage::before {
  content: "";
  position: absolute;
  inset: 6% 3% 6% 18%;
  z-index: 0;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(11,120,209,0.04) 38%, rgba(255,255,255,0.015)),
    radial-gradient(circle at 70% 45%, rgba(11,120,209,0.28), rgba(0,0,0,0) 54%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 34px 120px rgba(0,0,0,0.58),
    0 0 90px rgba(11,120,209,0.10);
  opacity: 0.78;
  pointer-events: none;
}

.audionostrum-signature-head__product-stage::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(11,120,209,0.10) 48%, rgba(255,170,76,0.16));
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.audionostrum-signature-head__product-stage img {
  position: relative;
  z-index: 1;
}

@media (min-width: 941px) and (max-width: 1120px) {
  .audionostrum-signature-head {
    grid-template-columns: 56.25svh minmax(0, 1fr);
  }

  .audionostrum-signature-head__visual-column {
    padding: 28px 18px 34px;
  }

  .audionostrum-signature-head__logo-link {
    width: clamp(108px, 14vw, 148px);
    max-width: 72%;
  }

  .audionostrum-signature-head__menu-button {
    width: 44px;
    height: 44px;
    border-radius: 9px;
  }

  .audionostrum-signature-head__menu-button span {
    width: 19px;
  }

  .audionostrum-signature-head__main-h1 {
    white-space: normal;
    font-size: clamp(17px, 2.05vw, 24px);
    line-height: 1.03;
    letter-spacing: -0.035em;
    color: rgba(196, 193, 187, 0.92);
    max-width: 100%;
  }

  .audionostrum-signature-head__main-h1 span {
    display: block;
  }

  .audionostrum-signature-head__main-h1 span + span::before {
    content: none;
  }

  .audionostrum-signature-head__cta-row {
    display: grid;
    grid-template-columns: 1fr;
    width: min(190px, 100%);
    gap: 9px;
  }

  .audionostrum-signature-head__cta {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .audionostrum-signature-head__product-stage {
    justify-content: center;
    padding: 86px 10px 116px;
  }

  .audionostrum-signature-head__product-stage::before {
    inset: 10% 6% 10% 6%;
    border-radius: 28px;
  }

  .audionostrum-signature-head__product-stage img {
    height: auto;
    max-height: 70svh;
    max-width: min(84%, 235px);
  }
}

@media (max-width: 940px) {
  .audionostrum-signature-head {
    grid-template-columns: 1fr;
  }

  .audionostrum-signature-head__film-column {
    width: 100%;
    max-width: 100%;
  }

  .audionostrum-signature-head__visual-column {
    background:
      radial-gradient(circle at 50% 44%, rgba(11,120,209,0.30) 0%, rgba(11,120,209,0.13) 22%, rgba(11,120,209,0.035) 48%, rgba(0,0,0,0) 70%),
      linear-gradient(180deg, #060606 0%, #030303 58%, #0d0603 100%);
  }

  .audionostrum-signature-head__product-stage {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(11,120,209,0.34) 0%, rgba(11,120,209,0.16) 26%, rgba(11,120,209,0.04) 54%, rgba(0,0,0,0) 76%),
      linear-gradient(180deg, #060606 0%, #030303 58%, #0d0603 100%);
  }

  .audionostrum-signature-head__product-stage::before {
    inset: 10% 8% 12%;
    border-radius: 30px;
    opacity: 0.64;
  }

  .audionostrum-signature-head__product-stage::after {
    left: 14%;
    right: 14%;
    top: 18%;
    bottom: 16%;
    width: auto;
    background: radial-gradient(ellipse at center, rgba(11,120,209,0.18), rgba(0,0,0,0) 68%);
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(17px, 5.15vw, 27px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: rgba(155, 154, 150, 0.94);
    text-shadow: 0 12px 32px rgba(0,0,0,0.76);
    max-width: 78vw;
  }

  .audionostrum-signature-head__copy-panel {
    padding-top: 2px;
  }
}

@media (max-width: 420px) {
  .audionostrum-signature-head__main-h1 {
    font-size: clamp(16px, 5vw, 24px);
    max-width: 82vw;
  }
}



/* === Audionostrum hero v11 SAFE: tylko poprawka napisów, H1 i gradientu po prawej === */

/* Napis animowany jest wyłącznie na filmie, wyśrodkowany względem filmu. */
.audionostrum-signature-head__film-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: min(86%, 520px);
  transform: translate3d(-50%, calc(-50% + 82px), 0);
  opacity: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 16px 40px rgba(0,0,0,0.82);
  pointer-events: none;
  animation: audionostrumFilmCaptionIn 4s cubic-bezier(.17,.78,.18,1) 0.12s forwards;
}

.audionostrum-signature-head__film-caption span {
  display: block;
}

/* Gradient pomarańczowy tylko w prawej części, od pionowej granicy filmu; nie nachodzi na film. */
.audionostrum-signature-head__visual-column {
  position: relative;
  overflow: hidden;
}

.audionostrum-signature-head__visual-column::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(16vw, 190px);
  z-index: 1;
  background: linear-gradient(90deg, rgba(11,120,209,0.18), rgba(11,120,209,0.07) 38%, rgba(11,120,209,0) 100%);
  pointer-events: none;
}

/* H1: mniejszy, szary, ustawiony nad przyciskami. */
.audionostrum-signature-head__copy-panel {
  align-self: end !important;
  justify-self: start;
  width: min(720px, calc(100% - 280px));
  max-width: min(720px, calc(100% - 280px));
  margin: 0 0 clamp(20px, 3.2vh, 34px) 0;
  padding: 0;
  transform: none !important;
  z-index: 5;
}

.audionostrum-signature-head__main-h1 {
  margin: 0;
  color: rgba(175, 174, 170, 0.94) !important;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  font-weight: 500 !important;
  white-space: normal !important;
  max-width: 760px;
  text-shadow: 0 14px 34px rgba(0,0,0,0.72);
}

.audionostrum-signature-head__main-h1 span {
  display: inline;
}

.audionostrum-signature-head__main-h1 span + span::before {
  content: " ";
}

.audionostrum-signature-head__cta-row {
  z-index: 5;
}

/* Produkt po prawej pozostaje w tle wizualnym i nie wymusza czarnej pustej przestrzeni. */
.audionostrum-signature-head__product-stage {
  z-index: 0;
}

@keyframes audionostrumFilmCaptionIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 82px), 0);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }
}

@media (min-width: 941px) and (max-width: 1120px) {
  .audionostrum-signature-head__copy-panel {
    width: min(420px, calc(100% - 220px));
    max-width: min(420px, calc(100% - 220px));
    margin-bottom: 18px;
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(17px, 2.05vw, 24px) !important;
    line-height: 1.08 !important;
  }

  .audionostrum-signature-head__main-h1 span {
    display: block;
  }

  .audionostrum-signature-head__main-h1 span + span::before {
    content: none;
  }

  .audionostrum-signature-head__film-caption {
    font-size: clamp(26px, 3.5vw, 44px);
    width: min(88%, 460px);
  }
}

@media (max-width: 940px) {
  .audionostrum-signature-head__visual-column::after {
    display: none;
  }

  .audionostrum-signature-head__film-caption {
    width: min(88%, 430px);
    font-size: clamp(28px, 8vw, 46px);
    top: 50%;
  }

  .audionostrum-signature-head__copy-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-self: start !important;
    justify-self: start;
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(17px, 5.15vw, 27px) !important;
    line-height: 1.04 !important;
    color: rgba(155, 154, 150, 0.94) !important;
    max-width: 78vw;
  }

  .audionostrum-signature-head__main-h1 span {
    display: block;
  }

  .audionostrum-signature-head__main-h1 span + span::before {
    content: none;
  }
}

@media (max-width: 420px) {
  .audionostrum-signature-head__film-caption {
    font-size: clamp(24px, 8.6vw, 38px);
    width: min(90%, 360px);
  }

  .audionostrum-signature-head__main-h1 {
    font-size: clamp(16px, 5vw, 24px) !important;
    max-width: 82vw;
  }
}




/* === Audionostrum hero v10 CLEAN: film i kolumna zostają, treści scrollują === */
.aud-sticky-hero {
  --aud-left-width: 56.25svh;
  position: relative;
  min-height: 168svh;
  background: #050505;
  isolation: isolate;
  overflow: visible;
  color: var(--white);
}

.aud-sticky-hero__media {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  display: grid;
  grid-template-columns: var(--aud-left-width) minmax(0, 1fr);
  overflow: hidden;
  background: #050505;
}

.aud-sticky-hero__film-pane,
.aud-sticky-hero__visual-pane {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.aud-sticky-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.04) brightness(0.75);
}

.aud-sticky-hero__film-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.20) 58%, rgba(5,5,5,0.44) 100%),
    radial-gradient(circle at 50% 48%, rgba(0,0,0,0.02), rgba(0,0,0,0.16) 84%);
}

.aud-sticky-hero__visual-pane {
  border-left: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 74% 48%, rgba(11,120,209,0.34) 0%, rgba(11,120,209,0.18) 19%, rgba(11,120,209,0.05) 42%, rgba(0,0,0,0) 66%),
    radial-gradient(circle at 88% 18%, rgba(114,197,255,0.16) 0%, rgba(114,197,255,0.06) 30%, rgba(0,0,0,0) 58%),
    linear-gradient(135deg, #070707 0%, #020202 44%, #0d0702 100%);
}

.aud-sticky-hero__orange-glow {
  position: absolute;
  inset: 6% 3% 6% 18%;
  z-index: 0;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(11,120,209,0.04) 38%, rgba(255,255,255,0.015)),
    radial-gradient(circle at 70% 45%, rgba(11,120,209,0.30), rgba(0,0,0,0) 56%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 34px 120px rgba(0,0,0,0.58),
    0 0 90px rgba(11,120,209,0.12);
  opacity: 0.82;
  transform: translate3d(0, var(--aud-glow-y, 0px), 0);
  will-change: transform;
  pointer-events: none;
}

.aud-sticky-hero__speaker {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5.6vw, 110px);
  bottom: clamp(46px, 5vw, 80px);
  width: auto;
  height: min(86svh, 880px);
  max-width: min(42vw, 520px);
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(0,0,0,0.72));
  transform: translate3d(0, var(--aud-speaker-y, 0px), 0);
  will-change: transform;
}

.aud-sticky-hero__content {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  height: 100svh;
  display: grid;
  grid-template-columns: var(--aud-left-width) minmax(0, 1fr);
  pointer-events: none;
}

.aud-sticky-hero__film-content,
.aud-sticky-hero__right-content {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  pointer-events: none;
}

.aud-sticky-hero__film-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: min(90%, 560px);
  max-width: calc(100% - 34px);
  transform: translate3d(-50%, 52vh, 0);
  opacity: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 16px 40px rgba(0,0,0,0.82);
  animation: audStickyHeroCaptionIn 4s cubic-bezier(.18,.78,.16,1) 0.08s forwards;
}

.aud-sticky-hero__film-caption span,
.aud-sticky-hero__h1 span {
  display: block;
  white-space: nowrap;
}

@keyframes audStickyHeroCaptionIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 52vh, 0);
  }
  14% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }
}

.aud-sticky-hero__top-line,
.aud-sticky-hero__mobile-line {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  pointer-events: auto;
}

.aud-sticky-hero__top-line {
  top: clamp(30px, 4vw, 58px);
  left: clamp(28px, 4.8vw, 74px);
  right: clamp(28px, 4.8vw, 74px);
}

.aud-sticky-hero__mobile-line {
  display: none;
}

.aud-sticky-hero__logo-link {
  width: clamp(150px, 21vw, 310px);
  max-width: 70%;
  display: inline-flex;
  pointer-events: auto;
}

.aud-sticky-hero__logo-link img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.aud-sticky-hero__menu-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(0,0,0,0.30);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.aud-sticky-hero__menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  min-height: 2px;
  border-radius: 999px;
  background: #fff;
}

.aud-sticky-hero__copy {
  position: absolute;
  left: clamp(28px, 4.8vw, 74px);
  bottom: clamp(138px, 18vh, 184px);
  z-index: 6;
  width: min(720px, calc(100% - 320px));
  pointer-events: none;
}

.aud-sticky-hero__h1 {
  margin: 0;
  color: rgba(175, 174, 170, 0.94);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-shadow: 0 14px 34px rgba(0,0,0,0.72);
}

.aud-sticky-hero__cta-row {
  position: absolute;
  left: clamp(28px, 4.8vw, 74px);
  bottom: clamp(44px, 6.6vh, 76px);
  z-index: 7;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  pointer-events: auto;
}

.aud-sticky-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  background: rgba(0,0,0,0.46);
  box-shadow: 0 18px 46px rgba(0,0,0,0.46), inset 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
  pointer-events: auto;
}

.aud-sticky-hero__cta:hover,
.aud-sticky-hero__cta:focus-visible {
  transform: translateY(-3px);
  color: var(--orange-strong);
  border-color: rgba(11,120,209,0.72);
  box-shadow: 0 20px 58px rgba(0,0,0,0.50), 0 0 34px rgba(11,120,209,0.2);
}

.aud-sticky-hero__cta--accent {
  background: linear-gradient(135deg, rgba(11,120,209,0.88), rgba(114,197,255,0.88));
  color: #150c04;
  border-color: rgba(255, 205, 154, 0.8);
}

.aud-sticky-hero__cta--accent:hover,
.aud-sticky-hero__cta--accent:focus-visible {
  color: #050505;
}

.aud-sticky-hero__scroll {
  position: absolute;
  left: calc(var(--aud-left-width) + 34vw);
  bottom: clamp(22px, 4vh, 38px);
  z-index: 8;
  color: rgba(247,243,238,0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: auto;
}

.aud-sticky-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  margin: 10px auto 0;
  background: linear-gradient(var(--orange), transparent);
}

/* menu systemowe pojawia się po scrollu; przy hero zostaje ukryte na starcie */
.audionostrum-home-reframed-hero .site-nav:not(.is-visible):not(.is-open) {
  pointer-events: none;
}

@media (min-width: 941px) and (max-width: 1120px) {
  .aud-sticky-hero {
    --aud-left-width: 56.25svh;
  }

  .aud-sticky-hero__top-line {
    top: 28px;
    left: 18px;
    right: 18px;
  }

  .aud-sticky-hero__logo-link {
    width: clamp(108px, 14vw, 148px);
    max-width: 72%;
  }

  .aud-sticky-hero__menu-button {
    width: 44px;
    height: 44px;
    border-radius: 9px;
  }

  .aud-sticky-hero__menu-button span {
    width: 19px;
  }

  .aud-sticky-hero__copy {
    left: 18px;
    bottom: 132px;
    width: min(420px, calc(100% - 220px));
  }

  .aud-sticky-hero__h1 {
    font-size: clamp(17px, 2.05vw, 24px);
    line-height: 1.08;
  }

  .aud-sticky-hero__cta-row {
    left: 18px;
    bottom: 34px;
    display: grid;
    grid-template-columns: 1fr;
    width: min(190px, 100%);
    gap: 9px;
  }

  .aud-sticky-hero__cta {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .aud-sticky-hero__speaker {
    right: 10px;
    height: auto;
    max-height: 70svh;
    max-width: min(84%, 235px);
  }

  .aud-sticky-hero__orange-glow {
    inset: 10% 6% 10% 6%;
    border-radius: 28px;
  }
}

@media (max-width: 940px) {
  .aud-sticky-hero {
    --aud-left-width: 100%;
    min-height: auto;
    overflow: hidden;
  }

  .aud-sticky-hero__media {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    overflow: visible;
  }

  .aud-sticky-hero__film-pane {
    height: 100svh;
    min-height: 100svh;
  }

  .aud-sticky-hero__visual-pane {
    height: 92svh;
    min-height: 92svh;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    background:
      radial-gradient(circle at 50% 44%, rgba(11,120,209,0.30) 0%, rgba(11,120,209,0.13) 22%, rgba(11,120,209,0.035) 48%, rgba(0,0,0,0) 70%),
      linear-gradient(180deg, #060606 0%, #030303 58%, #0d0603 100%);
  }

  .aud-sticky-hero__video {
    filter: contrast(1.03) saturate(1.04) brightness(0.75);
  }

  .aud-sticky-hero__orange-glow {
    inset: 10% 8% 12%;
    border-radius: 30px;
    opacity: 0.64;
  }

  .aud-sticky-hero__speaker {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    height: min(70svh, 720px);
    max-width: 86vw;
    transform: translate(-50%, -50%);
  }

  .aud-sticky-hero__content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(192svh);
    display: block;
    pointer-events: none;
  }

  .aud-sticky-hero__film-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100svh;
    min-height: 100svh;
  }

  .aud-sticky-hero__right-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 100svh;
    height: 92svh;
    min-height: 92svh;
  }

  .aud-sticky-hero__top-line {
    display: none;
  }

  .aud-sticky-hero__mobile-line {
    display: flex;
    left: 16px;
    right: 16px;
    top: max(14px, env(safe-area-inset-top));
  }

  .aud-sticky-hero__logo-link {
    width: clamp(128px, 44vw, 190px);
    max-width: 70%;
  }

  .aud-sticky-hero__menu-button {
    width: 44px;
    height: 44px;
    border-radius: 9px;
  }

  .aud-sticky-hero__film-caption {
    width: min(92%, 430px);
    font-size: clamp(26px, 8vw, 44px);
  }

  .aud-sticky-hero__copy {
    left: 18px;
    right: 18px;
    top: clamp(34px, 9vw, 56px);
    bottom: auto;
    width: auto;
    max-width: 86vw;
  }

  .aud-sticky-hero__h1 {
    font-size: clamp(17px, 5.15vw, 27px);
    line-height: 1.04;
    color: rgba(155, 154, 150, 0.94);
    max-width: 86vw;
  }

  .aud-sticky-hero__cta-row {
    left: auto;
    right: 18px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    width: min(230px, 64vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .aud-sticky-hero__cta {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .aud-sticky-hero__scroll {
    display: none;
  }
}

@media (max-width: 420px) {
  .aud-sticky-hero__film-caption {
    font-size: clamp(22px, 8vw, 34px);
    width: min(94%, 360px);
  }

  .aud-sticky-hero__h1 {
    font-size: clamp(16px, 5vw, 24px);
    max-width: 82vw;
  }

  .aud-sticky-hero__speaker {
    height: min(67svh, 650px);
    max-width: 90vw;
  }
}


/* === Audionostrum hero v11: usunięcie prawej kafelki i poprawa ostrości logo === */

/* Usuwamy dużą zaokrągloną kafelkę/ramę po prawej stronie. Zostaje samo tło gradientowe panelu. */
.aud-sticky-hero__orange-glow {
  display: none !important;
}

/* Logo nie jest już rozciągane przez kontener — zachowuje naturalne proporcje i ostrzejszy wygląd. */
.aud-sticky-hero__logo-link {
  width: auto !important;
  max-width: none !important;
  display: inline-flex !important;
  align-items: flex-start !important;
}

.aud-sticky-hero__logo-link img {
  width: auto !important;
  height: auto !important;
  max-width: min(260px, 38vw) !important;
  max-height: 74px !important;
  object-fit: contain !important;
  image-rendering: auto !important;
  transform: none !important;
}

/* Na tabletach logo mniejsze, ale nadal bez rozciągania. */
@media (min-width: 941px) and (max-width: 1120px) {
  .aud-sticky-hero__logo-link {
    width: auto !important;
    max-width: none !important;
  }

  .aud-sticky-hero__logo-link img {
    max-width: min(170px, 28vw) !important;
    max-height: 52px !important;
  }
}

/* Na telefonie również bez rozciągania. */
@media (max-width: 940px) {
  .aud-sticky-hero__logo-link {
    width: auto !important;
    max-width: none !important;
  }

  .aud-sticky-hero__logo-link img {
    max-width: min(190px, 48vw) !important;
    max-height: 58px !important;
  }
}


/* === Audionostrum final corrections: one-line menu + Sound Good social link + Jupiter layout === */
@media (min-width: 941px) {
  .site-nav {
    width: min(1360px, calc(100% - 28px));
    gap: 12px;
    padding: 10px 14px;
  }
  .nav-logo {
    min-width: 170px;
    flex: 0 0 auto;
  }
  .nav-logo img {
    max-width: 210px !important;
    width: auto !important;
    height: auto !important;
  }
  .nav-logo-subtitle {
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .nav-links {
    flex-wrap: nowrap !important;
    gap: 4px;
    align-items: center;
  }
  .nav-links a,
  .nav-dropdown-toggle {
    white-space: nowrap;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 11px;
    letter-spacing: 0.055em;
  }
  .nav-links .nav-contact {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.nav-links .nav-social {
  display: inline-flex;
}

.model-single-content {
  display: block;
}

.model-single-content .model-content-panel {
  max-width: 980px;
  margin: 0 auto;
}

.model-price-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.model-price-layout--single .model-price-main {
  max-width: 980px;
  margin: 0 auto;
}

.model-content-panel strong {
  color: #fff;
  font-weight: 750;
}


/* === FIX v13: stabilne menu bez nachodzenia napisów === */

/* Desktop: menu w jednej linii, bez ściskania napisu Social media. */
@media (min-width: 1181px) {
  .site-nav {
    left: 50% !important;
    right: auto !important;
    top: 14px !important;
    width: min(1460px, calc(100% - 28px)) !important;
    min-height: 60px !important;
    height: auto !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 9px 14px !important;
    overflow: visible !important;
    transform: translate(-50%, -120%) !important;
  }

  .site-nav.is-visible {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
  }

  .site-nav.is-open {
    border-radius: 18px !important;
  }

  .nav-logo {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    max-width: 178px !important;
    width: 178px !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .nav-logo img {
    width: auto !important;
    max-width: 172px !important;
    max-height: 46px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .nav-logo-subtitle {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    max-width: none !important;
    min-height: 36px !important;
    padding: 7px 9px !important;
    border-radius: 9px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.045em !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .nav-links .nav-social {
    width: auto !important;
    min-width: max-content !important;
    max-width: none !important;
    padding: 7px 9px !important;
    border: 0 !important;
    background: transparent !important;
    display: inline-flex !important;
  }

  .nav-links .nav-contact {
    width: auto !important;
    min-width: max-content !important;
    padding: 9px 12px !important;
    font-size: 10.3px !important;
    letter-spacing: 0.04em !important;
  }

  .nav-dropdown {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    display: inline-flex !important;
    position: relative !important;
  }

  .nav-submenu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    min-width: 210px !important;
    width: auto !important;
    display: grid !important;
    gap: 4px !important;
    padding: 8px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px !important;
    background: rgba(5,5,5,0.90) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    pointer-events: none !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .nav-dropdown.is-open .nav-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .nav-submenu a {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

/* Tablet i mniejszy desktop: hamburger, żeby menu nigdy nie zachodziło na siebie. */
@media (max-width: 1180px) {
  .site-nav {
    left: 50% !important;
    right: auto !important;
    top: 10px !important;
    width: calc(100% - 20px) !important;
    min-height: 60px !important;
    height: auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    border-radius: 16px !important;
    overflow: visible !important;
    transform: translate(-50%, -120%) !important;
  }

  .site-nav.is-visible {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
  }

  .site-nav.is-open {
    border-radius: 16px !important;
  }

  .nav-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 58px) !important;
    width: auto !important;
  }

  .nav-logo img {
    width: auto !important;
    max-width: min(190px, 58vw) !important;
    max-height: 48px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .nav-logo-subtitle {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin-left: auto !important;
  }

  .nav-links {
    order: 10 !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 !important;
    transform: translateY(-6px) !important;
    transition: max-height 0.32s ease, opacity 0.25s ease, transform 0.25s ease, padding 0.25s ease !important;
  }

  .site-nav.is-open .nav-links {
    max-height: 620px !important;
    opacity: 1 !important;
    padding-top: 8px !important;
    transform: translateY(0) !important;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    justify-content: flex-start !important;
    text-align: left !important;
    min-height: 38px !important;
    padding: 8px 11px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.055em !important;
    white-space: normal !important;
  }

  .nav-links .nav-social {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    display: inline-flex !important;
    border: 0 !important;
    background: transparent !important;
    padding: 8px 11px !important;
  }

  .nav-dropdown {
    width: 100% !important;
    display: grid !important;
  }

  .nav-submenu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 0 0 14px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: max-height 0.28s ease, padding 0.22s ease !important;
  }

  .nav-dropdown.is-open .nav-submenu {
    max-height: 360px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .nav-submenu a {
    width: 100% !important;
    justify-content: flex-start !important;
    min-height: 32px !important;
    padding: 6px 10px !important;
    font-size: 11px !important;
    text-align: left !important;
  }
}


/* === v14: miękka owalna poświata / odbicie filmu na prawej części, tylko desktop === */
@media (min-width: 941px) {
  .aud-sticky-hero__visual-pane::before {
    content: "";
    position: absolute;
    left: -12%;
    top: 14%;
    width: min(40vw, 640px);
    height: 72svh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.78;
    background:
      radial-gradient(ellipse at 18% 50%, rgba(255, 205, 145, 0.16) 0%, rgba(11, 120, 209, 0.18) 18%, rgba(11, 120, 209, 0.10) 34%, rgba(142, 78, 24, 0.06) 48%, rgba(0, 0, 0, 0) 72%),
      radial-gradient(ellipse at 12% 50%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 16%, rgba(255,255,255,0) 36%);
    filter: blur(34px);
    transform: translate3d(0, 0, 0);
    mix-blend-mode: screen;
  }

  .aud-sticky-hero__speaker {
    z-index: 2;
  }
}

/* === Starsze style cookies / RODO - shipTRANS === */
.footer-legal-links {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-legal-links a,
.footer-legal-links button,
.cookie-settings-link {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover,
.footer-legal-links button:hover,
.footer-legal-links a:focus-visible,
.footer-legal-links button:focus-visible,
.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--orange-strong);
  outline: none;
}
.contact-rodo-note {
  color: rgba(247,243,238,0.70) !important;
  font-size: 12px;
  line-height: 1.6;
  max-width: 540px;
}
.contact-rodo-note strong { color: rgba(255,255,255,0.90); }
.contact-rodo-note a { color: var(--orange-strong) !important; text-decoration: underline; text-underline-offset: 3px; }
.contact-rodo-note--strip {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(11,120,209,0.24);
  border-radius: 14px;
  background: rgba(0,0,0,0.24);
}
.contact-rodo-note--form {
  margin: 14px 0 0;
}
.legal-page-section {
  padding: 132px 0 78px;
  background: radial-gradient(circle at 18% 0%, rgba(11,120,209,0.12), transparent 34%), #050505;
}
.legal-page-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)), rgba(12,12,12,0.92);
  box-shadow: var(--shadow);
}
.legal-page-panel h1,
.legal-page-panel h2,
.legal-page-panel h3 {
  margin: 0 0 18px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
}
.legal-page-panel h1 { font-size: clamp(38px, 6vw, 72px); line-height: 1.02; }
.legal-page-panel h2 { margin-top: 34px; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.08; }
.legal-page-panel h3 { margin-top: 22px; font-size: 22px; }
.legal-page-panel p,
.legal-page-panel li { color: var(--muted); line-height: 1.75; }
.legal-page-panel ul { margin: 0 0 18px 20px; padding: 0; }
.legal-page-panel a { color: var(--orange-strong); text-decoration: underline; text-underline-offset: 4px; }
.legal-date {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 12px;
  border: 1px solid rgba(11,120,209,0.32);
  border-radius: 999px;
  color: rgba(247,243,238,0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cookie-consent {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 2200;
  display: none;
  align-items: end;
  justify-content: center;
  pointer-events: none;
}
.cookie-consent.is-visible { display: flex; }
.cookie-consent__box {
  width: min(980px, 100%);
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: radial-gradient(circle at 16% 0%, rgba(11,120,209,0.18), transparent 32%), rgba(8,8,8,0.96);
  box-shadow: 0 24px 90px rgba(0,0,0,0.72);
  backdrop-filter: blur(18px);
  color: #fff;
  overflow: hidden;
}
.cookie-consent__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 24px;
}
.cookie-consent__text h2 {
  margin: 0 0 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.cookie-consent__text p {
  margin: 0;
  color: rgba(247,243,238,0.74);
  line-height: 1.6;
  max-width: 690px;
}
.cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 13px;
}
.cookie-consent__links a,
.cookie-consent__links button {
  border: 0;
  background: transparent;
  color: var(--orange-strong);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.055);
  color: #fff;
  padding: 10px 16px;
  font: inherit;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cookie-btn:hover,
.cookie-btn:focus-visible { transform: translateY(-1px); border-color: rgba(11,120,209,0.55); outline: none; }
.cookie-btn--primary { background: linear-gradient(135deg, rgba(11,120,209,0.92), rgba(169,88,18,0.92)); border-color: rgba(11,120,209,0.72); }
.cookie-btn--ghost { background: transparent; }
.cookie-panel {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 0 24px 24px;
}
.cookie-panel.is-open { display: block; }
.cookie-category {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.cookie-category:last-child { border-bottom: 0; }
.cookie-category input { width: 18px; height: 18px; margin-top: 3px; accent-color: #0b78d1; }
.cookie-category strong { display: block; color: #fff; margin-bottom: 4px; }
.cookie-category span { display: block; color: rgba(247,243,238,0.68); line-height: 1.55; }
.cookie-panel__actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 780px) {
  .cookie-consent { inset: auto 10px 10px 10px; }
  .cookie-consent__content { grid-template-columns: 1fr; padding: 18px; }
  .cookie-consent__actions { justify-content: stretch; }
  .cookie-btn { width: 100%; }
  .cookie-panel { padding: 0 18px 18px; }
  .legal-page-section { padding-top: 112px; }
}



/* === Formularz kontaktowy w footerze === */
.footer-form {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}
.footer-form h2 {
  margin: 0 0 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.footer-form-intro {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-contact-form {
  display: grid;
  gap: 16px;
}
.footer-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.footer-contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(247,243,238,0.86);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 13px;
  background: rgba(0,0,0,0.32);
  color: #fff;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.footer-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border-color: rgba(11,120,209,0.72);
  box-shadow: 0 0 0 3px rgba(11,120,209,0.12);
  background: rgba(0,0,0,0.42);
}
.footer-form-message {
  grid-column: 1 / -1;
}
.footer-form-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  max-width: 980px;
  color: rgba(247,243,238,0.72) !important;
  font-size: 12px !important;
  line-height: 1.6;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.footer-form-consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
  padding: 0;
  accent-color: #0b78d1;
}
.footer-form-consent a {
  color: var(--orange-strong) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-form-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.footer-form-submit {
  justify-self: start;
  border: 1px solid rgba(11,120,209,0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11,120,209,0.95), rgba(169,88,18,0.95));
  color: #fff;
  padding: 13px 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.footer-form-submit:hover,
.footer-form-submit:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.40);
  box-shadow: 0 18px 50px rgba(11,120,209,0.22);
  outline: none;
}
.footer-form-status {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  background: rgba(11,120,209,0.12);
  border: 1px solid rgba(11,120,209,0.28);
  color: rgba(255,255,255,0.90);
}
.footer-form-status--error {
  background: rgba(210,45,45,0.14);
  border-color: rgba(210,45,45,0.34);
}
@media (max-width: 900px) {
  .footer-form-grid {
    grid-template-columns: 1fr;
  }
  .footer-form-submit {
    width: 100%;
  }
}


/* === Audionostrum 2026-06: desktop hero z nowym filmem poziomym na pełny ekran === */
@media (min-width: 941px) {
  .aud-sticky-hero {
    --aud-left-width: 100%;
    min-height: 100svh;
    overflow: hidden;
  }

  .aud-sticky-hero__media {
    position: relative;
    height: 100svh;
    display: grid;
    grid-template-columns: 1fr;
    background: #050505;
  }

  .aud-sticky-hero__film-pane {
    grid-column: 1;
    height: 100svh;
    min-height: 100svh;
  }

  .aud-sticky-hero__visual-pane,
  .aud-sticky-hero__speaker,
  .aud-sticky-hero__orange-glow {
    display: none !important;
  }

  .aud-sticky-hero__video {
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.05) saturate(1.04) brightness(0.68);
  }

  .aud-sticky-hero__film-shade {
    background:
      radial-gradient(circle at 50% 48%, rgba(0,0,0,0.06), rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.60) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.50) 100%);
  }

  .aud-sticky-hero__content {
    position: absolute;
    inset: 0;
    height: 100svh;
    display: block;
    pointer-events: none;
  }

  .aud-sticky-hero__film-content,
  .aud-sticky-hero__right-content {
    position: absolute;
    inset: 0;
    min-height: 100svh;
    height: 100svh;
    pointer-events: none;
  }

  .aud-sticky-hero__mobile-line {
    display: none !important;
  }

  .aud-sticky-hero__top-line {
    display: flex;
    top: clamp(26px, 3.2vw, 50px);
    left: clamp(26px, 4vw, 74px);
    right: clamp(26px, 4vw, 74px);
  }

  .aud-sticky-hero__film-caption {
    width: min(94vw, 1180px);
    max-width: calc(100% - 48px);
    font-size: clamp(54px, 7.2vw, 124px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 600;
    text-shadow: 0 24px 70px rgba(0,0,0,0.92), 0 0 34px rgba(0,0,0,0.62);
  }

  .aud-sticky-hero__copy {
    left: 50%;
    top: calc(50% + clamp(88px, 10.5vw, 166px));
    bottom: auto;
    width: min(90vw, 900px);
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
  }

  .aud-sticky-hero__h1 {
    color: rgba(255,255,255,0.82);
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(18px, 1.65vw, 30px);
    line-height: 1.18;
    letter-spacing: 0.015em;
    font-weight: 500;
    text-shadow: 0 16px 42px rgba(0,0,0,0.86);
  }

  .aud-sticky-hero__cta-row {
    left: 50%;
    bottom: clamp(42px, 6.2vh, 72px);
    transform: translateX(-50%);
    justify-content: center;
  }

  .aud-sticky-hero__scroll {
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
  }
}

/* === Korekta 2026-06: mniejszy napis główny, blok CTA po lewej, menu desktop zamiast hamburgera === */
@media (min-width: 1181px) {
  body.audionostrum-home-reframed-hero .site-nav {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.audionostrum-home-reframed-hero .site-nav:not(.is-visible):not(.is-open) {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.audionostrum-home-reframed-hero .nav-toggle,
  body.audionostrum-home-reframed-hero .aud-sticky-hero__menu-button {
    display: none !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__top-line {
    display: none !important;
  }
}

@media (min-width: 941px) {
  body.audionostrum-home-reframed-hero .aud-sticky-hero__film-caption {
    width: min(90vw, 920px) !important;
    max-width: calc(100% - 56px) !important;
    font-size: clamp(30px, 3.6vw, 62px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__copy {
    left: clamp(42px, 7vw, 124px) !important;
    top: calc(50% + clamp(72px, 7.2vw, 118px)) !important;
    bottom: auto !important;
    width: min(520px, 38vw) !important;
    transform: none !important;
    text-align: left !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__h1 {
    font-size: clamp(16px, 1.25vw, 24px) !important;
    line-height: 1.14 !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__cta-row {
    left: clamp(42px, 7vw, 124px) !important;
    right: auto !important;
    bottom: clamp(44px, 7vh, 82px) !important;
    transform: none !important;
    justify-content: flex-start !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__cta {
    min-height: 52px !important;
    padding: 14px 22px !important;
  }
}

/* === FINAL 2026-06-16: desktop hero / social dropdown / footer corrections === */
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11,120,209,0.44);
  background: rgba(11,120,209,0.08);
  color: var(--orange-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.footer-brand-link:hover,
.footer-brand-link:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(11,120,209,0.72);
  background: rgba(11,120,209,0.16);
}

@media (min-width: 941px) {
  body.audionostrum-home-reframed-hero .aud-sticky-hero__film-caption {
    width: min(92vw, 700px) !important;
    max-width: calc(100% - 48px) !important;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(30px, 4.4vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    font-weight: 500 !important;
    text-wrap: balance;
    text-shadow: 0 18px 55px rgba(0,0,0,0.88), 0 0 24px rgba(0,0,0,0.56) !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__copy {
    left: clamp(64px, 7vw, 124px) !important;
    top: calc(50% + clamp(94px, 8.6vw, 128px)) !important;
    width: min(380px, calc(100vw - 128px)) !important;
    max-width: min(380px, calc(100vw - 128px)) !important;
    transform: none !important;
    text-align: left !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__h1 {
    width: 100% !important;
    font-size: clamp(18px, 1.55vw, 28px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    color: rgba(255,255,255,0.88) !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__cta-row {
    left: clamp(64px, 7vw, 124px) !important;
    bottom: clamp(44px, 7vh, 82px) !important;
    transform: none !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }

  body.audionostrum-home-reframed-hero .site-nav,
  body.model-detail-page .site-nav,
  body.info-page .site-nav {
    top: 0 !important;
    left: 50% !important;
    width: calc(100% - 12px) !important;
    min-height: 58px !important;
    padding: 8px 14px !important;
    border-radius: 0 0 18px 18px !important;
    background: rgba(5,5,5,0.54) !important;
    box-shadow: 0 14px 44px rgba(0,0,0,0.34) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  body.audionostrum-home-reframed-hero .site-nav,
  body.audionostrum-home-reframed-hero .site-nav:not(.is-visible):not(.is-open) {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.audionostrum-home-reframed-hero .aud-sticky-hero__top-line,
  body.audionostrum-home-reframed-hero .nav-toggle,
  body.audionostrum-home-reframed-hero .aud-sticky-hero__menu-button {
    display: none !important;
  }

  .nav-logo {
    max-width: 170px !important;
    width: 170px !important;
  }

  .nav-logo img {
    max-width: 165px !important;
    max-height: 44px !important;
  }

  #socialDropdown .nav-submenu {
    min-width: 190px !important;
  }
}

@media (min-width: 1181px) {
  .site-nav {
    width: calc(100% - 12px) !important;
  }

  .nav-links {
    gap: 6px !important;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    min-height: 36px !important;
    padding: 7px 10px !important;
    font-size: 10.7px !important;
  }

  .nav-links .nav-contact {
    padding: 9px 14px !important;
  }
}

@media (max-width: 940px) {
  .footer-brand-link {
    width: fit-content;
  }
}

/* === FINAL tiny hero placement correction: only move left caption block === */
@media (min-width: 941px) {
  body.audionostrum-home-reframed-hero .aud-sticky-hero__copy {
    left: clamp(64px, 7vw, 124px) !important;
    top: auto !important;
    bottom: clamp(128px, 14vh, 162px) !important;
    width: 408px !important;
    max-width: 408px !important;
    transform: none !important;
    text-align: left !important;
  }
}


/* === Godziny otwarcia i adres w stopce / kontakcie === */
.opening-hours {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}
.opening-hours p {
  margin: 0 0 3px;
}
.opening-hours__title {
  color: rgba(247,243,238,0.92);
  font-weight: 750;
  margin-bottom: 6px !important;
}
.opening-hours__note {
  margin-top: 10px !important;
  color: rgba(247,243,238,0.88);
}
.feature-list__address,
.feature-list__hours {
  line-height: 1.65;
}


/* === FIX: rozwijane Social media w menu mobilnym === */
@media (max-width: 1180px) {
  .site-nav.is-open .nav-links {
    max-height: 760px !important;
  }

  #socialDropdown {
    width: 100% !important;
    display: grid !important;
  }

  #socialDropdown .nav-dropdown-toggle {
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  #socialDropdown .nav-submenu {
    position: static !important;
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 0 0 0 14px !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  #socialDropdown.is-open .nav-submenu {
    max-height: 180px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  #socialDropdown.is-open .nav-submenu a {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 34px !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
}


/* === Korekta mobile tylko na podstronie O marce / Producent === */
@media (max-width: 560px) {
  #producent-audionostrum-mobile-title {
    font-size: clamp(38px, 12vw, 52px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
    max-width: 100% !important;
    overflow-wrap: normal !important;
  }
}


/* === shipTRANS: zachowana struktura, niebiesko-czarna kolorystyka === */
:root{--black:#03070c;--charcoal:#08131e;--graphite:#0d1c2a;--graphite-soft:#14283a;--white:#f8fbff;--muted:#b7c7d6;--orange:#0b78d1;--orange-soft:rgba(11,120,209,.26);--orange-strong:#72c5ff;--glass:rgba(3,10,18,.70);--line:rgba(255,255,255,.15)}
body::before{background:radial-gradient(circle at 12% 10%,rgba(11,120,209,.12),transparent 25%),radial-gradient(circle at 88% 20%,rgba(255,255,255,.06),transparent 24%),linear-gradient(135deg,#02060a 0%,#091724 42%,#02060a 100%)}
body.shiptrans-home .site-nav,body.service-page .site-nav,body.legal-page .site-nav{top:0!important;left:50%!important;width:calc(100% - 12px)!important;min-height:58px!important;padding:8px 14px!important;border-radius:0 0 18px 18px!important;background:rgba(3,10,18,.62)!important;box-shadow:0 14px 44px rgba(0,0,0,.34)!important;backdrop-filter:blur(14px)!important;-webkit-backdrop-filter:blur(14px)!important;transform:translate(-50%,0)!important;opacity:1!important;pointer-events:auto!important}
.nav-logo img,.footer-brand img{filter:none!important}.nav-logo{width:190px!important;max-width:190px!important;min-width:190px!important}.nav-logo img{width:185px!important;max-width:185px!important;max-height:46px!important}.nav-logo-subtitle{font-size:8px!important;letter-spacing:.12em!important}.nav-submenu{max-height:70vh;overflow:auto}
.shiptrans-home .aud-sticky-hero{min-height:100svh!important;height:100svh!important;overflow:hidden!important}.shiptrans-home .aud-sticky-hero__media{position:relative!important;height:100svh!important;display:block!important}.shiptrans-home .aud-sticky-hero__film-pane{height:100svh!important;min-height:100svh!important}.shiptrans-home .aud-sticky-hero__visual-pane{display:none!important}.shiptrans-home .aud-sticky-hero__content{position:absolute!important;inset:0!important;height:100svh!important;display:block!important}.shiptrans-home .aud-sticky-hero__film-content,.shiptrans-home .aud-sticky-hero__right-content{position:absolute!important;inset:0!important;height:100svh!important;min-height:100svh!important}.shiptrans-home .aud-sticky-hero__film-caption{left:50%!important;top:46%!important;width:min(92vw,950px)!important;max-width:calc(100% - 36px)!important;margin:0!important;transform:translate3d(-50%,52vh,0);font-size:clamp(38px,5.6vw,88px)!important;line-height:.98!important;text-align:center!important;color:#fff!important;font-weight:600!important}.shiptrans-home .aud-sticky-hero__copy{left:50%!important;right:auto!important;top:calc(46% + clamp(105px,11vw,170px))!important;bottom:auto!important;width:min(90vw,760px)!important;max-width:min(90vw,760px)!important;transform:translateX(-50%)!important;text-align:center!important}.shiptrans-home .aud-sticky-hero__h1{font-size:clamp(16px,1.7vw,28px)!important;line-height:1.18!important;color:rgba(255,255,255,.88)!important}.shiptrans-home .aud-sticky-hero__cta-row{left:50%!important;right:auto!important;bottom:clamp(44px,7vh,78px)!important;transform:translateX(-50%)!important;justify-content:center!important}.shiptrans-home .aud-sticky-hero__video{filter:contrast(1.06) saturate(1.02) brightness(.70)!important}.phone-hero-cta span{display:grid;gap:2px;text-align:center}.phone-hero-cta small{display:block;font-size:9px;letter-spacing:.12em;font-weight:800}.model-image-wrap{padding:0!important}.model-image-wrap img{width:100%!important;height:100%!important;max-width:none!important;max-height:none!important;object-fit:cover!important;filter:brightness(.72) contrast(1.04) saturate(.92)!important}.model-card:hover .model-image-wrap img,.model-card:focus-visible .model-image-wrap img,.model-card.is-touched .model-image-wrap img,.model-card.is-auto-lit .model-image-wrap img{filter:brightness(.83) contrast(1.04) saturate(1)!important;transform:scale(1.035)!important}.model-note{color:rgba(247,243,238,.78);font-size:14px;line-height:1.5}.producer-panel:first-child{background:#fff;color:#071522;border-color:#d6e4ef}.producer-panel:first-child p{color:#42596d}.producer-panel:first-child .eyebrow{color:#0b78d1}
.phone-quick-wrap{display:grid;justify-items:center;gap:5px}.phone-quick-wrap>span{padding:3px 7px;border-radius:999px;background:rgba(3,10,18,.88);color:#fff;font-size:8px;font-weight:800;line-height:1;text-transform:uppercase;letter-spacing:.08em;white-space:nowrap;box-shadow:0 8px 24px rgba(0,0,0,.35)}.float-btn--phone{background:linear-gradient(135deg,#0b78d1,#35a8ff)!important;border-color:rgba(132,210,255,.75)!important;animation:shipPhonePulse 1.65s ease-in-out infinite}.float-btn--whatsapp{color:#44d272!important}@keyframes shipPhonePulse{0%,100%{transform:scale(1);box-shadow:0 14px 40px rgba(0,0,0,.5),0 0 0 0 rgba(53,168,255,.48)}50%{transform:scale(1.09);box-shadow:0 18px 48px rgba(0,0,0,.58),0 0 0 13px rgba(53,168,255,0)}}
.footer-contact-form select{width:100%;border:1px solid rgba(255,255,255,.14);border-radius:13px;background:#07131f;color:#fff;padding:13px 14px;font:inherit;font-size:15px;outline:none}.footer-contact-form select:focus{border-color:rgba(11,120,209,.72);box-shadow:0 0 0 3px rgba(11,120,209,.12)}.footer-form-wide{grid-column:span 2}.footer-form-status[hidden]{display:none}.footer-form-status.is-visible{display:block}.contact-rodo-note{font-size:12px!important;line-height:1.55!important}.contact-rodo-note a{text-decoration:underline;color:var(--orange-strong)!important}
/* podstrony usług */
.service-page{background:#03070c}.service-hero{min-height:760px;padding:130px max(20px,calc((100% - 1180px)/2)) 80px;display:grid;grid-template-columns:1.08fr .92fr;align-items:center;gap:clamp(30px,6vw,90px);background:radial-gradient(circle at 15% 15%,rgba(11,120,209,.22),transparent 28%),linear-gradient(145deg,#02070c,#0a2944)}.service-hero__copy h1,.legal-hero h1{margin:.05em 0 .28em;font-family: "Roboto", Arial, sans-serif;font-size:clamp(42px,6vw,82px);line-height:.98;letter-spacing:-.05em;font-weight:500}.service-hero__copy>p:not(.eyebrow){max-width:720px;color:#c3d2de;font-size:19px}.service-hero__image{height:620px;border-radius:18px;overflow:hidden;box-shadow:0 35px 90px rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.14)}.service-hero__image img{width:100%;height:100%;object-fit:cover}.hero-actions-inline{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.button{display:inline-flex;align-items:center;justify-content:center;min-height:54px;padding:14px 22px;border-radius:8px;border:1px solid rgba(255,255,255,.24);font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-size:12px;transition:.25s;background:rgba(0,0,0,.35)}.button:hover{transform:translateY(-2px)}.button.primary{background:linear-gradient(135deg,#0b78d1,#35a8ff);color:#fff}.button.ghost{background:rgba(0,0,0,.38)}.button.whatsapp{background:#fff;color:#07111f}.toc{padding:70px max(20px,calc((100% - 980px)/2));background:#fff;color:#071522}.toc h2{font-family: "Roboto", Arial, sans-serif;font-size:34px}.toc ol{columns:2;gap:50px;padding-left:22px}.toc li{break-inside:avoid;margin:8px 0;color:#36506b}.toc a:hover{color:#0b78d1;text-decoration:underline}.content-section{padding:80px 20px;background:#06111c}.content-section.light{background:#fff;color:#071522}.content-narrow{width:min(880px,100%);margin:0 auto}.section-number{margin:0;color:#43adff;font-size:14px;font-weight:850;letter-spacing:.15em}.content-section h2{margin:.2em 0 .6em;font-family: "Roboto", Arial, sans-serif;font-size:clamp(32px,4vw,52px);line-height:1.08;letter-spacing:-.04em;font-weight:500}.content-section p{font-size:17.5px;color:#b9c8d4}.content-section.light p{color:#46596b}.contact-strip__actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end}.service-page main>.contact-strip{display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;margin:0;padding:80px max(20px,calc((100% - 1180px)/2));background:linear-gradient(135deg,#0b78d1,#071523);border:0}.service-page main>.contact-strip h2{font-family: "Roboto", Arial, sans-serif;font-size:clamp(34px,4.5vw,60px);margin:.1em 0 .35em}.service-page main>.contact-strip p{color:#d5e2ec}
/* dokumenty prawne */
.legal-hero{padding:170px max(20px,calc((100% - 980px)/2)) 80px;background:linear-gradient(145deg,#04101c,#0b365d)}.legal-content{padding:60px max(20px,calc((100% - 880px)/2));background:#fff;color:#071522}.legal-section{padding:24px 0;border-bottom:1px solid #dce7f0}.legal-section h2{font-family: "Roboto", Arial, sans-serif;font-size:28px}.legal-section p{color:#495d70}
.cookie-banner{position:fixed;z-index:200000;left:20px;bottom:20px;width:min(520px,calc(100% - 40px));padding:18px;display:flex;gap:16px;align-items:center;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:#06111c;box-shadow:0 28px 80px rgba(1,10,22,.35)}.cookie-banner[hidden]{display:none}.cookie-banner p{margin:0;color:#c5d3df;font-size:13px}.cookie-banner a{text-decoration:underline}.cookie-banner button{border:0;border-radius:9px;padding:10px 14px;background:#168ee8;color:#fff;font-weight:800}
@media(max-width:1180px){body.shiptrans-home .site-nav,body.service-page .site-nav,body.legal-page .site-nav{width:calc(100% - 20px)!important;border-radius:0 0 14px 14px!important}.nav-logo{width:170px!important;min-width:170px!important}.nav-logo img{width:165px!important}.site-nav.is-open .nav-links{max-height:80vh!important;overflow:auto!important}}
@media(max-width:940px){.shiptrans-home .aud-sticky-hero{min-height:100svh!important;height:100svh!important}.shiptrans-home .aud-sticky-hero__media,.shiptrans-home .aud-sticky-hero__film-pane{height:100svh!important;min-height:100svh!important}.shiptrans-home .aud-sticky-hero__content,.shiptrans-home .aud-sticky-hero__film-content,.shiptrans-home .aud-sticky-hero__right-content{height:100svh!important;min-height:100svh!important;top:0!important}.shiptrans-home .aud-sticky-hero__film-caption{top:43%!important;font-size:clamp(34px,10vw,58px)!important}.shiptrans-home .aud-sticky-hero__copy{top:calc(43% + 120px)!important;width:calc(100% - 40px)!important}.shiptrans-home .aud-sticky-hero__cta-row{left:18px!important;right:18px!important;bottom:calc(70px + env(safe-area-inset-bottom))!important;width:auto!important;transform:none!important;grid-template-columns:1fr 1fr!important}.shiptrans-home .aud-sticky-hero__cta{min-height:48px!important;padding:12px 10px!important}.service-hero{grid-template-columns:1fr;padding-top:125px}.service-hero__image{height:540px}.footer-form-wide{grid-column:auto}.service-page main>.contact-strip{grid-template-columns:1fr}.contact-strip__actions{justify-content:flex-start}.toc ol{columns:1}}
@media(max-width:560px){.shiptrans-home .aud-sticky-hero__film-caption{top:39%!important}.shiptrans-home .aud-sticky-hero__copy{top:calc(39% + 112px)!important}.shiptrans-home .aud-sticky-hero__h1{font-size:15px!important}.shiptrans-home .aud-sticky-hero__cta-row{grid-template-columns:1fr!important;bottom:68px!important}.service-hero__image{height:480px}.cookie-banner{flex-direction:column;align-items:flex-start}.phone-quick-wrap>span{font-size:7px}}


/* SHIPTRANS PRIVACY CENTER v1.0 */
.footer-cookie-settings{display:block;appearance:none;border:0;background:transparent;padding:0;color:var(--muted);font:inherit;text-align:left;cursor:pointer;transition:color .2s ease}
.footer-cookie-settings:hover,.footer-cookie-settings:focus-visible{color:var(--orange-strong);outline:none}
.footer-form-consent a{font-weight:800;text-decoration:underline;text-underline-offset:3px}
.footer-form-consent input{accent-color:var(--orange)}

/* === shipTRANS PRIVACY CENTER v1.0 === */
:root{
  --privacy-blue:#0b78d1;
  --privacy-blue-soft:rgba(11,120,209,.20);
  --privacy-cyan:#72c5ff;
  --privacy-navy:#06101d;
  --privacy-card:rgba(5,11,18,.94);
  --privacy-card-soft:rgba(255,255,255,.055);
}
.ship-cookie-settings-link,
.privacy-action-button,
.privacy-inline-button{
  appearance:none;border:0;background:transparent;color:var(--muted);font:inherit;padding:0;cursor:pointer;text-align:left;text-decoration:underline;text-underline-offset:4px;transition:color .2s ease, border-color .2s ease, transform .2s ease;
}
.ship-cookie-settings-link:hover,.ship-cookie-settings-link:focus-visible,.privacy-inline-button:hover,.privacy-inline-button:focus-visible{color:var(--orange-strong);outline:none}
.footer-form-consent a,.contact-rodo-note a{color:var(--orange-strong);text-decoration:underline;text-underline-offset:3px}

/* Floating privacy banner */
.ship-cookie-layer[hidden],.ship-cookie-modal-layer[hidden]{display:none!important}
.ship-cookie-layer{position:fixed;left:0;right:0;bottom:0;z-index:2500;padding:18px;pointer-events:none}
.ship-cookie-card{position:relative;width:min(1120px,100%);margin:0 auto;display:grid;grid-template-columns:76px minmax(0,1fr) auto;align-items:center;gap:22px;padding:24px;border:1px solid rgba(114,197,255,.24);border-radius:24px;background:radial-gradient(circle at 8% 0%,rgba(11,120,209,.34),transparent 35%),linear-gradient(135deg,rgba(5,11,18,.98),rgba(10,24,42,.96));box-shadow:0 26px 95px rgba(0,0,0,.72);backdrop-filter:blur(22px);color:#fff;pointer-events:auto;overflow:hidden;animation:shipCookieRise .72s cubic-bezier(.18,.85,.22,1) both}
.ship-cookie-card:before{content:"";position:absolute;left:0;top:18px;bottom:18px;width:4px;border-radius:999px;background:linear-gradient(180deg,#72c5ff,#0b78d1)}
.ship-cookie-card:after{content:"";position:absolute;right:17%;top:-210px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(114,197,255,.19),transparent 68%);pointer-events:none}
.ship-cookie-icon{position:relative;width:76px;height:76px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);border-radius:20px;background:linear-gradient(145deg,rgba(11,120,209,.92),rgba(3,32,63,.82));box-shadow:0 16px 42px rgba(11,120,209,.32)}
.ship-cookie-icon svg{width:42px;height:42px;color:#fff}.ship-cookie-icon:after{content:"";position:absolute;inset:8px;border:1px solid rgba(255,255,255,.18);border-radius:15px}
.ship-cookie-copy{position:relative;z-index:1;min-width:0}.ship-cookie-badge{display:inline-flex;align-items:center;gap:8px;margin-bottom:7px;color:#9dd7ff;font-size:.72rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase}.ship-cookie-badge:before{content:"";width:8px;height:8px;border-radius:50%;background:#72c5ff;box-shadow:0 0 0 6px rgba(114,197,255,.12)}
.ship-cookie-copy h2{margin:0 0 7px;font-size:clamp(22px,2.35vw,35px);font-weight:500;line-height:1.08;letter-spacing:-.025em;color:#fff}.ship-cookie-copy p{margin:0;max-width:760px;color:rgba(247,243,238,.76);line-height:1.58;font-size:.94rem}.ship-cookie-links{display:flex;flex-wrap:wrap;gap:14px;margin-top:9px}.ship-cookie-links a{color:var(--orange-strong);font-weight:800;font-size:.84rem;text-decoration:underline;text-underline-offset:4px}
.ship-cookie-actions{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:10px;min-width:345px}.ship-cookie-btn{min-height:46px;border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:10px 17px;background:rgba(255,255,255,.055);color:#fff;font:inherit;font-weight:850;letter-spacing:.045em;text-transform:uppercase;cursor:pointer;transition:transform .2s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease}.ship-cookie-btn:hover,.ship-cookie-btn:focus-visible{transform:translateY(-2px);border-color:rgba(114,197,255,.6);outline:none}.ship-cookie-btn--accept{grid-column:span 2;background:linear-gradient(135deg,rgba(11,120,209,.98),rgba(114,197,255,.28));border-color:rgba(114,197,255,.55);box-shadow:0 12px 28px rgba(11,120,209,.28)}.ship-cookie-btn--reject{background:rgba(255,255,255,.035)}.ship-cookie-btn--settings{background:rgba(114,197,255,.105)}
@keyframes shipCookieRise{from{opacity:0;transform:translateY(115%) scale(.97);filter:blur(2px)}to{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}}

/* Privacy modal */
.ship-cookie-modal-layer{position:fixed;inset:0;z-index:2600;display:grid;place-items:center;padding:20px}.ship-cookie-backdrop{position:absolute;inset:0;background:rgba(2,8,14,.72);backdrop-filter:blur(8px);animation:privacyFade .2s ease both}.ship-cookie-modal{position:relative;width:min(760px,100%);max-height:min(820px,calc(100vh - 40px));overflow:auto;border:1px solid rgba(114,197,255,.20);border-radius:24px;background:radial-gradient(circle at 12% 0%,rgba(11,120,209,.24),transparent 32%),#07111f;box-shadow:0 32px 120px rgba(0,0,0,.76);color:#fff;animation:privacyModalIn .34s cubic-bezier(.2,.8,.2,1) both}.ship-cookie-modal__head{position:sticky;top:0;z-index:2;display:flex;justify-content:space-between;gap:18px;padding:24px 26px 18px;background:rgba(7,17,31,.94);border-bottom:1px solid rgba(255,255,255,.10);backdrop-filter:blur(14px)}.ship-cookie-modal__head h2{margin:0 0 4px;font-size:clamp(26px,3vw,38px);font-weight:500;letter-spacing:-.03em}.ship-cookie-modal__head p{margin:0;color:rgba(247,243,238,.66);font-size:.92rem;line-height:1.5}.ship-cookie-close{width:44px;height:44px;min-width:44px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.06);color:#fff;font-size:1.55rem;line-height:1;cursor:pointer}.ship-cookie-close:hover,.ship-cookie-close:focus-visible{border-color:rgba(114,197,255,.55);outline:none}.ship-cookie-modal__body{padding:20px 26px}.ship-cookie-row{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;padding:18px 0;border-bottom:1px solid rgba(255,255,255,.09)}.ship-cookie-row:last-child{border-bottom:0}.ship-cookie-row strong{display:flex;align-items:center;gap:10px;margin-bottom:5px;color:#fff;font-size:1.02rem}.ship-cookie-row p{margin:0;color:rgba(247,243,238,.66);font-size:.9rem;line-height:1.55}.ship-cookie-state{display:inline-flex;padding:4px 9px;border-radius:999px;background:rgba(114,197,255,.13);color:#9dd7ff;font-size:.7rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.ship-cookie-state--off{background:rgba(255,255,255,.08);color:rgba(247,243,238,.55)}.ship-cookie-switch{position:relative;display:inline-flex;width:58px;height:32px;flex:0 0 auto}.ship-cookie-switch input{position:absolute;opacity:0}.ship-cookie-switch span{position:absolute;inset:0;border-radius:999px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.13);transition:background .2s ease,border-color .2s ease}.ship-cookie-switch span:before{content:"";position:absolute;width:24px;height:24px;left:3px;top:3px;border-radius:50%;background:#fff;transition:transform .2s ease}.ship-cookie-switch input:checked+span{background:rgba(11,120,209,.94);border-color:rgba(114,197,255,.55)}.ship-cookie-switch input:checked+span:before{transform:translateX(26px)}.ship-cookie-switch input:disabled+span{opacity:.55;cursor:not-allowed}.ship-cookie-notice{margin:18px 0 0;padding:14px 16px;border:1px solid rgba(114,197,255,.18);border-radius:16px;background:rgba(114,197,255,.07);color:rgba(247,243,238,.70);font-size:.9rem}.ship-cookie-modal__foot{display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap;padding:18px 26px 24px;border-top:1px solid rgba(255,255,255,.10)}
body.cookie-dialog-open{overflow:hidden}@keyframes privacyFade{from{opacity:0}to{opacity:1}}@keyframes privacyModalIn{from{opacity:0;transform:translateY(22px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}

/* Legal pages */
.privacy-container{width:min(1180px,calc(100% - 32px));margin:0 auto}.privacy-legal-page{padding:138px 0 84px;background:radial-gradient(circle at 14% 0%,rgba(11,120,209,.18),transparent 32%),radial-gradient(circle at 90% 9%,rgba(114,197,255,.10),transparent 28%),#050505}.privacy-legal-hero{max-width:980px;margin:0 auto 34px;text-align:left}.privacy-legal-hero h1{margin:0 0 14px;color:#fff;font-size:clamp(42px,7vw,86px);line-height:0.98;font-weight:500;letter-spacing:-.055em}.privacy-legal-hero>p:not(.eyebrow){max-width:860px;margin:0;color:rgba(247,243,238,.72);font-size:clamp(17px,2vw,22px);line-height:1.55}.privacy-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.privacy-meta span{display:inline-flex;padding:8px 12px;border:1px solid rgba(114,197,255,.20);border-radius:999px;background:rgba(255,255,255,.045);color:rgba(247,243,238,.70);font-size:.78rem;letter-spacing:.08em;text-transform:uppercase}.privacy-legal-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:24px;align-items:start}.privacy-legal-layout--single{grid-template-columns:1fr}.privacy-toc{position:sticky;top:122px;display:grid;gap:9px;padding:20px;border:1px solid rgba(255,255,255,.11);border-radius:22px;background:rgba(5,11,18,.72);box-shadow:0 18px 58px rgba(0,0,0,.34);backdrop-filter:blur(16px)}.privacy-toc strong{margin-bottom:6px;color:#fff}.privacy-toc a{color:rgba(247,243,238,.68);font-size:.92rem}.privacy-toc a:hover{color:var(--orange-strong)}.privacy-legal-card{padding:clamp(22px,4vw,52px);border:1px solid rgba(255,255,255,.12);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022)),rgba(7,17,31,.78);box-shadow:var(--shadow)}.privacy-legal-card--wide{max-width:980px;margin:0 auto}.privacy-section{position:relative;padding:0 0 34px;margin:0 0 34px;border-bottom:1px solid rgba(255,255,255,.095)}.privacy-section:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0}.privacy-number{display:inline-flex;margin-bottom:12px;padding:6px 10px;border-radius:999px;background:rgba(11,120,209,.16);color:#9dd7ff;font-size:.78rem;font-weight:900;letter-spacing:.12em}.privacy-section h2{margin:0 0 16px;color:#fff;font-size:clamp(26px,3.3vw,43px);line-height:1.08;font-weight:500;letter-spacing:-.035em}.privacy-section p,.privacy-section li{color:rgba(247,243,238,.72);line-height:1.76}.privacy-section ul{margin:0 0 18px 20px;padding:0}.privacy-section a{color:var(--orange-strong);text-decoration:underline;text-underline-offset:4px}.privacy-contact-card,.privacy-action-box{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;margin:18px 0;padding:18px;border:1px solid rgba(114,197,255,.18);border-radius:18px;background:rgba(114,197,255,.07)}.privacy-contact-card p{margin:0}.privacy-table-wrap{overflow:auto;margin:18px 0;border:1px solid rgba(255,255,255,.10);border-radius:18px}.privacy-table{width:100%;border-collapse:collapse;min-width:680px}.privacy-table th,.privacy-table td{padding:15px 16px;border-bottom:1px solid rgba(255,255,255,.09);text-align:left;vertical-align:top}.privacy-table th{color:#fff;background:rgba(11,120,209,.16);font-weight:800}.privacy-table td{color:rgba(247,243,238,.72)}.privacy-table tr:last-child td{border-bottom:0}.privacy-rights-grid,.privacy-category-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:18px 0}.privacy-rights-grid span,.privacy-category-grid article{padding:15px;border:1px solid rgba(255,255,255,.10);border-radius:16px;background:rgba(255,255,255,.045);color:rgba(247,243,238,.76)}.privacy-category-grid strong{display:block;margin-bottom:7px;color:#fff}.privacy-category-grid p{margin:0;font-size:.92rem;line-height:1.55}.privacy-action-button{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:11px 17px;border:1px solid rgba(114,197,255,.26);border-radius:999px;background:linear-gradient(135deg,rgba(11,120,209,.92),rgba(114,197,255,.18));color:#fff!important;font-weight:900;text-decoration:none!important}.privacy-action-button:hover,.privacy-action-button:focus-visible{transform:translateY(-1px);border-color:rgba(114,197,255,.65);outline:none}.privacy-action-box--final{margin-top:26px}

.ship-cookie-copy h2:focus,.ship-cookie-modal__head h2:focus{outline:none}
body.cookie-banner-open .floating-actions,body.cookie-dialog-open .floating-actions{visibility:hidden!important;opacity:0!important;pointer-events:none!important;transform:translateX(18px)!important}
body .floating-actions{transition:opacity .2s ease,transform .2s ease}
@media (max-width: 940px){.ship-cookie-card{grid-template-columns:1fr;gap:16px;padding:20px}.ship-cookie-icon{width:64px;height:64px}.ship-cookie-actions{min-width:0;width:100%}.ship-cookie-btn{width:100%}.privacy-legal-layout{grid-template-columns:1fr}.privacy-toc{position:relative;top:auto}.privacy-rights-grid,.privacy-category-grid{grid-template-columns:1fr}}
@media (max-width: 560px){.ship-cookie-layer{padding:10px}.ship-cookie-card{border-radius:18px}.ship-cookie-actions{grid-template-columns:1fr}.ship-cookie-btn--accept{grid-column:auto}.ship-cookie-modal-layer{padding:10px}.ship-cookie-modal{border-radius:18px}.ship-cookie-modal__head,.ship-cookie-modal__body,.ship-cookie-modal__foot{padding-left:18px;padding-right:18px}.ship-cookie-row{grid-template-columns:1fr;gap:12px}.privacy-container{width:min(100% - 22px,1180px)}.privacy-legal-page{padding-top:116px}.privacy-legal-card{border-radius:18px}.privacy-contact-card,.privacy-action-box{align-items:flex-start}.privacy-table{min-width:620px}}
