﻿:root {
  --alabaster: #f6f1e8;
  --graphite: #171412;
  --gold: #c2a46d;
  --gold-dark: #9a7d49;
  --porcelain: #e9e1d5;
  --sage: #6e7564;
  --ink-soft: rgba(23, 20, 18, 0.72);
  --surface: #fbf7ef;
  --surface-warm: #efe6d8;
  --wine: #5a1721;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--alabaster);
  color: var(--graphite);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(180deg, rgba(23, 20, 18, 0.78), rgba(23, 20, 18, 0));
}

.site-header a {
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-mark--logo {
  width: clamp(92px, 9vw, 132px);
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.brand-mark--logo img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.brand-mark span {
  font-family: "Noto Serif Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-mark small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: #fff;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.header-cta {
  border: 1px solid rgba(194, 164, 109, 0.72);
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 61;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 12px 12px auto;
  z-index: 60;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(194, 164, 109, 0.24);
  border-radius: 8px;
  padding: 82px 18px 18px;
  background: rgba(23, 20, 18, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 4px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Noto Serif Display", serif;
  font-size: 1.4rem;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-menu a:last-child {
  border: 1px solid rgba(194, 164, 109, 0.48);
  border-radius: 6px;
  margin-top: 8px;
  padding-inline: 14px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 54% 27%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.52) 0%, rgba(23, 20, 18, 0.32) 36%, rgba(23, 20, 18, 0.08) 68%, rgba(23, 20, 18, 0) 100%),
    linear-gradient(0deg, rgba(23, 20, 18, 0.08), rgba(23, 20, 18, 0));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.gold-button,
.dark-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 6px;
  padding: 15px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.gold-button {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 14px 36px rgba(194, 164, 109, 0.26);
}

.gold-button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.gold-button.full {
  width: 100%;
}

.dark-button {
  color: #fff;
  background: var(--graphite);
}

.dark-button:hover {
  background: #261f1a;
}

.outline-button {
  color: var(--graphite);
  border-color: rgba(23, 20, 18, 0.18);
  background: transparent;
}

.outline-button:hover {
  border-color: var(--gold);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(23, 20, 18, 0.14);
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(253, 251, 247, 0.84);
  cursor: pointer;
}

.section-shell {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 48px);
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 16px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-heading.light {
  color: #fff;
}

.section-heading.light p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.product-frame {
  position: relative;
}

.designSwiper {
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 80px rgba(23, 20, 18, 0.1);
}

.designSwiper,
.designSwiper .swiper-wrapper,
.designSwiper .swiper-slide {
  min-height: 560px;
}

.product-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  height: 560px;
}

.product-media {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 0;
  background: var(--porcelain);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
  overflow: hidden;
}

.product-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
}

.product-copy > p:not(.product-kicker),
.product-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
}

.product-benefits {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
  padding-top: 12px;
}

.product-benefits strong {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-benefits span {
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.swiper-pagination {
  position: static;
  width: auto;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(23, 20, 18, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.fallback-swiper .swiper-wrapper {
  position: relative;
}

.fallback-swiper .swiper-slide {
  display: none;
  opacity: 0;
}

.fallback-swiper .swiper-slide.fallback-active {
  display: block;
  animation: localFade 700ms ease both;
}

@keyframes localFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dark-band {
  background: var(--graphite);
  color: #fff;
}

.technology-section {
  padding-top: clamp(42px, 6vw, 82px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(23, 20, 18, 0.08);
  box-shadow: 0 24px 80px rgba(23, 20, 18, 0.08);
}

.tech-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  padding: clamp(24px, 3.4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 240, 0.96)),
    var(--alabaster);
}

.tech-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(194, 164, 109, 0.56);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tech-card h3 {
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 1.05rem;
  font-weight: 800;
}

.tech-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
}

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

.brand-tech-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 18px 56px rgba(23, 20, 18, 0.07);
}

.brand-tech-card h3 {
  margin: 0;
  color: var(--graphite);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-tech-card .product-benefits {
  margin-top: 2px;
}

.source-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(23, 20, 18, 0.54);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.trust-item {
  min-height: 280px;
  padding: clamp(28px, 4vw, 44px);
  background: #211c18;
}

.trust-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--gold);
  stroke-width: 1.25;
}

.trust-item h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
}

.form-section {
  max-width: 980px;
}

.premium-form {
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 46px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(23, 20, 18, 0.11);
}

.step-track {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.step-dot {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 20, 18, 0.14);
  border-radius: 50%;
  color: rgba(23, 20, 18, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.step-dot.active,
.step-dot.complete {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
}

.step-line {
  flex: 1;
  height: 1px;
  background: rgba(23, 20, 18, 0.12);
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: block;
}

.form-step legend {
  margin-bottom: 22px;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.16;
}

.choice-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.brand-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 8px;
  padding: 18px;
  cursor: pointer;
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease;
}

.brand-choice.selected {
  border-color: var(--gold);
  background: #f3eadb;
}

.brand-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.brand-choice strong,
.brand-choice small {
  display: block;
}

.brand-choice small {
  margin-top: 7px;
  color: rgba(23, 20, 18, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

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

.field-grid.single {
  margin-top: 22px;
}

.field-grid label {
  display: grid;
  gap: 9px;
}

.field-grid label > span {
  color: rgba(23, 20, 18, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field-grid input,
.field-grid select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  border-radius: 6px;
  padding: 0 16px;
  color: var(--graphite);
  background: #fff;
  outline: none;
}

.field-grid input:focus,
.field-grid select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 164, 109, 0.16);
}

.field-hint {
  color: rgba(23, 20, 18, 0.5);
  font-size: 0.78rem;
}

.drop-zone {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px dashed rgba(23, 20, 18, 0.2);
  border-radius: 8px;
  padding: 34px 20px;
  text-align: center;
  background: #f8f2e8;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.drop-zone:hover,
.drop-zone.dragging,
.drop-zone:focus-visible {
  border-color: var(--gold);
  background: #f3eadb;
  outline: none;
}

.drop-zone svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  stroke-width: 1.35;
}

.drop-zone p {
  margin: 0;
  font-weight: 600;
}

.drop-zone small {
  color: rgba(23, 20, 18, 0.54);
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.drop-zone .filepond--root {
  width: 100%;
  margin: 6px 0 0;
  font-family: "Montserrat", sans-serif;
}

.drop-zone .filepond--panel-root {
  border-radius: 8px;
  background: #eee4d4;
}

.drop-zone .filepond--drop-label {
  min-height: 116px;
  color: rgba(23, 20, 18, 0.68);
}

.drop-zone .filepond--label-action {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration-color: rgba(194, 164, 109, 0.42);
}

.drop-zone .filepond--item-panel {
  background: var(--graphite);
}

.consent-panel {
  display: grid;
  gap: 14px;
  margin: 4px 0 20px;
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: rgba(23, 20, 18, 0.68);
  font-size: 0.82rem;
  line-height: 1.6;
}

.consent-check.required {
  border: 1px solid rgba(194, 164, 109, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(246, 241, 232, 0.72);
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-check a {
  color: var(--graphite);
  font-weight: 700;
  text-decoration-color: rgba(194, 164, 109, 0.52);
  text-underline-offset: 3px;
}

.marketing-consents {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, rgba(251, 247, 239, 0.78));
}

.marketing-consents > p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketing-consents > p span {
  border: 1px solid rgba(110, 117, 100, 0.22);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--sage);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.marketing-consents > small {
  color: rgba(23, 20, 18, 0.54);
  font-size: 0.76rem;
  line-height: 1.6;
}

.file-pill {
  max-width: 100%;
  border-radius: 999px;
  padding: 8px 14px;
  color: #2f6f53;
  background: rgba(110, 117, 100, 0.14);
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.button-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 0.65fr);
  gap: 14px;
}

.form-error {
  margin: 0 0 18px;
  border-left: 3px solid #b94a48;
  padding: 10px 12px;
  color: #8a2f2d;
  background: #fff1f0;
  font-size: 0.88rem;
}

.success-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 18px 10px;
  text-align: center;
}

.success-state svg {
  width: 46px;
  height: 46px;
  color: var(--sage);
  stroke-width: 1.4;
}

.success-state h3,
.success-state p {
  margin: 0;
}

.success-state h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.success-state p {
  max-width: 560px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, #211c18 0%, var(--graphite) 54%),
    var(--graphite);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.75fr) minmax(170px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: clamp(46px, 7vw, 82px) clamp(20px, 4vw, 48px);
}

.footer-brand,
.footer-contact,
.footer-links {
  display: grid;
  align-content: start;
}

.footer-brand {
  gap: 16px;
  max-width: 560px;
}

.footer-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  line-height: 1.02;
}

.footer-brand p:last-child {
  margin: 0;
  max-width: 520px;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.85;
}

.footer-contact {
  gap: 12px;
  font-style: normal;
}

.footer-contact span,
.footer-links::before {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links::before {
  content: "Informacje";
}

.footer-contact a,
.footer-links a,
.footer-links button,
.cookie-copy a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-links button:hover,
.cookie-copy a:hover {
  color: var(--gold);
}

.footer-links {
  gap: 12px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.quick-contact {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: var(--quick-contact-bottom, clamp(14px, 3vw, 34px));
  z-index: 74;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 14px;
  width: min(342px, calc(100vw - 28px));
  border: 1px solid rgba(194, 164, 109, 0.34);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(194, 164, 109, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(90, 23, 33, 0.96) 0%, rgba(23, 20, 18, 0.98) 58%, rgba(43, 33, 27, 0.98) 100%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px);
  animation: quickContactIn 700ms ease both;
}

.site-header.menu-open ~ .quick-contact {
  display: none;
}

.quick-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 70%);
  transform: translateX(-110%);
  animation: quickContactSheen 5.5s ease-in-out 1.2s infinite;
}

.quick-contact[hidden] {
  display: none;
}

.quick-contact-mini {
  display: none;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(194, 164, 109, 0.5);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(90, 23, 33, 0.98), rgba(23, 20, 18, 0.98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(194, 164, 109, 0.08);
  cursor: pointer;
  animation: quickContactPulse 2.8s ease-in-out infinite;
}

.quick-contact-mini svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.65;
}

.quick-contact.collapsed {
  grid-template-columns: 1fr;
  width: auto;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.quick-contact.collapsed::before,
.quick-contact.collapsed .quick-contact-close,
.quick-contact.collapsed .quick-contact-glow,
.quick-contact.collapsed .quick-contact-icon,
.quick-contact.collapsed .quick-contact-copy,
.quick-contact.collapsed .quick-contact-link {
  display: none;
}

.quick-contact.collapsed .quick-contact-mini {
  display: grid;
}

.quick-contact-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  line-height: 1;
}

.quick-contact-close:hover {
  color: #fff;
  border-color: rgba(194, 164, 109, 0.62);
}

.quick-contact-glow {
  position: absolute;
  right: -44px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(194, 164, 109, 0.18);
  filter: blur(18px);
  pointer-events: none;
}

.quick-contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(194, 164, 109, 0.46);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.quick-contact-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.55;
}

.quick-contact-copy {
  display: grid;
  gap: 3px;
  padding-right: 24px;
}

.quick-contact-copy p,
.quick-contact-copy strong,
.quick-contact-copy span {
  margin: 0;
}

.quick-contact-copy p {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-contact-copy strong {
  font-family: "Noto Serif Display", serif;
  font-size: 1.28rem;
  line-height: 1.05;
}

.quick-contact-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.quick-contact-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  color: #171412;
  background: linear-gradient(135deg, #f2dfb8, var(--gold));
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(194, 164, 109, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-contact-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(194, 164, 109, 0.3);
}

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

@keyframes quickContactSheen {
  0%,
  42% {
    transform: translateX(-110%);
  }
  68%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes quickContactPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(194, 164, 109, 0.08);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38), 0 0 0 11px rgba(194, 164, 109, 0.12);
  }
}

.cookie-consent {
  position: fixed;
  inset: auto auto clamp(14px, 3vw, 34px) clamp(14px, 3vw, 34px);
  z-index: 80;
  width: min(760px, calc(100vw - 430px));
  min-width: 520px;
}

.cookie-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  gap: 24px;
  align-items: end;
  width: min(100%, 1060px);
  margin-right: auto;
  border: 1px solid rgba(194, 164, 109, 0.32);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  color: #fff;
  background: rgba(23, 20, 18, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.cookie-copy {
  display: grid;
  gap: 10px;
}

.cookie-copy h2,
.cookie-copy p {
  margin: 0;
}

.cookie-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.cookie-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}

.cookie-copy a {
  width: fit-content;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-actions {
  display: grid;
  gap: 10px;
}

.cookie-actions.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
}

.cookie-button {
  min-height: 46px;
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cookie-button.gold {
  border: 1px solid var(--gold);
  color: #fff;
  background: var(--gold);
}

.cookie-button.gold:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.cookie-button.ghost,
.cookie-button.outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.cookie-button.ghost:hover,
.cookie-button.outline:hover {
  border-color: var(--gold);
}

.cookie-preferences {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.cookie-toggle strong,
.cookie-toggle small {
  display: block;
}

.cookie-toggle strong {
  color: #fff;
  font-size: 0.9rem;
}

.cookie-toggle small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.cookie-toggle.locked {
  opacity: 0.78;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-open {
    background: transparent;
  }

  .quick-contact {
    left: auto;
    right: 12px;
    bottom: var(--quick-contact-bottom, 24px);
    width: min(326px, calc(100vw - 24px));
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 13px;
  }

  .quick-contact-icon {
    width: 42px;
    height: 42px;
  }

  .quick-contact-copy strong {
    font-size: 1.08rem;
  }

  .quick-contact-copy span {
    font-size: 0.72rem;
  }

  .quick-contact-link {
    min-height: 42px;
    font-size: 0.92rem;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero-section {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(23, 20, 18, 0.42), rgba(23, 20, 18, 0.2) 46%, rgba(23, 20, 18, 0.42)),
      linear-gradient(90deg, rgba(23, 20, 18, 0.32), rgba(23, 20, 18, 0.04));
  }

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

  .product-slide,
  .trust-grid,
  .tech-grid,
  .brand-tech-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .designSwiper,
  .designSwiper .swiper-wrapper,
  .designSwiper .swiper-slide {
    min-height: auto;
  }

  .product-slide {
    height: auto;
    min-height: auto;
  }

  .product-media {
    height: clamp(260px, 58vw, 360px);
    min-height: 0;
  }

  .tech-card {
    min-height: auto;
  }

  .trust-grid {
    gap: 1px;
  }

  .footer-inner,
  .cookie-card {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    inset: auto 12px 12px;
    width: auto;
    min-width: 0;
  }

  .cookie-card {
    align-items: stretch;
  }
}

.aos-lite [data-aos] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 850ms ease, transform 850ms ease;
}

.aos-lite [data-aos].aos-lite-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 620px) {
  .hero-copy {
    gap: 22px;
  }

  .gold-button,
  .dark-button,
  .outline-button {
    width: 100%;
    padding-inline: 16px;
  }

  .section-heading {
    text-align: left;
  }

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

  .product-benefits li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    gap: 28px;
  }

  .cookie-consent {
    inset: auto 10px 10px;
  }

  .cookie-card {
    max-height: calc(100svh - 20px);
    overflow: auto;
    padding: 18px;
  }

  .cookie-actions.compact {
    grid-template-columns: 1fr;
  }
}


