:root {
  --bg: #eef2f8;
  --bg2: #e2e9f3;
  --surface: #ffffff;
  --navy: #1a2d4a;
  --navy-dark: #0f1f35;
  --navy-mid: #2a4068;
  --text: #1a2d4a;
  --muted: #5a6b82;
  --gold: #b8963e;
  --gold-light: #d4b76a;
  --gold-pale: #f5ecd4;
  --line: rgba(26, 45, 74, 0.12);
  --line-gold: rgba(184, 150, 62, 0.35);
  --radius: 16px;
  --shadow: 0 8px 28px rgba(15, 31, 53, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--navy-mid); text-decoration: none; font-weight: 500; }
a:hover { color: var(--gold); }

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 45, 74, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(15, 31, 53, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
}

.brand-lockup img { height: 2.75rem; width: auto; }

.brand-lockup span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.2s;
}

.nav-cta:hover {
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 150, 62, 0.35);
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
}

.nav-link:hover { color: var(--gold-light); }

@media (max-width: 560px) {
  .nav-link { display: none; }
}

/* ── Hero ── */

.hero {
  padding: 3.5rem 0 4rem;
  background:
    linear-gradient(135deg, #fff 0%, var(--bg) 50%, #dde6f2 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy-dark);
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(184, 150, 62, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 6px 18px rgba(184, 150, 62, 0.38);
  color: var(--navy-dark);
}

.btn-secondary {
  background: var(--surface);
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.btn-block { width: 100%; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stat-pill {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

.stat-pill strong {
  color: var(--navy);
  font-weight: 600;
}

.hero-photo-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 3px var(--gold-pale);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(to top, rgba(15, 31, 53, 0.88), transparent);
  color: #fff;
}

.badge-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.badge-role {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Split sections ── */

.split-section { padding: 3.5rem 0; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-grid--reverse .split-media { order: 2; }
.split-grid--reverse .split-copy { order: 1; }

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.split-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.split-copy p em {
  color: var(--navy);
  font-style: normal;
  font-weight: 500;
}

.trust-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

/* ── Konkurence ── */

.competitor-section {
  background: var(--bg2);
  border-block: 1px solid var(--line);
}

.competitor-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 320px;
  margin: 0 auto;
}

.competitor-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.competitor-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0.5rem 0 0.25rem;
  line-height: 1;
}

.competitor-price small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.competitor-tagline {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.competitor-catch {
  list-style: none;
  font-size: 0.88rem;
  color: #8b3a3a;
}

.competitor-catch li {
  padding: 0.4rem 0;
  border-top: 1px dashed rgba(139, 58, 58, 0.25);
}

.competitor-catch li::before {
  content: '− ';
  font-weight: 700;
}

.compare-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  width: 80%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.compare-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 1.25rem;
}

.compare-cta {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.compare-cta a {
  color: var(--navy-mid);
  font-weight: 600;
}

/* ── Kompletní salon ── */

.complete-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.complete-section .section-head h2 { color: #fff; }
.complete-section .section-head p { color: rgba(255, 255, 255, 0.75); }

.complete-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.65rem 1.25rem;
  list-style: none;
  max-width: 52rem;
  margin: 0 auto 1.5rem;
}

.complete-checklist li {
  font-size: 0.95rem;
  padding-left: 1.6rem;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
}

.complete-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.complete-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  max-width: 36rem;
  margin: 0 auto;
}

/* ── Ceník ── */

.pricing-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 2px 12px rgba(15, 31, 53, 0.06);
}

.pricing-card--featured {
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 36px rgba(184, 150, 62, 0.18);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.65rem;
  line-height: 1.1;
}

.pricing-amount span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1rem;
  min-height: 2.8em;
}

.pricing-desc--highlight {
  color: var(--navy);
  font-weight: 600;
  min-height: auto;
}

.pricing-features {
  list-style: none;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
}

.price-anchor {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  text-align: center;
}

.price-anchor-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.price-anchor-text {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.55;
}

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
}

.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
}

.compare-table thead th.col-featured {
  background: var(--gold);
  color: var(--navy-dark);
}

.compare-table tbody tr:nth-child(even) td {
  background: var(--bg);
}

.compare-table td.col-featured {
  background: rgba(245, 236, 212, 0.45);
  font-weight: 600;
}

.compare-table tbody tr:nth-child(even) td.col-featured {
  background: rgba(245, 236, 212, 0.65);
}

.contact-form select {
  width: 100%;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.15);
}

/* ── Features ── */

.features-section {
  padding: 4rem 0;
  background:
    linear-gradient(rgba(238, 242, 248, 0.92), rgba(226, 233, 243, 0.95)),
    url('https://haklweb.b-cdn.net/ULOV_KLIENTA/geralt-particles-7055781_1280.jpg') center / cover no-repeat;
  border-block: 1px solid var(--line);
}

section { padding: 3.5rem 0; }

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head--left {
  text-align: left;
  margin: 0 0 1.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.section-head p { color: var(--muted); }

.demo-hint {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--navy-mid);
  opacity: 0.85;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 2px 12px rgba(15, 31, 53, 0.05);
  transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: var(--line-gold);
  transform: translateY(-2px);
}

.feature h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-weight: 600;
}

.feature p { color: var(--muted); font-size: 0.93rem; }

.reviews-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-section .split-copy h2 { color: #fff; }
.reviews-section .split-copy p { color: rgba(255, 255, 255, 0.78); }
.reviews-section .eyebrow { color: var(--gold-light); }
.reviews-section .split-media { border-color: rgba(255, 255, 255, 0.12); }

/* ── Demos ── */

.demos {
  background: var(--bg2);
  border-block: 1px solid var(--line);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.demo-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.demo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.demo-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.demo-thumb.s1 { background: linear-gradient(135deg, #1a1a1a, #3d3428); color: var(--gold-light); }
.demo-thumb.s2 { background: linear-gradient(135deg, #e8f2ef, #a8d5c8); color: #2a5a50; }
.demo-thumb.s3 { background: linear-gradient(135deg, #1a0a3e, #ff2d95); color: #fff; }
.demo-thumb.s4 { background: linear-gradient(135deg, #faf6f0, #722f37); color: #3d2314; }

.demo-body {
  padding: 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-body h3 { font-size: 1.02rem; color: var(--navy); }
.demo-body p { color: var(--muted); font-size: 0.88rem; flex: 1; }

.demo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.demo-links a {
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--bg);
}

.demo-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Support ── */

.support-section {
  background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%);
  border-block: 1px solid var(--line-gold);
}

/* ── Steps ── */

#jak { background: var(--surface); border-block: 1px solid var(--line); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.step {
  padding: 1.35rem;
  border-left: 3px solid var(--gold);
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 10px rgba(15, 31, 53, 0.05);
}

.step h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step p { color: var(--muted); font-size: 0.9rem; }

.step-num {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* ── Contact ── */

#poptavka {
  background: linear-gradient(180deg, var(--bg) 0%, #dde6f2 100%);
  border-top: 1px solid var(--line);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-copy p { color: var(--muted); }

.contact-list {
  list-style: none;
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-list li { margin-bottom: 0.45rem; }

.contact-links {
  margin-top: 1.25rem;
  font-size: 0.93rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.15);
}

.checkbox-row {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.5rem !important;
  color: var(--text) !important;
}

.checkbox-row input { width: auto; margin-top: 0.2rem; accent-color: var(--gold); }

.form-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-msg.error { color: #c0392b; }
.form-msg.success { color: #2d6a4f; }

/* ── Footer ── */

.creator-bar {
  --creator-bar-bg: var(--navy-dark);
  --creator-bar-border: rgba(255, 255, 255, 0.1);
  --creator-bar-muted: rgba(255, 255, 255, 0.65);
  --creator-bar-link-hover: var(--gold-light);
}

.creator-bar a { color: var(--gold-light); }

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-wrap,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .compare-block {
    width: 100%;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .split-grid--reverse .split-media,
  .split-grid--reverse .split-copy {
    order: unset;
  }

  .hero-photo-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .hero { padding-top: 2.5rem; }
  .brand-lockup span { font-size: 1rem; letter-spacing: 0.06em; }
  .hero-actions .btn { width: 100%; }
}
