/* Landing Page — Klub Můj dům
 * Načíst přes wp_enqueue_style() v functions.php
 * Závislost: Google Fonts Outfit (viz functions-snippet.php)
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', system-ui, sans-serif; color: #111827; background: #fff; line-height: 1.5; -webkit-font-smoothing: antialiased; }
    :root {
      --pink:      #E8225F;
      --pink-dark: #C41B52;
      --pink-bg:   rgba(232,34,95,0.09);
      --dark:      #111827;
      --body:      #374151;
      --muted:     #9CA3AF;
      --border:    #E5E7EB;
      --light:     #F9FAFB;
      --white:     #fff;
      --green:     #059669;
      --green-bg:  #F0FDF4;
      --green-bd:  #86EFAC;
      --radius:    14px;
      --shadow:    0 1px 4px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.09);
      --shadow-lg: 0 4px 8px rgba(0,0,0,0.06), 0 16px 60px rgba(0,0,0,0.16);
    }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

    /* ── HEADER ─────────────────────────────────── */
    .lp-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,13,20,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      height: 64px; display: flex; align-items: center;
    }
    .lp-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .lp-logo img { height: 36px; display: block; filter: brightness(0) invert(1); }
    .lp-logo-fallback { font-size: 18px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.03em; }
    .lp-header-cta {
      display: flex; align-items: center; gap: 20px;
    }
    .lp-header-login { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; font-weight: 500; transition: color .2s; }
    .lp-header-login:hover { color: #fff; }
    .btn-pink-sm {
      padding: 9px 20px; background: var(--pink); color: #fff;
      border-radius: 8px; font-size: 14px; font-weight: 700;
      text-decoration: none; transition: background .2s;
      border: none; cursor: pointer; font-family: inherit;
    }
    .btn-pink-sm:hover { background: var(--pink-dark); }

    /* ── HERO ───────────────────────────────────── */
    .hero {
      background: #0A0D14;
      padding: 120px 0 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(232,34,95,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start;
      position: relative; z-index: 1;
    }
    .hero-left { padding-top: 8px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--pink); background: rgba(232,34,95,.12);
      border: 1px solid rgba(232,34,95,.25);
      padding: 6px 14px; border-radius: 20px;
      margin-bottom: 22px;
    }
    .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--pink); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
    .hero-headline {
      font-size: clamp(36px, 4.5vw, 56px); font-weight: 900; color: #fff;
      line-height: 1.08; letter-spacing: -.03em;
      margin-bottom: 22px;
    }
    .hero-headline em { font-style: normal; color: var(--pink); }
    .hero-sub {
      font-size: 18px; color: rgba(255,255,255,.65);
      line-height: 1.6; margin-bottom: 36px; max-width: 520px;
    }
    .hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 40px; }
    .hero-bullets li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 16px; color: rgba(255,255,255,.85); font-weight: 500;
    }
    .hero-bullets li .check {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(5,150,105,.2); border: 1.5px solid rgba(5,150,105,.5);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .hero-bullets li .check svg { stroke: #34D399; }
    .hero-bullets li strong { color: #fff; }
    .hero-bullets li .badge-free {
      display: inline-block; font-size: 11px; font-weight: 700;
      background: var(--pink); color: #fff;
      padding: 2px 8px; border-radius: 20px; margin-left: 6px;
      vertical-align: middle;
    }
    .hero-scroll { display: none; }

    /* ── FORM CARD ──────────────────────────────── */
    .form-card {
      background: #fff; border-radius: 20px;
      box-shadow: var(--shadow-lg);
      padding: 36px 32px;
      position: sticky; top: 80px;
    }
    .form-card-header { margin-bottom: 28px; }
    .form-card-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
    .form-card-sub { font-size: 13px; color: var(--muted); }

    /* Step indicator */
    .step-indicator { display: flex; align-items: flex-start; margin-bottom: 24px; }
    .step-node { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; flex: 0 0 auto; width: 86px; }
    .step-circle {
      width: 28px; height: 28px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; flex-shrink: 0; transition: all .3s;
    }
    .step-circle.active   { background: var(--pink); color: #fff; }
    .step-circle.done     { background: var(--green); color: #fff; }
    .step-circle.upcoming { background: var(--border); color: var(--muted); }
    .step-label { font-size: 11px; font-weight: 600; color: var(--muted); line-height: 1.25; }
    .step-label.active { color: var(--dark); }
    .step-connector { flex: 1 1 auto; width: auto; height: 2px; background: var(--border); margin: 13px 2px 0; transition: background .3s; }
    .step-connector.done { background: var(--green); }

    .form-step { display: none; }
    .form-step.visible { display: block; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--body); margin-bottom: 5px; }
    .form-group input {
      width: 100%; padding: 11px 14px;
      border: 2px solid var(--border); border-radius: 9px;
      font-size: 14px; font-family: inherit; color: var(--dark);
      background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
    }
    .form-group input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,34,95,.1); }
    .form-group input.has-error { border-color: #EF4444; }
    .field-error { font-size: 11px; color: #EF4444; margin-top: 3px; display: none; }
    .field-error.visible { display: block; }

    .choice-section { margin-bottom: 18px; }
    .choice-label { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .choice-grid { display: flex; flex-direction: column; gap: 6px; }
    .choice-card {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 14px; border: 2px solid var(--border); border-radius: 9px;
      cursor: pointer; transition: all .2s; user-select: none;
    }
    .choice-card:hover { border-color: var(--pink); background: var(--pink-bg); }
    .choice-card.selected { border-color: var(--pink); background: var(--pink-bg); }
    .choice-radio {
      width: 18px; height: 18px; border-radius: 50%;
      border: 2px solid var(--border); flex-shrink: 0;
      transition: all .2s; position: relative;
    }
    .choice-card.selected .choice-radio { border-color: var(--pink); background: var(--pink); }
    .choice-card.selected .choice-radio::after {
      content: ''; position: absolute;
      width: 5px; height: 5px; background: #fff; border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    .choice-text { font-size: 13px; font-weight: 500; color: var(--dark); }

    .qual-banner { border-radius: 8px; padding: 12px 16px; margin-bottom: 16px; display: none; }
    .qual-banner.show { display: block; }
    .qual-banner.success { background: var(--green-bg); border: 1.5px solid var(--green-bd); }
    .qual-banner.info    { background: #EFF6FF; border: 1.5px solid #BFDBFE; }
    .qual-banner h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
    .qual-banner.success h4 { color: #166534; }
    .qual-banner.info    h4 { color: #1E40AF; }
    .qual-banner p  { font-size: 12px; color: var(--body); line-height: 1.5; }

    .addr-divider { font-size: 12px; font-weight: 700; color: var(--dark); padding: 12px 0 10px; border-top: 1px solid var(--border); margin-top: 2px; }

    .btn-pink-full {
      display: block; width: 100%; padding: 14px 20px;
      background: var(--pink); color: #fff; border: none; border-radius: 10px;
      font-size: 15px; font-weight: 700; font-family: inherit;
      cursor: pointer; transition: background .2s, box-shadow .2s; letter-spacing: -.01em;
    }
    .btn-pink-full:hover { background: var(--pink-dark); box-shadow: 0 4px 20px rgba(232,34,95,.3); }
    .btn-pink-full:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
    .btn-ghost-sm { background: none; border: none; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; font-family: inherit; transition: color .2s; }
    .btn-ghost-sm:hover { color: var(--dark); }
    .step-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }

    .form-checkbox { margin: 10px 0 16px; }
    .form-checkbox label { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--body); cursor: pointer; line-height: 1.5; }
    .form-checkbox input[type="checkbox"] { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; accent-color: var(--pink); }
    .form-checkbox a { color: var(--pink); text-decoration: none; }

    .form-foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }
    .form-foot svg { flex-shrink: 0; }

    /* Thank you */
    .thankyou-wrap { text-align: center; padding: 8px 0; }
    .ty-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--green-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
    .ty-icon svg { stroke: var(--green); }
    .thankyou-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
    .thankyou-wrap p { font-size: 14px; color: var(--body); line-height: 1.6; }
    .ty-list { background: var(--light); border-radius: 9px; padding: 14px 18px; text-align: left; margin: 16px 0; }
    .ty-list h5 { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
    .ty-list ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .ty-list li { font-size: 13px; color: var(--body); display: flex; gap: 7px; }
    .ty-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

    /* ── TRUST BAR ──────────────────────────────── */
    .trust-bar { background: var(--dark); padding: 32px 0; }
    .trust-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
    .trust-item {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      padding: 0 48px; text-align: center;
    }
    .trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.1); }
    .trust-num { font-size: 32px; font-weight: 900; color: var(--pink); letter-spacing: -.03em; line-height: 1; }
    .trust-label { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }

    /* ── SECTION COMMON ─────────────────────────── */
    .lp-section { padding: 72px 0; }
    .lp-section.gray { background: var(--light); }
    .lp-section.dark { background: #0A0D14; color: #fff; }
    .sec-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--pink); margin-bottom: 10px;
    }
    .sec-title {
      font-size: clamp(26px, 3vw, 36px); font-weight: 900;
      color: var(--dark); letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.15;
    }
    .lp-section.dark .sec-title { color: #fff; }
    .sec-sub { font-size: 16px; color: var(--muted); line-height: 1.6; margin-bottom: 36px; max-width: 600px; }
    .lp-section.dark .sec-sub { color: rgba(255,255,255,.5); }
    .sec-header { margin-bottom: 36px; }
    .sec-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
    .sec-link { font-size: 14px; font-weight: 700; color: var(--pink); text-decoration: none; white-space: nowrap; display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
    .sec-link:hover { text-decoration: underline; }

    /* ── CAROUSEL ───────────────────────────────── */
    .carousel-wrap { position: relative; }
    .carousel-track {
      display: flex; gap: 20px;
      overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; -webkit-overflow-scrolling: touch;
      padding-bottom: 4px;
    }
    .carousel-track::-webkit-scrollbar { display: none; }
    .carousel-nav { display: flex; gap: 8px; margin-top: 24px; }
    .carousel-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: #fff; border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .2s; flex-shrink: 0;
      color: var(--dark);
    }
    .carousel-btn:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
    .carousel-btn:disabled { opacity: .3; cursor: default; }
    .lp-section.dark .carousel-btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
    .lp-section.dark .carousel-btn:hover { background: rgba(255,255,255,.18); }

    /* Article card */
    .art-card {
      flex: 0 0 calc(33.333% - 14px); scroll-snap-align: start;
      background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
      overflow: hidden; text-decoration: none; color: inherit;
      transition: transform .2s, box-shadow .2s;
      display: flex; flex-direction: column;
    }
    .art-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
    .art-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
    .art-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
    .art-tag {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--pink);
      background: var(--pink-bg); padding: 3px 10px; border-radius: 20px;
    }
    .art-title { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.4; flex: 1; }
    .art-date { font-size: 12px; color: var(--muted); }

    /* House card */
    .house-card {
      flex: 0 0 calc(33.333% - 14px); scroll-snap-align: start;
      background: #fff; border-radius: var(--radius); overflow: hidden;
      text-decoration: none; color: inherit;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }
    .house-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
    .house-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
    .house-body { padding: 16px 18px; }
    .house-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
    .house-meta { display: flex; gap: 12px; }
    .house-meta span { font-size: 12px; color: var(--muted); font-weight: 500; }
    .house-meta strong { color: var(--dark); }

    /* Podcast card */
    .pod-card {
      flex: 0 0 calc(33.333% - 14px); scroll-snap-align: start;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius); overflow: hidden;
      text-decoration: none; color: #fff;
      transition: background .2s, transform .2s;
      display: flex; flex-direction: column;
    }
    .pod-card:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
    .pod-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
    .pod-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pod-play {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,.35); opacity: 0; transition: opacity .2s;
    }
    .pod-card:hover .pod-play { opacity: 1; }
    .pod-play-btn {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
    }
    .pod-play-btn svg { fill: var(--dark); margin-left: 3px; }
    .pod-body { padding: 16px 18px; flex: 1; }
    .pod-ep { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
    .pod-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: rgba(255,255,255,.9); }

    /* ── SURVEY SECTION ─────────────────────────── */
    .survey-section {
      background: linear-gradient(135deg, #E8225F 0%, #C41B52 100%);
      padding: 64px 0; position: relative; overflow: hidden;
    }
    .survey-section::after {
      content: ''; position: absolute; right: -80px; bottom: -80px;
      width: 360px; height: 360px; border-radius: 50%;
      background: rgba(255,255,255,.05); pointer-events: none;
    }
    .survey-inner {
      display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center;
      position: relative; z-index: 1;
    }
    .survey-tag {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
      background: rgba(255,255,255,.18); color: #fff;
      padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
    }
    .survey-title { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 14px; letter-spacing: -.02em; }
    .survey-desc { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 28px; max-width: 520px; }
    .survey-cta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 30px; background: #fff; color: var(--pink);
      border-radius: 10px; font-size: 16px; font-weight: 700;
      text-decoration: none; transition: background .2s, transform .1s;
    }
    .survey-cta:hover { background: #f8f8f8; transform: translateY(-1px); }
    .survey-mag img {
      height: 160px; width: auto;
      border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,.35);
      transform: rotate(3deg); display: block;
    }
    .survey-reward { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 10px; text-align: right; }

    /* ── EMAIL SERIES ───────────────────────────── */
    .email-section { padding: 64px 0; background: var(--light); }
    .email-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .email-visual {
      display: flex; gap: 12px; align-items: flex-end;
    }
    .email-card-stack { position: relative; height: 220px; flex: 1; }
    .email-mock {
      position: absolute; background: #fff; border-radius: 12px;
      box-shadow: var(--shadow); padding: 18px 20px;
      border: 1px solid var(--border); width: 80%;
    }
    .email-mock:nth-child(1) { top: 0; left: 0; transform: rotate(-2deg); }
    .email-mock:nth-child(2) { top: 30px; left: 28px; z-index: 1; }
    .email-mock:nth-child(3) { top: 60px; left: 56px; z-index: 2; transform: rotate(1deg); }
    .email-mock-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .email-mock-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--pink); }
    .email-mock-from { font-size: 11px; font-weight: 700; color: var(--dark); }
    .email-mock-line { height: 8px; background: var(--light); border-radius: 4px; margin-bottom: 6px; }
    .email-body-text { font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.25; }
    .email-sub { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
    .email-steps { display: flex; flex-direction: column; gap: 10px; }
    .email-step { display: flex; align-items: flex-start; gap: 12px; }
    .email-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--pink); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .email-step-text { font-size: 14px; color: var(--body); line-height: 1.4; padding-top: 4px; }

    /* ── FINAL CTA ──────────────────────────────── */
    .final-cta { padding: 72px 0; background: #fff; text-align: center; }
    .final-cta-inner { max-width: 600px; margin: 0 auto; }
    .final-cta h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--dark); letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.1; }
    .final-cta p { font-size: 16px; color: var(--muted); margin-bottom: 30px; }
    .final-cta-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 17px 38px; background: var(--pink); color: #fff;
      border-radius: 12px; font-size: 17px; font-weight: 700;
      text-decoration: none; transition: background .2s, box-shadow .2s, transform .1s;
      border: none; cursor: pointer; font-family: inherit;
    }
    .final-cta-btn:hover { background: var(--pink-dark); box-shadow: 0 6px 28px rgba(232,34,95,.35); transform: translateY(-1px); }
    .final-cta-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

    /* ── FOOTER ─────────────────────────────────── */
    .lp-footer { background: var(--dark); padding: 32px 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-logo img { height: 28px; filter: brightness(0) invert(1); }
    .footer-logo-text { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.4); }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: rgba(255,255,255,.7); }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

    /* ── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 1024px) {
      .art-card, .house-card, .pod-card { flex: 0 0 calc(50% - 10px); }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-card { position: static; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .trust-item { padding: 0 24px; }
      .art-card, .house-card, .pod-card { flex: 0 0 80vw; }
      .survey-inner { grid-template-columns: 1fr; }
      .survey-mag { display: none; }
      .email-inner { grid-template-columns: 1fr; }
      .email-card-stack { display: none; }
    }
/* ── CAROUSEL EMPTY STATE ───────────────────── */
.carousel-empty { font-size: 14px; color: var(--muted); padding: 32px 20px; }
.carousel-empty a { color: var(--pink); }

    /* ── HERO SIMPLIFIED ────────────────────────── */
    .hero-content { position: relative; z-index: 1; max-width: 660px; }
    .hero-eyebrow { display: none; }
    .hero-reg-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 36px; background: var(--pink); color: #fff;
      border-radius: 12px; font-size: 17px; font-weight: 700;
      text-decoration: none; transition: background .2s, box-shadow .2s, transform .1s;
    }
    .hero-reg-btn:hover { background: var(--pink-dark); box-shadow: 0 6px 28px rgba(232,34,95,.35); transform: translateY(-1px); }

    /* General pink button */
    .btn-pink {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; background: var(--pink); color: #fff;
      border-radius: 10px; font-size: 15px; font-weight: 700;
      text-decoration: none; transition: background .2s, box-shadow .2s;
      border: none; cursor: pointer; font-family: inherit;
    }
    .btn-pink:hover { background: var(--pink-dark); box-shadow: 0 4px 20px rgba(232,34,95,.3); }

    /* ── BENEFITS SECTION ───────────────────────── */
    .benefits-section { padding: 44px 0; }
    .ben-header { margin-bottom: 48px; }
    .ben-title {
      font-size: 32px; font-weight: 900; color: var(--dark);
      letter-spacing: -.025em; line-height: 1.2;
    }
    .ben-wrap {
      display: grid; grid-template-columns: minmax(420px, 1.1fr) 1fr; gap: 48px; align-items: center;
    }
    .ben-img-col { display: flex; justify-content: center; }
    .ben-mag-wrap {
      width: 100%; max-width: 580px;
      background: transparent !important; background-image: none !important;
      box-shadow: none; border-radius: 0; overflow: visible;
      margin: 0 auto;
    }
    .ben-mag-img { width: 100%; height: auto; object-fit: contain; display: block; }
    .ben-mag-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 48px; color: var(--muted); min-height: 320px;
    }
    .ben-list-col { display: flex; flex-direction: column; gap: 22px; }
    .ben-item { display: flex; align-items: flex-start; gap: 16px; }
    .ben-icon {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--pink); color: #fff;
      font-size: 15px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .ben-text { display: flex; flex-direction: column; gap: 4px; }
    .ben-stat { font-size: 16px; font-weight: 800; color: var(--dark); }
    .ben-desc { font-size: 14px; color: var(--body); line-height: 1.5; }
    .ben-cta { margin-top: 8px; }

    /* ── ARTICLES MAGAZINE GRID ─────────────────── */
    .art-mag-grid {
      display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
      align-items: start;
    }
    .art-mag-featured {
      text-decoration: none; color: inherit;
      border-radius: var(--radius); overflow: hidden;
      border: 1px solid var(--border);
      display: block;
      transition: transform .2s, box-shadow .2s;
    }
    .art-mag-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
    .art-mag-feat-img { aspect-ratio: 16/10; overflow: hidden; }
    .art-mag-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .art-mag-feat-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
    .art-mag-feat-title { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1.3; }
    .art-mag-feat-excerpt { font-size: 14px; color: var(--body); line-height: 1.55; }

    .art-mag-right { display: flex; flex-direction: column; gap: 16px; }
    .art-mag-side {
      text-decoration: none; color: inherit;
      border-radius: var(--radius); overflow: hidden;
      border: 1px solid var(--border);
      display: grid; grid-template-columns: 100px 1fr; gap: 0;
      transition: transform .2s, box-shadow .2s;
    }
    .art-mag-side:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
    .art-mag-side-img { aspect-ratio: 1/1; overflow: hidden; }
    .art-mag-side-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .art-mag-side-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 5px; justify-content: center; }
    .art-mag-side-title { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .art-mag-side-excerpt { font-size: 12px; color: var(--muted); line-height: 1.4; }

    /* ── LOCK CARD ──────────────────────────────── */
    .house-card.lock-card {
      display: flex; align-items: center; justify-content: center;
      background: var(--dark); border-color: transparent;
      min-height: 260px;
      text-decoration: none;
    }
    .house-card.lock-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .lock-body { padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .lock-icon { color: rgba(255,255,255,.4); margin-bottom: 4px; }
    .lock-count { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
    .lock-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.55; max-width: 200px; }
    .lock-cta { margin-top: 6px; font-size: 14px; padding: 10px 22px; }

    /* ── PODCAST FEATURED LAYOUT ────────────────── */
    .pod-featured-wrap {
      display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start;
    }
    .pod-featured-ep {
      text-decoration: none; color: inherit;
      border-radius: var(--radius); overflow: hidden;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      display: block; transition: background .2s, transform .2s;
    }
    .pod-featured-ep:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
    .pod-featured-thumb {
      position: relative; aspect-ratio: 16/9; overflow: hidden;
    }
    .pod-featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pod-play-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,.35);
    }
    .pod-play-btn-lg {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center;
      color: var(--dark);
    }
    .pod-featured-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
    .pod-ep { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); }
    .pod-featured-title { font-size: 18px; font-weight: 800; color: rgba(255,255,255,.95); line-height: 1.35; }
    .pod-featured-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.55; }

    .pod-list-ep {
      text-decoration: none; color: inherit;
      display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: center;
      padding: 14px; border-radius: var(--radius);
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
      transition: background .2s;
    }
    .pod-list-ep:hover { background: rgba(255,255,255,.08); }
    .pod-list-ep + .pod-list-ep { margin-top: 10px; }
    .pod-list-thumb { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; }
    .pod-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pod-list-thumb-ph { width: 100%; height: 100%; background: rgba(255,255,255,.08); min-height: 72px; }
    .pod-play-sm {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,.3); color: #fff;
    }
    .pod-list-body { display: flex; flex-direction: column; gap: 4px; }
    .pod-list-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.4; }

    /* ── REGISTRATION SECTION ───────────────────── */
    .reg-section { background: #fff; border-top: 1px solid var(--border); }
    .reg-wrap {
      display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "head form" "body form" "sp form"; grid-template-rows: auto auto 1fr; column-gap: 64px; row-gap: 14px; align-items: start;
    }
    .reg-head { grid-area: head; padding-top: 8px; }
    .reg-body { grid-area: body; }
    .reg-title {
      font-size: clamp(28px, 3vw, 38px); font-weight: 900; color: var(--dark);
      letter-spacing: -.025em; line-height: 1.15; margin-bottom: 12px;
    }
    .reg-sub { font-size: 15px; color: var(--body); line-height: 1.6; margin-bottom: 28px; }
    .reg-benefits {
      list-style: none; display: flex; flex-direction: column; gap: 12px;
    }
    .reg-benefits li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--body); line-height: 1.5;
    }
    .reg-check {
      color: var(--green); font-weight: 800; font-size: 15px; flex-shrink: 0; margin-top: 1px;
    }
    .reg-right { position: sticky; top: 80px; grid-area: form; }

    /* ── FAQ SECTION ────────────────────────────── */
    .faq-section {
      border-top: 3px solid var(--pink);
      background: #f7f8fa;
      padding-top: 48px; padding-bottom: 56px;
    }
    .faq-section .sec-header { margin-bottom: 32px; }
    .faq-section .sec-title { font-size: 26px; }
    .sec-label {
      display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--pink); margin-bottom: 10px;
    }
    .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      cursor: pointer; list-style: none; position: relative;
      display: flex; justify-content: flex-start; align-items: center; gap: 16px;
      padding: 18px 34px 18px 0; font-size: 15px; font-weight: 700; color: var(--dark);
      user-select: none; text-align: left;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--pink); flex-shrink: 0; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
    .faq-item[open] .faq-q::after { content: '−'; }
    .faq-a { padding: 0 0 18px; text-align: center; }
    .faq-a p { font-size: 14px; color: var(--body); line-height: 1.7; }
    .faq-contact {
      margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; gap: 16px;
    }
    .faq-contact-label { font-size: 14px; color: var(--muted); }
    .faq-contact-link {
      font-size: 14px; font-weight: 700; color: var(--pink);
      text-decoration: none;
    }
    .faq-contact-link:hover { text-decoration: underline; }

    /* ── RESPONSIVE (new sections) ──────────────── */
    @media (max-width: 1024px) {
      .ben-wrap { grid-template-columns: 1fr; gap: 40px; }
      .ben-img-col { display: none; }
      .art-mag-grid { grid-template-columns: 1fr; }
      .art-mag-right { display: none; }
      .pod-featured-wrap { grid-template-columns: 1fr; }
      .reg-wrap { grid-template-columns: 1fr; grid-template-areas: "head" "form" "body"; grid-template-rows: auto auto auto; gap: 24px; }
      .reg-right { position: static; }
    }
    @media (max-width: 768px) {
      .ben-title { font-size: 26px; }
      .reg-title { font-size: 26px; }
      .lock-body { padding: 20px 16px; }
    }


/* Katalog domů — featured + seznam */
.domy-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: stretch; }
.domy-feat { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.domy-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.domy-feat-img { aspect-ratio: 16/10; overflow: hidden; }
.domy-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.domy-feat-body { padding: 18px 20px 20px; }
.domy-budget { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.domy-budget b { font-size: 26px; font-weight: 900; color: var(--pink); letter-spacing: -.02em; }
.domy-budget span { font-size: 13px; color: var(--muted); }
.domy-feat-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 6px; line-height: 1.25; }
.domy-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 12px; }
.domy-meta i { font-style: normal; font-size: 12px; font-weight: 600; background: var(--light); border: 1px solid var(--border); border-radius: 999px; padding: 4px 10px; color: var(--body); }
.domy-quote { font-size: 14px; color: var(--body); border-left: 3px solid var(--pink); padding-left: 12px; font-style: italic; margin: 0; }
.domy-list { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.drow { display: flex; gap: 14px; align-items: center; flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.drow:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.drow-th { width: 96px; height: 76px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.drow-th img { width: 100%; height: 100%; object-fit: cover; display: block; }
.drow-body h4 { font-size: 14px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.drow-budget { font-size: 15px; font-weight: 900; color: var(--pink); margin-top: 2px; }
.drow-body small { font-size: 12px; color: var(--muted); }
@media (max-width: 860px) { .domy-wrap { grid-template-columns: 1fr; } }


/* Katalog domů — kompaktnější výška + obrázky přes celou výšku */
#catalog { padding-top: 44px; padding-bottom: 44px; }
#catalog .domy-feat-img { aspect-ratio: 16 / 9; }
#catalog .drow { align-items: stretch; padding: 0; gap: 0; overflow: hidden; }
#catalog .drow-th { width: 132px; height: auto; align-self: stretch; border-radius: 0; }
#catalog .drow-body { padding: 14px 16px; }


/* Katalog domů — v2: čtvercové obrázky, text dolů, CTA pod bannery */
#catalog .domy-list { display: flex; flex-direction: column; gap: 12px; height: 100%; }
#catalog .drow { flex: 1; align-items: stretch; padding: 0; gap: 0; overflow: hidden; }
#catalog .drow-th { aspect-ratio: 1 / 1; height: 100%; width: auto; flex: 0 0 auto; align-self: stretch; border-radius: 0; }
#catalog .drow-th img { width: 100%; height: 100%; object-fit: cover; display: block; }
#catalog .drow-body { display: flex; flex-direction: column; justify-content: flex-end; padding: 14px 16px; }
#catalog .domy-cta { flex: 0 0 auto; align-self: flex-start; margin-top: 4px; color: var(--pink); font-weight: 700; font-size: 14px; text-decoration: none; }
#catalog .domy-cta:hover { text-decoration: underline; }


/* Katalog domů — v3: kompaktní čtvercové bannery + zarovnání */
#catalog .domy-list { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; height: 100%; }
#catalog .drow { flex: 0 0 auto; align-items: stretch; padding: 12px; gap: 14px; overflow: hidden; }
#catalog .drow-th { width: 108px; height: 108px; aspect-ratio: auto; flex: 0 0 auto; align-self: center; border-radius: 10px; overflow: hidden; }
#catalog .drow-th img { width: 100%; height: 100%; object-fit: cover; display: block; }
#catalog .drow-body { display: flex; flex-direction: column; justify-content: flex-end; padding: 0; }
#catalog .domy-cta { align-self: flex-start; margin-top: 0; color: var(--pink); font-weight: 700; font-size: 14px; text-decoration: none; }
#catalog .domy-cta:hover { text-decoration: underline; }


/* Katalog domů — v4: vyplnit výšku, CTA těsně dole, menší mezera pod nadpisem */
#catalog .sec-header { margin-bottom: 18px; }
#catalog .sec-sub { margin-bottom: 0; }
#catalog .domy-list { justify-content: flex-start; gap: 12px; }
#catalog .drow { flex: 1 1 0; align-items: center; }
#catalog .drow-th { width: 116px; height: 116px; align-self: center; }
#catalog .drow-body { justify-content: center; }
#catalog .domy-cta { margin-top: 2px; }


/* Katalog domů — v5: CTA doprava */
#catalog .domy-cta { align-self: flex-end; text-align: right; }


/* Škola stavění — carousel článků */
#articles .blogtrack { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
#articles .blogtrack::-webkit-scrollbar { height: 8px; }
#articles .blogtrack::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
#articles .blogtrack > * { flex: 0 0 268px; scroll-snap-align: start; }
#articles .acard { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
#articles .acard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
#articles .acard-thumb { aspect-ratio: 16/11; background: var(--light); overflow: hidden; }
#articles .acard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
#articles .acard-in { padding: 15px 16px 18px; display: flex; flex-direction: column; gap: 6px; }
#articles .acard-cat { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--pink); }
#articles .acard h3 { font-size: 16px; font-weight: 800; line-height: 1.25; color: var(--dark); }
#articles .acard p { font-size: 13px; color: var(--body); line-height: 1.5; }
#articles .locktile { border: 2px solid var(--pink); border-radius: var(--radius); background: var(--pink-bg); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 22px 18px; cursor: pointer; text-decoration: none; }
#articles .locktile-ghost { position: absolute; inset: 0; padding: 16px; opacity: .16; filter: blur(2px); pointer-events: none; }
#articles .locktile-ghost span { display: block; height: 9px; background: var(--dark); border-radius: 4px; margin-bottom: 8px; }
#articles .locktile-ghost span:nth-child(2){ width: 80%; }
#articles .locktile-ghost span:nth-child(3){ width: 90%; }
#articles .locktile-ghost span:nth-child(4){ width: 70%; }
#articles .locktile-ic { width: 44px; height: 44px; border-radius: 50%; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; position: relative; z-index: 1; }
#articles .locktile b { font-size: 16px; font-weight: 800; color: var(--dark); position: relative; z-index: 1; margin-top: 12px; }
#articles .locktile small { font-size: 12px; color: var(--pink-dark); position: relative; z-index: 1; margin-top: 4px; }
#articles .locktile-go { margin-top: 12px; background: var(--pink); color: #fff; font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 8px; position: relative; z-index: 1; }


/* Škola stavění — šipky carouselu (vně karet, jen na hover) */
#articles .blogwrap { position: relative; }
#articles .blog-arrow { position: absolute; top: 92px; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; color: var(--dark); cursor: pointer; z-index: 5; opacity: 0; transition: opacity .2s, background .2s, border-color .2s, color .2s; }
#articles .blogwrap:hover .blog-arrow { opacity: 1; }
#articles .blog-arrow:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
#articles .blog-arrow:disabled { opacity: 0 !important; pointer-events: none; }
#articles .blog-prev { left: -44px; }
#articles .blog-next { right: -44px; }
@media (max-width: 900px){ #articles .blog-arrow { display: none; } }


/* Škola stavění — šipky vždy viditelné, ve středu karty, bez scrollbaru */
#articles .blogtrack { scrollbar-width: none; -ms-overflow-style: none; }
#articles .blogtrack::-webkit-scrollbar { display: none; height: 0; width: 0; }
#articles .blog-arrow { top: 50%; opacity: 1; }
#articles .blog-arrow:disabled { opacity: .35 !important; pointer-events: none; }


/* Podcast — kompaktní playlist (malá sekce) */
#podcast.lp-section { padding-top: 42px; padding-bottom: 42px; }
#podcast .sec-sub { margin-bottom: 22px; }
#podcast .podlist { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; overflow: hidden; }
#podcast .podrow { display: flex; align-items: center; gap: 14px; padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,.08); text-decoration: none; color: #fff; transition: background .15s; }
#podcast .podrow:hover { background: rgba(255,255,255,.05); }
#podcast .podrow.feat { background: rgba(232,34,95,.09); }
#podcast .podrow-play { width: 34px; height: 34px; border-radius: 50%; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#podcast .podrow-th { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: rgba(255,255,255,.08); display: block; }
#podcast .podrow-main { flex: 1; min-width: 0; }
#podcast .podrow-ep { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--pink); }
#podcast .podrow-tl { font-size: 14.5px; font-weight: 700; line-height: 1.25; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
#podcast .podrow-go { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.45); white-space: nowrap; flex-shrink: 0; }
#podcast .podrow:hover .podrow-go { color: var(--pink); }
#podcast .podlist-lock { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; background: rgba(232,34,95,.14); color: #fff; font-weight: 700; font-size: 13.5px; text-decoration: none; }
#podcast .podlist-lock:hover { background: rgba(232,34,95,.2); }
#podcast .podlist-lock .k { width: 24px; height: 24px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 12px; }
@media (max-width: 620px){ #podcast .podrow-th { display: none; } #podcast .podrow-tl { white-space: normal; } #podcast .podrow-go { display: none; } }


/* Podcast — v2: menší mezera pod nadpisem, díl 95 bez růžové */
#podcast .sec-sub { margin-bottom: 12px; }
#podcast .podrow.feat { background: transparent; }


/* Benefity — menší druhý řádek nadpisu */
.ben-title .ben-title-sub { display: inline-block; margin-top: 8px; font-size: .62em; font-weight: 700; color: var(--muted); letter-spacing: 0; }


/* Benefity — druhý řádek nadpisu v2 (růžová, výraznější) */
.ben-title .ben-title-sub { color: var(--dark); font-size: .6em; font-weight: 400; margin-top: 6px; letter-spacing: -.01em; }


/* Právní / obsahové stránky */
.container-narrow { max-width: 820px; }
.kmd-legal { padding-top: 116px; padding-bottom: 72px; background: #fff; }
.kmd-legal-title { font-size: 32px; font-weight: 900; letter-spacing: -.02em; color: var(--dark); line-height: 1.15; margin-bottom: 24px; }
.kmd-legal-content { color: var(--body); font-size: 16px; line-height: 1.7; }
.kmd-legal-content h1, .kmd-legal-content h2, .kmd-legal-content h3, .kmd-legal-content h4 { color: var(--dark); font-weight: 800; line-height: 1.3; margin: 28px 0 10px; }
.kmd-legal-content h2 { font-size: 22px; }
.kmd-legal-content h3 { font-size: 19px; }
.kmd-legal-content h4 { font-size: 17px; }
.kmd-legal-content p { margin: 0 0 14px; }
.kmd-legal-content ul, .kmd-legal-content ol { margin: 0 0 16px 22px; }
.kmd-legal-content li { margin-bottom: 6px; }
.kmd-legal-content a { color: var(--pink); }
.kmd-legal-content strong { color: var(--dark); }


/* Malé logo v patičce */
.footer-logo-img { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; }


/* PODCAST GRID */
.podgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.podcard{ display:flex; flex-direction:column; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius:14px; overflow:hidden; text-decoration:none; transition:transform .2s, border-color .2s, background .2s; }
.podcard:hover{ transform:translateY(-4px); border-color:rgba(232,34,95,.55); background:rgba(255,255,255,.08); }
.podcard-thumb{ position:relative; aspect-ratio:16/9; overflow:hidden; background:#0a0d14; }
.podcard-thumb img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.podcard:hover .podcard-thumb img{ transform:scale(1.05); }
.podcard-play{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:52px; height:52px; border-radius:50%; background:var(--pink); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 18px rgba(0,0,0,.4); transition:transform .2s; }
.podcard:hover .podcard-play{ transform:translate(-50%,-50%) scale(1.08); }
.podcard-play svg{ margin-left:3px; }
.podcard-info{ padding:15px 16px 18px; }
.podcard-tag{ font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--pink); }
.podcard-title{ font-size:15.5px; font-weight:700; color:#fff; line-height:1.32; margin-top:7px; }
.podlist-cta{ text-align:center; margin-top:32px; }
.pod-cta-btn{ display:inline-block; padding:14px 32px; font-size:15px; border-radius:12px; box-shadow:0 8px 22px rgba(232,34,95,.35); }
@media (max-width:900px){ .podgrid{ grid-template-columns:repeat(2,1fr); gap:16px; } }
@media (max-width:600px){ .podgrid{ grid-template-columns:1fr; } }


/* PODCAST MOBILE COMPACT */
@media (max-width:600px){
  .podgrid{ grid-template-columns:1fr; gap:12px; }
  .podcard{ flex-direction:row; align-items:stretch; }
  .podcard-thumb{ flex:0 0 164px; aspect-ratio:auto; min-height:112px; }
  .podcard-play{ width:44px; height:44px; }
  .podcard-play svg{ width:17px; height:17px; }
  .podcard-info{ flex:1; display:flex; flex-direction:column; justify-content:center; padding:12px 16px; }
  .podcard-tag{ font-size:11px; }
  .podcard-title{ font-size:15px; margin-top:5px; }
}


/* ARTICLES + CATALOG TWEAKS */
#catalog .domy-cta{ display:block; width:100%; text-align:center; align-self:center; margin-top:8px; }
@media (max-width:600px){
  #articles .sec-link{ display:none; }
  #articles .sec-header{ margin-bottom:14px; }
  #articles .blogtrack{ gap:12px; }
  #articles .blogtrack .acard, #articles .blogtrack .locktile{ flex:0 0 216px !important; width:216px !important; }
  #articles .acard-thumb{ aspect-ratio:16/10; }
  #articles .acard-in{ padding:11px 13px 13px; gap:4px; }
  #articles .acard-in h3{ font-size:14px; }
  #articles .acard-in p{ font-size:12.5px; }
}


/* FOOTER MOBILE CENTER */
@media (max-width:600px){
  .footer-inner{ flex-direction:column; align-items:center; text-align:center; gap:14px; }
  .footer-links{ justify-content:center; width:100%; gap:22px; }
  .footer-copy{ width:100%; text-align:center; }
}


/* BENEFITS MOBILE COMPACT */
@media (max-width:600px){
  .benefits-section{ padding:26px 0; }
  .ben-header{ margin-bottom:16px; }
  .ben-list-col{ gap:13px; }
  .ben-item{ gap:11px; }
  .ben-icon{ width:26px; height:26px; font-size:13px; margin-top:1px; }
  .ben-stat{ font-size:14.5px; }
  .ben-desc{ font-size:13px; line-height:1.4; }
}


/* ARTICLES DESKTOP WIDER - lock tile behind scroll */
@media (min-width:901px){
  #articles .blogtrack .acard, #articles .blogtrack .locktile{ flex:0 0 362px; width:362px; }
}


/* MOBILE FEATURED CARD - trochu mensi prvni banner v katalogu */
@media (max-width:600px){
  #catalog .domy-feat-img{ aspect-ratio: 2 / 1; }
  #catalog .domy-feat-body{ padding: 14px 16px 16px; }
  #catalog .domy-feat-title{ font-size: 17px; line-height: 1.2; margin-bottom: 4px; }
  #catalog .domy-budget{ font-size: 22px; }
  #catalog .domy-meta{ gap: 6px; margin: 8px 0; }
  #catalog .domy-quote{ font-size: 13px; line-height: 1.4; }
}


/* MOBILE PODCAST - mensi padding nad kartami */
@media (max-width:600px){
  .lp-section.dark{ padding-top: 30px; }
  .lp-section.dark .sec-header{ margin-bottom: 16px; }
}


/* KATALOG - karty vpravo na vysku banneru, CTA je v hlavicce sekce (desktop) */
@media (min-width:901px){
  #catalog .domy-list{ display:flex; flex-direction:column; justify-content:space-between; height:100%; }
}
