/* ── Variables (matched to loveofraw.cz design tokens) ── */
:root {
  --green:    #11af4b;
  --green-dk: #0d9040;
  --green-lt: #a0ce4e;
  --text:     #343434;
  --h1-color: #5b4949;
  --h2-color: #333333;
  --h3-color: #5b4949;
  --muted:    #747474;
  --bg:       #ffffff;
  --bg-alt:   #f6f6f6;
  --border:   #e0dede;
  --red:      #c0392b;
  --deep:     #22134A;
  --font:     'Josefin Sans', Arial, Helvetica, sans-serif;
  --max-w:    1199px;
  --banner-h: 60px;
  --radius:   4px;
  --shadow:   0 2px 20px rgba(0,0,0,0.07);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 18px;
  font-weight: 300;
  padding-top: var(--banner-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--h2-color); text-decoration: none; }
a:hover { color: var(--green); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.25; }
h1 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--h1-color);
  margin-bottom: 20px;
  letter-spacing: 0;
}
h2 {
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--h2-color);
  margin-bottom: 36px;
  letter-spacing: 0;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--h3-color);
  margin-bottom: 10px;
  letter-spacing: 0;
}
p { margin-bottom: 0; }
strong { font-weight: 600; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 72px 0; }
.bg-alt { background: var(--bg-alt); }

/* ════════════════════════════════
   1. URGENCY BANNER
════════════════════════════════ */
.urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.urgency-banner p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-banner strong {
  font-weight: 700;
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.22);
  padding: 5px 14px;
  border-radius: 5px;
  line-height: 1;
  display: inline-block;
}

/* ════════════════════════════════
   2. HERO
════════════════════════════════ */
.hero {
  padding: 64px 0 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}
.logo {
  height: 52px;
  width: auto;
  margin-bottom: 32px;
}
.hero-perex {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 560px;
  line-height: 1.6;
}

/* CTA Button – uppercase, loveofraw.cz style */
.cta-button {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 17px 40px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.cta-button:hover { background: var(--green-dk); color: #fff; }

.hero-countdown {
  margin-top: 22px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fdeeec;
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 16px 26px;
}
.hero-countdown-label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0.02em;
  text-align: center;
}
.hero-countdown-time {
  font-family: 'Courier New', monospace;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
  line-height: 1;
}

.hero-visual { width: 100%; }
.hero-photo {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Stats */
.stats-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1.2;
}
.stat-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}

/* ════════════════════════════════
   3. CARDS (Co test měří)
════════════════════════════════ */
.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; font-weight: 300; color: var(--muted); line-height: 1.6; }
.cards-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
}

/* ════════════════════════════════
   4. STEPS (Jak to funguje)
════════════════════════════════ */
.steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.steps { display: flex; flex-direction: column; gap: 36px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
}
.step-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-body p { font-size: 0.95rem; font-weight: 300; color: var(--muted); line-height: 1.6; }
.steps-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 380px;
  object-fit: cover;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ════════════════════════════════
   5. TWO-COL (Co od Kateřiny)
════════════════════════════════ */
.two-col { display: flex; flex-direction: column; gap: 44px; }
.two-col-left h3 { font-size: 1.05rem; margin-bottom: 20px; }
.value-list { display: flex; flex-direction: column; gap: 16px; }
.value-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
}
.value-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}
.feature-quote {
  background: var(--bg-alt);
  border-left: 3px solid var(--green-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 24px;
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
}
.feature-quote p { margin-bottom: 18px; }
.feature-quote footer {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
}

/* ════════════════════════════════
   6. TRUST
════════════════════════════════ */
.checklist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.checklist li {
  padding-left: 28px;
  position: relative;
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.6;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
}
.science-quote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--h2-color);
  margin-bottom: 44px;
  line-height: 1.65;
}

/* Anonymity block – uses deep brand purple */
.anonymity-block {
  background: var(--deep);
  color: #d4cfe8;
  border-radius: var(--radius);
  padding: 40px 32px;
}
.anonymity-block h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.anonymity-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.anonymity-list li {
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: #c5bede;
}
.anonymity-list li::before {
  content: '🔒';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 4px;
}
.anonymity-list li strong { color: #fff; font-weight: 600; }
.anonymity-quote {
  border-left: 2px solid rgba(255,255,255,0.25);
  padding: 12px 20px;
  font-style: italic;
  font-weight: 300;
  font-size: 0.94rem;
  color: #a89fcf;
  line-height: 1.65;
}

/* ════════════════════════════════
   7. PROFILE
════════════════════════════════ */
.profile { display: flex; flex-direction: column; gap: 36px; }
.profile-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
}
.profile-text h3 { font-size: 1.5rem; font-weight: 300; color: var(--h1-color); margin-bottom: 16px; }
.profile-text p {
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.profile-note {
  font-weight: 600;
  color: var(--green) !important;
  font-style: normal !important;
}

/* ════════════════════════════════
   8. FAQ ACCORDION
════════════════════════════════ */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--h2-color);
  letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q[aria-expanded="true"] { background: var(--bg-alt); color: var(--green); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 4px 24px 22px;
  background: var(--bg-alt);
}
.faq-a.is-open { display: block; }
.faq-a p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════
   9. ORDER BOX
════════════════════════════════ */
.order-section { background: var(--bg-alt); }

.order-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 40px 28px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.order-box h2 { margin-bottom: 24px; font-size: 1.6rem; }

.price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.price-original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
}
.price-current {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}
.price-includes {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.order-timer {
  display: inline-block;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.order-timer strong {
  color: var(--red);
  font-family: monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.order-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Step blocks */
.order-step {
  text-align: left;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.order-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  color: var(--h2-color);
  margin-bottom: 18px;
}
.order-step-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Payment */
.payment-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.payment-details {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 0.95rem;
  font-weight: 300;
  min-width: 220px;
  flex: 1;
}
.payment-details dt { color: var(--muted); }
.payment-details dd { margin: 0; color: var(--text); }
.payment-details dd strong { font-weight: 600; }
#vs-value, #vs-field { color: var(--green); }
.qr-wrap { flex-shrink: 0; }
.qr-box {
  width: 130px; height: 130px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  padding: 10px;
  line-height: 1.4;
  background: #fff;
}
.payment-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* Address form */
.order-form { margin-top: 4px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--h2-color);
  margin-bottom: 6px;
}
.form-row label .req { color: var(--red); font-weight: 600; }
.form-row label .optional { color: var(--muted); font-weight: 300; font-size: 0.78rem; }
.order-form input,
.order-form textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--primary-glow, rgba(17,175,75,0.15));
}
.order-form input.invalid,
.order-form textarea.invalid { border-color: var(--red); }
.order-form textarea { resize: vertical; min-height: 56px; }
.form-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.form-grid .form-row { flex: 1; min-width: 140px; }
.form-row-psc { flex: 0 0 110px !important; min-width: 90px !important; }

.form-error {
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 14px;
}
.form-privacy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.form-privacy a { color: var(--green); }

/* Success */
.order-success { text-align: center; padding: 12px 0; }
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.order-success h3 { font-size: 1.4rem; font-weight: 300; color: var(--h1-color); margin-bottom: 12px; }
.order-success p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}
.order-success strong { color: var(--green); font-weight: 600; }

.order-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 18px 40px;
  margin-top: 8px;
}
.order-cta[disabled] { opacity: 0.6; cursor: default; }

.order-box.expired { padding: 40px; }
.order-box.expired p { font-size: 1.05rem; font-weight: 300; color: var(--muted); }

/* ════════════════════════════════
   10. FOOTER
════════════════════════════════ */
.footer { background: #1a1a1a; color: #8c8989; padding: 48px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-copy { font-size: 0.875rem; font-weight: 300; }
.footer-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 300;
}
.footer-nav a { color: #8c8989; text-decoration: none; }
.footer-nav a:hover { color: var(--green); }
.disclaimer {
  font-size: 0.78rem;
  font-weight: 300;
  max-width: 480px;
  color: #666;
  line-height: 1.55;
}

/* ════════════════════════════════
   DESKTOP (≥ 768px)
════════════════════════════════ */
@media (min-width: 768px) {
  body { font-size: 20px; line-height: 1.36; }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.3rem; }

  /* Hero */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 72px;
  }
  .hero-content { flex: 1; }
  .hero-visual { flex: 1; }
  .hero-photo { max-height: 520px; }

  /* Stats */
  .stats-block { flex-direction: row; gap: 0; }
  .stat {
    flex: 1;
    padding: 0 32px;
    border-right: 1px solid var(--border);
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child  { border-right: none; }
  .stat-number { font-size: 1.8rem; }

  /* Cards */
  .cards { flex-direction: row; }
  .card { flex: 1; }

  /* Steps */
  .steps-wrap { flex-direction: row; align-items: flex-start; gap: 64px; }
  .steps { flex: 1; }
  .steps-visual { flex: 1; position: sticky; top: calc(var(--banner-h) + 24px); }
  .steps-photo { max-height: 500px; }

  /* Two-col */
  .two-col { flex-direction: row; gap: 64px; }
  .two-col-left { flex: 1; }
  .two-col-right { flex: 1; }

  /* Profile */
  .profile { flex-direction: row; gap: 64px; align-items: flex-start; }
  .profile-photo-wrap { flex-shrink: 0; }
  .profile-photo { max-width: 280px; }

  /* Order */
  .order-box { padding: 56px 56px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.6rem; }
}
