:root {
  --green: #1f5f35;
  --green-deep: #123c25;
  --green-soft: #e7efe7;
  --accent: #a86f35;
  --cardboard: #c5965b;
  --paper: #f7f3eb;
  --paper-strong: #eee4d4;
  --ink: #151815;
  --graphite: #2a2d28;
  --muted: #666b62;
  --line: #ddd4c5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(21, 24, 21, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--green);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 212, 197, 0.75);
  backdrop-filter: blur(18px);
}

.navbar {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}

.brand img {
  width: 178px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--graphite);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--green-deep);
  background: var(--green-soft);
  outline: none;
}

.nav-links .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-links .header-cta:hover,
.nav-links .header-cta:focus-visible {
  background: var(--green-deep);
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.site-header.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle span::before {
  transform: translateY(7px) rotate(90deg);
}

.site-header.nav-open .nav-toggle span::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: calc(92svh - 78px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(12, 18, 13, 0.88) 0%, rgba(12, 18, 13, 0.62) 36%, rgba(12, 18, 13, 0.16) 72%),
    var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  overflow: hidden;
}

.hero-home {
  --hero-image: url("../assets/hero-opakowania.jpg");
  --hero-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(78px, 11vh, 132px) 0 clamp(38px, 7vh, 58px);
}

.hero-content {
  max-width: 760px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.72rem, 6.4vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-lead,
.page-hero .lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 2vw, 1.34rem);
  line-height: 1.7;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.44);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button.ghost {
  color: var(--green-deep);
  background: var(--white);
  border-color: var(--line);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--green);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.23);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta div {
  padding: 18px;
  background: rgba(15, 26, 18, 0.52);
}

.hero-meta strong {
  display: block;
  font-size: clamp(1.22rem, 3vw, 2.05rem);
  line-height: 1.1;
}

.hero-meta span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

main {
  overflow: clip;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section.compact {
  padding: clamp(48px, 7vw, 86px) 0;
}

.section.paper {
  background: var(--paper);
}

.section.green {
  color: var(--white);
  background: var(--green-deep);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 66px);
}

.section-head h2,
.editorial-copy h2,
.cta-panel h2,
.contact-panel h2,
.seo-article h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.section-head p,
.editorial-copy p,
.feature-card p,
.offer-card p,
.process-card p,
.contact-panel p,
.seo-article p {
  color: var(--muted);
}

.contact-panel a {
  color: var(--green-deep);
  font-weight: 800;
}

.green .section-head p,
.green .feature-card p,
.green .process-card p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-text {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.editorial-grid.reverse {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 0.9fr);
}

.editorial-grid.reverse .editorial-copy {
  order: 2;
}

.editorial-grid.reverse .editorial-media {
  order: 1;
}

.editorial-copy h2 {
  margin-bottom: 24px;
}

.editorial-copy .large {
  color: var(--graphite);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.45;
}

.editorial-media {
  position: relative;
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 250px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(18, 60, 37, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 750;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stats-strip div {
  padding: 22px;
  background: var(--white);
}

.stats-strip strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.6rem;
  line-height: 1.1;
}

.stats-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-grid,
.advantages-grid,
.offer-grid,
.audience-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantages-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.offer-card,
.process-card,
.contact-method,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card,
.process-card,
.contact-method,
.faq-item {
  padding: clamp(22px, 3vw, 32px);
}

.feature-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 95, 53, 0.5);
  box-shadow: var(--shadow);
}

.card-number {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.feature-card h3,
.offer-card h2,
.offer-card h3,
.process-card h3,
.contact-method h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.22;
}

.green .feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.green .feature-card h3 {
  color: var(--white);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.4fr) minmax(0, 0.6fr);
  overflow: hidden;
  min-height: 280px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.offer-card figure {
  margin: 0;
  min-height: 100%;
}

.offer-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.offer-card img.image-focus-right {
  object-position: right center;
}

.offer-card img.image-focus-left {
  object-position: left center;
}

.offer-card img.image-contain {
  object-fit: contain;
  background: #ffffff;
}

.offer-card .offer-body {
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-card ul,
.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li,
.clean-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 9px;
  color: var(--muted);
}

.offer-card li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--green-deep);
  font-weight: 850;
}

.offer-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.offer-link:hover::after,
.offer-link:focus-visible::after {
  width: 36px;
}

.offer-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 60, 37, 0.9), rgba(18, 60, 37, 0.66)),
    var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.hero-offer {
  --hero-image: url("../assets/oferta-opakowania.jpg");
  --hero-position: center;
}

.hero-production {
  --hero-image: url("../assets/magazyn-logistyka.jpg");
  --hero-position: center;
}

.hero-contact {
  --hero-image: url("../assets/tektura-recykling.jpg");
  --hero-position: center;
}

.page-hero .container {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: 128px;
  padding-bottom: clamp(58px, 8vw, 88px);
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 750;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

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

.spec-item {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.spec-item span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.spec-item h3 {
  margin: 12px 0 8px;
}

.process-timeline {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-card {
  position: relative;
  min-height: 255px;
  background: var(--paper);
}

.process-card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.process-card h3 {
  margin-top: 22px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.34fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background: var(--green-deep);
  border-radius: var(--radius);
}

.cta-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .button.ghost {
  color: var(--green-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.38fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 95, 53, 0.11);
  outline: none;
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green-deep);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-method {
  background: var(--paper);
}

.contact-method p {
  margin: 8px 0 0;
}

.contact-method strong {
  color: var(--ink);
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-item p {
  margin-bottom: 0;
}

.seo-article {
  max-width: 900px;
}

.seo-article h2 {
  margin-bottom: 24px;
}

.seo-article h3 {
  margin-top: 30px;
  color: var(--green-deep);
}

.footer-visual {
  min-height: 260px;
  background-image:
    linear-gradient(90deg, rgba(247, 243, 235, 0.95), rgba(247, 243, 235, 0.48), rgba(247, 243, 235, 0.2)),
    url("../assets/footer-tektura.jpg");
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--line);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(240px, 0.2fr);
  gap: 42px;
}

.footer-brand img {
  width: min(250px, 100%);
  max-height: 92px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p,
.footer-data p,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-data a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-data {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-data strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  outline: none;
}

.legal-line {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-line .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .header-cta {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
  }

  .header-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: calc(92svh - 78px);
    background-position: 64% center;
  }

  .hero-meta,
  .section-head,
  .editorial-grid,
  .editorial-grid.reverse,
  .cta-panel,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .editorial-grid.reverse .editorial-copy,
  .editorial-grid.reverse .editorial-media {
    order: initial;
  }

  .category-grid,
  .advantages-grid,
  .audience-grid,
  .spec-grid,
  .process-timeline,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .offer-card img {
    min-height: 260px;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-inner {
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .hero-meta {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .navbar {
    min-height: 70px;
  }

  .brand img {
    display: block;
    width: 136px;
    max-height: 48px;
  }

  .brand-mark {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .nav-links {
    top: 70px;
  }

  .hero {
    min-height: calc(90svh - 70px);
    background-image:
      linear-gradient(180deg, rgba(12, 18, 13, 0.78) 0%, rgba(12, 18, 13, 0.78) 55%, rgba(12, 18, 13, 0.9) 100%),
      var(--hero-image);
    background-position: 69% center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-inner {
    padding-top: 74px;
    padding-bottom: 34px;
  }

  .hero-meta {
    display: none;
  }

  .hero-meta,
  .category-grid,
  .advantages-grid,
  .audience-grid,
  .spec-grid,
  .process-timeline,
  .faq-grid,
  .form-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .page-hero .container {
    min-height: 480px;
  }

  .section {
    padding: 68px 0;
  }

  .cta-panel {
    padding: 28px;
  }

  .legal-line .container {
    flex-direction: column;
  }

  .image-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
