:root {
      --accent-warm: #eadfd2;
      --accent-sage: #dfe9df;
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-green: #e8f7ea;
      --text: #213327;
      --muted: #555;
      --line: rgba(17,17,17,0.08);
      --primary: #3fae49;
      --primary-hover: #2f8a3a;
      --dark: #213327;
      --container: 1240px;
      --radius: 14px;
      --shadow: 0 4px 20px rgba(17,17,17,0.06);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

    /* ── TOPBAR ── */
    .topbar { background: rgba(255,255,255,0.9); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); }
    .topbar-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
    .logo-placeholder { width: 150px; height: 48px; border: 2px dashed rgba(63,174,73,0.35); border-radius: 12px; background: rgba(63,174,73,0.04); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; flex-shrink: 0; }
    .top-nav { display: flex; align-items: center; gap: 22px; font-size: 0.92rem; font-weight: 600; color: #1f2e22; margin-left: 8px; flex: 1; }
    .top-nav a { transition: color 0.18s; }
    .top-nav a:hover, .top-nav a.active { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
    .search { display: flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; min-width: 220px; color: var(--muted); margin-left: 32px; margin-right: 8px; font-size: 0.95rem; cursor: text; }
    .search::before { content: "⌕"; font-size: 1.3rem; line-height: 1; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 22px; border-radius: 10px; border: 1px solid transparent; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 0.95rem; transition: transform 0.18s, background-color 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s; }
    .btn-primary { background: var(--primary); color: white; }
    .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(63,174,73,0.18); }
    .btn-dark { background: var(--dark); color: white; }
    .btn-dark:hover { background: #2f5c38; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(33,51,39,0.25); }
    .btn-danger { background: #e54848; color: white; }
    .btn-danger:hover { background: #c93d3d; transform: translateY(-1px); }
    .btn-secondary { background: white; border-color: var(--line); color: var(--text); }
    .btn-secondary:hover { border-color: #d7ccbf; background: #f7f1eb; transform: translateY(-1px); }
    .btn-ghost-light { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; }
    .btn-ghost-light:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
    .category-row { border-top: 1px solid var(--line); background: rgba(63,174,73,0.16); padding: 4px 0; }
    .main-nav-row { display: flex; align-items: center; padding: 6px 0; }
    .main-categories { display: flex; align-items: center; font-weight: 700; }
    .main-categories a { white-space: nowrap; font-size: 1rem; color: #2f3a31; transition: color 0.18s; }
    .main-categories a + a { position: relative; margin-left: 26px; padding-left: 26px; }
    .main-categories a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 18px; background: rgba(47,58,49,0.2); }
    .main-categories a:hover { color: var(--primary); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; margin-left: auto; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: flex; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: white; box-shadow: -4px 0 24px rgba(0,0,0,0.12); z-index: 200; padding: 80px 28px 32px; flex-direction: column; gap: 8px; transform: translateX(100%); transition: transform 0.3s; visibility: hidden; }
    .mobile-nav.open { transform: translateX(0); visibility: visible; }
    .mobile-nav a { font-size: 1.05rem; font-weight: 700; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--line); display: block; }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--primary); }
    .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text); line-height: 1; padding: 4px; }
    .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 199; }
    .mobile-nav-overlay.open { display: block; }

    /* ── LAYOUT ── */
    main { padding: 0 0 80px; }
    .breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--muted); padding: 20px 0 0; flex-wrap: wrap; }
    .breadcrumb a { color: var(--muted); transition: color 0.15s; }
    .breadcrumb a:hover { color: var(--primary); }
    .breadcrumb .sep { color: #595959; }

    /* ── HERO ── */
    .page-hero { padding: 32px 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .page-hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: #213327; border-radius: 999px; padding: 5px 14px; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
    .page-hero h1 { margin: 0 0 12px; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.08; font-weight: 800; }
    .page-hero-perex { margin: 0 0 24px; font-size: 1.08rem; color: var(--muted); line-height: 1.65; }
    .page-hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .page-hero-warning { margin-top: 18px; padding: 12px 16px; background: rgba(33,51,39,0.05); border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

    /* Hero stats */
    .hero-stats { background: var(--dark); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
    .hero-stats-title { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.06em; }
    .hero-stat-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
    .hero-stat-level { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.55); min-width: 130px; }
    .hero-stat-value { font-size: 1.1rem; font-weight: 800; color: white; }
    .hero-stat-bonus { font-size: 0.78rem; color: rgba(255,255,255,0.78); margin-top: 1px; }
    .hero-stat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .dot-as { background: #3fae49; }
    .dot-sup { background: #5dd46a; }
    .dot-am { background: #f59e0b; }
    .dot-man { background: #ef4444; }

    /* ── SEKCE ── */
    .section-head { margin-bottom: 24px; }
    .section-head h2 { margin: 0 0 4px; font-size: 1.35rem; font-weight: 800; }
    .section-head p { margin: 0; font-size: 0.93rem; color: var(--muted); }

    /* ── KARIÉRNÍ PLÁN — TIMELINE ── */
    .career-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; position: relative; }
    .career-timeline::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(to bottom, #3fae49, #5dd46a, #f59e0b, #ef4444); }
    .career-step { display: flex; gap: 24px; align-items: flex-start; padding-bottom: 28px; position: relative; }
    .career-step:last-child { padding-bottom: 0; }
    .career-step-dot { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; font-weight: 800; color: white; position: relative; z-index: 1; border: 3px solid white; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
    .dot-bg-as { background: #3fae49; }
    .dot-bg-sup { background: #5dd46a; }
    .dot-bg-am { background: #f59e0b; }
    .dot-bg-man { background: #ef4444; }
    .career-step-body { flex: 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); }
    .career-step-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
    .career-step-title { font-size: 1.08rem; font-weight: 800; margin: 0 0 3px; }
    .career-step-cc { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
    .career-step-discount { background: var(--surface-green); border: 1px solid rgba(63,174,73,0.2); border-radius: 999px; padding: 4px 12px; font-size: 0.82rem; font-weight: 800; color: #1a6125; white-space: nowrap; }
    .career-step-body p { margin: 0 0 14px; font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
    .career-bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .career-bonus { background: #f8faf8; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
    .career-bonus-num { font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
    .career-bonus-label { font-size: 0.75rem; color: var(--muted); margin-top: 3px; line-height: 1.35; }

    /* ── ODMĚNY A BONUSY ── */
    .rewards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
    .reward-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; transition: transform 0.2s, box-shadow 0.2s; }
    .reward-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(17,17,17,0.09); }
    .reward-icon { font-size: 2rem; }
    .reward-card h3 { margin: 0; font-size: 1rem; font-weight: 800; }
    .reward-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; }
    .reward-badge { display: inline-flex; align-items: center; padding: 3px 10px; background: var(--surface-green); border-radius: 999px; font-size: 0.76rem; font-weight: 700; color: #1a6125; align-self: flex-start; }

    /* ── REÁLNÁ ČÍSLA ── */
    .income-table { background: var(--dark); border-radius: var(--radius); padding: 32px 36px; margin-bottom: 48px; }
    .income-table h2 { margin: 0 0 6px; font-size: 1.2rem; font-weight: 800; color: white; }
    .income-table > p { margin: 0 0 24px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
    .income-rows { display: flex; flex-direction: column; gap: 2px; }
    .income-row { display: grid; grid-template-columns: 140px 1fr 1fr 1fr; gap: 16px; align-items: center; padding: 14px 16px; border-radius: 10px; }
    .income-row.header { background: rgba(255,255,255,0.06); }
    .income-row.data { background: rgba(255,255,255,0.03); transition: background 0.15s; }
    .income-row.data:hover { background: rgba(255,255,255,0.07); }
    .income-cell { font-size: 0.88rem; color: rgba(255,255,255,0.55); font-weight: 600; }
    .income-cell.label { color: white; font-weight: 700; font-size: 0.9rem; }
    .income-cell.value { color: #5dd46a; font-weight: 800; font-size: 0.95rem; }
    .income-cell.header-cell { font-size: 0.75rem; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
    .income-disclaimer { margin-top: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.78); }

    /* ── PRO KOHO ── */
    .forwhom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
    .forwhom-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; }
    .forwhom-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
    .forwhom-card h3 { margin: 0 0 5px; font-size: 0.97rem; font-weight: 800; }
    .forwhom-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* ── FAQ ── */
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 48px; }
    .faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
    .faq-item h3 { margin: 0 0 6px; font-size: 0.97rem; font-weight: 700; line-height: 1.35; }
    .faq-item p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

    /* ── DALŠÍ KROKY ── */
    .next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .next-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.2s, box-shadow 0.2s; }
    .next-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
    .next-card-label { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
    .next-card h3 { margin: 0; font-size: 0.97rem; font-weight: 800; line-height: 1.3; }
    .next-card p { margin: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.55; flex: 1; }
    .next-card-link { font-size: 0.86rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.18s; align-self: flex-start; }
    .next-card-link:hover { gap: 8px; }

    /* ── FOOTER ── */
    footer { background: #cdbba6; color: #2c241d; margin-top: 60px; padding: 54px 0 36px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr; gap: 30px; }
    .footer-title { font-size: 1rem; font-weight: 800; margin: 0 0 16px; color: #2c241d; text-align: center; }
    .footer-list { display: grid; gap: 10px; text-align: center; }
    .footer-list a { font-size: 0.93rem; transition: color 0.18s; }
    .footer-list a:hover { color: #1f2e22; }
    .footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(44,36,29,0.15); color: #2c241d; font-size: 0.9rem; text-align: center; }

    /* ── RESPONSIVE ── */
    @media (min-width: 769px) and (max-width: 1024px) {
      .search { min-width: 120px; }
      .page-hero { grid-template-columns: 1fr; gap: 28px; }
      .career-bonus-grid { grid-template-columns: repeat(2, 1fr); }
      .rewards-grid { grid-template-columns: repeat(3, 1fr); }
      .income-row { grid-template-columns: 120px 1fr 1fr 1fr; gap: 12px; }
    }
    @media (max-width: 768px) {
      .top-nav { display: none; }
      .hamburger { display: flex; }
      .search { min-width: 0; width: 150px; margin-left: 12px; margin-right: 0; }
      .category-row { overflow-x: auto; scrollbar-width: none; }
      .category-row::-webkit-scrollbar { display: none; }
      .page-hero { grid-template-columns: 1fr; gap: 28px; }
      .career-bonus-grid { grid-template-columns: repeat(2, 1fr); }
      .rewards-grid { grid-template-columns: repeat(2, 1fr); }
      .income-table { padding: 22px 20px; overflow-x: auto; }
      .income-rows { min-width: 500px; }
      .forwhom-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .next-steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }
    @media (max-width: 480px) {
      .search { display: none; }
      .container { width: calc(100% - 24px); }
      .page-hero h1 { font-size: 1.7rem; }
      .career-bonus-grid { grid-template-columns: 1fr 1fr; }
      .rewards-grid { grid-template-columns: 1fr; gap: 12px; }
      .faq-grid { grid-template-columns: 1fr; gap: 10px; }
      .next-steps { grid-template-columns: 1fr; gap: 10px; }
      .footer-grid { grid-template-columns: 1fr; }
      main { padding: 0 0 56px; }
    }
