/* ===================================================
   zapisori.pl — główny arkusz stylów
   Schemat kolorów: koralowy / pomarańczowy
   =================================================== */

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

:root {
  --coral: #FF6B47;
  --coral-dark: #e5511e;
  --coral-deeper: #c03d0f;
  --coral-light: #fff3ef;
  --coral-border: #ffd5c8;
  --gold: #c9952a;
  --gold-light: #FFF3CC;
  --cream: #fdf8f6;
  --dark: #1a1a1a;
  --mid: #555;
  --muted: #888;
  --border: #ecddd8;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(255, 107, 71, 0.12);
  --gradient-cta: linear-gradient(135deg, #FF6B47, #e5511e);
  --gradient-hero: linear-gradient(135deg, #FF6B47 0%, #e5511e 50%, #c03d0f 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(255, 107, 71, 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(--coral);
  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(--coral);
}

.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(255, 220, 100, 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(--coral);
}

.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: #fdf8f6;
}

.form-group input:focus {
  border-color: var(--coral);
  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(--coral);
  cursor: pointer;
}

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

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

/* 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(--coral-light);
  border: 1px solid var(--coral-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: #8b2500;
  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(--coral-light);
  border: 1px solid var(--coral-border);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: #8b2500;
}

.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: var(--coral-border);
  stroke-width: 4;
}

.sms-timer-circle .progress {
  fill: none;
  stroke: var(--coral);
  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(--coral);
}

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

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

/* 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: var(--coral-light);
  border: 1.5px solid var(--coral-border);
  color: #8b2500;
}

.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(--coral);
  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;
}

/* ===================================================
   PASEK STATYSTYK
   =================================================== */

.stats-strip {
  background: var(--dark);
  padding: 28px 20px;
}

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

.stat-item {
  text-align: center;
  padding: 12px 40px;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}

/* ===================================================
   SEKCJA KORZYŚCI — LISTA KART (inna niż orikonto)
   =================================================== */

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

.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

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

.perk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.perk-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}

.perk-text h3 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.perk-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===================================================
   QUICK FACTS I TRUST NOTE (w drugim formularzu)
   =================================================== */

.quick-facts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quick-fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.qf-num {
  width: 32px;
  height: 32px;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.qf-text {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.5;
  padding-top: 6px;
}

.trust-note {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--coral-light);
  border: 1px solid var(--coral-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.76rem;
  color: #7a2500;
  line-height: 1.5;
}

.trust-note svg {
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 1px;
}

/* ===================================================
   TIMELINE — 3 minuty do konta
   =================================================== */

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

.timeline {
  margin-top: 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--coral-border));
}

.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 40px 0;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255, 107, 71, 0.3);
  position: relative;
  z-index: 1;
}

.timeline-dot.done {
  background: linear-gradient(135deg, #48bb78, #276749);
  box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.timeline-content {
  padding-top: 10px;
  flex: 1;
}

.timeline-time {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral);
  margin-bottom: 4px;
}

.timeline-item:last-child .timeline-time {
  color: #276749;
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

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

@media (max-width: 600px) {
  .timeline::before { left: 20px; }
  .timeline-dot { width: 42px; height: 42px; font-size: 0.7rem; }
  .timeline-item { gap: 18px; }
}

.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;
}

/* ===================================================
   KORZYŚCI — 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(--coral);
  background: linear-gradient(180deg, var(--coral-light) 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(--coral-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(--coral); 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;
  overflow: hidden;
}

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

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

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--coral-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;
}

/* ===================================================
   GALERIA PRODUKTÓW — kategorie
   =================================================== */

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

.products-category {
  margin-top: 48px;
}

.products-category-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--coral-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 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(255,107,71,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
   =================================================== */

.choice-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(--coral);
  box-shadow: 0 8px 32px rgba(255,107,71,0.15);
}

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

.compare-card--featured .compare-card-header {
  background: var(--gradient-cta);
  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(--coral);
  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(--coral);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}

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

/* ===================================================
   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(255, 107, 71, 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(--coral-light);
}

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

.faq-arrow {
  color: var(--coral);
  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(--coral);
  flex-shrink: 0;
}

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

/* ===================================================
   SEKCJA PRZEŁAMUJĄCA — lifestyle z grafiką w tle
   =================================================== */

.cta-break-section {
  position: relative;
  background: url('/images/lifestyle-oriflame.webp') center center / cover no-repeat;
  overflow: hidden;
}

.cta-break-overlay {
  background: linear-gradient(135deg, rgba(255, 107, 71, 0.88) 0%, rgba(192, 61, 15, 0.92) 100%);
  padding: 88px 20px;
}

.cta-break-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-break-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.cta-break-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-break-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
}

.btn-break-cta {
  display: inline-block;
  background: #fff;
  color: var(--coral-dark);
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 44px;
  font-weight: 900;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-break-cta:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

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

.bio-section {
  background: #fdf0ec;
  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(--coral-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(--coral-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(--coral);
}

.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;
}

/* ===================================================
   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);
}

/* ===================================================
   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; }
}

/* ===================================================
   SCROLL TO TOP BUTTON
   =================================================== */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,71,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 20px rgba(255,107,71,0.45);
}
