:root {
  --navy: #0a1e32;
  --navy-soft: #12364b;
  --steel: #2e5a6b;
  --teal: #2bb7b3;
  --orange: #f59e0b;
  --orange-light: #ffb84d;
  --ice: #f3f6f7;
  --white: #ffffff;
  --text: #263238;
  --muted: #60727a;
  --border: #d7e2e5;
  --shadow: 0 24px 64px rgba(10, 30, 50, 0.14);
  --shadow-soft: 0 16px 42px rgba(10, 30, 50, 0.08);
  --shell: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 22px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 76px);
}

h2 {
  max-width: 850px;
  font-size: clamp(34px, 4.3vw, 56px);
}

h3 {
  font-size: clamp(23px, 2.4vw, 31px);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--navy);
  background: var(--orange-light);
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 4px;
  background: var(--orange);
  content: "";
}

.eyebrow-light {
  color: #a9d9d7;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  border: 2px solid var(--orange);
  border-radius: 7px;
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 9px 24px rgba(245, 158, 11, 0.18);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--orange-light);
  background: var(--orange-light);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.5);
  outline-offset: 4px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.button-ghost:hover {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--steel);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  width: 28px;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 42px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--orange);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(10, 30, 50, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 22px rgba(10, 30, 50, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.header-nav a {
  position: relative;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 30, 50, 0.74) 0%, rgba(10, 30, 50, 0.58) 34%, rgba(10, 30, 50, 0.23) 60%, rgba(10, 30, 50, 0.06) 100%),
    linear-gradient(180deg, rgba(10, 30, 50, 0.08) 52%, rgba(10, 30, 50, 0.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-card {
  position: relative;
  width: min(720px, 67%);
  margin-left: -36px;
  padding: 46px 76px 46px 36px;
  border-left: 5px solid var(--orange);
  background: linear-gradient(105deg, rgba(10, 30, 50, 0.9) 0%, rgba(10, 30, 50, 0.72) 68%, rgba(10, 30, 50, 0) 100%);
}

.hero-card h1 {
  margin-bottom: 22px;
  color: var(--white);
}

.deadline-badge {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.4;
}

.deadline-badge strong {
  color: var(--orange-light);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 1.85vw, 23px);
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-points span {
  position: relative;
  padding-left: 15px;
}

.hero-points span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.hero-points strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.hero-publication {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.hero-publication span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(245, 158, 11, 0.16);
}

.hero-data {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-bars {
  right: 5vw;
  bottom: 8%;
  display: flex;
  width: min(33vw, 540px);
  height: 210px;
  align-items: flex-end;
  gap: clamp(12px, 1.7vw, 28px);
  opacity: 0.13;
}

.hero-bars span {
  width: 100%;
  height: var(--bar);
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(43, 183, 179, 0.85), rgba(43, 183, 179, 0.08));
  transform-origin: bottom;
  animation: hero-bar-rise 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-bars span:nth-child(2) { animation-delay: 100ms; }
.hero-bars span:nth-child(3) { animation-delay: 180ms; }
.hero-bars span:nth-child(4) { animation-delay: 260ms; }
.hero-bars span:nth-child(5) { animation-delay: 340ms; }
.hero-bars span:nth-child(6) { animation-delay: 420ms; }

.hero-trend {
  right: 2vw;
  top: 21%;
  width: min(37vw, 650px);
  height: 240px;
  opacity: 0.12;
}

.hero-trend i {
  position: absolute;
  height: 2px;
  background: var(--orange-light);
  transform-origin: left center;
  animation: trend-glow 18s ease-in-out infinite;
}

.hero-trend i:nth-child(1) { top: 72%; left: 2%; width: 27%; transform: rotate(-12deg); }
.hero-trend i:nth-child(2) { top: 64%; left: 27%; width: 24%; transform: rotate(9deg); animation-delay: -3s; }
.hero-trend i:nth-child(3) { top: 66%; left: 49%; width: 25%; transform: rotate(-24deg); animation-delay: -6s; }
.hero-trend i:nth-child(4) { top: 48%; left: 71%; width: 27%; transform: rotate(-8deg); animation-delay: -9s; }

.benefit-ticker {
  position: relative;
  z-index: 10;
  display: grid;
  min-height: 66px;
  grid-template-columns: max-content minmax(0, 1fr);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 36px rgba(10, 30, 50, 0.16);
  overflow: hidden;
}

.ticker-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 30px max(1px, 0px) max(30px, calc((100vw - var(--shell)) / 2));
  color: var(--navy);
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-label::after {
  position: absolute;
  top: 0;
  right: -24px;
  width: 25px;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
}

.ticker-window {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 34s linear infinite;
}

.ticker-window:hover .ticker-track,
.ticker-window:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-left: 48px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
}

.ticker-group span::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.split-wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.split-reverse {
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
}

.content-column {
  position: relative;
  z-index: 2;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

.editorial-image {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.editorial-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-tall img {
  aspect-ratio: 4 / 5;
  object-position: 58% center;
}

.editorial-image figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 19px 22px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(10, 30, 50, 0.82);
  backdrop-filter: blur(8px);
}

.editorial-image figcaption strong,
.editorial-image figcaption span {
  display: block;
}

.editorial-image figcaption strong {
  color: var(--white);
}

.editorial-image figcaption span {
  margin-top: 2px;
  font-size: 13px;
}

.market-scale {
  padding: 27px 25px 23px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
  background: var(--ice);
}

.scale-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  color: var(--navy);
  font-weight: 600;
}

.scale-heading strong {
  color: var(--teal);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scale-track {
  position: relative;
  height: 13px;
  border-radius: 8px;
  background: #bdd0d5;
}

.scale-range {
  position: absolute;
  top: 0;
  left: 27%;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.scale-marker {
  position: absolute;
  top: -10px;
  left: 56%;
  width: 17px;
  height: 33px;
  border: 4px solid var(--white);
  border-radius: 9px;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(10, 30, 50, 0.22);
  animation: scale-marker-move 11s ease-in-out infinite alternate;
}

.scale-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.scale-labels span:nth-child(2) { text-align: center; }
.scale-labels span:last-child { text-align: right; }

.package-section {
  background: var(--ice);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading.centered {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered .lead {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.package-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px 30px 30px;
  border: 1px solid var(--border);
  border-top: 6px solid var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.package-card-featured {
  border-top-color: var(--orange);
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.card-index {
  margin-bottom: 23px;
  color: var(--teal);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.package-card-featured .card-index {
  color: var(--orange);
}

.package-card h3 {
  min-height: 68px;
  margin-bottom: 17px;
  font-size: 27px;
}

.package-card-featured h3 {
  color: var(--white);
}

.package-card p {
  color: var(--muted);
  font-size: 15px;
}

.package-card-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 28px;
  padding-left: 20px;
  font-size: 15px;
}

.price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.package-card-featured .price {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.price del {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.price strong {
  color: var(--navy);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 36px;
  line-height: 1;
}

.package-card-featured .price strong {
  color: var(--orange);
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.package-card-featured .price span {
  color: rgba(255, 255, 255, 0.66);
}

.deadline-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-top: 34px;
  padding: 22px 25px;
  border-left: 5px solid var(--orange);
  color: var(--text);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 30, 50, 0.05);
}

.deadline-note strong {
  color: var(--navy);
}

.deadline-note span {
  color: var(--muted);
}

.form-section {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 90%, rgba(43, 183, 179, 0.18), transparent 28%),
    linear-gradient(125deg, var(--navy), var(--navy-soft));
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.form-copy h2 {
  color: var(--white);
}

.form-copy .lead {
  color: rgba(255, 255, 255, 0.76);
}

.form-benefits {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.form-benefits li {
  display: grid;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.06);
}

.form-benefits strong {
  color: var(--white);
}

.form-benefits span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.form-deadline {
  display: inline-block;
  padding: 9px 12px;
  color: var(--navy);
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.form-embed {
  min-height: 520px;
  padding: clamp(28px, 4vw, 44px);
  border-top: 6px solid var(--teal);
  color: var(--text);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.getresponse-placeholder {
  display: flex;
  min-height: 375px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border: 2px dashed #9eb6bd;
  color: var(--muted);
  background: #f8fafb;
  text-align: center;
}

.getresponse-placeholder strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
}

.placeholder-label {
  margin-bottom: 18px;
  color: var(--teal);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-embed label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.form-embed input:not([type="checkbox"]):not([type="radio"]),
.form-embed select,
.form-embed textarea {
  width: 100%;
  min-height: 50px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #b8c9ce;
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
}

.form-embed button,
.form-embed input[type="submit"] {
  min-height: 54px;
  padding: 14px 23px;
  border: 2px solid var(--orange);
  border-radius: 6px;
  color: var(--navy);
  background: var(--orange);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.form-privacy {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--steel);
  font-weight: 600;
}

.process-section {
  background: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 34px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: var(--border);
  content: "";
}

.timeline li {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  text-align: center;
}

.timeline-number {
  display: inline-flex;
  min-width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 0 10px;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
}

.timeline-deadline .timeline-number {
  border-color: var(--orange);
  color: var(--navy);
  background: var(--orange);
}

.timeline-publication .timeline-number {
  min-width: 78px;
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.timeline strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 18px;
}

.timeline p {
  color: var(--muted);
  font-size: 14px;
}

.privacy-section {
  background: var(--ice);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.privacy-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
}

.privacy-flow > div {
  min-height: 220px;
  padding: 24px 20px;
  border-top: 5px solid var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.privacy-flow > div span,
.privacy-flow > div strong,
.privacy-flow > div small {
  display: block;
}

.privacy-flow > div span {
  margin-bottom: 24px;
  color: var(--orange);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 700;
}

.privacy-flow > div strong {
  color: var(--navy);
  line-height: 1.4;
}

.privacy-flow > div small {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.45;
}

.privacy-flow > i {
  position: relative;
  height: 2px;
  background: var(--orange);
}

.privacy-flow > i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--orange);
  content: "";
}

.scope-section {
  background: var(--white);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 30px 0 24px;
}

.scope-grid span {
  padding: 15px 16px;
  border-left: 4px solid var(--teal);
  color: var(--navy);
  background: var(--ice);
  font-size: 14px;
  font-weight: 600;
}

.method-note {
  padding: 18px 20px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.audience-section {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.audience-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.audience-intro h2 {
  margin-bottom: 0;
  color: var(--white);
}

.audience-intro p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
}

.audience-visual {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.audience-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 30, 50, 0.9) 100%);
  content: "";
}

.audience-visual > img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.audience-sectors {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-sectors span {
  padding-top: 14px;
  border-top: 3px solid var(--teal);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.audience-sectors strong {
  display: block;
  color: var(--white);
  font-size: 17px;
}

.forum-section {
  background: var(--ice);
}

.forum-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  min-height: 590px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.forum-photo {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.forum-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--navy) 100%);
  content: "";
}

.forum-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 31%;
  transform: scale(1.08);
}

.forum-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px 52px 38px;
}

.forum-content h2 {
  color: var(--white);
  font-size: clamp(35px, 4vw, 51px);
}

.forum-discount {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.forum-discount strong {
  color: var(--orange);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(62px, 8vw, 98px);
  line-height: 0.85;
}

.forum-discount span {
  color: var(--white);
  font-weight: 600;
  line-height: 1.35;
}

.forum-content .button {
  align-self: flex-start;
  margin-top: 12px;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 25px 60px 25px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--teal);
  content: "+";
  font-size: 23px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-answer {
  max-width: 790px;
  padding: 0 60px 25px 0;
  color: var(--muted);
}

.final-cta {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 82% 22%, rgba(43, 183, 179, 0.18), transparent 25%),
    var(--navy);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.final-cta h2 {
  max-width: 800px;
  color: var(--white);
}

.final-cta p {
  max-width: 800px;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  background: #071522;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand p {
  margin-bottom: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  line-height: 1.55;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 28px;
  font-style: normal;
}

.contact-list a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom a {
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.form-visible .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.ambient {
  position: fixed;
  z-index: 20;
  pointer-events: none;
  opacity: 0.055;
}

.ambient-left {
  top: 43%;
  left: 18px;
  display: flex;
  width: 104px;
  flex-direction: column;
  gap: 9px;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.ambient-label {
  color: var(--navy);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.ambient-track {
  position: relative;
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--steel);
}

.ambient-track i {
  position: absolute;
  top: -6px;
  left: 44%;
  width: 10px;
  height: 17px;
  border-radius: 5px;
  background: var(--orange);
  animation: ambient-marker 22s ease-in-out infinite alternate;
}

.ambient-right {
  right: 20px;
  bottom: 12%;
  display: flex;
  width: 86px;
  height: 145px;
  align-items: flex-end;
  gap: 7px;
}

.ambient-right span {
  width: 100%;
  height: var(--h);
  background: var(--teal);
  animation: ambient-bars 24s ease-in-out infinite alternate;
}

.ambient-right span:nth-child(2) { animation-delay: -4s; }
.ambient-right span:nth-child(3) { animation-delay: -8s; }
.ambient-right span:nth-child(4) { animation-delay: -12s; }
.ambient-right span:nth-child(5) { animation-delay: -16s; }

.section-decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
}

.decoration-range {
  top: 13%;
  right: -130px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--steel);
  border-radius: 50%;
}

.decoration-range span {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 3px;
  background: var(--teal);
}

.decoration-range span::after {
  position: absolute;
  top: -9px;
  left: 56%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  animation: decoration-dot 19s ease-in-out infinite alternate;
}

@keyframes hero-bar-rise {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes trend-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

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

@keyframes scale-marker-move {
  from { transform: translateX(-14px); }
  to { transform: translateX(18px); }
}

@keyframes ambient-marker {
  from { left: 22%; }
  to { left: 72%; }
}

@keyframes ambient-bars {
  from { transform: scaleY(0.72); }
  to { transform: scaleY(1); }
}

@keyframes decoration-dot {
  from { left: 28%; }
  to { left: 72%; }
}

@media (max-width: 1280px) {
  .ambient {
    display: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 70px;
  }

  .header-nav {
    display: none;
  }

  .hero-card {
    width: min(760px, 78%);
  }

  .split,
  .split-wide,
  .split-reverse,
  .privacy-layout {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
  }

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

  .package-card-featured {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .package-card-featured h3 {
    min-height: auto;
  }

  .form-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
    gap: 42px;
  }

  .privacy-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .privacy-flow > div {
    min-height: auto;
  }

  .privacy-flow > i {
    width: 2px;
    height: 24px;
    margin-left: 28px;
  }

  .privacy-flow > i::after {
    top: auto;
    right: -4px;
    bottom: 0;
    border-top: 7px solid var(--orange);
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
  }

  .forum-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .brand-copy {
    display: none;
  }

  .site-header .button-small {
    padding: 10px 14px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 30, 50, 0.35) 0%, rgba(10, 30, 50, 0.72) 42%, rgba(10, 30, 50, 0.92) 100%);
  }

  .hero-inner {
    min-height: 790px;
    align-items: flex-end;
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .hero-card {
    width: 100%;
    margin: 0;
    padding: 32px 24px;
    border-left-width: 4px;
    background: rgba(10, 30, 50, 0.78);
    backdrop-filter: blur(5px);
  }

  .hero-bars {
    right: 6%;
    top: 18%;
    bottom: auto;
    width: 45vw;
    height: 150px;
  }

  .hero-trend {
    top: 10%;
    right: 3%;
    width: 50vw;
  }

  .benefit-ticker {
    grid-template-columns: 1fr;
  }

  .ticker-label {
    min-height: 40px;
    justify-content: center;
    padding: 0 18px;
  }

  .ticker-label::after {
    display: none;
  }

  .ticker-window {
    min-height: 54px;
  }

  .split,
  .split-wide,
  .split-reverse,
  .form-layout,
  .privacy-layout,
  .audience-intro,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .image-tall img,
  .editorial-image img {
    aspect-ratio: 16 / 10;
  }

  .editorial-image {
    order: 2;
  }

  .split-reverse .editorial-image {
    order: 2;
  }

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

  .package-card-featured {
    grid-column: auto;
  }

  .package-card,
  .package-card-featured {
    min-height: auto;
  }

  .package-card h3 {
    min-height: auto;
  }

  .deadline-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-layout {
    gap: 44px;
  }

  .form-embed {
    min-height: 470px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::before {
    top: 25px;
    bottom: 25px;
    left: 33px;
    width: 2px;
    height: auto;
  }

  .timeline li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: start;
    padding: 0 0 30px;
    text-align: left;
  }

  .timeline-number {
    min-width: 68px;
    margin-bottom: 0;
  }

  .timeline-publication .timeline-number {
    min-width: 76px;
    margin-left: -4px;
  }

  .audience-intro {
    gap: 12px;
  }

  .audience-visual > img {
    aspect-ratio: 4 / 3;
  }

  .audience-sectors {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .audience-sectors span {
    padding-top: 7px;
  }

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

  .forum-photo {
    min-height: 420px;
  }

  .forum-photo::after {
    background: linear-gradient(180deg, transparent 65%, var(--navy) 100%);
  }

  .forum-photo img {
    object-position: 50% 28%;
  }

  .forum-content {
    padding: 40px 32px 46px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .site-header .button-small {
    display: none;
  }

  .hero {
    min-height: 830px;
  }

  .hero-inner {
    min-height: 830px;
  }

  .hero-card {
    padding: 28px 19px;
  }

  .deadline-badge {
    font-size: 12px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 6px;
  }

  .ticker-group span {
    padding-left: 34px;
    font-size: 14px;
  }

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

  .scale-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .scale-labels {
    font-size: 9px;
  }

  .getresponse-placeholder {
    min-height: 330px;
    padding: 24px;
  }

  .editorial-image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .forum-photo {
    min-height: 320px;
  }

  .forum-content {
    padding: 34px 24px 40px;
  }

  .forum-discount strong {
    font-size: 64px;
  }

  .faq-list summary {
    padding-right: 48px;
    font-size: 17px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 900;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange-light);
    border-radius: 7px;
    color: var(--navy);
    background: var(--orange);
    box-shadow: 0 12px 32px rgba(10, 30, 50, 0.28);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
  }
}

/* NEW_V2: oficjalne logo, zwarte hero i mocniej widoczne dane w ruchu */

.brand {
  height: 100%;
}

.brand-logo {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.hero {
  min-height: 690px;
  color: var(--white);
  background: var(--navy);
}

.hero-grid {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 64px 68px 0;
}

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(43px, 4.8vw, 66px);
}

.hero-copy .hero-lead {
  max-width: 650px;
}

.hero-media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--navy-soft);
}

.hero-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.hero-media-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(10, 30, 50, 0.5) 16%, rgba(10, 30, 50, 0.03) 50%),
    linear-gradient(180deg, rgba(10, 30, 50, 0.05) 55%, rgba(10, 30, 50, 0.35) 100%);
  pointer-events: none;
}

.hero-media .hero-bars {
  z-index: 3;
  right: 7%;
  bottom: 7%;
  width: 72%;
  height: 230px;
  gap: clamp(10px, 1.4vw, 22px);
  opacity: 0.31;
}

.hero-media .hero-bars span {
  border-top-color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(43, 183, 179, 0.95), rgba(43, 183, 179, 0.12));
}

.hero-media .hero-trend {
  z-index: 4;
  top: 22%;
  right: 3%;
  width: 88%;
  height: 270px;
  opacity: 0.3;
}

.hero-media .hero-trend i {
  height: 3px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.45);
}

.market-scale-classic {
  margin-top: 36px;
  padding: 26px 24px 22px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
  background: var(--ice);
}

.market-scale-classic .scale-title {
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 700;
}

.market-scale-classic .scale-track {
  position: relative;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, #a8c6ce 0%, var(--teal) 33%, var(--teal) 67%, var(--steel) 100%);
}

.market-scale-classic .scale-marker {
  top: -9px;
  left: 7%;
  width: 18px;
  height: 36px;
  border: 4px solid var(--white);
  border-radius: 9px;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(10, 30, 50, 0.2);
  animation: classic-marker-travel 5.8s ease-in-out infinite alternate;
  will-change: left;
}

.market-scale-classic:hover .scale-marker {
  animation-play-state: paused;
}

.timeline-number,
.timeline-publication .timeline-number {
  width: 74px;
  min-width: 74px;
  height: 74px;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
}

.timeline-publication .timeline-number {
  margin-left: 0;
  font-size: 12px;
}

.timeline::after {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 12.5%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 3px 12px rgba(10, 30, 50, 0.22);
  content: "";
  animation: timeline-progress 14s ease-in-out infinite;
}

.scope-photo {
  aspect-ratio: 4 / 3 !important;
  object-position: 40% center !important;
}

.footer-logo {
  width: auto;
  height: 105px;
  object-fit: contain;
}

.footer-brand p {
  padding-left: 22px;
}

.ambient {
  z-index: 12;
  opacity: 0.14;
}

.ambient-left {
  left: 29px;
  display: flex;
  width: 150px;
}

.ambient-track {
  height: 7px;
  background: var(--steel);
  box-shadow: 0 0 0 1px rgba(46, 90, 107, 0.24);
}

.ambient-track i {
  top: -7px;
  width: 13px;
  height: 21px;
}

.ambient-right {
  right: 30px;
  bottom: 10%;
  display: flex;
  width: 112px;
  height: 190px;
  gap: 9px;
}

.ambient-right span {
  border-top: 2px solid var(--steel);
  background: linear-gradient(180deg, var(--teal), rgba(43, 183, 179, 0.24));
}

.section-decoration {
  opacity: 0.1;
}

@keyframes classic-marker-travel {
  0%, 12% { left: 7%; }
  47%, 60% { left: 58%; }
  88%, 100% { left: calc(93% - 18px); }
}

@keyframes timeline-progress {
  0%, 9% { left: 12.5%; }
  30%, 39% { left: 37.5%; }
  60%, 69% { left: 62.5%; }
  90%, 100% { left: calc(87.5% - 14px); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  }

  .hero-copy {
    padding-right: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 5.4vw, 58px);
  }
}

@media (max-width: 980px) {
  .ambient {
    display: none;
  }
}

@media (max-width: 820px) {
  .brand-logo {
    height: 56px;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 0;
    padding: 58px max(24px, calc((100vw - 720px) / 2)) 54px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 8vw, 60px);
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-media .hero-bars {
    top: auto;
    right: 7%;
    bottom: 6%;
    width: 68%;
    height: 190px;
  }

  .hero-media .hero-trend {
    top: 16%;
    right: 4%;
    width: 78%;
  }

  .timeline::after {
    top: 30px;
    left: 27px;
    animation: timeline-progress-mobile 14s ease-in-out infinite;
  }

  .timeline-number,
  .timeline-publication .timeline-number {
    width: 68px;
    min-width: 68px;
    height: 68px;
  }

  .footer-logo {
    height: 90px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    padding: 42px 19px 40px;
  }

  .hero-media {
    min-height: 390px;
  }

  .footer-logo {
    height: 78px;
  }
}

@keyframes timeline-progress-mobile {
  0%, 9% { top: 30px; }
  30%, 39% { top: 25%; }
  60%, 69% { top: 52%; }
  90%, 100% { top: calc(100% - 70px); }
}

@media (prefers-reduced-motion: reduce) {
  .market-scale-classic .scale-marker {
    left: 58%;
    animation: none;
  }

  .timeline::after {
    display: none;
  }
}

/* NEW_V2: hero na pełną szerokość według zaakceptowanej wersji testowej */

.brand {
  gap: 14px;
}

.brand-report-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(10, 30, 50, 0.18);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.12;
  white-space: nowrap;
}

.brand-report-title > i {
  display: block;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.13);
}

.hero {
  min-height: 760px;
  isolation: isolate;
}

.hero-grid {
  position: relative;
  display: block;
  min-height: 760px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  min-height: 760px;
  max-width: 780px;
  padding: 90px 0;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.02;
  text-shadow: 0 3px 24px rgba(10, 30, 50, 0.48);
}

.hero-copy h1 > span {
  display: block;
  white-space: nowrap;
}

.hero-copy .hero-lead {
  text-shadow: 0 3px 24px rgba(10, 30, 50, 0.48);
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  min-height: 0;
  margin: 0 0 0 -50vw;
}

.hero-media::before {
  z-index: 2;
  border-left: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 30, 50, 0.98) 0%, rgba(10, 30, 50, 0.92) 30%, rgba(10, 30, 50, 0.68) 52%, rgba(10, 30, 50, 0.28) 76%, rgba(10, 30, 50, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 30, 50, 0.14) 0%, rgba(10, 30, 50, 0.12) 70%, rgba(10, 30, 50, 0.5) 100%);
}

.hero-media .hero-bars {
  right: 5vw;
  width: min(33vw, 540px);
  opacity: 0.18;
}

.hero-media .hero-trend {
  top: 22%;
  right: 3vw;
  width: min(42vw, 690px);
  opacity: 0.2;
}

@media (max-width: 1080px) {
  .brand-report-title {
    font-size: 12px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 5.8vw, 62px);
  }
}

@media (max-width: 980px) {
  .hero,
  .hero-grid,
  .hero-copy {
    min-height: 700px;
  }

  .hero-copy {
    max-width: 700px;
    padding: 68px 0;
  }

  .hero-media {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    min-height: 0;
    margin: 0 0 0 -50vw;
  }

  .hero-media-overlay {
    background:
      linear-gradient(90deg, rgba(10, 30, 50, 0.96) 0%, rgba(10, 30, 50, 0.87) 56%, rgba(10, 30, 50, 0.42) 100%),
      linear-gradient(180deg, rgba(10, 30, 50, 0.2) 0%, rgba(10, 30, 50, 0.28) 60%, rgba(10, 30, 50, 0.72) 100%);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 7vw, 58px);
  }
}

@media (max-width: 820px) {
  .hero-grid {
    width: min(1180px, calc(100% - 48px));
  }

  .hero-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-media {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 8px;
  }

  .brand-logo {
    height: 50px;
  }

  .brand-report-title {
    gap: 7px;
    padding-left: 9px;
    font-size: 10px;
  }

  .brand-report-title > i {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.13);
  }

  .hero,
  .hero-grid,
  .hero-copy {
    min-height: 760px;
  }

  .hero-grid {
    width: min(1180px, calc(100% - 38px));
  }

  .hero-copy {
    max-width: 100%;
    padding: 50px 0;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 9.2vw, 42px);
    line-height: 1.06;
  }

  .hero-media {
    margin: 0 0 0 -50vw;
  }

  .hero-media-overlay {
    background:
      linear-gradient(90deg, rgba(10, 30, 50, 0.96) 0%, rgba(10, 30, 50, 0.88) 70%, rgba(10, 30, 50, 0.58) 100%),
      linear-gradient(180deg, rgba(10, 30, 50, 0.16) 0%, rgba(10, 30, 50, 0.28) 54%, rgba(10, 30, 50, 0.8) 100%);
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-media .hero-bars,
  .hero-media .hero-trend {
    opacity: 0.12;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    height: 46px;
  }

  .brand-report-title {
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: clamp(29px, 8.8vw, 36px);
  }
}

/* WERSJA B: hero z kartą tekstową przesuniętą w lewo */

.hero-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.research-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--orange-light);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.research-status i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15);
  animation: research-status-pulse 2.4s ease-in-out infinite;
}

.hero {
  min-height: 860px;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 860px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: block;
  width: min(880px, 76%);
  min-height: 0;
  max-width: 880px;
  margin-left: -72px;
  padding: 48px 104px 48px 54px;
  border-left: 5px solid var(--orange);
  background: linear-gradient(105deg, rgba(10, 30, 50, 0.94) 0%, rgba(10, 30, 50, 0.84) 62%, rgba(10, 30, 50, 0.22) 88%, rgba(10, 30, 50, 0) 100%);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(49px, 4.7vw, 64px);
  line-height: 1.03;
}

.hero-copy .hero-lead {
  max-width: 720px;
}

getresponse-form {
  display: block;
  width: 100%;
}

.form-process-note {
  margin: 24px 0 26px;
  padding: 15px 17px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  line-height: 1.55;
}

.form-process-note strong {
  color: var(--white);
}

.ai-generated-label {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 14px;
  display: inline-block;
  padding: 4px 6px 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.46);
  background: rgba(10, 30, 50, 0.16);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  user-select: none;
  backdrop-filter: blur(2px);
}

.ai-generated-label-hero {
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(10, 30, 50, 0.12);
}

@keyframes research-status-pulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .research-status i {
    animation: none;
  }
}

@media (max-width: 560px) {
  .ai-generated-label {
    top: 10px;
    right: 10px;
    padding: 3px 5px 2px;
    font-size: 7px;
  }
}

.hero-media-overlay {
  background:
    linear-gradient(90deg, rgba(10, 30, 50, 0.74) 0%, rgba(10, 30, 50, 0.58) 34%, rgba(10, 30, 50, 0.23) 60%, rgba(10, 30, 50, 0.06) 100%),
    linear-gradient(180deg, rgba(10, 30, 50, 0.08) 52%, rgba(10, 30, 50, 0.45) 100%);
}

.hero-image {
  object-position: center 20%;
}

.hero-media .hero-bars {
  right: 5vw;
  bottom: 8%;
  width: min(33vw, 540px);
  height: 210px;
  opacity: 0.13;
}

.hero-media .hero-trend {
  top: auto;
  right: 2vw;
  bottom: 28%;
  width: min(34vw, 560px);
  height: 180px;
  opacity: 0.16;
}

@media (max-width: 1080px) {
  .hero-copy {
    width: min(820px, 82%);
    margin-left: -42px;
    padding-right: 86px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 5.4vw, 60px);
  }
}

@media (max-width: 820px) {
  .hero,
  .hero-grid {
    min-height: 840px;
  }

  .hero-grid {
    width: min(100% - 34px, var(--shell));
    align-items: flex-end;
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 32px 24px;
    border-left-width: 4px;
    background: rgba(10, 30, 50, 0.82);
    backdrop-filter: blur(5px);
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(39px, 7.5vw, 54px);
  }

  .hero-media-overlay {
    background: linear-gradient(180deg, rgba(10, 30, 50, 0.35) 0%, rgba(10, 30, 50, 0.72) 42%, rgba(10, 30, 50, 0.92) 100%);
  }

  .hero-image {
    object-position: 55% 20%;
  }

  .hero-media .hero-bars {
    top: 18%;
    right: 6%;
    bottom: auto;
    width: 45vw;
    height: 150px;
  }

  .hero-media .hero-trend {
    top: 10%;
    right: 3%;
    bottom: auto;
    width: 50vw;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-grid {
    min-height: 880px;
  }

  .hero-grid {
    padding-top: 150px;
    padding-bottom: 32px;
  }

  .hero-copy {
    padding: 28px 19px;
  }

  .hero-copy h1 {
    font-size: clamp(29px, 8.8vw, 38px);
  }
}
