:root {
  --ink: #171421;
  --muted: #62606d;
  --paper: #f6f7f9;
  --white: #ffffff;
  --line: #dedfe6;
  --navy: #15143a;
  --navy-2: #25205f;
  --blue: #0f5e9c;
  --gold: #b98a2e;
  --gold-soft: #f1dfb7;
  --surface: #ffffff;
  --shadow: 0 18px 42px rgba(20, 20, 45, 0.12);
  --shadow-soft: 0 10px 28px rgba(20, 20, 45, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(185, 138, 46, 0.7);
  outline-offset: 3px;
}

.skip-link {
  background: var(--navy);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-160%);
  z-index: 100;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 66px;
  padding: 12px clamp(18px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 30;
  animation: headerDrop 520ms ease both;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  height: 34px;
  object-fit: contain;
  width: min(260px, 48vw);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  border-radius: 6px;
  color: #232232;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 10px;
}

.site-nav a:hover {
  background: #eceef4;
}

.site-nav .nav-cta {
  background: var(--navy-2);
  color: var(--white);
  margin-left: 4px;
  padding-inline: 14px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px 0;
  width: 25px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 22, 50, 0.88), rgba(8, 24, 55, 0.72) 40%, rgba(8, 24, 55, 0.12) 76%),
    url("assets/hero/omega-premium-hero.png") center right / cover no-repeat;
  color: var(--white);
  display: grid;
  min-height: clamp(560px, calc(100svh - 66px), 760px);
  overflow: hidden;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
  position: relative;
}

.hero::after {
  animation: heroSheen 5.8s ease-in-out 1.1s infinite;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 100%);
  content: "";
  height: 100%;
  left: -80%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  width: 42%;
}

.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 1;
  animation: heroCopyIn 780ms ease 120ms both;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

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

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 860px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--navy-2);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--navy);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  bottom: clamp(22px, 4vw, 48px);
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: 420px;
  padding: 18px;
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  z-index: 1;
  animation: panelIn 720ms ease 360ms both;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  color: var(--muted);
  margin-top: 4px;
}

.partner-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
}

.partner-viewport {
  margin: 0 auto;
  max-width: var(--max);
  overflow: hidden;
  padding: 0 18px;
  position: relative;
}

.partner-viewport::before,
.partner-viewport::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 72px;
  z-index: 1;
}

.partner-viewport::before {
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  left: 0;
}

.partner-viewport::after {
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
  right: 0;
}

.partner-track {
  align-items: center;
  display: flex;
  opacity: 0.72;
  width: max-content;
  animation: partnerIn 700ms ease 420ms both, partnerScroll 48s linear 1.1s infinite;
  will-change: transform;
}

.partner-strip:hover .partner-track {
  animation-play-state: running, paused;
}

.partner-set {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: clamp(28px, 5vw, 64px);
  padding-right: clamp(28px, 5vw, 64px);
}

.partner-set img {
  filter: grayscale(0.2);
  max-height: 34px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.95;
  width: auto;
}

.section {
  margin: 0 auto;
  max-width: calc(var(--max) + 36px);
  padding: clamp(58px, 8vw, 104px) 18px;
}

.section.compact {
  padding-bottom: clamp(36px, 5vw, 60px);
}

.section-head {
  max-width: 680px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.eyebrow),
.split-section p,
.about-band p,
.page-hero p,
.cta-band p {
  color: var(--muted);
  font-size: 1.02rem;
}

.benefit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px auto 0;
  max-width: 880px;
}

.benefit-grid article,
.category-card,
.download-card,
.contact-grid article,
.process-list article,
.product-card,
.sortiment-card,
.admin-panel,
.admin-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.benefit-grid article {
  padding: 24px;
}

.benefit-grid span {
  background: var(--gold);
  display: block;
  height: 2px;
  margin-bottom: 16px;
  width: 36px;
}

.benefit-grid p,
.category-card p,
.download-card p,
.contact-grid p,
.process-list p,
.product-card p,
.sortiment-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.category-grid,
.download-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.category-card {
  color: var(--ink);
  min-height: 100%;
  overflow: hidden;
  padding: 16px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.category-card img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s ease;
}

.category-card h3 {
  color: var(--navy);
  margin-top: 18px;
}

.category-card span {
  color: var(--navy-2);
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 14px;
}

.category-card:hover,
.sortiment-card:hover,
.product-card:hover,
.download-card:hover,
.benefit-grid article:hover {
  border-color: rgba(185, 138, 46, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.category-card:hover img,
.sortiment-card:hover img,
.product-card:hover img {
  transform: scale(1.035);
}


.assortment-carousel {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: clamp(34px, 5vw, 54px) auto 0;
  max-width: 1240px;
}

.assortment-track {
  display: grid;
  gap: 16px;
  grid-auto-columns: calc((100% - 48px) / 3.65);
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 3px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.assortment-track::-webkit-scrollbar {
  display: none;
}

.assortment-card {
  background: #f5f6f8;
  border: 1px solid rgba(17, 19, 59, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(17, 19, 59, 0.10);
  color: var(--white);
  display: block;
  min-height: 322px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.assortment-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.5s ease;
  width: 100%;
}

.assortment-card::after {
  background: linear-gradient(180deg, rgba(17, 19, 59, 0) 34%, rgba(17, 19, 59, 0.56) 66%, rgba(21, 23, 64, 0.92) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.assortment-overlay {
  align-items: end;
  bottom: 0;
  display: grid;
  left: 0;
  min-height: 44%;
  padding: 30px 24px 24px;
  position: absolute;
  right: 0;
  text-align: left;
  z-index: 1;
}

.assortment-overlay > span {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 24px;
  font-weight: 900;
  gap: 12px;
  justify-content: space-between;
  line-height: 1.08;
  max-width: 90%;
  text-wrap: balance;
}

.assortment-overlay > span::after {
  color: #c6922e;
  content: "→";
  flex: 0 0 auto;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.22s ease, color 0.22s ease;
}

.assortment-card:hover {
  border-color: rgba(198, 146, 46, 0.58);
  box-shadow: 0 18px 38px rgba(17, 19, 59, 0.16);
  transform: translateY(-4px);
}

.assortment-card:hover img {
  transform: scale(1.035);
}

.assortment-card:hover .assortment-overlay > span::after {
  color: #d8aa52;
  transform: translateX(4px);
}

.assortment-control {
  align-items: center;
  background: #11133b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(17, 19, 59, 0.16);
  color: #c6922e;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.55rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 40px;
}

.assortment-control:hover,
.assortment-control:focus-visible {
  background: #151740;
  color: var(--white);
  transform: translateY(-1px);
}

.assortment-control:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
}

@media (max-width: 1180px) {
  .assortment-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .assortment-overlay > span {
    font-size: 23px;
  }
}

@media (max-width: 820px) {
  .assortment-carousel {
    grid-template-columns: 1fr;
  }

  .assortment-control {
    display: none;
  }

  .assortment-track {
    gap: 16px;
    grid-auto-columns: min(82vw, 420px);
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
  }
}

@media (max-width: 520px) {
  .assortment-card {
    min-height: 292px;
  }

  .assortment-overlay {
    min-height: 42%;
    padding: 28px 22px 22px;
  }

  .assortment-overlay > span {
    font-size: 22px;
    max-width: 92%;
  }

  .assortment-track {
    grid-auto-columns: 82vw;
  }
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  padding: 22px;
}

.process-list strong {
  color: var(--gold);
}

.promise-section,
.values-section,
.team-section,
.product-highlight,
.billing-section,
.testimonials-section {
  max-width: var(--max);
}

.promise-grid,
.values-grid,
.team-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.promise-grid article,
.values-grid article,
.team-grid article,
.product-note,
.billing-section ul,
.testimonial-grid blockquote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 0;
  padding: 22px;
}

.promise-grid p,
.values-grid p,
.product-note p,
.billing-section p,
.testimonial-grid p,
.team-grid span {
  color: var(--muted);
}

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

.team-grid article {
  box-shadow: none;
}

.team-grid strong,
.team-grid span {
  display: block;
}

.team-grid strong {
  color: var(--navy);
}

.team-grid span {
  font-size: 0.9rem;
  margin-top: 4px;
}

.product-highlight,
.billing-section {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.product-note ul,
.billing-section ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
}

.product-note li + li,
.billing-section li + li {
  margin-top: 8px;
}

.billing-section {
  background: linear-gradient(135deg, #ffffff, #eef1f6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.testimonial-grid blockquote {
  display: grid;
  gap: 14px;
}

.testimonial-grid p {
  font-size: 1.02rem;
}

.testimonial-grid cite {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.about-band,
.cta-band {
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #20205c);
  border-radius: 0;
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.about-band p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  margin: 0;
}

.facts div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
}

.facts dt {
  font-size: 2rem;
  font-weight: 900;
}

.facts dd {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.download-card-top,
.download-card-foot {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.download-card-top span,
.download-card-foot small {
  color: var(--gold);
  font-weight: 800;
}

.download-card-top strong {
  color: #cacbd4;
  font-size: 2rem;
}

.contact-section {
  max-width: var(--max);
}

.contact-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  margin-top: 28px;
}

.contact-grid article,
.contact-form {
  padding: clamp(24px, 4vw, 34px);
}

.contact-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-grid article span {
  color: var(--gold);
  font-weight: 900;
}

.contact-grid article a {
  color: var(--navy-2);
  display: block;
  font-weight: 800;
  margin-top: 10px;
}

.contact-form {
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
}

.contact-form label,
.admin-form label,
.search-field {
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 7px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select,
.search-field input {
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

.contact-form textarea,
.admin-form textarea {
  resize: vertical;
}


.form-trap {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}


.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.privacy-notice {
  align-items: center;
  background: rgba(17, 17, 26, 0.34);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 90;
}

.privacy-notice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 20, 45, 0.18);
  max-width: 360px;
  padding: 22px;
  text-align: center;
  width: min(100%, 360px);
}

.privacy-notice-card h2 {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.privacy-notice-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.privacy-notice-card div {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.privacy-notice-card a {
  color: var(--navy-2);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 9px 0;
}

.privacy-notice-card button {
  background: var(--navy-2);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  min-height: 40px;
  min-width: 86px;
  padding: 9px 14px;
}

@media (max-width: 420px) {
  .privacy-notice-card {
    max-width: 320px;
    padding: 20px;
  }
}

.site-footer {
  background: #121326;
  border-top: 4px solid var(--gold);
  color: var(--white);
  padding: clamp(42px, 6vw, 66px) clamp(18px, 5vw, 72px) 0;
}

.footer-main {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.footer-brand img {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(241, 223, 183, 0.34);
  border-radius: 8px;
  height: 44px;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 6px;
  width: min(270px, 100%);
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  font-size: 0.98rem;
  margin-bottom: 18px;
  max-width: 420px;
}

.footer-cta {
  align-items: center;
  background: var(--gold);
  border-radius: 6px;
  color: #171421;
  display: inline-flex;
  font-weight: 900;
  min-height: 42px;
  padding: 10px 14px;
}

.footer-column {
  align-content: start;
  display: grid;
  gap: 9px;
}

.footer-column h2 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 800;
  width: fit-content;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold-soft);
}

.footer-contact p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

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

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: clamp(34px, 5vw, 52px) auto 0;
  max-width: var(--max);
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.page-hero {
  background: linear-gradient(135deg, #eceef4, #ffffff);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.page-hero h1,
.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 720px;
}

.sortiment-toolbar {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sortiment-toolbar h2 {
  margin-bottom: 0;
}

.search-field {
  margin: 0;
  max-width: 360px;
  width: 100%;
}

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

.sortiment-card {
  display: grid;
  gap: 18px;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

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

.sortiment-card-body {
  padding: 22px 22px 22px 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.product-tags span {
  background: #eef0f6;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 9px;
}

.product-category-hero {
  background: linear-gradient(135deg, #f0f2f6, #ffffff);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.breadcrumb {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-bottom: 24px;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.product-card {
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s ease;
}

.product-card div {
  padding: 18px;
}

.product-card span {
  color: var(--gold);
  display: inline-block;
  font-weight: 900;
  margin-top: 12px;
}

.admin-body {
  background: #eef1f5;
  color: #1c1b25;
}

.admin-login,
.admin-dashboard {
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px 18px;
}

.admin-login {
  align-items: center;
  display: grid;
  min-height: 100svh;
  max-width: 460px;
}

.admin-login-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.admin-login-card img,
.admin-sidebar img {
  height: 38px;
  object-fit: contain;
  object-position: left;
  width: 240px;
}

.admin-login-card label.admin-form {
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 7px;
  margin-bottom: 14px;
}

.admin-login-card .button,
.admin-sidebar-actions .button {
  width: 100%;
}

.admin-dashboard {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 292px minmax(0, 1fr);
}

.admin-sidebar,
.admin-panel,
.admin-topbar,
.admin-overview article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.admin-sidebar {
  display: grid;
  gap: 22px;
  padding: 18px;
  position: sticky;
  top: 20px;
}

.admin-brand-block {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.admin-brand-block span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar-actions {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.admin-workspace {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.admin-topbar {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px;
}

.admin-topbar h1,
.admin-topbar p,
.admin-panel-head h2,
.admin-panel-head p {
  margin-bottom: 0;
}

.admin-topbar > div:first-child p:not(.eyebrow),
.admin-panel-head span {
  color: var(--muted);
}

.admin-topbar-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.admin-topbar-actions .button.light {
  border-color: var(--line);
}

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

.admin-overview article {
  border-left: 4px solid var(--gold);
  padding: 18px;
}

.admin-overview strong,
.admin-overview span {
  display: block;
}

.admin-overview strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.admin-overview span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 8px;
}

.admin-panel {
  padding: clamp(18px, 3vw, 28px);
}

.admin-panel-head {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.admin-panel-head > span,
.admin-panel-head > .button {
  flex: 0 0 auto;
  max-width: 300px;
}

.admin-tabs {
  display: grid;
  gap: 8px;
}

.admin-tabs button,
.product-admin-row button,
.sortiment-editor-head button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.admin-tabs button {
  color: var(--ink);
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 10px 12px;
  text-align: left;
}

.admin-tabs button:hover {
  background: #f2f4f8;
  border-color: var(--line);
}

.admin-tabs button span {
  font-size: 0.96rem;
}

.admin-tabs button small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-tabs .is-active {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: var(--white);
}

.admin-tabs .is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: block;
}

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

.admin-form h3 {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  background: #fbfcfe;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: rgba(15, 94, 156, 0.7);
  box-shadow: 0 0 0 3px rgba(15, 94, 156, 0.12);
  outline: 0;
}

.span-2 {
  grid-column: 1 / -1;
}

.admin-status {
  color: var(--navy-2);
  font-weight: 800;
  margin: 12px 0 0;
}

.admin-status[data-tone="success"] {
  color: #176a43;
}

.admin-status[data-tone="error"] {
  color: #a32828;
}

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

.admin-split .admin-form,
.category-edit-card,
.sortiment-editor-card {
  background: #f8f9fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.sortiment-admin-list,
.admin-category-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.sortiment-editor-card {
  display: grid;
  gap: 14px;
}

.sortiment-editor-head {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 88px 1fr auto;
}

.sortiment-editor-head img {
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  width: 88px;
}

.sortiment-editor-head strong,
.product-admin-row span {
  color: var(--navy);
  display: block;
  font-weight: 900;
}

.sortiment-editor-head p {
  color: var(--muted);
  margin: 4px 0 6px;
}

.sortiment-editor-head a {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.sortiment-editor-head button,
.product-admin-row button[data-delete-product] {
  background: #fff4f2;
  border-color: #f0c4bb;
  color: #9d2c1f;
  min-height: 38px;
  padding: 8px 10px;
}

.sortiment-edit-grid {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.product-admin-list {
  display: grid;
  gap: 10px;
}

.product-admin-row {
  align-items: center;
  background: var(--white);
  border: 1px solid #eceef4;
  border-radius: 6px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto auto;
  padding: 10px;
}

.product-admin-edit {
  align-items: start;
  grid-template-columns: 78px minmax(0, 1fr) auto;
}

.product-admin-edit > img {
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  width: 78px;
}

.product-admin-fields {
  display: grid;
  gap: 0 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-admin-actions {
  display: grid;
  gap: 8px;
}

.product-admin-row small {
  background: #eef3fa;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 900;
  padding: 5px 9px;
}

.category-edit-card {
  display: grid;
  gap: 12px;
}

.category-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.error-message {
  background: #fff1f1;
  border: 1px solid #ffc9c9;
  border-radius: 6px;
  color: #9d1f1f;
  padding: 10px;
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-width: 820px;
  padding: clamp(22px, 4vw, 34px);
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.legal-content p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms);
}

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

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroSheen {
  0%,
  42% {
    left: -80%;
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  78%,
  100% {
    left: 128%;
    opacity: 0;
  }
}

@keyframes partnerIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.72;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

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

  .site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    width: 100%;
  }

  .benefit-grid,
  .category-grid,
  .download-grid,
  .contact-grid,
  .product-grid,
  .promise-grid,
  .values-grid,
  .testimonial-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .about-band,
  .cta-band,
  .product-highlight,
  .billing-section,
  .admin-dashboard,
  .admin-split {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-topbar,
  .admin-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-topbar-actions {
    width: 100%;
  }

  .admin-topbar-actions .button {
    width: 100%;
  }

  .admin-panel-head > span,
  .admin-panel-head > .button {
    max-width: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 700px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 22, 50, 0.9), rgba(8, 24, 55, 0.72)),
      url("assets/hero/omega-premium-hero.png") center / cover no-repeat;
    min-height: 620px;
    padding-bottom: 160px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
  }

  .partner-viewport {
    padding-inline: 0;
  }

  .partner-viewport::before,
  .partner-viewport::after {
    width: 38px;
  }

  .partner-set img {
    max-height: 30px;
  }

  .benefit-grid,
  .category-grid,
  .download-grid,
  .contact-grid,
  .product-grid,
  .promise-grid,
  .values-grid,
  .testimonial-grid,
  .team-grid,
  .facts,
  .admin-overview,
  .admin-form-grid,
  .sortiment-edit-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard {
    padding-inline: 12px;
  }

  .admin-topbar-actions,
  .category-edit-actions {
    flex-direction: column;
  }

  .sortiment-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .sortiment-card img {
    min-height: 200px;
  }

  .sortiment-card-body {
    padding: 0 18px 18px;
  }



  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .product-admin-row,
  .product-admin-edit,
  .product-admin-fields,
  .sortiment-editor-head {
    grid-template-columns: 1fr;
  }

  .product-admin-edit > img {
    width: 100%;
  }
}


.billing-section {
  align-items: center;
  background: var(--navy);
  border: 0;
  color: var(--white);
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  padding-block: clamp(42px, 6vw, 70px);
}

.billing-section .eyebrow {
  color: var(--gold-soft);
}

.billing-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  max-width: 620px;
}

.billing-section p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
}

.billing-section ul {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
  padding: 24px;
}

.billing-section li {
  padding-left: 28px;
  position: relative;
}

.billing-section li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 2px;
  position: absolute;
  top: 0.65em;
  width: 8px;
}

.contact-section {
  padding-block: clamp(52px, 7vw, 86px);
}

.contact-section .section-head {
  max-width: 760px;
}

.contact-grid {
  align-items: stretch;
  gap: 20px;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  max-width: 980px;
}

.contact-grid article {
  background: linear-gradient(135deg, #ffffff, #f7f8fb);
  border-left: 5px solid var(--gold);
  justify-content: flex-start;
  min-height: auto;
  padding: clamp(28px, 4vw, 42px);
}

.contact-grid article h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin: 8px 0 10px;
}

.contact-grid article p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.contact-form {
  background: linear-gradient(135deg, var(--navy), #25205f);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 42px);
}

.contact-form textarea {
  min-height: 130px;
}

.contact-form .button {
  margin-top: 4px;
}

@media (max-width: 820px) {
  .welcome-grid,
  .billing-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .welcome-grid article {
    min-height: 0;
  }
}


/* Contact page refinement */
.contact-page .page-hero {
  background: linear-gradient(135deg, #f4f6fa, #ffffff);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 86px);
}

.contact-page .page-hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  max-width: 760px;
}

.contact-page .page-hero p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 680px;
}

.contact-page-section {
  padding-block: clamp(44px, 6vw, 72px);
}

.contact-page .contact-grid {
  margin-inline: auto;
  max-width: 1040px;
}

.contact-page .contact-grid article {
  min-height: 360px;
}

.contact-page .contact-form {
  min-height: 360px;
}

.contact-page .contact-form button {
  width: fit-content;
}

@media (max-width: 820px) {
  .contact-page .contact-grid article,
  .contact-page .contact-form {
    min-height: 0;
  }
}


/* Mobile polish for Sortiment pages */
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 62px;
    padding: 10px 14px;
  }

  .brand img {
    height: 30px;
    width: min(210px, 58vw);
  }

  .page-hero,
  .product-category-hero {
    padding: 42px 16px 46px;
    text-align: left;
  }

  .page-hero h1,
  .product-category-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: none;
  }

  .page-hero p,
  .product-category-hero p {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .section {
    padding: 42px 14px;
  }

  .breadcrumb {
    align-items: center;
    gap: 6px;
    line-height: 1.35;
    margin-bottom: 18px;
    overflow-wrap: anywhere;
  }

  .breadcrumb a,
  .breadcrumb strong {
    min-width: 0;
  }

  .sortiment-toolbar {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px;
  }

  .sortiment-toolbar h2 {
    font-size: 1.65rem;
  }

  .search-field {
    max-width: none;
  }

  .search-field input {
    min-height: 46px;
  }

  .sortiment-grid,
  .product-grid,
  .download-grid {
    gap: 16px;
  }

  .sortiment-card {
    border-radius: var(--radius);
    gap: 0;
  }

  .sortiment-card img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .sortiment-card-body {
    padding: 18px;
  }

  .sortiment-card-body h3,
  .product-card h3 {
    font-size: 1.22rem;
    line-height: 1.2;
  }

  .product-tags {
    gap: 6px;
    margin: 14px 0 16px;
  }

  .product-tags span {
    font-size: 0.76rem;
    line-height: 1.2;
    padding: 6px 8px;
  }

  .sortiment-card .button,
  .download-card .button,
  .cta-band .button {
    width: 100%;
  }

  .product-card img {
    aspect-ratio: 16 / 10;
  }

  .product-card div {
    padding: 16px;
  }

  .product-card span {
    margin-top: 8px;
  }

  .cta-band {
    gap: 18px;
    padding-block: 36px;
  }

  .cta-band h2 {
    font-size: 1.75rem;
  }

  .footer-main {
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .page-hero,
  .product-category-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-hero h1,
  .product-category-hero h1 {
    font-size: 1.9rem;
  }

  .sortiment-toolbar,
  .sortiment-card-body,
  .product-card div,
  .download-card {
    padding: 16px;
  }
}


/* Extra mobile safeguards */
@media (max-width: 760px) {
  h1,
  h2,
  h3,
  .button,
  .product-tags span,
  .site-nav a {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .button {
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .section-head {
    max-width: none;
  }

  .section-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .section-head p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .product-category-hero .eyebrow,
  .page-hero .eyebrow {
    margin-bottom: 10px;
  }

  .product-category-hero .breadcrumb + .eyebrow {
    margin-top: 4px;
  }

  .product-grid {
    margin-top: 20px;
  }

  .product-card,
  .sortiment-card,
  .download-card {
    box-shadow: 0 8px 22px rgba(20, 20, 45, 0.08);
  }

  .site-footer {
    margin-top: 0;
  }
}


/* Welcome section using uploaded artwork */
.welcome-section {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(62px, 8vw, 104px);
  text-align: center;
}

.welcome-head {
  margin-bottom: clamp(42px, 5vw, 64px);
}

.welcome-head p {
  color: var(--gold);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.welcome-head h2 {
  color: var(--navy);
  font-size: clamp(3rem, 6.2vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 18px;
}

.welcome-head span {
  color: var(--muted);
  display: block;
  font-size: clamp(1.05rem, 1.7vw, 1.36rem);
  line-height: 1.45;
}

.welcome-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.welcome-grid article {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: 0;
  padding: 0;
}

.welcome-grid article:hover {
  box-shadow: none;
  transform: none;
}

.welcome-grid h3 {
  color: var(--navy);
  font-size: clamp(1.22rem, 1.6vw, 1.5rem);
  font-weight: 900;
  line-height: 1.16;
  margin-bottom: 14px;
}

.welcome-grid p {
  color: #4f4e5b;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 390px;
}

.welcome-more {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  font-weight: 900;
  gap: 14px;
  margin-top: clamp(34px, 5vw, 62px);
}

.welcome-more span {
  color: var(--gold);
  font-size: 1.4em;
  line-height: 1;
  transform: translateY(-1px);
}

.welcome-more:hover {
  color: var(--navy-2);
}

@media (max-width: 860px) {
  .welcome-grid {
    gap: 40px;
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

@media (max-width: 480px) {
  .welcome-section {
    padding-block: 48px 58px;
  }

  .welcome-head h2 {
    font-size: 2.65rem;
  }

  .welcome-head span,
  .welcome-grid p {
    font-size: 1rem;
  }

  .welcome-grid h3 {
    font-size: 1.55rem;
  }
}


/* Welcome separate image assets */
.welcome-figure {
  aspect-ratio: 1;
  background: none !important;
  border-radius: 0;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(20, 20, 45, 0.10));
  height: 110px;
  margin: 0 auto clamp(25px, 2.5vw, 35px);
  max-height: 110px;
  max-width: 110px;
  object-fit: contain;
  transform: scale(3);
  transform-origin: center center;
  width: 110px;
}

.welcome-grid article:nth-child(2) .welcome-figure {
  max-width: 110px;
  transform: scale(3.7);
}

.welcome-grid article:nth-child(3) .welcome-figure {
  transform: scale(2.75);
}

@media (max-width: 860px) {
  .welcome-figure,
  .welcome-grid article:nth-child(2) .welcome-figure {
    height: 110px;
    max-height: 110px;
    max-width: 110px;
    width: 110px;
  }
}

@media (max-width: 480px) {
  .welcome-figure,
  .welcome-grid article:nth-child(2) .welcome-figure {
    height: 100px;
    max-height: 100px;
    max-width: 100px;
    width: 100px;
  }
}

/* Homepage final polish */

#vorteile {
  padding-bottom: clamp(24px, 3vw, 40px);
}

#sortiment {
  padding-top: clamp(44px, 5vw, 68px);
}

.welcome-section {
  padding-block: clamp(48px, 6vw, 78px);
}

.assortment-carousel {
  max-width: 1280px;
}

.assortment-track {
  grid-auto-columns: calc((100% - 48px) / 3.5);
}

.assortment-card {
  min-height: 350px;
}

.assortment-overlay {
  min-height: 42%;
  padding: 30px 26px 25px;
}

.assortment-overlay > span {
  font-size: 22px;
  line-height: 1.08;
  max-width: 96%;
}

.download-grid {
  gap: 20px;
  margin-top: 34px;
}

.download-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  border: 1px solid rgba(21, 20, 58, 0.10);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(20, 20, 45, 0.08);
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr auto;
  min-height: 270px;
  padding: 24px;
}

.download-icon {
  align-items: center;
  background: #15143a;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(21, 20, 58, 0.18);
  color: #f1dfb7;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.08em;
  position: relative;
  width: 42px;
}

.download-icon::after {
  border-left: 10px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.72);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.download-card-body {
  display: grid;
  gap: 8px;
}

.download-card-body span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.15;
  margin: 0;
}

.download-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.download-card-foot {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-top: 16px;
}

.download-card-foot small {
  color: #767482;
  font-size: 0.84rem;
  font-weight: 800;
}

.download-card .button {
  border-color: rgba(185, 138, 46, 0.38);
  color: var(--navy);
  min-height: 40px;
  padding: 9px 13px;
}

.download-card:hover {
  border-color: rgba(185, 138, 46, 0.5);
  box-shadow: 0 18px 38px rgba(20, 20, 45, 0.13);
}

.contact-grid article {
  min-height: 100%;
}

.contact-person {
  background: rgba(21, 20, 58, 0.04);
  border: 1px solid rgba(21, 20, 58, 0.08);
  border-radius: 8px;
  margin: 10px 0 12px;
  padding: 16px;
}

.contact-person strong {
  color: var(--navy);
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-person p {
  margin: 0;
}

@media (max-width: 1180px) {
  .assortment-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .assortment-card {
    min-height: 330px;
  }

  .assortment-overlay > span {
    font-size: 21px;
  }
}

@media (max-width: 820px) {
  #sortiment {
    padding-top: 42px;
  }

  .assortment-track {
    gap: 16px;
    grid-auto-columns: min(82vw, 430px);
  }

  .assortment-card {
    min-height: 312px;
  }

  .download-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .assortment-track {
    grid-auto-columns: 82vw;
  }

  .assortment-card {
    min-height: 300px;
  }

  .assortment-overlay > span {
    font-size: 20px;
    max-width: 98%;
  }

  .download-card-foot {
    align-items: stretch;
    flex-direction: column;
  }
}

.contact-person {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 76px minmax(0, 1fr);
}

.contact-person-photo {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #15143a, #25205f);
  border: 1px dashed rgba(185, 138, 46, 0.65);
  border-radius: 8px;
  color: #f1dfb7;
  display: grid;
  font-size: 0.72rem;
  font-weight: 900;
  justify-items: center;
  letter-spacing: 0.08em;
  line-height: 1.1;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.contact-person h4 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.15;
  margin: 0 0 6px;
}

@media (max-width: 420px) {
  .contact-person {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}

/* Assortment carousel refinements */
.assortment-carousel {
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.assortment-overlay {
  padding-inline: 22px;
}

.assortment-overlay > span {
  font-size: 21px;
  gap: 10px;
  line-height: 1.05;
  max-width: 100%;
}

.assortment-card:nth-child(3) .assortment-overlay > span {
  font-size: 19px;
  letter-spacing: -0.01em;
}

.assortment-overlay > span::after {
  align-items: center;
  background: rgba(198, 146, 46, 0.16);
  border: 1px solid rgba(198, 146, 46, 0.38);
  border-radius: 999px;
  display: inline-flex;
  font-size: 17px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.assortment-control {
  background: linear-gradient(135deg, #11133b, #1b1d50);
  border-color: rgba(198, 146, 46, 0.28);
  box-shadow: 0 10px 22px rgba(17, 19, 59, 0.18);
  color: #c6922e;
  font-size: 1.35rem;
  height: 42px;
  width: 42px;
}

@media (max-width: 820px) {
  .assortment-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .assortment-control {
    display: inline-flex;
    font-size: 1.1rem;
    height: 34px;
    width: 34px;
  }

  .assortment-track {
    margin-inline: 0;
    padding-inline: 0;
  }

  .assortment-overlay > span {
    font-size: 20px;
  }

  .assortment-card:nth-child(3) .assortment-overlay > span {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .assortment-carousel {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
  }

  .assortment-control {
    height: 32px;
    width: 32px;
  }

  .assortment-track {
    grid-auto-columns: 76vw;
  }

  .assortment-overlay {
    padding-inline: 18px;
  }

  .assortment-overlay > span {
    font-size: 19px;
  }

  .assortment-card:nth-child(3) .assortment-overlay > span {
    font-size: 17px;
  }

  .assortment-overlay > span::after {
    height: 26px;
    width: 26px;
  }
}
