/* ═══════════════════════════════════════════════════════════════════
   Dziennik Autorefleksji — Landing Page
   ═══════════════════════════════════════════════════════════════════ */

.dz-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 80px;
  box-sizing: border-box;

  --g:    #2d6a4f;
  --g-dk: #1b4332;
  --g-lt: #d8f3dc;
  --g-bd: #b7e4c7;
  --am:   #e76f51;
  --am-dk:#c85a3f;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.dz-hero { padding: 48px 0 40px; }
.dz-hero-inner {
  display: flex;
  align-items: center;
  gap: 44px;
}
.dz-hero-img {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-up);
  object-fit: cover;
  display: block;
}
.dz-hero-text { flex: 1; min-width: 0; }

.dz-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--g-lt);
  color: var(--g);
  border: 1px solid var(--g-bd);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.dz-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.1;
}
.dz-sub {
  font-size: 15.5px;
  color: var(--text-2);
  margin: 0 0 20px;
  line-height: 1.6;
}
.dz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.dz-chip {
  padding: 6px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--text-2);
  box-shadow: var(--sh);
}
.dz-chip strong { color: var(--g); }
.dz-chip i { color: var(--g); margin-right: 4px; }

.dz-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.dz-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--am);
  color: #fff;
  border-radius: var(--r-lg);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(231,111,81,.35);
  transition: background .15s, transform .18s, box-shadow .18s;
  letter-spacing: .01em;
  white-space: nowrap;
}
.dz-hero-btn:hover {
  background: var(--am-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(231,111,81,.42);
  color: #fff;
}
.dz-hero-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: transparent;
  color: var(--g);
  border: 2px solid var(--g-bd);
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.dz-hero-btn-sec:hover { background: var(--g-lt); border-color: var(--g); color: var(--g); }

/* ── Główna sekcja ────────────────────────────────────────────────── */
.dz-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: stretch;
}

/* ── Opis (lewy) ──────────────────────────────────────────────────── */
.dz-desc {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 30px 28px;
  box-shadow: var(--sh-md);
  min-width: 0;
}
.dz-desc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--g);
  margin: 0 0 16px;
}
.dz-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dz-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.dz-benefits li > i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--g-lt);
  border: 1px solid var(--g-bd);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--g);
  margin-top: 2px;
}
.dz-benefits li strong { display: block; font-size: 13.5px; color: var(--text); margin-bottom: 2px; }

.dz-divider { height: 1px; background: var(--border-lt); margin: 20px 0; }

.dz-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dz-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
}
.dz-checks li i { font-size: 11px; color: var(--g); flex-shrink: 0; }

.dz-age-note { font-size: 12px; color: var(--text-4); margin: 0; }

/* ── Panel zamówienia (prawy) ─────────────────────────────────────── */
.dz-order {
  background: var(--surface);
  border: 1.5px solid var(--g-bd);
  border-radius: var(--r-xl);
  box-shadow: 0 6px 28px rgba(45,106,79,.13);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 360px;
  box-sizing: border-box;
}

/* Nagłówek karty */
.dz-order-head {
  background: linear-gradient(135deg, var(--g-dk) 0%, var(--g) 100%);
  padding: 20px 24px 18px;
}
.dz-order-head-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--g-lt);
  margin-bottom: 8px;
}
.dz-order-head-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-height: 52px;
}
.dz-order-head-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  min-width: 60px;
}
.dz-order-head-cur {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  min-width: 24px;
}
.dz-order-head-sub {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  line-height: 1.5;
}

/* Ciało karty */
.dz-order-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dz-country-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin: 0;
}
.dz-country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dz-cbtn {
  padding: 10px 6px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  text-align: center;
  white-space: nowrap;
}
.dz-cbtn:hover { border-color: var(--g); color: var(--g); }
.dz-cbtn.active { border-color: var(--g); background: var(--g-lt); color: var(--g); }

/* Qty picker */
.dz-qty-wrap { margin-top: 14px; }
.dz-qty-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin: 0 0 8px;
}
.dz-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  width: fit-content;
}
.dz-qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-2);
  cursor: pointer;
  transition: background .12s, color .12s;
  font-family: inherit;
  line-height: 1;
}
.dz-qty-btn:hover { background: var(--g-lt); color: var(--g); }
.dz-qty-num {
  min-width: 40px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 4px;
  line-height: 40px;
}


.dz-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 20px;
  background: var(--am);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 10px rgba(231,111,81,.25);
  letter-spacing: .01em;
}
.dz-buy-btn:hover { background: var(--am-dk); box-shadow: 0 4px 16px rgba(231,111,81,.35); color: #fff; }

/* Bank UK */
.dz-bank {
  background: var(--bg);
  border-radius: var(--r);
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dz-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.dz-bank-lbl { color: var(--text-3); flex-shrink: 0; }
.dz-bank-val { color: var(--text); font-weight: 600; }
.dz-bank-mono { font-family: 'Courier New', monospace; font-size: 14px; letter-spacing: .04em; }


/* Prezent box */
.dz-gift-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1.5px solid #f6d860;
  border-radius: var(--r-xl);
  box-shadow: 0 2px 10px rgba(212,160,23,.2);
  margin-top: 20px;
}
.dz-gift-icon {
  flex-shrink: 0;
  font-size: 32px;
  color: #b45309;
  line-height: 1;
}
.dz-gift-text {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  color: #78350f;
  line-height: 1.5;
}
.dz-gift-text strong { font-weight: 800; color: #78350f; }

/* Lock note */
.dz-lock-note {
  font-size: 11px;
  color: var(--text-4);
  margin-top: auto;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border-lt);
  line-height: 1.5;
}
.dz-lock-note i { color: var(--g); margin-right: 3px; }

/* ── Webinar — pełna szerokość ────────────────────────────────────── */
.dz-webinar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--g-dk) 0%, var(--g) 100%);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--sh-md);
  transition: transform .18s, box-shadow .18s;
}
.dz-webinar:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-up);
}
.dz-webinar-icon {
  flex-shrink: 0;
  font-size: 52px;
  color: rgba(255,255,255,.85);
  line-height: 1;
}
.dz-webinar-body { flex: 1; min-width: 0; }
.dz-webinar-body strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}
.dz-webinar-body span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.dz-webinar-cta { flex-shrink: 0; }
.dz-webinar-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.dz-webinar:hover .dz-webinar-btn-inner {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.6);
}

/* ── Footer logo ──────────────────────────────────────────────────── */
.dz-footer-logo { display: flex; justify-content: center; padding: 44px 0 0; }
.dz-footer-logo img {
  height: 42px;
  opacity: .65;
  filter: grayscale(30%);
  transition: opacity .15s;
}
.dz-footer-logo img:hover { opacity: 1; }

/* ── Modal formularz zamówienia ──────────────────────────────────── */
.om-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 16px 40px;
  overflow-y: auto;
}
.om-overlay.is-open { display: flex; }
.om-box {
  background: #fff;
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 620px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  position: relative;
  margin: auto;
  flex-shrink: 0;
}
.om-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.2);
  border: none; border-radius: 50%;
  color: #fff;
  font-size: 20px; font-weight: 400; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.om-close:hover { background: rgba(255,255,255,.35); }
.om-head {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  padding: 22px 28px 20px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.om-head-title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 3px; padding-right: 28px; }
.om-head-sub { font-size: 13px; color: rgba(255,255,255,.7); margin: 0; }
.om-body { padding: 24px 28px; }
.om-field { margin-bottom: 13px; }
.om-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.om-field input, .om-field select {
  width: 100%; box-sizing: border-box;
  padding: 9px 13px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 14px; font-family: inherit; color: var(--text); background: #fff;
  transition: border-color .15s;
}
.om-field input:focus, .om-field select:focus { border-color: #2d6a4f; outline: none; box-shadow: 0 0 0 3px rgba(45,106,79,.1); }
.om-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.om-errors { background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: var(--r); padding: 11px 15px; margin-bottom: 16px; }
.om-errors ul { margin: 0; padding: 0 0 0 16px; }
.om-errors li { font-size: 13px; color: #991b1b; padding: 2px 0; }
.om-section-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); margin: 16px 0 9px; display: block; }
.om-radios { display: flex; gap: 8px; margin-bottom: 12px; }
.om-radio-btn {
  flex: 1; display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border: 2px solid var(--border); border-radius: var(--r);
  cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--text-2);
  transition: border-color .15s, background .15s;
}
.om-radio-btn input[type=radio] { width: auto; flex-shrink: 0; accent-color: #2d6a4f; }
.om-radio-btn:has(input:checked) { border-color: #2d6a4f; background: #d8f3dc; color: #1b4332; }
.om-divider { height: 1px; background: var(--border-lt); margin: 16px 0; }
.om-check { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 16px; }
.om-check input[type=checkbox] { width: auto; flex-shrink: 0; margin-top: 3px; accent-color: #2d6a4f; }
.om-check label { font-size: 12.5px; color: var(--text-2); line-height: 1.55; }
.om-check a { color: #2d6a4f; }
.om-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; background: #2d6a4f; color: #fff;
  border: none; border-radius: var(--r); font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: background .15s;
}
.om-submit:hover { background: #1b4332; }

/* ── Potwierdzenie zamówienia (na stronie) ────────────────────────── */
.dz-order-ok {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 28px;
  margin-top: 24px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--r-xl);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(22,163,74,.12);
}
.dz-order-ok-icon { font-size: 32px; color: #16a34a; flex-shrink: 0; padding-top: 2px; }
.dz-order-ok-body { flex: 1; min-width: 0; }
.dz-order-ok-title { font-size: 17px; font-weight: 800; color: #15803d; margin: 0 0 4px; }
.dz-order-ok-nr { font-family: monospace; font-size: 15px; font-weight: 700; color: #166534; background: #bbf7d0; padding: 2px 10px; border-radius: 6px; display: inline-block; margin-bottom: 6px; }
.dz-order-ok-sub { font-size: 13px; color: #15803d; margin: 0 0 12px; }
.dz-order-ok-pay { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #16a34a; color: #fff; border-radius: var(--r); font-size: 14px; font-weight: 700; text-decoration: none; transition: background .15s; }
.dz-order-ok-pay:hover { background: #15803d; color: #fff; }
.dz-order-ok-bank { font-size: 13px; color: #15803d; }
.dz-order-ok-bank .dz-bank { margin-top: 8px; background: rgba(255,255,255,.6); }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .dz-hero-inner { flex-direction: column; gap: 24px; }
  .dz-hero-img { width: 100%; max-width: 300px; margin: 0 auto; }
  .dz-title { font-size: 28px; }
  .dz-hero-btns { flex-direction: column; }
  .dz-hero-btn, .dz-hero-btn-sec { width: 100%; justify-content: center; }
  .dz-main { grid-template-columns: 1fr; }
  .dz-order { width: 100%; }
  .dz-webinar { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
  .dz-webinar-icon { font-size: 40px; }
  .dz-webinar-btn-inner { width: 100%; justify-content: center; }
  .dz-bank-row { flex-direction: column; align-items: flex-start; gap: 1px; }
}
