/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Fix: CSS display properties must not override [hidden] attribute */
[hidden] { display: none !important; }

:root {
  --bg:      #1A1614;
  --bg2:     #221E1B;
  --bgcard:  #2A2420;
  --bgcard2: #322B26;
  --gold:    #C9A96E;
  --gold2:   #D4B87A;
  --gold3:   #F5E6C8;
  --golddim: rgba(201,169,110,.12);
  --goldbdr: rgba(201,169,110,.22);
  --t1:      #F5F0EB;
  --t2:      #9A8F85;
  --t3:      #6B6560;
  --bdr:     rgba(201,169,110,.12);
  --bdr2:    rgba(201,169,110,.25);
  --red:     #ff6b6b;
  --reddim:  rgba(255,107,107,.1);
  --r:       8px;
  --r2:      14px;
  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:    .25s ease;
  --ease2:   .45s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media(min-width:768px) { .container { padding: 0 48px; } }

/* ===== HELPERS ===== */
.gold, em.gold { color: var(--gold); font-style: normal; }
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 500; letter-spacing: .02em;
  border-radius: var(--r); border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: all var(--ease);
  position: relative; overflow: hidden;
}
.btn--sm  { padding: 9px 20px; font-size: .875rem; }
.btn--lg  { padding: 15px 34px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--gold { background: var(--gold); color: #1A1614; }
.btn--gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,169,110,.35); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--goldbdr); }
.btn--outline-gold:hover { background: var(--golddim); border-color: var(--gold); }
.btn-loading { display: none; }

/* Pulse animation on primary CTA buttons */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,.5); }
  50%       { box-shadow: 0 0 0 10px rgba(201,169,110,0); }
}
.btn--pulse { animation: pulse-glow 3s ease-in-out infinite; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
@media(min-width:768px) { .section { padding: 120px 0; } }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.025em; margin-bottom: 18px;
}
.section-sub { font-size: 1.0625rem; color: var(--t2); line-height: 1.7; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }

.slide-left  { opacity: 0; transform: translateX(-40px); transition: opacity .55s ease, transform .55s ease; }
.slide-right { opacity: 0; transform: translateX(40px);  transition: opacity .55s ease, transform .55s ease; }
.slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays for comparison items */
.compare-item:nth-child(2) { transition-delay: .1s; }
.compare-item:nth-child(3) { transition-delay: .2s; }
.compare-item:nth-child(4) { transition-delay: .3s; }
.compare-item:nth-child(5) { transition-delay: .4s; }

/* Table row stagger */
.table-row-anim { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
.table-row-anim.visible { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: all var(--ease2);
}
.site-header.scrolled {
  background: rgba(26,22,20,.93); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr); box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.site-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px; gap: 32px;
}
.site-header__logo {
  font-size: 1.25rem; font-weight: 800; letter-spacing: .1em;
  color: var(--t1); text-decoration: none; transition: color var(--ease);
  display: flex; align-items: center;
}
.site-header__logo span { font-size: .6em; color: var(--gold); vertical-align: super; }
.site-header__logo:hover { color: var(--gold); }
.site-header__logo-img { height: 32px; width: auto; display: block; }
.site-header__nav { display: none; gap: 28px; }
@media(min-width:900px) { .site-header__nav { display: flex; } }
.site-header__nav a {
  font-size: .8125rem; color: var(--t2); text-decoration: none;
  letter-spacing: .02em; transition: color var(--ease);
}
.site-header__nav a:hover { color: var(--t1); }
@media(max-width:899px) { .site-header__cta { display: none; } }

/* ----- Hamburger button ----- */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; padding: 6px;
  background: none; border: 1px solid var(--bdr); border-radius: var(--r);
  cursor: pointer; flex-shrink: 0;
}
@media(min-width:900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--t1); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Mobile nav drawer ----- */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg2); border-top: 1px solid var(--bdr);
  padding: 0; overflow: hidden;
  max-height: 0; transition: max-height .35s ease, padding .35s ease;
}
@media(max-width:899px) { .mobile-nav { display: flex; } }
.mobile-nav.open { max-height: 400px; padding: 16px 0 24px; }
.mobile-nav nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 20px;
}
.mobile-nav__link {
  font-size: 1rem; font-weight: 500; color: var(--t2);
  text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid var(--bdr);
  transition: color var(--ease);
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__cta { margin-top: 16px; text-align: center; }

/* ===== HERO ===== */
/* FOTO_HERO: zamień poniższy URL na swoje zdjęcie */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background-image: url('images/Hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax efekt */
}
@media(max-width:768px) {
  /* background-attachment:fixed nie działa na iOS, fallback */
  .hero { background-attachment: scroll; }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,13,10,.88) 0%, rgba(26,22,20,.75) 60%, rgba(20,13,10,.82) 100%);
  pointer-events: none;
}

/* Floating geometric shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
}
.hero__shape--1 { width: 600px; height: 600px; top: -100px; right: -100px; animation: float1 8s ease-in-out infinite; }
.hero__shape--2 { width: 400px; height: 400px; bottom: -80px; left: -60px; animation: float2 10s ease-in-out infinite; }
.hero__shape--3 { width: 300px; height: 300px; top: 40%; right: 20%; animation: float1 12s ease-in-out infinite reverse; }

@keyframes float1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(20px,-20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-15px,20px) scale(1.08); }
}

.hero__content { position: relative; z-index: 1; max-width: 820px; }
.hero__eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  padding: 6px 14px; border: 1px solid var(--goldbdr); border-radius: 100px;
  background: var(--golddim); margin-bottom: 28px;
}

/* Shimmer gradient on key word */
.hero__headline {
  font-size: clamp(2.6rem, 7.5vw, 5.5rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.035em; margin-bottom: 28px;
}
.hero__em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold3) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--t2);
  line-height: 1.7; margin-bottom: 40px; max-width: 560px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

/* Stats */
.hero__stats {
  display: flex; flex-wrap: wrap; align-items: center;
  padding-top: 40px; border-top: 1px solid rgba(201,169,110,.2);
}
.stat { display: flex; flex-direction: column; padding-right: 32px; }
.stat__top { display: flex; align-items: baseline; gap: 2px; }
.stat__num { font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.03em; }
.stat__suf { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat__lbl { font-size: .8rem; color: rgba(245,240,235,.6); margin-top: 4px; letter-spacing: .02em; }
.stat__sep { width: 1px; height: 40px; background: var(--bdr2); margin-right: 32px; align-self: center; flex-shrink: 0; }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border: 1px solid var(--bdr2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none;
  animation: bounce 2.2s ease-in-out infinite; transition: all var(--ease);
}
.hero__scroll:hover { border-color: var(--gold); background: var(--golddim); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ===== PRODUCTS — hex pattern background ===== */
.products {
  background-color: var(--bg2);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2l25 14.5v29L30 60 5 45.5v-29z' fill='none' stroke='rgba(201,169,110,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.products__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media(min-width:600px) { .products__grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:960px) { .products__grid { grid-template-columns: repeat(4,1fr); } }

/* Product card with image */
.product-card {
  background: var(--bgcard); border: 1px solid var(--bdr);
  border-radius: var(--r2); overflow: hidden;
  transition: all var(--ease2);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--goldbdr); transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,.55);
}

/* Card image header */
.card-img {
  position: relative; height: 180px; overflow: hidden; flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .card-img img { transform: scale(1.08); }
.card-img__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,20,16,.8) 100%);
}

/* Badge */
.card-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: .625rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px; z-index: 2;
}
.card-badge--gold { background: var(--gold); color: #1A1614; }
.card-badge--new  { background: #3a7bd5; color: #fff; }

.card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; position: relative; }
.card-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.product-card:hover .card-line { opacity: 1; }
.card-tag {
  display: inline-block; font-size: .675rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
  background: var(--golddim); border: 1px solid var(--goldbdr);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.card-body h3 { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.card-body p { font-size: .85rem; color: var(--t2); line-height: 1.65; margin-bottom: 18px; }

/* Feature chips — zamiast punktowanych list */
.card-feats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; flex: 1; align-content: flex-start; }
.cfeat {
  font-size: .7rem; font-weight: 500; letter-spacing: .02em;
  color: var(--t3); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 4px 10px; border-radius: 100px;
  transition: all var(--ease);
}
.product-card:hover .cfeat { border-color: var(--goldbdr); color: var(--t2); }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 500; color: var(--gold);
  text-decoration: none; letter-spacing: .02em; transition: gap var(--ease);
  margin-top: auto;
}
.card-link:hover { gap: 10px; }

/* ===== COMPARISON SECTION ===== */
.comparison { background: var(--bg); position: relative; overflow: hidden; }
.comparison::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--goldbdr), transparent);
}

.compare-split {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-bottom: 56px;
}
@media(min-width:768px) {
  .compare-split { grid-template-columns: 1fr auto 1fr; gap: 0; align-items: start; }
}

/* Bad column */
.compare-col { display: flex; flex-direction: column; gap: 4px; }
.compare-col--bad { padding-right: 0; }
.compare-col--good { padding-left: 0; }
@media(min-width:768px) {
  .compare-col--bad  { padding-right: 40px; }
  .compare-col--good { padding-left: 40px; }
}

.compare-col__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px; padding: 8px 16px; border-radius: var(--r);
}
.compare-col--bad  .compare-col__label { color: var(--red); background: var(--reddim); border: 1px solid rgba(255,107,107,.2); }
.compare-col--good .compare-col__label { color: var(--gold); background: var(--golddim); border: 1px solid var(--goldbdr); }

.compare-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-radius: var(--r2); margin-bottom: 10px;
  border: 1px solid transparent; transition: all var(--ease2);
}
.compare-item--bad  { background: rgba(255,107,107,.05); border-color: rgba(255,107,107,.1); }
.compare-item--good { background: rgba(201,169,110,.06); border-color: var(--bdr); }
.compare-item--bad:hover  { border-color: rgba(255,107,107,.25); }
.compare-item--good:hover { border-color: var(--goldbdr); }

.cmp-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; flex-shrink: 0;
}
.cmp-icon--bad  { background: var(--reddim); color: var(--red); border: 1px solid rgba(255,107,107,.2); }
.cmp-icon--good { background: var(--golddim); color: var(--gold); border: 1px solid var(--goldbdr); }
.compare-item strong { display: block; font-size: .9375rem; font-weight: 600; margin-bottom: 4px; }
.compare-item p { font-size: .8125rem; color: var(--t2); line-height: 1.6; margin: 0; }

/* Center VS divider */
.compare-center {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; padding-top: 56px;
  gap: 12px;
}
@media(max-width:767px) { .compare-center { padding: 24px 0; flex-direction: row; } }
.compare-center__line { width: 1px; flex: 1; background: var(--bdr2); min-height: 20px; }
@media(max-width:767px) { .compare-center__line { width: auto; flex: 1; height: 1px; min-height: 0; } }
.compare-center__badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bgcard); border: 1px solid var(--bdr2);
  font-size: .75rem; font-weight: 800; letter-spacing: .06em; color: var(--t3);
}

/* Comparison table */
.compare-table-wrap { text-align: center; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-toggle {
  margin-bottom: 0; transition: all var(--ease);
}
.compare-toggle__arrow { transition: transform var(--ease); }
.compare-toggle[aria-expanded="true"] .compare-toggle__arrow { transform: rotate(180deg); }

.compare-table {
  max-height: 0; overflow: hidden;
  transition: max-height .6s ease, margin-top .6s ease;
  margin-top: 0;
}
.compare-table.open { max-height: 800px; margin-top: 32px; }

.compare-table table {
  width: 100%; border-collapse: collapse; text-align: left;
  font-size: .9rem;
}
.compare-table thead tr {
  border-bottom: 1px solid var(--bdr2);
}
.compare-table th {
  padding: 14px 20px; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--t3);
}
.compare-table th.col-bad  { color: var(--red); }
.compare-table th.col-good { color: var(--gold); }
.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: top;
}
.compare-table td:first-child { font-weight: 600; color: var(--t2); white-space: nowrap; min-width: 140px; }
.compare-table td.col-bad  { color: var(--t2); }
.compare-table td.col-good { color: var(--t1); }
.compare-table tbody tr:hover { background: rgba(255,255,255,.02); }
.tbl-check { color: var(--gold); font-weight: 700; margin-right: 6px; }
.tbl-x     { color: var(--red); font-weight: 700; margin-right: 6px; }

/* ===== AUDIENCE SECTIONS — split layout ===== */
.audience { background: var(--bg); }
.audience--alt { background: var(--bg2); }

.audience__split {
  display: grid; grid-template-columns: 1fr;
}
@media(min-width:900px) {
  .audience__split { grid-template-columns: 1fr 1fr; min-height: 600px; }
}
.audience__split--reverse { }
@media(min-width:900px) {
  .audience__split--reverse .audience__image { order: -1; }
}

.audience__content {
  padding: 64px 40px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px;
}
@media(min-width:900px) { .audience__content { padding: 80px 64px; } }

.audience__image {
  position: relative; overflow: hidden; min-height: 400px;
}
.audience__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.audience__image:hover img { transform: scale(1.04); }
.audience__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,22,20,.45) 0%, rgba(26,22,20,.2) 100%);
}

/* Badge floating over image */
.audience__image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(26,22,20,.85); backdrop-filter: blur(12px);
  border: 1px solid var(--goldbdr); border-radius: var(--r2);
  padding: 14px 20px; display: flex; flex-direction: column; gap: 2px;
}
.audience__image-badge-num {
  font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.03em;
}
.audience__image-badge-lbl { font-size: .75rem; color: var(--t2); letter-spacing: .04em; }

.benefits { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 36px 0 44px; }
@media(min-width:600px) { .benefits { grid-template-columns: 1fr 1fr; } }

.benefit { display: flex; gap: 14px; align-items: flex-start; }
.bicon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--golddim); border: 1px solid var(--goldbdr);
  border-radius: var(--r); color: var(--gold); transition: all var(--ease);
}
.benefit:hover .bicon { background: rgba(201,169,110,.2); transform: scale(1.05); }
.bicon svg { width: 17px; height: 17px; }
.benefit strong { display: block; font-size: .9375rem; font-weight: 600; margin-bottom: 3px; }
.benefit p { font-size: .85rem; color: var(--t2); line-height: 1.6; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2l25 14.5v29L30 60 5 45.5v-29z' fill='none' stroke='rgba(201,169,110,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:600px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:960px) { .testimonials__grid { grid-template-columns: repeat(4,1fr); } }

.tcard {
  background: var(--bgcard); border: 1px solid var(--bdr);
  border-radius: var(--r2); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: all var(--ease2);
}
.tcard:hover { border-color: var(--goldbdr); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }

/* Decorative quote mark */
.tcard__quote {
  position: absolute; top: -8px; left: 12px;
  font-size: 7rem; font-weight: 800; color: var(--gold);
  opacity: .065; line-height: 1; pointer-events: none; user-select: none;
  font-family: Georgia, serif;
}
.tcard__stars { color: var(--gold); font-size: .875rem; letter-spacing: 2px; position: relative; z-index: 1; }
.tcard p { font-size: .875rem; color: var(--t2); line-height: 1.75; flex: 1; font-style: italic; position: relative; z-index: 1; }
.tcard footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--bdr); position: relative; z-index: 1;
}
.tcard__av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--golddim); border: 1px solid var(--goldbdr);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.tcard footer strong { display: block; font-size: .875rem; font-weight: 600; }
.tcard footer span { font-size: .75rem; color: var(--t3); }

/* ===== FAQ ===== */
.faq { background: var(--bg2); }
.faq__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:768px) { .faq__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.faq__group {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.faq-item { border-bottom: 1px solid var(--bdr); }
.faq-item:first-of-type { border-top: 1px solid var(--bdr); }
.faq-item summary {
  padding: 18px 0; font-size: .9375rem; font-weight: 500;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none; transition: color var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.375rem; color: var(--gold);
  flex-shrink: 0; transition: transform var(--ease); font-weight: 300; line-height: 1;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > div { padding: 0 0 18px; }
.faq-item > div p { font-size: .9rem; color: var(--t2); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); border-top: 1px solid var(--bdr); }
.contact__inner { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: start; }
@media(min-width:768px) { .contact__inner { grid-template-columns: 1fr 1.6fr; gap: 80px; } }
.contact__left .section-title { margin-bottom: 16px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9375rem; color: var(--t2); text-decoration: none; transition: color var(--ease);
}
.contact__link:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .875rem; font-weight: 500; color: var(--t2); }
.req { color: var(--gold); }

.form-group input,
.form-group textarea {
  background: var(--bgcard); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 12px 16px;
  font-family: var(--font); font-size: .9375rem; color: var(--t1);
  outline: none; width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--t3); }
/* Glow focus effect */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12), 0 0 16px rgba(201,169,110,.08);
}
.form-group input.error { border-color: rgba(255,100,100,.5); }
textarea { resize: vertical; min-height: 100px; }

/* Radios */
.radios { display: flex; flex-wrap: wrap; gap: 16px; }
.radio-opt {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: .9375rem; color: var(--t2); transition: color var(--ease);
}
.radio-opt:hover { color: var(--t1); }
.radio-opt input[type="radio"] { display: none; }
.radio-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--bdr2); background: var(--bgcard); flex-shrink: 0;
  position: relative; transition: all var(--ease);
}
.radio-opt input[type="radio"]:checked ~ .radio-dot { border-color: var(--gold); background: var(--golddim); }
.radio-opt input[type="radio"]:checked ~ .radio-dot::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
}

/* Checkbox */
.checkbox-opt {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: .875rem; color: var(--t2); line-height: 1.5;
}
.checkbox-opt input[type="checkbox"] { display: none; }
.checkbox-box {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid var(--bdr2); background: var(--bgcard);
  flex-shrink: 0; margin-top: 2px; position: relative; transition: all var(--ease);
}
.checkbox-opt input[type="checkbox"]:checked ~ .checkbox-box { border-color: var(--gold); background: var(--gold); }
.checkbox-opt input[type="checkbox"]:checked ~ .checkbox-box::after {
  content: ''; position: absolute; top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #1A1614; border-top: none; border-left: none; transform: rotate(45deg);
}
.checkbox-opt a { color: var(--gold); }

/* Success / Error */
.form-success {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 40px 32px; border-radius: var(--r2);
  background: linear-gradient(135deg, rgba(201,169,110,.12) 0%, rgba(201,169,110,.06) 100%);
  border: 1px solid var(--goldbdr);
  color: var(--gold); text-align: center;
  animation: success-in .5s ease;
}
@keyframes success-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--golddim); border: 2px solid var(--goldbdr);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.form-success strong { font-size: 1.25rem; font-weight: 700; }
.form-success p { color: var(--t2); font-size: .9rem; line-height: 1.6; margin: 0; }
.form-success p em { color: var(--gold); font-style: normal; font-weight: 600; }
.form-success__sub { font-size: .78rem !important; color: var(--t3) !important; margin-top: 4px !important; }
.form-error {
  padding: 16px; border-radius: var(--r);
  background: rgba(255,80,80,.08); border: 1px solid rgba(255,80,80,.2);
  color: #ff6b6b; font-size: .875rem;
}
.form-error a { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--bdr); padding: 64px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
@media(min-width:640px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media(min-width:960px) { .footer__inner { grid-template-columns: 1.5fr 1fr; } }
.footer__logo {
  display: inline-block; font-size: 1.375rem; font-weight: 800;
  letter-spacing: .1em; color: var(--t1); text-decoration: none; margin-bottom: 12px;
}
.footer__logo span { font-size: .6em; color: var(--gold); vertical-align: super; }
.footer__logo-img { height: 36px; width: auto; display: block; }
.footer__brand p { font-size: .875rem; color: var(--t3); margin-bottom: 20px; line-height: 1.6; }
.footer__phone {
  font-size: 1.125rem; font-weight: 600; color: var(--gold);
  text-decoration: none; letter-spacing: .02em; transition: color var(--ease);
}
.footer__phone:hover { color: var(--gold2); }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__links div { display: flex; flex-direction: column; gap: 10px; }
.footer__links h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 4px;
}
.footer__links a { font-size: .875rem; color: var(--t2); text-decoration: none; transition: color var(--ease); }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid var(--bdr);
}
.footer__bottom p, .footer__bottom a { font-size: .8125rem; color: var(--t3); text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); }

/* =====================================================
   PRODUCT SHOWCASE SECTION
   ===================================================== */

.showcase { background: var(--bg2); }

/* ----- Tab navigation ----- */
.stabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px; justify-content: center;
}
.stab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 14px 28px; border-radius: var(--r2);
  background: var(--bgcard); border: 1px solid var(--bdr);
  cursor: pointer; transition: all var(--ease2); font-family: var(--font);
  min-width: 120px;
}
.stab:hover { border-color: var(--goldbdr); background: var(--bgcard2); }
.stab--active {
  background: var(--golddim); border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,169,110,.15);
}
.stab__name {
  font-size: .875rem; font-weight: 800; letter-spacing: .1em;
  color: var(--t2); transition: color var(--ease);
}
.stab--active .stab__name { color: var(--gold); }
.stab__sub {
  font-size: .7rem; font-weight: 400; color: var(--t3);
  letter-spacing: .04em; transition: color var(--ease);
}
.stab--active .stab__sub { color: var(--gold2); opacity: .8; }

/* ----- Panel layout ----- */
.spanel {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--bdr);
  background: var(--bgcard);
}
@media(min-width:900px) {
  .spanel { grid-template-columns: 1fr 1fr; }
}
.spanel--active {
  display: grid;
  animation: panel-in .45s ease;
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.spanel__left {
  padding: 48px 40px; display: flex; flex-direction: column; gap: 0;
  border-right: 1px solid var(--bdr);
}
@media(max-width:899px) { .spanel__left { border-right: none; border-bottom: 1px solid var(--bdr); } }

.spanel__tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); background: var(--golddim);
  border: 1px solid var(--goldbdr); padding: 4px 12px; border-radius: 4px;
  margin-bottom: 14px; align-self: flex-start;
}
.spanel__title {
  font-size: 1.375rem; font-weight: 700; line-height: 1.25;
  margin-bottom: 28px; letter-spacing: -.015em;
}

/* Feature list */
.spanel__feats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; flex: 1; }
.sfeat {
  display: flex; gap: 14px; align-items: flex-start;
  opacity: 0; transform: translateX(-16px);
  transition: opacity .4s ease, transform .4s ease;
}
.sfeat.sfeat--in { opacity: 1; transform: translateX(0); }
.sfeat__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--golddim); border: 1px solid var(--goldbdr);
  border-radius: var(--r); color: var(--gold);
}
.sfeat__icon svg { width: 17px; height: 17px; }
.sfeat strong { display: block; font-size: .9375rem; font-weight: 600; margin-bottom: 3px; line-height: 1.3; }
.sfeat p { font-size: .825rem; color: var(--t2); line-height: 1.6; margin: 0; }

/* Big stat */
.spanel__stat {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--bdr);
}
.spanel__stat-num {
  font-size: 2.75rem; font-weight: 800; color: var(--gold);
  line-height: 1; letter-spacing: -.04em;
}
.spanel__stat-unit { font-size: .875rem; color: var(--t3); font-weight: 500; }

/* Right column — visual area */
.spanel__right {
  padding: 48px 40px; display: flex; align-items: center; justify-content: center;
  background: var(--bg); min-height: 400px; overflow: hidden;
}

/* --------- FLOCC VISUAL --------- */
.flocc-vis { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; max-width: 340px; }

.fv-tile {
  position: relative; width: 200px; height: 200px;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #2d2926 0%, #3a3530 50%, #2d2926 100%);
  border: 1px solid var(--bdr2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

/* --- Base layer: all animations hidden by default --- */
.fv-anim {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
[data-anim="water"]    .fv-anim--water    { opacity: 1; }
[data-anim="bacteria"] .fv-anim--bacteria { opacity: 1; }
[data-anim="acoustic"] .fv-anim--acoustic { opacity: 1; }
[data-anim="texture"]  .fv-anim--texture  { opacity: 1; }
[data-anim="pet"]      .fv-anim--pet      { opacity: 1; }

/* --- 1. WATER DROP --- */
.fv-drop {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 18px;
  background: rgba(147,210,255,.85);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  animation: drop-fall 2.4s ease-in-out infinite;
  filter: blur(.5px);
}
@keyframes drop-fall {
  0%   { top: 20px; opacity: 1; transform: translateX(-50%) scaleY(1); }
  45%  { top: 88px; opacity: 1; transform: translateX(-50%) scaleY(1.1); }
  50%  { top: 90px; opacity: 0; transform: translateX(-50%) scaleY(.5); }
  55%  { top: 90px; opacity: 0; }
  100% { top: 20px; opacity: 1; transform: translateX(-50%) scaleY(1); }
}
.fv-ripple {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1.5px solid rgba(147,210,255,.6);
  transform: translate(-50%, -50%) scale(0); pointer-events: none;
}
.fv-ripple--1 { animation: ripple 2.4s ease-out infinite .55s; }
.fv-ripple--2 { animation: ripple 2.4s ease-out infinite .75s; }
.fv-ripple--3 { animation: ripple 2.4s ease-out infinite .95s; }
@keyframes ripple {
  0%   { width: 10px; height: 10px; opacity: .9; margin: -5px; }
  80%  { width: 120px; height: 120px; opacity: 0; margin: -60px; }
  100% { opacity: 0; }
}

/* --- 2. BACTERIA --- */
.fv-germ {
  position: absolute;
  left: var(--gx); top: var(--gy);
  width: var(--gs); height: var(--gs);
  border-radius: 50%;
  background: rgba(255,80,60,.15); border: 2px solid rgba(255,80,60,.45);
  animation: germ-p 1.8s ease-in-out infinite var(--gd);
}
.fv-germ::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px dashed rgba(255,80,60,.25);
  animation: germ-spin 4s linear infinite;
}
@keyframes germ-p {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%       { transform: scale(1.25); opacity: .35; }
}
@keyframes germ-spin { to { transform: rotate(360deg); } }

.fv-kill {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px;
  z-index: 2;
}
.fv-kill__num { font-size: 2rem; font-weight: 800; color: #4ade80; line-height: 1; text-shadow: 0 0 16px rgba(74,222,128,.4); }
.fv-kill__lbl { font-size: .52rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(74,222,128,.7); }

/* --- 3. ACOUSTIC --- */
.fv-sring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1.5px solid rgba(201,169,110,.5);
  transform: translate(-50%, -50%) scale(0);
  animation: sring-expand 2.2s ease-out infinite;
}
.fv-sring--1 { animation-delay: 0s; }
.fv-sring--2 { animation-delay: .6s; }
.fv-sring--3 { animation-delay: 1.2s; }
@keyframes sring-expand {
  0%   { width: 10px; height: 10px; margin: -5px; opacity: .9; }
  100% { width: 160px; height: 160px; margin: -80px; opacity: 0; }
}
.fv-db-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; display: flex; flex-direction: column; align-items: center;
  background: rgba(20,14,10,.6); border: 1px solid rgba(201,169,110,.3);
  border-radius: 12px; padding: 8px 14px; backdrop-filter: blur(8px); z-index: 2;
}
.fv-db-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.fv-db-unit { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* --- 4. TEXTURE --- */
.fv-anim--texture { flex-direction: row; gap: 0; align-items: stretch; border-radius: 16px; overflow: hidden; }
.fv-strip {
  flex: 1; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 10px;
  animation: strip-shimmer 5s ease-in-out infinite;
}
.fv-strip span {
  font-size: .48rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75); background: rgba(0,0,0,.45); padding: 2px 6px; border-radius: 4px;
}
.fv-strip--drewno {
  background: repeating-linear-gradient(
    92deg, #5c4a38 0 3px, #7a6248 3px 8px, #5c4a38 8px 12px, #6a5540 12px 17px
  ); animation-delay: 0s;
}
.fv-strip--beton {
  background: linear-gradient(160deg, #5a5a5a 0%, #434343 50%, #555 100%);
  animation-delay: .4s;
}
.fv-strip--kamien {
  background: radial-gradient(ellipse at 35% 40%, #8a7a6a 0%, #5a5048 60%, #48403a 100%);
  animation-delay: .8s;
}
@keyframes strip-shimmer {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.15); }
}

/* --- 5. PET / DIY --- */
.fv-paw-wrap {
  position: absolute; top: 50%; left: 42%; transform: translate(-50%, -55%);
  animation: paw-bounce 2.5s ease-in-out infinite;
}
.fv-paw-icon { width: 72px; height: 72px; color: var(--gold); opacity: .8; }
@keyframes paw-bounce {
  0%, 100% { transform: translate(-50%, -55%) scale(1); }
  50%       { transform: translate(-50%, -55%) scale(1.1) rotate(5deg); }
}
.fv-wrench {
  position: absolute; bottom: 28%; right: 22%;
  color: var(--gold); opacity: .6;
  animation: wrench-spin 5s linear infinite;
}
@keyframes wrench-spin { to { transform: rotate(360deg); } }

/* --- Shared cycling label --- */
.fv-label-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; padding: 0 8px 8px;
  pointer-events: none; z-index: 10;
}
.fv-label-text {
  display: inline-block; max-width: 100%;
  font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; background: rgba(20,14,10,.7); padding: 4px 10px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
  text-align: center; line-height: 1.45; white-space: normal; word-break: break-word;
  opacity: 0; transform: translateY(4px); transition: opacity .3s ease, transform .3s ease;
}
.fv-label--in { opacity: 1 !important; transform: translateY(0) !important; }

/* --------- SHAPES VISUAL --------- */
.shapes-vis {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: 100%; max-width: 340px; overflow: hidden;
}

.sv-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px; width: 100%; box-sizing: border-box;
}
.sv-shape {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: var(--bgcard); border: 1px solid var(--bdr); border-radius: var(--r);
  padding: 8px; color: var(--gold); cursor: default; min-width: 0;
  opacity: 0; transform: scale(.5) rotate(-15deg);
  transition: opacity .35s ease, transform .35s ease, border-color var(--ease), background var(--ease);
}
.sv-shape svg { width: 100%; height: 100%; }
.sv-shape.sv-shape--in { opacity: 1; transform: scale(1) rotate(0deg); }
.sv-shape:hover { border-color: var(--goldbdr); background: var(--golddim); }

.sv-colors {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.scolor {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c); border: 1.5px solid rgba(255,255,255,.1);
  opacity: 0; transform: scale(0); transition: opacity .25s ease, transform .25s ease;
  cursor: default;
}
.scolor.scolor--in { opacity: 1; transform: scale(1); }
.scolor:hover { transform: scale(1.25); border-color: var(--gold); }

.sv-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--golddim); border: 1px solid var(--goldbdr);
  padding: 4px 12px; border-radius: 100px;
}

/* --------- DIGIT VISUAL --------- */
.digit-vis { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; max-width: 300px; }

.dv-frame {
  position: relative; width: 200px; height: 200px;
  background: rgba(20,14,10,.6); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Grid overlay inside frame */
.dv-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* 4 corner brackets */
.dv-corner {
  position: absolute; width: 18px; height: 18px;
  border-color: var(--gold); border-style: solid; opacity: .75;
}
.dv-corner--tl { top: 10px;    left: 10px;  border-width: 2px 0 0 2px; }
.dv-corner--tr { top: 10px;    right: 10px; border-width: 2px 2px 0 0; }
.dv-corner--bl { bottom: 10px; left: 10px;  border-width: 0 0 2px 2px; }
.dv-corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

/* Scan line */
.dv-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: dv-scan 2.5s ease-in-out infinite;
  opacity: .9;
}
@keyframes dv-scan {
  0%   { top: 0;   opacity: 0; }
  5%   { opacity: 1; }
  92%  { opacity: .8; }
  100% { top: 100%; opacity: 0; }
}

/* Cycling content */
.dv-content { position: relative; z-index: 2; text-align: center; height: 28px; width: 100%; }
.dv-item {
  position: absolute; left: 0; right: 0;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); opacity: 0;
}
.dv-item:nth-child(1) { animation: dv-cycle 6s ease-in-out infinite 0s; }
.dv-item:nth-child(2) { animation: dv-cycle 6s ease-in-out infinite 1.5s; }
.dv-item:nth-child(3) { animation: dv-cycle 6s ease-in-out infinite 3s; }
.dv-item:nth-child(4) { animation: dv-cycle 6s ease-in-out infinite 4.5s; }
@keyframes dv-cycle {
  0%, 22%, 100% { opacity: 0; transform: translateY(6px); }
  8%, 18%       { opacity: 1; transform: translateY(0); }
}

.dv-size-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55); background: rgba(20,14,10,.5);
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
}

/* Print progress bar */
.dv-print-bar {
  display: flex; align-items: center; gap: 10px;
  width: 200px;
}
.dv-print-bar span { font-size: .6rem; color: var(--t3); letter-spacing: .06em; white-space: nowrap; }
.dv-print-progress {
  flex: 1; height: 3px; background: var(--bdr);
  border-radius: 2px; overflow: hidden; position: relative;
}
.dv-print-progress::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: print-sweep 2s ease-in-out infinite;
}
@keyframes print-sweep {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* --------- WOVEN VISUAL --------- */
.woven-vis { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; max-width: 320px; }

.wv-loom {
  position: relative; width: 220px; height: 220px;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--bdr2);
  background-color: #2e2620;
}

/* CSS basket-weave pattern — simulates the real woven vinyl texture */
.wv-pattern {
  position: absolute; inset: 0;
  /* Layer 1: horizontal weft bands (light) */
  /* Layer 2: vertical warp bands offset by half unit (dark) */
  /* Layer 3: interlocking shadow for over-under effect */
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(195,162,108,.55) 0px 5px,
      rgba(45,34,24,.7)     5px 10px
    ),
    repeating-linear-gradient(
      90deg,
      transparent              0px 5px,
      rgba(100,78,50,.65)      5px 10px
    ),
    repeating-linear-gradient(
      0deg,
      transparent              0px 10px,
      rgba(0,0,0,.12)          10px 11px
    ),
    repeating-linear-gradient(
      90deg,
      transparent              0px 10px,
      rgba(0,0,0,.12)          10px 11px
    );
  background-size: 10px 10px, 10px 10px, 10px 10px, 10px 10px;
  animation: wv-weave 3.5s linear infinite;
}
@keyframes wv-weave {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 0 10px, 10px 0, 0 10px, 10px 0; }
}

.wv-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(130deg,
    transparent 0%, transparent 38%,
    rgba(255,245,220,.07) 50%,
    transparent 62%, transparent 100%);
  background-size: 200% 200%;
  animation: wv-shim 5s ease-in-out infinite;
}
@keyframes wv-shim {
  0%   { background-position: 200% 200%; }
  100% { background-position: -50% -50%; }
}

.wv-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: rgba(20,14,10,.6);
  padding: 4px 14px; border-radius: 100px;
  border: 1px solid rgba(201,169,110,.25);
}
.wv-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .65rem; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.65);
  background: rgba(20,14,10,.5); padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
}
.wv-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #60a5fa; flex-shrink: 0;
  animation: pulse-blue 1.8s ease-in-out infinite;
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,.55); }
  55%       { box-shadow: 0 0 0 6px rgba(96,165,250,0); }
}

/* ===== PRIVACY MODAL ===== */
.privacy-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.privacy-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,8,6,.82); backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); cursor: pointer;
}
.privacy-modal__box {
  position: relative; z-index: 1;
  background: var(--bgcard2); border: 1px solid var(--bdr2);
  border-radius: var(--r2); width: 100%; max-width: 640px;
  max-height: 85vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: modal-in .3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(.96) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.privacy-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--bdr);
  flex-shrink: 0;
}
.privacy-modal__header h2 { font-size: 1.125rem; font-weight: 700; letter-spacing: -.01em; }
.privacy-modal__close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--t2); font-family: var(--font);
  transition: all var(--ease); flex-shrink: 0;
}
.privacy-modal__close:hover { background: rgba(255,255,255,.12); color: var(--t1); }
.privacy-modal__body {
  padding: 24px 28px; overflow-y: auto; flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--bdr2) transparent;
}
.privacy-date { font-size: .8rem; color: var(--t3); margin-bottom: 20px; }
.privacy-modal__body h3 {
  font-size: .875rem; font-weight: 700; letter-spacing: .02em;
  color: var(--gold); margin: 20px 0 8px; text-transform: uppercase;
  font-size: .75rem; letter-spacing: .08em;
}
.privacy-modal__body h3:first-of-type { margin-top: 0; }
.privacy-modal__body p {
  font-size: .875rem; color: var(--t2); line-height: 1.7; margin-bottom: 8px;
}
.privacy-modal__body ul {
  list-style: none; margin: 8px 0 8px 4px;
}
.privacy-modal__body ul li {
  font-size: .875rem; color: var(--t2); padding: 3px 0 3px 16px; position: relative;
}
.privacy-modal__body ul li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .7;
}
.privacy-modal__body strong { color: var(--t1); }
.privacy-modal__footer {
  padding: 16px 28px; border-top: 1px solid var(--bdr); flex-shrink: 0; text-align: right;
}

/* ===== TABLET / POŚREDNI ===== */
@media(max-width:768px) {
  .compare-table td:first-child { white-space: normal; min-width: 0; }
  .compare-table table { font-size: .85rem; }
  .spanel__left  { padding: 32px 24px; }
  .spanel__right { padding: 32px 24px; min-height: 280px; }
  .audience__content { padding: 40px 24px; }
  .audience__split  { gap: 0; }
}

/* ===== MOBILE ===== */
@media(max-width:480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat__sep { display: none; }
  .stat { flex-direction: row; align-items: baseline; gap: 12px; padding: 0; }
  .compare-split { gap: 32px; }
  .compare-table table { font-size: .8rem; }
  .compare-table td, .compare-table th { padding: 10px 12px; }
  .compare-table td:first-child { white-space: normal; min-width: 0; }

  /* Showcase — mniejszy padding na mobilnym */
  .spanel__right { padding: 28px 16px; min-height: 320px; }
  .spanel__left  { padding: 32px 20px; }

  /* SHAPES — mniejszy gap i fontsize etykiet */
  .sv-grid { gap: 7px; }
  .shapes-vis { max-width: 100%; }
  .sv-label { font-size: .58rem; }

  /* FLOCC tile — trochę mniejszy */
  .fv-tile { width: 170px; height: 170px; }

  /* WOVEN tile */
  .wv-tile { width: 170px; height: 170px; }
}
