/* ===================================================
   orikonto.pl — główny arkusz stylów
   Schemat kolorów: turkusowo-różowy gradient
   =================================================== */

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

:root {
  --pink: #C4527A;
  --pink-dark: #a33d62;
  --pink-light: #fceef4;
  --teal: #00bcd4;
  --teal-dark: #0097a7;
  --teal-light: #e0f7fa;
  --gold: #c9952a;
  --gold-light: #FFF3CC;
  --cream: #f8fafb;
  --dark: #1a1a1a;
  --mid: #555;
  --muted: #888;
  --border: #e0ecf0;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 188, 212, 0.10);
  --gradient-cta: linear-gradient(135deg, #C4527A, #00bcd4);
  --gradient-hero: linear-gradient(135deg, #00bcd4 0%, #0097a7 50%, #006978 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* ===================================================
   HEADER
   =================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 1px 16px rgba(0, 188, 212, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-oriflame-img {
  height: 28px;
  max-height: 28px;
  width: auto;
  max-width: 140px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-sep {
  color: var(--border);
  font-weight: 300;
  font-size: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--gradient-cta);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 800;
  font-size: 13px;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  color: #fff !important;
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 199;
  }
  .burger { display: flex; }
}

/* ===================================================
   HERO SECTION
   =================================================== */

.hero {
  background: var(--gradient-hero);
  padding: 88px 20px 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(196, 82, 122, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}


.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: #ffe082;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
}

/* USP pills */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.usp-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.usp-pill svg {
  flex-shrink: 0;
  color: #ffe082;
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   FORM CARD
   =================================================== */

.hero-form-wrap {
  flex-shrink: 0;
  width: 440px;
}

@media (max-width: 860px) {
  .hero-form-wrap { width: 100%; }
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16);
  overflow: hidden;
}

.form-card-header {
  background: var(--gradient-cta);
  padding: 18px 24px;
  text-align: center;
}

.form-card-header h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.form-card-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  margin-top: 3px;
}

.form-body {
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mid);
}

.form-group label span {
  color: var(--teal);
}

.form-group input {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.2s, background 0.2s;
  background: #f8fafb;
}

.form-group input:focus {
  border-color: var(--teal);
  background: #fff;
}

.field-error {
  display: none;
  font-size: 0.68rem;
  color: #e53e3e;
  font-weight: 600;
}

.field-error.show {
  display: block;
}

.address-sep {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 12px 0 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.zgoda-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 14px 0 16px;
}

.zgoda-row input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.zgoda-row label {
  font-size: 0.7rem;
  color: var(--mid);
  line-height: 1.5;
  cursor: pointer;
}

.zgoda-row a {
  color: var(--teal);
}

/* SMS SECTION */
.sms-section {
  display: none;
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  animation: fadeIn 0.4s ease;
}

.sms-section.show {
  display: block;
}

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

.sms-alert {
  background: var(--teal-light);
  border: 1px solid #80deea;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: #006978;
  margin-bottom: 12px;
  line-height: 1.5;
}

.sms-alert strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.82rem;
}

/* TIMER */
.sms-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  border: 1px solid #80deea;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: #006978;
}

.sms-timer-circle {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.sms-timer-circle svg {
  transform: rotate(-90deg);
}

.sms-timer-circle .track {
  fill: none;
  stroke: #b2ebf2;
  stroke-width: 4;
}

.sms-timer-circle .progress {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 113;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.sms-timer-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--teal);
}

.sms-timer-text {
  line-height: 1.4;
}

.sms-timer-text strong {
  display: block;
  font-size: 0.82rem;
  color: #004d56;
}

/* PASSWORD RULES */
.password-rules-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pwd-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.2s;
}

.pwd-rule.ok {
  color: #276749;
}

.pwd-rule-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}

.pwd-rule.ok .pwd-rule-icon {
  background: #48bb78;
}

/* BUTTONS */
.submit-btn {
  width: 100%;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.88;
}

.submit-btn:disabled {
  background: #aaa;
  cursor: default;
  opacity: 1;
}

/* STATUS BOX */
.status-box {
  display: none;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.status-box.ladowanie {
  display: block;
  background: #e0f7fa;
  border: 1.5px solid #80deea;
  color: #006978;
}

.status-box.sukces {
  display: block;
  background: #f0fff4;
  border: 1.5px solid #68d391;
  color: #276749;
}

.status-box.blad {
  display: block;
  background: #fff5f5;
  border: 1.5px solid #fc8181;
  color: #c53030;
}

/* SUCCESS SCREEN */
.success-screen {
  display: none;
  padding: 40px 24px;
  text-align: center;
}

.success-screen .success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.success-screen h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--dark);
}

.success-screen p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

/* Mobile form fixes */
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { border-radius: 16px; }
  .form-body { padding: 18px 16px; }
  .form-card-header { padding: 14px 16px; }
}

/* ===================================================
   SECTIONS — ogólne
   =================================================== */

.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.7;
}

/* ===================================================
   JAK TO DZIAŁA
   =================================================== */

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 640px) {
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
}

.how-step {}

.how-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(196, 82, 122, 0.25);
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  padding-top: 28px;
}

@media (max-width: 640px) {
  .how-connector { display: none; }
}

.how-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-cta);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover {
  opacity: 0.88;
}

/* ===================================================
   DLACZEGO KONTO KLUBOWICZ — PORÓWNANIE
   =================================================== */

.compare-section {
  background: var(--cream);
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 600px) {
  .compare-table { grid-template-columns: 1fr; }
}

.compare-col {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 28px;
  border: 2px solid var(--border);
}

.compare-col.col-yes {
  border-color: var(--teal);
  background: linear-gradient(180deg, #e0f7fa 0%, #fff 30%);
}

.compare-col-header {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-col.col-no .compare-col-header { color: var(--muted); }
.compare-col.col-yes .compare-col-header { color: var(--teal-dark); }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 12px;
  line-height: 1.5;
}

.compare-icon-no { color: #fc8181; flex-shrink: 0; font-size: 1rem; }
.compare-icon-yes { color: var(--teal); flex-shrink: 0; font-size: 1rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--teal-dark);
}

.benefit-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===================================================
   GLOSKOSMETYCZKI — SEKCJA PROJEKTU
   =================================================== */

.glos-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #006978 100%);
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}

.glos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/lifestyle-oriflame.webp') center/cover no-repeat;
  opacity: 0.12;
}

.glos-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.glos-inner .section-label {
  color: #ffe082;
}

.glos-inner .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.glos-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ===================================================
   FAQ
   =================================================== */

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

.faq-section .section-inner {
  max-width: 760px;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.10);
}

.faq-q {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--teal-light);
}

.faq-item.open .faq-q {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.faq-arrow {
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ===================================================
   DRUGI FORMULARZ
   =================================================== */

.second-form-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 72px 20px;
}

.second-form-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.second-form-text {
  flex: 1;
  min-width: 260px;
  padding-top: 8px;
}

.second-form-text .section-label { margin-bottom: 10px; }
.second-form-text .section-title { margin-bottom: 12px; }

.checklist {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
}

.checklist-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

.second-form-wrap {
  flex-shrink: 0;
  width: 440px;
  max-width: 100%;
}

/* ===================================================
   FOOTER & BIO
   =================================================== */

.bio-section {
  background: #f0f8fb;
  padding: 48px 20px 40px;
  border-top: 1px solid var(--border);
}

.bio-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.bio-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--teal-light);
}

.bio-text {
  flex: 1;
  min-width: 220px;
}

.bio-text p {
  font-size: 0.80rem;
  color: #555;
  line-height: 1.7;
}

.bio-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.bio-contacts a {
  font-size: 0.75rem;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bio-contacts a:hover {
  text-decoration: underline;
}

footer {
  background: #111;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 32px 20px;
  font-size: 0.73rem;
  line-height: 1.9;
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  margin: 0 6px;
}

footer a:hover {
  color: #fff;
}

/* ===================================================
   COOKIE BANNER
   =================================================== */

#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 999;
  font-size: 0.78rem;
}

#cookieBanner a {
  color: var(--teal);
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookieAccept {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

#cookieReject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 9px 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}

/* ===================================================
   RESPONSIVE UTILITIES
   =================================================== */

@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .hero { padding: 48px 20px 80px; }
}

@media (max-width: 480px) {
  .second-form-inner { flex-direction: column; }
  .second-form-text { padding-top: 0; }
}

/* ===================================================
   MINI GALERIA PRODUKTÓW W HERO
   =================================================== */

.hero-products-preview {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-products-preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.hero-products-preview img:hover {
  transform: scale(1.08);
}

/* ===================================================
   OBRAZKI W KARTACH KORZYŚCI
   =================================================== */

.benefit-card {
  overflow: hidden;
}

.benefit-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 12px 12px 0 0;
  margin-bottom: 16px;
  display: block;
  padding: 12px;
}

/* ===================================================
   GALERIA PRODUKTÓW
   =================================================== */

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.product-thumb {
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.product-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,188,212,0.15);
}

.product-thumb img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #ffffff;
  display: block;
  padding: 12px;
}

.product-thumb span {
  display: block;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  text-align: center;
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-thumb img { height: 120px; }
}

/* ===================================================
   SEKCJA PORÓWNANIA KLUBOWICZ vs PARTNER
   =================================================== */

.compare-section {
  background: var(--cream);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.compare-card--featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,188,212,0.15);
}

.compare-card-header {
  padding: 26px 28px 20px;
  background: #f4f8f8;
}

.compare-card--featured .compare-card-header {
  background: var(--teal);
  color: #fff;
}

.compare-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.compare-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.compare-rabat {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 4px;
}

.compare-card--featured .compare-rabat {
  color: #fff;
}

.compare-rabat-sub {
  font-size: 13px;
  opacity: 0.65;
}

.compare-card-body {
  padding: 24px 28px 28px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

.compare-check {
  color: var(--teal);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}

@media (max-width: 640px) {
  .compare-grid { grid-template-columns: 1fr; }
}
