/* Jurka malířství – clean custom stylesheet */

/* ========== BASE ========== */

:root {
  --bg: #fdfbff;
  --bg-soft: #f4f6ff;
  --primary: #6d8dff;
  --primary-soft: #e0e6ff;
  --secondary: #ffb6b9;
  --accent: #7ad9c6;
  --text: #111827;
  --muted: #6b7280;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

#kontakt,
#kontakt-karty,
#kontakt-telefon {
  scroll-margin-top: 84px;
}

body {
  margin: 0;
  font-family: 'Merriweather Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe6f0 0, #fdfbff 40%, #e5f4ff 75%, #f0fffb 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* Containers & layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: linear-gradient(135deg, #e0e7ff, #fdf2ff);
}

.section-reviews {
  background: linear-gradient(135deg, #4f46e5, #ec4899);
  color: #f9fafb;
}

.section-photos {
  background: #f5f3ff;
}

.section-contact {
  background: radial-gradient(circle at top, #e0f2fe 0, #fdfbff 50%, #fefce8 100%);
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  text-align: center;
  margin: 0 0 .7rem;
}

.section-title--light {
  color: #f9fafb;
}

.section-divider {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto 1.4rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.section-divider--light {
  background: linear-gradient(to right, #fee2e2, #fef3c7);
}

.section-lead {
  max-width: 620px;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: var(--muted);
  font-size: .97rem;
}

.section-lead--light {
  color: #e5e7eb;
}

.section-center {
  text-align: center;
  margin-top: 2rem;
}

/* ========== HEADER / NAV ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-group {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .9rem;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.brand-phone {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.brand-phone:hover {
  background: var(--primary);
  color: #fff;
}

.brand-phone i {
  font-size: .8rem;
}

/* Nav links */

.main-nav {
  display: flex;
  gap: .25rem;
  align-items: center;
}

.main-nav a {
  padding: .55rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.main-nav a:focus-visible,
.btn:focus-visible,
.photo-item:focus-visible,
.contact-link:focus-visible,
.copy-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .22rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), #9f7aea);
  box-shadow: 0 4px 14px rgba(109, 141, 255, 0.45);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle--open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}


/* Responsive nav */

@media (max-width: 900px) {
  .nav-container {
    height: 60px;
  }

  .brand-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    padding: .5rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease-out, opacity .18s ease-out;
  }

  .main-nav--open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    text-align: center;
    padding: .55rem 0;
  }
}

/* ========== HERO ========== */

.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: .9;
  pointer-events: none;
}

.hero-gradient--top {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(109, 141, 255, 0.75), rgba(122, 217, 198, 0));
  top: -120px;
  right: -60px;
}

.hero-gradient--bottom {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 182, 185, 0.9), rgba(255, 255, 255, 0.1));
  bottom: -140px;
  left: -80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 4rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-main,
.hero-side {
  position: relative;
}

.hero-main {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2.2rem;
}

@media (max-width: 600px) {
  .hero-main {
    padding: 2rem 1.6rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(109, 141, 255, 0.07);
  color: var(--primary);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1.2rem;
}

.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(109, 141, 255, 0.25);
  font-size: .7rem;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 0 0 .9rem;
}

.hero-title-highlight {
  color: var(--primary);
  display: block;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-list {
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
}

.hero-list i {
  font-size: .9rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  font-size: .8rem;
  color: var(--muted);
}

.hero-meta i {
  margin-right: .35rem;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 600;
}

/* rating card */

.hero-side {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .hero-side {
    justify-content: center;
  }

  .rating-card {
    margin-inline: auto;
  }
}

.rating-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.3rem;
  max-width: 320px;
}

.rating-title {
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--muted);
  margin: 0 0 .6rem;
}

.rating-stars img {
  max-width: 100%;
}

.rating-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .6rem;
}

/* ========== BUTTONS & LINKS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border-radius: 999px;
  padding: .8rem 1.7rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-main {
  background: linear-gradient(135deg, var(--primary), #9f7aea);
  color: #fff;
  box-shadow: 0 14px 30px rgba(109, 141, 255, 0.45);
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(109, 141, 255, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f9faff;
}

.link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== CARDS / GRID ========== */

.cards-grid {
  display: grid;
  gap: 1.6rem;
}

.cards-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.card p {
  margin-top: 0;
  font-size: .94rem;
  color: var(--muted);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .7rem;
  background: rgba(109, 141, 255, 0.1);
  color: var(--primary);
}

.card-benefit {
  text-align: center;
}

.card-benefit .card-icon {
  margin-inline: auto;
}

/* full-width card text inside section */
.card-fullwidth {
  margin-top: 2rem;
}

/* Ordered list */

.ordered-list {
  padding-left: 1.3rem;
  margin: .6rem 0 0;
}
.ordered-list li {
  margin-bottom: .5rem;
}

/* ========== CENÍK ========== */

.price-table-wrapper {
  margin: 0 auto 1rem;
  max-width: 720px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.price-table-headline {
  background: linear-gradient(135deg, var(--primary), #9f7aea);
  color: #fff;
  text-align: center;
  font-size: 1.05rem;
  padding: .9rem 1rem;
}

.price-table thead tr:last-child {
  background: #e5e7eb;
}

.price-table th,
.price-table td {
  padding: .7rem .9rem;
  font-size: .93rem;
  text-align: left;
}

.price-table tbody tr:nth-child(even) td {
  background: #f9fbff;
}

.text-right {
  text-align: right;
}

.cenik-note {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ========== RECENZE / REFERENCE ========== */

.review-card {
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
}

.review-card h3 {
  margin-bottom: .1rem;
}

.review-source {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6b7280;
}

.review-stars {
  color: #fbbf24;
  margin: .4rem 0 .6rem;
}

.section-subtitle-heading {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: .2rem;
  font-family: 'Merriweather', serif;
}

.review-logo {
  margin-top: 1.5rem;
}

.reference-card {
  background: rgba(15, 23, 42, 0.25);
  color: #e5e7eb;
}

/* místo klasického seznamu → štítky / „pill“ */
.reference-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.reference-card li {
  margin: 0;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
  white-space: nowrap;           /* můžeš klidně smazat, pokud chceš víc přelamování řádků */
}


/* ========== PHOTOS ========== */

.photo-grid {
  max-width: 1120px;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.photo-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.photo-caption {
  position: absolute;
  inset: 0;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f9fafb;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent 65%);
  opacity: 0;
  transition: opacity .2s ease;
}

.photo-item:hover .photo-caption {
  opacity: 1;
}

.photo-category {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin: 0 0 .2rem;
}
.photo-name {
  margin: 0;
  font-size: .9rem;
}

/* ========== KONTAKT ========== */

.contact-grid .card {
  text-align: center;
}

.contact-link {
  text-decoration: none;
  color: inherit;
}

.contact-link i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: .6rem;
}

.contact-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  display: block;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 700;
}

.copy-btn {
  border: none;
  margin-top: .4rem;
  background: none;
  color: var(--muted);
  font-size: .8rem;
  cursor: pointer;
}
.copy-btn i {
  margin-right: .3rem;
}

.copy-info {
  display: block;
  margin-top: .3rem;
  font-size: .78rem;
  color: var(--muted);
  opacity: 0;
  transition: opacity .15s ease;
}
.copy-info--visible {
  opacity: 1;
}

.contact-form-wrapper {
  margin-top: 2.5rem;
}

/* ========== FOOTER ========== */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.5rem 0 1.8rem;
  text-align: center;
  font-size: .85rem;
  color: #9ca3af;
}

/* ---- úprava kontakt karet ---- */

/* větší nápisy TELEFON / E-MAIL / PŮSOBNOST */
.contact-label {
  font-size: 0.95rem;        /* bylo 0.8rem */
  letter-spacing: 0.18em;
}

/* trochu větší konkrétní hodnoty (telefon, e-mail, Brno a okolí) */
.contact-value {
  font-size: 1.2rem;         /* bylo 1.05rem */
}

/* mnohem menší "Zkopírovat e-mail" */
.copy-btn {
  font-size: 0.7rem;         /* bylo 0.8rem */
  opacity: 0.8;
}

.copy-btn i {
  font-size: 0.75rem;
}

/* a drobný text potvrzení */
.copy-info {
  font-size: 0.7rem;
}

/* ===== LIGHTBOX PRO FOTKY – MENŠÍ, SE ŠIPKAMI ===== */

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
}

.photo-modal--open {
  display: block;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
}

.photo-modal-content {
  position: absolute;
  inset: 6% 10%;
  margin: auto;
  max-width: 900px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  background: #020617;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.photo-modal-content img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #020617;
}

.photo-modal-content figcaption {
  padding: .6rem 1rem .9rem;
  color: #e5e7eb;
  font-size: .9rem;
}

/* křížek */
.photo-modal-close {
  position: absolute;
  top: .5rem;
  right: .6rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.photo-modal-close:hover {
  background: rgba(30, 64, 175, 0.95);
}

/* šipky ← / → */
.photo-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.photo-modal-arrow--prev {
  left: .75rem;
}
.photo-modal-arrow--next {
  right: .75rem;
}
.photo-modal-arrow:hover {
  background: rgba(37, 99, 235, 0.95);
}

/* mobil – víc na celou obrazovku, ale lehčí okraje */
@media (max-width: 700px) {
  .photo-modal-content {
    inset: 9% 4%;
    max-height: 80vh;
    border-radius: 16px;
  }
  .photo-modal-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .photo-modal-close {
    top: .35rem;
    right: .45rem;
  }
}

/* ===== HERO – MOBILNÍ ÚPRAVY ===== */

@media (max-width: 600px) {
  .hero {
    padding-top: 3.2rem;
    padding-bottom: 2.4rem;
  }

  .hero-main {
    padding: 1.7rem 1.4rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.9rem;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .hero-title-highlight {
    display: inline;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-list {
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .hero-list li {
    font-size: 0.9rem;
  }

  .hero-list i {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .hero-cta {
    margin-bottom: 1rem;
  }

  .hero-meta {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}
/* =========================================================
   BAREVNĚJŠÍ HERO / ÚVOD
   (pouze vizuální změny, layout zůstává stejný)
   ========================================================= */

/* jemná barevná linka pod menu */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #6d8dff, #ec4899, #22c55e);
  opacity: 0.6;
}

/* hero pozadí – trochu výraznější, víc barev */
.hero {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 114, 182, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(145deg, #fdfbff 0%, #e0f2fe 40%, #fdf2ff 80%);
}

/* jemný „šum“ / textura přes hero – vypadá živěji */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.45) 0, transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(129, 140, 248, 0.3) 0, transparent 55%),
    radial-gradient(circle at 20% 100%, rgba(244, 114, 182, 0.3) 0, transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

/* původní rozmazané fleky o něco menší, aby to nebylo přepálené */
.hero-gradient--top {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -40px;
}
.hero-gradient--bottom {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -60px;
}

/* hero karta – jemný barevný „rám“ a trochu víc světla */
.hero-main {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 32px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  padding: 2.4rem 2.2rem;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(135deg, #6d8dff, #ec4899, #22c55e);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
}

/* badge nahoře – víc „čip“ */
.hero-badge {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.12), rgba(244, 114, 182, 0.12));
  color: #4f46e5;
}

.hero-badge-icon {
  background: #ffffff;
  border-color: rgba(129, 140, 248, 0.35);
}

/* zvýraznění části nadpisu – jemný přechod */
.hero-title-highlight {
  background: linear-gradient(120deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CTA tlačítko ještě výraznější */
.btn-main {
  background-image: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
}

/* drobný pastelový „chip“ u meta badge */
.hero-meta-pill {
  background: linear-gradient(120deg, #fef3c7, #e0f2fe);
}

/* mobil – aby to nebylo přeplácané a CTA bylo víc vidět */
@media (max-width: 600px) {
  .hero {
    padding-top: 3.1rem;
    padding-bottom: 2.6rem;
  }

  .hero-main {
    padding: 1.8rem 1.35rem;
    border-radius: 26px;
  }

  .hero-title {
    font-size: 1.55rem;
    margin-bottom: 0.55rem;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    margin-bottom: 0.9rem;
  }

  .hero-list {
    margin-bottom: 0.9rem;
  }

  .hero-cta {
    margin-bottom: 0.9rem;
  }
}

/* ========== FAQ ========== */

.faq-card {
  position: relative;
  cursor: pointer;
  padding-right: 3rem; /* místo pro ikonku vpravo */
}

.faq-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question {
  margin: 0;
  font-size: 1.02rem;
}

.faq-toggle {
  flex-shrink: 0;
  border: none;
  background: rgba(148, 163, 184, 0.12);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.faq-toggle i {
  font-size: 0.8rem;
  color: var(--muted);
}

.faq-card:hover .faq-toggle {
  background: rgba(109, 141, 255, 0.14);
}

.faq-card--open .faq-toggle {
  transform: rotate(180deg);
}

/* samotná odpověď – akordeon efekt */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .25s ease, margin-top .25s ease;
  opacity: 0;
}

.faq-card--open .faq-answer {
  margin-top: 0.6rem;
  opacity: 1;
  max-height: 400px; /* dostatečně velké pro text */
}

/* ========== FAQ layout ========== */

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-columns {
    grid-template-columns: 1fr;
  }
}

.faq-card {
  margin-bottom: 0;
}

/* ========== CENÍK – štítky místo odrážek ========== */

.cenik-tags-wrap {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.cenik-tags-heading {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.cenik-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.cenik-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}


/* ========== REVIEWS CTA ========== */

.reviews-cta {
  text-align: center;
  margin: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
}

.reviews-cta p {
  margin: 0;
}

.btn-light {
  background: #fff;
  color: var(--primary);
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-light:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}


/* Reference: jeden sloupec */
.cards-grid.cards-grid--ref {
  grid-template-columns: 1fr !important;
}