.elementor-20113 .elementor-element.elementor-element-f69beac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20113 .elementor-element.elementor-element-f69beac.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-20113 .elementor-element.elementor-element-182956c{width:100%;max-width:100%;}.elementor-20113 .elementor-element.elementor-element-49d1dd0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20113 .elementor-element.elementor-element-6301517{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20113 .elementor-element.elementor-element-ccac813{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20113 .elementor-element.elementor-element-4079ded{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20113 .elementor-element.elementor-element-d5881c1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20113 .elementor-element.elementor-element-e7bfee7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-20113 .elementor-element.elementor-element-f69beac{--width:97.426%;}}/* Start custom CSS for html, class: .elementor-element-d37154a */<script>
(function () {
  // Delegace kliknutí na celý dokument – spolehlivější v Elementoru
  document.addEventListener("click", function (event) {
    const btn = event.target.closest(".faq-question");
    if (!btn) return; // klik nebyl na otázku

    const item = btn.closest(".faq-item");
    if (!item) return;

    // pokud chceš, aby se otvírala vždy jen jedna, odkomentuj blok níže:
    /*
    document.querySelectorAll(".faq-item.open").forEach(function (openItem) {
      if (openItem !== item) {
        openItem.classList.remove("open");
      }
    });
    */

    item.classList.toggle("open");
  });
})();
</script>/* End custom CSS */
/* Start custom CSS *//* ==========
   ZÁKLAD / PROMĚNNÉ
   ========== */

:root {
  /* původní */
  --aw-bg: #f7f7ff;
  --aw-card: #ffffff;
  --aw-ink: #1b1742;
  --aw-muted: #4b5563;
  --aw-primary: #3b47f5;
  --aw-primary-soft: #f4f5ff;
  --aw-border-soft: rgba(226, 232, 255, 0.9);
  --aw-radius-lg: 26px;
  --aw-radius-md: 22px;
  --aw-shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.09);

  /* aliasy pro novější bloky */
  --ink: #0b1020;
  --muted: #687282;
  --card: #ffffff;
  --primary: #3b47f5;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* ==========
   GLOBAL: SECTION, CONTAINER, TITLES
   ========== */

.aw-section {
  padding: 70px 0;
}

.aw-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow,
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a1a4c5;
  font-weight: 600;
}

/* ==========
   BUTTONY
   ========== */

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a4e, #f14d7f);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.35);
  border: none;
  cursor: pointer;
}

.btn-gradient:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

/* sekundární tlačítko */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #d2d6f5;
  background: #ffffff;
  color: #374151;
  text-decoration: none;
}

/* hlavní tlačítka pro web (hero + CTA) */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a3f, #f6378a);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(246, 55, 138, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(246, 55, 138, 0.4);
  opacity: 0.95;
}

.btn-secondary {
  background: var(--aw-primary-soft);
  color: #171831;
  border: 1px solid var(--aw-border-soft);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  background: #ebedff;
  border-color: #c7ccff;
  transform: translateY(-1px);
}

/* ==========
   HERO – HOME
   ========== */

.home-hero {
  padding: 90px 0 80px;
  background: radial-gradient(
      circle at top left,
      #f7f5ff 0,
      #f7f7ff 40%,
      #f9fafb 100%
    );
}

.home-hero-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-hero-text {
  max-width: 540px;
}

.home-hero-text h1 {
  font-size: 32px;
  line-height: 1.25;
  color: var(--aw-ink);
  margin: 10px 0 12px;
  font-weight: 800;
}

.home-hero-text p {
  font-size: 15px;
  color: var(--aw-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-chip {
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--aw-primary-soft);
  color: #4b4f72;
  border: 1px solid var(--aw-border-soft);
}

/* akce */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* pravá část – fotka */
.home-hero-photo {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.home-hero-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #e6f0ff, #e5e7eb);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero-circle img {
  max-width: 260px;
  height: auto;
}

.home-hero-tag {
  padding: 6px 16px;
  border-radius: 999px;
  background: #020617;
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 500;
}

/* responsivita hero – tablet */
@media (max-width: 1024px) {
  .home-hero-wrap {
    flex-direction: column-reverse;
    text-align: center;
  }
  .home-hero-text {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .home-hero-photo {
    flex: unset;
  }
}

/* ==========
   S ČÍM POMÁHÁME / SLUŽBY – GRID
   ========== */

.services-section {
  padding: 120px 20px;
  text-align: center;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-subtitle {
  color: #6366f1;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.services-desc {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

.services-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 600px;
  text-align: left;
}

.services-benefits li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #333;
}

.services-benefits li:before {
  content: "•";
  color: #6366f1;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* 3 hlavní služby v gridu */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.service-btn:hover {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
}

/* responsivita služeb */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ==========
   PROČ MY
   ========== */

.aw-section.aw-why-us {
  padding: 96px 0 88px;
}

.aw-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.aw-why-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.aw-why-head .aw-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #7c83a1;
  font-weight: 600;
}

.aw-why-head h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
  color: #181836;
}

.aw-why-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6c7290;
}

/* grid */
.aw-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.aw-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 22px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.aw-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.09);
  border-color: rgba(59, 71, 245, 0.35);
}

.aw-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(59, 71, 245, 0.05);
  color: #3b47f5;
}

.aw-why-card h3 {
  margin: 4px 0 4px;
  font-size: 17px;
  line-height: 1.4;
  color: #1a1b3a;
}

.aw-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7088;
}

/* responsive proč my */
@media (max-width: 1024px) {
  .aw-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-why-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .aw-section.aw-why-us {
    padding: 72px 0 64px;
  }

  .aw-why-grid {
    grid-template-columns: 1fr;
  }

  .aw-why-card {
    padding: 20px 18px 22px;
  }

  .aw-why-head h2 {
    font-size: 24px;
  }
}

/* ==========
   NAŠI KLIENTI / SOCIAL PROOF
   ========== */

.aw-section.aw-clients {
  padding: 96px 0 80px;
}

.aw-clients-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.aw-clients-head h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: #181836;
}

.aw-clients-head p {
  font-size: 15px;
  color: #6b7088;
  line-height: 1.6;
}

.aw-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 40px;
}

.aw-client-logo {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 255, 0.9);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aw-client-logo img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.2s;
}

.aw-client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.aw-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* CTA pod logy */
.aw-center {
  text-align: center;
  margin-top: 20px;
}

.aw-btn-primary {
  background: linear-gradient(135deg, #ff8a54, #ff4d6d);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255, 109, 95, 0.35);
  transition: 0.2s;
}

.aw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 109, 95, 0.45);
}

/* responsive klienti */
@media (max-width: 1024px) {
  .aw-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .aw-section.aw-clients {
    padding: 72px 0 64px;
  }
  .aw-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========
   CASE STUDIES
   ========== */

.aw-section.aw-cases {
  padding: 96px 0 90px;
  background: #f9fafc;
}

.aw-cases-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.aw-cases-head h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #181836;
}

.aw-cases-head p {
  font-size: 15px;
  color: #6b7088;
  line-height: 1.7;
}

.aw-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.aw-case-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 255, 0.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aw-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
}

.aw-case-img img {
  display: block;
  width: 100%;
  height: auto;
}

.aw-case-body {
  padding: 20px 22px 22px;
}

.aw-case-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1b3a;
}

.aw-case-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

/* KPI */
.aw-case-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.kpi-tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3b47f5;
  font-weight: 600;
}

/* link */
.aw-case-link {
  font-size: 13px;
  font-weight: 600;
  color: #3b47f5;
  text-decoration: none;
}

.aw-case-link:hover {
  text-decoration: underline;
}

/* responsive case studies */
@media (max-width: 1024px) {
  .aw-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .aw-section.aw-cases {
    padding: 72px 0 72px;
  }

  .aw-cases-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========
   FAQ – JEDINÁ VERZE
   ========== */

.faq-section {
  padding: 80px 0 40px;
  background: transparent;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.faq-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted, #687282);
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.25;
  color: var(--ink, #0b1020);
}

.faq-intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted, #687282);
}

/* seznam */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card, #ffffff);
  border-radius: 18px;
  box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, 0.08));
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

/* otázka */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font: 600 15px/1.4 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink, #0b1020);
}

.faq-question span:first-child {
  text-align: left;
}

/* ikona */
.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(104, 114, 130, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary, #3b47f5);
}

.faq-icon::before {
  content: "+";
}

.faq-item.open .faq-icon::before {
  content: "×";
  transform: translateY(-1px);
}

/* odpověď */
.faq-answer {
  padding: 0 22px 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding-top 0.2s ease,
    padding-bottom 0.2s ease;
}

.faq-answer p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted, #687282);
}

/* otevřený stav */
.faq-item.open .faq-answer {
  max-height: 500px; /* prostor i pro delší odpověď */
  opacity: 1;
  padding-top: 0;
  padding-bottom: 18px;
}

/* responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 20px;
  }
  .faq-title {
    font-size: 24px;
  }
}

/* ==========
   ZÁVĚREČNÝ CTA – VARIANTA B (KARTA)
   ========== */

.cta-final-section {
  padding: 80px 0 100px;
  background: radial-gradient(circle at top, #f3f6ff 0, #f8f9ff 40%, #ffffff 100%);
}

.cta-final-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* karta */
.cta-final-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* levá strana */
.cta-final-left .cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b91a8;
  margin-bottom: 14px;
}

.cta-final-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
  color: #171831;
}

.cta-final-text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #6d7488;
}

.cta-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* pravá strana – seznam benefitů */
.cta-final-right {
  background: #f6f7ff;
  border-radius: 24px;
  padding: 24px 26px;
}

.cta-final-subtitle {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  color: #171831;
}

.cta-final-list {
  list-style: none; /* zruší základní puntíky – zůstává jen .dot */
  margin: 0 0 18px;
  padding: 0;
}

.cta-final-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #5e647a;
  margin-bottom: 10px;
}

.cta-final-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 7px;
  background: #3b47f5;
  box-shadow: 0 0 0 4px rgba(59, 71, 245, 0.18);
}

.cta-final-note {
  margin: 0;
  font-size: 13px;
  color: #8a90a5;
}

/* responsive CTA */
@media (max-width: 900px) {
  .cta-final-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .cta-final-section {
    padding: 60px 0 80px;
  }
}

/* FIX: Odstranění původní tečky, aby nezůstaly dvě */
.cta-final-list li::before {
  display: none !important;
}

/* ==========
   MOBIL – HOME HERO FIX
   ========== */

@media (max-width: 768px) {

  .home-hero {
    padding: 56px 0 48px;
  }

  .home-hero-wrap {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }

  .home-hero-text {
    max-width: 100%;
  }

  .home-hero-text h1 {
    font-size: 22px;
    line-height: 1.25;
    word-break: break-word;
  }

  .home-hero-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-chips {
    gap: 6px;
    margin-bottom: 16px;
  }

  .hero-chip {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .home-hero-photo {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .home-hero-circle {
    width: 220px;
    height: 220px;
  }

  .home-hero-circle img {
    max-width: 190px;
    height: auto;
  }

  .home-hero-tag {
    font-size: 11px;
    padding: 5px 12px;
  }
}
/* === HARD MOBILE FIX PRO HOME HERO – KONTEJNER === */
@media (max-width: 768px) {

  /* zúžíme JAKÝKOLIV přímý wrapper uvnitř .home-hero */
  .home-hero > div {
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* kdyby uvnitř byl ještě náš .home-hero-wrap, taky ho zúžíme */
  .home-hero-wrap {
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-hero-text {
    max-width: 100% !important;
  }

  .home-hero-text h1 {
    font-size: 22px !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
  }

  .hero-actions {
    width: 100% !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
  }
}
/* === HERO – MOBILNÍ FIX, BEZ ZMĚNY DESKTOPU === */
@media (max-width: 768px) {

  /* zúžení obsahu a sloupců */
  .hero-section {
    padding: 40px 0 32px;
  }

  .hero-inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column-reverse;   /* fotka nad textem */
    align-items: flex-start;
    gap: 24px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }

  /* typografie – menší, aby to nebylo „přes celou“ */
  .hero-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* štítky pod sebou, přes celou šířku */
  .hero-tags {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hero-tags span {
    display: block;
    width: 100%;
    font-size: 12px;
  }

  /* tlačítka pod sebou přes šířku */
  .hero-buttons {
    width: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* === F A Q – čistý moderní design === */

.aw-faq-section {
  padding: 90px 0;
}

.aw-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
}

.aw-faq-title {
  font-size: 32px;
  font-weight: 800;
  color: #1b1742;
  margin-bottom: 8px;
}

.aw-faq-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6f85;
  margin-bottom: 40px;
}

.aw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.aw-faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dcdffe;
  padding: 0;
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0 6px 20px rgba(59, 71, 245, 0.06);
}

.aw-faq-item[open] {
  border-color: #b9c1ff;
  box-shadow: 0 10px 28px rgba(59, 71, 245, 0.12);
}

/* QUESTION */
.aw-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1b3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aw-faq-question::-webkit-details-marker {
  display: none;
}

/* ICON */
.aw-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #3b47f5;
  color: #3b47f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: 0.25s ease;
}

.aw-faq-item:not([open]) .aw-faq-icon::before {
  content: "+";
}

.aw-faq-item[open] .aw-faq-icon::before {
  content: "×";
  transform: translateY(-1px);
}

/* ANSWER */
.aw-faq-answer {
  padding: 0 22px 20px 22px;
  font-size: 15px;
  color: #555a77;
  line-height: 1.65;
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 640px) {
  .aw-faq-title { font-size: 26px; }
  .aw-faq-question { padding: 18px 18px; font-size: 15px; }
  .aw-faq-answer { padding: 0 18px 18px; }
}/* End custom CSS */