@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&family=Nunito:wght@800&display=swap');

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #14122B;
  background: #FFFFFF;
  width: 100%;
  overflow-x: hidden;
}

a { color: inherit; }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #EDEBFF;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
}

.logo-name {
  font-family: 'Nunito', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #0A1F44;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: #14122B;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.cta-pill {
  background: #C1FF3D;
  color: #14122B;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(193,255,61,0.5);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.back-link {
  color: #6B6880;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* Hamburger — zobrazuje sa až na mobile (viď media query nižšie) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 0 auto;
  border-radius: 2px;
  background: #14122B;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* CTA v rozbalenom menu — len mobil */
.nav-cta { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 72px 48px 100px;
  background: linear-gradient(160deg, #4F46E5 0%, #6D3CE8 55%, #7C2FE0 100%);
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(193,255,61,0.18);
}

.hero-blob-2 {
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.hero-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,255,61,0.16);
  border: 1px solid rgba(193,255,61,0.4);
  color: #C1FF3D;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.hero h1 .accent { color: #C1FF3D; }

.hero p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #FFFFFF;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.hero-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* ---------- CALCULATOR CARD ---------- */
.calc-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(20,18,43,0.35);
}

.calc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 4px;
}

.calc-subtitle {
  font-size: 14px;
  color: #6B6880;
  margin-bottom: 28px;
}

.slider-block { margin-bottom: 28px; }

.slider-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.slider-label {
  font-weight: 700;
  font-size: 15px;
  color: #14122B;
}

.slider-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #4F46E5;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track { -webkit-appearance: none; height: 8px; border-radius: 100px; }
input[type="range"]::-moz-range-track { height: 8px; border-radius: 100px; }

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #14122B;
  border: 4px solid #C1FF3D;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  margin-top: -10px;
}

input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #14122B;
  border: 4px solid #C1FF3D;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9895AC;
  margin-top: 6px;
}

.result-card {
  background: #F4F3FF;
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.result-label {
  font-size: 13px;
  color: #6B6880;
  font-weight: 600;
}

.result-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #14122B;
}

.result-value.small { font-size: 20px; }

.calc-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #C1FF3D;
  color: #14122B;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(193,255,61,0.5);
  border: none;
  cursor: pointer;
}

.calc-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #9895AC;
  margin-top: 12px;
}

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  background: #14122B;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  color: #C1FF3D;
  font-weight: 700;
  font-size: 14px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  padding: 100px 48px;
  background: #14122B;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  color: #4F46E5;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow.on-dark { color: #C1FF3D; }

.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.section-head h2.on-dark { color: #FFFFFF; }

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #F9F8FF;
  border-radius: 20px;
  padding: 32px 24px;
}

.benefit-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #C1FF3D;
  font-size: 20px;
  margin-bottom: 20px;
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 15px;
  color: #6B6880;
  line-height: 1.6;
}

.step-card { padding: 8px; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C1FF3D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #14122B;
  font-size: 22px;
  margin-bottom: 24px;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.review-card {
  background: #F9F8FF;
  border-radius: 20px;
  padding: 28px;
}

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

.cta-pill-solid {
  display: inline-block;
  background: #4F46E5;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 42px;
  border-radius: 100px;
  text-decoration: none;
}

/* ---------- INFO / LEGAL ---------- */
.info-section {
  padding: 80px 48px;
  background: #F4F3FF;
}

.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-grid h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 20px;
}

.info-grid ul {
  font-size: 15px;
  color: #4B4860;
  line-height: 1.8;
  padding-left: 20px;
  margin: 0 0 24px;
}

.info-grid p {
  font-size: 14px;
  color: #6B6880;
  line-height: 1.7;
  margin: 0;
}

.info-grid .strong-label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 48px;
  background: #14122B;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.7;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- FORM PAGE ---------- */
.form-page-body {
  background: #F9F8FF;
  min-height: 100vh;
}

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.form-header {
  margin-bottom: 36px;
}

.form-header h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.form-header p {
  font-size: 15px;
  color: #6B6880;
  margin: 0;
}

.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.fld {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #E3E1F5;
  font-size: 15px;
  color: #14122B;
  background: #FFFFFF;
  font-family: 'Manrope', sans-serif;
}

.fld:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #4F46E5;
}

textarea.fld { resize: vertical; }

.field-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #4B4860;
}

.field-hint {
  font-size: 12px;
  color: #9895AC;
  margin-top: 12px;
}

.subheading {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.divider {
  height: 1px;
  background: #EDEBFF;
  margin: 24px 0;
}

.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px dashed #C7C3EA;
  background: #FBFAFF;
  position: relative;
  overflow: hidden;
}

.file-label.small {
  gap: 8px;
  padding: 13px 14px;
}

.file-btn {
  background: #4F46E5;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.file-label.small .file-btn {
  font-size: 12px;
  padding: 6px 10px;
}

.file-name {
  font-size: 13px;
  color: #6B6880;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-label.small .file-name { font-size: 12px; }

.file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-group {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #4B4860;
  line-height: 1.6;
  margin-bottom: 16px;
  cursor: pointer;
}

.consent-label:last-child { margin-bottom: 0; }

.consent-label input { margin-top: 3px; }

.submit-note {
  text-align: center;
  font-size: 12px;
  color: #9895AC;
  margin-top: 14px;
}

.hint-note {
  font-size: 13px;
  color: #9895AC;
  margin: 0 0 18px;
}

/* ---------- SUCCESS / ERROR STATES ---------- */
.state-screen {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}

.state-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 40px;
}

.state-icon.success { background: #C1FF3D; }
.state-icon.error { background: #FFD9D9; color: #C0362C; }

.state-screen h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 30px;
  margin: 0 0 14px;
}

.state-screen h1.error-title { color: #C0362C; }

.state-screen p {
  font-size: 16px;
  color: #6B6880;
  line-height: 1.6;
  margin: 0 0 28px;
}

.retry-btn {
  display: inline-block;
  background: #C1FF3D;
  color: #14122B;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
}

.hidden { display: none !important; }

/* submit button loading */
.submit-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .row-2, .row-3 { grid-template-columns: 1fr; }
  .hero { padding: 40px 20px 64px; }
  .section, .info-section, .section-dark { padding: 64px 20px; }
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 28px; }
  .section-head { margin-bottom: 36px; }

  /* --- HLAVIČKA / MOBILNÉ MENU --- */
  .header { padding: 12px 18px; }
  .logo-icon { width: 34px; height: 34px; }
  .logo-name { font-size: 20px; }

  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 18px 18px;
    background: #FFFFFF;
    border-bottom: 1px solid #EDEBFF;
    box-shadow: 0 18px 30px rgba(20,18,43,0.10);
  }

  .nav.is-open { display: flex; }

  .nav a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid #F1EFFB;
  }

  .nav-cta {
    display: block;
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    padding: 15px 26px;
  }

  /* --- HERO --- */
  .hero p.lead { font-size: 17px; }
  .hero-stats { gap: 18px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 12px; }

  /* --- KALKULAČKA --- */
  .calc-card { padding: 24px 20px; border-radius: 22px; }
  .slider-value { font-size: 22px; }
  .result-card { padding: 16px 18px; }
  .result-value { font-size: 24px; }
  .result-value.small { font-size: 18px; }

  /* --- FORMULÁR --- */
  .form-wrap { padding: 32px 16px 72px; }
  .form-header h1 { font-size: 26px; }
  .card { padding: 22px 18px; }
  .state-screen { padding: 72px 20px; }
}

@media (max-width: 600px) {
  .cards-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .logo-name { font-size: 18px; }
  .footer { padding: 32px 18px; }
}

@media (max-width: 400px) {
  /* Na najužších displejoch by 3 štatistiky vedľa seba pretiekli */
  .hero-stats { flex-wrap: wrap; row-gap: 14px; }
  .hero-divider { display: none; }
}

/* ---------- PRÁVNE STRÁNKY (GDPR, obchodné podmienky) ---------- */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.legal-wrap h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.legal-updated {
  font-size: 14px;
  color: #9895AC;
  margin-bottom: 36px;
}

.legal-wrap h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 21px;
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid #EDEBFF;
}

.legal-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin: 26px 0 10px;
}

.legal-wrap p,
.legal-wrap li {
  font-size: 15px;
  line-height: 1.75;
  color: #4B4860;
}

.legal-wrap ul,
.legal-wrap ol { padding-left: 22px; margin: 0 0 16px; }
.legal-wrap li { margin-bottom: 8px; }

.legal-wrap a { color: #4F46E5; }

.legal-toc {
  background: #F4F3FF;
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 8px;
}
.legal-toc ul { margin: 0; padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 20px;
  font-size: 14.5px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 11px 12px;
  border-bottom: 1px solid #EDEBFF;
  line-height: 1.6;
  color: #4B4860;
}
.legal-table th {
  font-weight: 700;
  color: #14122B;
  background: #F9F8FF;
}
.legal-table-wrap { overflow-x: auto; }

/* Nevyplnený údaj — vizuálne nemožno prehliadnuť pred zverejnením */
.todo {
  background: #FFE9A8;
  color: #6B4E00;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 5px;
  white-space: nowrap;
}

.legal-note {
  background: #F9F8FF;
  border-left: 4px solid #4F46E5;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-note p { margin: 0; }

/* Odkazy na právne dokumenty v pätičke */
.footer-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.footer-links a:hover { text-decoration: underline; }

/* Pätička na podstránkach (formulár, právne stránky) */
.subfooter {
  border-top: 1px solid #EDEBFF;
  padding: 26px 24px 34px;
  text-align: center;
  background: #FFFFFF;
}
.subfooter-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-bottom: 10px;
}
.subfooter-links a {
  color: #4F46E5;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.subfooter-links a:hover { text-decoration: underline; }
.subfooter p {
  margin: 0;
  font-size: 12.5px;
  color: #9895AC;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .legal-wrap { padding: 36px 18px 72px; }
  .legal-wrap h1 { font-size: 26px; }
  .legal-wrap h2 { font-size: 19px; }
}

/* ---------- COOKIE LIŠTA ---------- */
.cc-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: #FFFFFF;
  border-top: 1px solid #E3E1F5;
  box-shadow: 0 -10px 40px rgba(20,18,43,0.16);
  padding: 18px 20px;
}

.cc-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cc-text { flex: 1; min-width: 0; }
.cc-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
  color: #14122B;
}
.cc-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6B6880;
}
.cc-text a { color: #4F46E5; }

.cc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cc-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
/* "Odmietnuť" musí byť rovnako výrazné ako "Prijať" — rovnaká veľkosť aj kontrast. */
.cc-btn-primary { background: #C1FF3D; color: #14122B; }
.cc-btn-secondary { background: #EDEBFF; color: #14122B; }
.cc-btn-ghost {
  background: transparent;
  color: #6B6880;
  text-decoration: underline;
  padding: 12px 10px;
}

/* Podrobné nastavenia */
.cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(20,18,43,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.cc-modal {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 30px;
  max-width: 560px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(20,18,43,0.35);
}

.cc-modal h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 20px;
  color: #14122B;
}

.cc-group {
  border-top: 1px solid #EDEBFF;
  padding: 16px 0;
}
.cc-group p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6B6880;
}
.cc-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cc-group-name {
  font-weight: 700;
  font-size: 15px;
  color: #14122B;
}
.cc-always {
  font-size: 12px;
  font-weight: 700;
  color: #4F46E5;
  background: #F4F3FF;
  padding: 4px 10px;
  border-radius: 100px;
}
.cc-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cc-switch input { width: 18px; height: 18px; cursor: pointer; }

.cc-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #EDEBFF;
}

@media (max-width: 780px) {
  .cc-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cc-actions { flex-wrap: wrap; }
  .cc-actions .cc-btn { flex: 1 1 auto; text-align: center; }
  .cc-btn-ghost { order: 3; flex-basis: 100%; }
  .cc-modal { padding: 24px 20px; }
  .cc-modal-actions { flex-direction: column-reverse; }
  .cc-modal-actions .cc-btn { width: 100%; }
}

/* Štítok pri nepovinných poliach */
.optional-tag {
  display: inline-block;
  margin-left: 8px;
  background: #EDEBFF;
  color: #4F46E5;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: #F9F8FF;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #14122B;
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  color: #4F46E5;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #4B4860;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-item summary { font-size: 15.5px; padding: 17px 48px 17px 18px; }
  .faq-item .faq-answer { padding: 0 18px 18px; font-size: 14.5px; }
}
