/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #0c0b13;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #2c2440;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
}
img {
  max-width: 100%;
}
::selection {
  background: #ead9fb;
  color: #3a2a7a;
}

:root {
  --purple-dark: #2e1f5e;
  --purple-mid: #4a3f66;
  --text-body: #57506f;
  --text-muted: #5f5878;
  --accent-purple: #7c5ce0;
  --accent-purple-light: #9a7ce0;
  --btn-gradient: linear-gradient(100deg, #f3a6cf 0%, #b98cf0 52%, #88b4f5 100%);
  --btn-shadow: 0 14px 30px rgba(185, 140, 235, 0.42);
  --hero-bg: radial-gradient(1100px 560px at 80% -12%, #f7d7ec 0%, transparent 62%),
    radial-gradient(900px 640px at 6% -6%, #e6daf9 0%, transparent 58%),
    linear-gradient(160deg, #f4ecfd 0%, #eef4fc 55%, #fcedf5 100%);
}

.heading-font {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
}

.eyebrow {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
  margin: 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 16.5px;
  padding: 16px 30px;
  border-radius: 16px;
  box-shadow: var(--btn-shadow);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.btn-primary.small {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 14px;
}
.btn-primary.nav {
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-links a.btn-primary.nav,
.nav-links a.btn-primary.nav:hover {
  color: #fff;
}

.btn-appstore {
  background: #fff;
  border: 1px solid rgba(46, 31, 94, 0.14);
  color: var(--purple-dark);
  padding: 12px 18px;
  border-radius: 14px;
  transition: border-color 0.2s ease;
}
.btn-appstore:hover {
  border-color: rgba(46, 31, 94, 0.3);
}
.btn-appstore .icon {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.btn-appstore .label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.btn-appstore .label .small-line {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 600;
}
.btn-appstore .label .big-line {
  font-size: 15px;
  font-weight: 700;
}

/* ---------- Animations ---------- */
@keyframes tf-a {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-16px); }
}
@keyframes tf-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
@keyframes tf-c {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-14px); }
}
@keyframes tf-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(22px, -24px) scale(1.09); }
}
@keyframes tf-drift {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-18px) rotate(var(--r, 0deg)); }
}
@keyframes tf-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes tf-fly {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

a:hover .logo-butterfly {
  animation: tf-fly 0.8s ease-in-out infinite;
}

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(120, 90, 200, 0.1);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(150, 110, 230, 0.28);
}
.brand-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.brand-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--purple-dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--purple-mid);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 15px;
  border-radius: 999px;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover {
  background: rgba(124, 92, 240, 0.1);
  color: #5a3fb8;
}
.nav-links li.nav-cta {
  margin-left: 6px;
  color: rgba(255, 255, 255);
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2.4px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
header.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg);
}
header.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
header.nav-open .nav-burger span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px 18px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(120, 90, 200, 0.1);
}
header.nav-open .mobile-menu {
  display: flex;
}
.mm-link {
  display: block;
  padding: 13px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--purple-dark);
  transition: background 0.2s ease;
}
.mm-link:hover {
  background: rgba(124, 92, 240, 0.1);
}
.mm-cta {
  margin-top: 6px;
  padding: 14px 12px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  background: var(--btn-gradient);
  box-shadow: var(--btn-shadow);
  font-weight: 700;
}

@media (max-width: 820px) {
  .nav-links {
    display: none !important;
  }
  .nav-burger {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    flex-direction: column;
    gap: 14px;
  }
  .step-card {
    flex: none;
    min-width: 0;
    width: 100%;
    padding: 18px 18px 22px;
    border-radius: 20px;
    text-align: center;
  }
  .step-sketch {
    max-width: 200px;
    margin: 0 auto 14px;
  }
  .step-sketch svg {
    width: 55%;
  }
  .step-card:nth-child(2) .step-sketch svg,
  .step-card:nth-child(3) .step-sketch svg {
    width: 55%;
  }
  .step-num {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .step-card h3 {
    font-size: 19px;
  }
  .step-card p {
    font-size: 14px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--hero-bg);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 48px) clamp(64px, 8vw, 110px);
  overflow: hidden;
  scroll-margin-top: 76px;
}
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}
.hero-decor .blob-1 {
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(196, 158, 245, 0.55), transparent 70%);
  animation: tf-blob 11s ease-in-out infinite;
}
.hero-decor .blob-2 {
  bottom: -140px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 168, 208, 0.5), transparent 70%);
  animation: tf-blob 13s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.hero-copy {
  flex: 1 1 440px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #5a3fb8;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(120, 90, 200, 0.1);
}
.hero-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
  margin: 0 0 22px;
}
.hero-title .grad-word {
  background: linear-gradient(100deg, #a878ec 0%, #6f95f2 55%, #ee87c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 34px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-phones-wrap {
  flex: 1 1 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}
.hero-phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero-glow {
  position: absolute;
  width: min(440px, 92%);
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 68%);
}
.hero-emoji {
  position: absolute;
  z-index: 4;
  animation: tf-drift 8s ease-in-out infinite;
}
.hero-emoji.e1 { top: -2%; right: -9%; font-size: 28px; --r: 8deg; animation-duration: 7s; }
.hero-emoji.e2 { top: 44%; left: -11%; font-size: 20px; --r: -10deg; animation-duration: 9s; opacity: 0.9; }
.hero-emoji.e3 { bottom: 0%; right: -5%; font-size: 22px; --r: 12deg; animation-duration: 8s; opacity: 0.85; }
@media (max-width: 640px) {
  .hero-emoji {
    display: none;
  }
}

.phone {
  position: relative;
  background: #fff;
  padding: 6px;
}
.phone-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 602 / 1306;
  background: #efeaf6;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-left {
  z-index: 1;
  margin-right: -26px;
  width: clamp(128px, 15vw, 168px);
  border-radius: 34px;
  box-shadow: 0 26px 52px rgba(90, 60, 160, 0.24), 0 3px 10px rgba(0, 0, 0, 0.08);
  animation: tf-a 8s ease-in-out infinite;
}
.phone-mid {
  z-index: 3;
  width: clamp(158px, 19vw, 208px);
  border-radius: 40px;
  padding: 7px;
  box-shadow: 0 34px 64px rgba(90, 60, 160, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: tf-b 9s ease-in-out infinite;
}
.phone-mid .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 8px;
  background: #141420;
  border-radius: 99px;
  z-index: 2;
}
.phone-mid .phone-frame {
  border-radius: 33px;
}
.phone-right {
  z-index: 1;
  margin-left: -26px;
  width: clamp(128px, 15vw, 168px);
  border-radius: 34px;
  box-shadow: 0 26px 52px rgba(90, 60, 160, 0.24), 0 3px 10px rgba(0, 0, 0, 0.08);
  animation: tf-c 8.5s ease-in-out infinite;
}

/* ---------- Jak to funguje ---------- */
.steps-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 48px) clamp(40px, 6vw, 64px);
  scroll-margin-top: 76px;
}
.steps-grid {
  display: flex;
  gap: clamp(10px, 2.5vw, 22px);
  flex-wrap: nowrap;
}
.step-card {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(162deg, #f6f0fd 0%, #eef4fc 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: clamp(16px, 2vw, 26px);
  padding: clamp(14px, 2.6vw, 26px) clamp(14px, 2.6vw, 26px) clamp(18px, 3vw, 30px);
  box-shadow: 0 16px 38px rgba(120, 90, 200, 0.1);
  position: relative;
  transition: box-shadow 0.45s ease, opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
  box-shadow: 0 26px 56px rgba(120, 90, 200, 0.18) !important;
}
.step-sketch {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  margin-bottom: clamp(12px, 2vw, 22px);
  overflow: hidden;
  background: #fdfbff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 92, 200, 0.14);
}
.step-num {
  position: absolute;
  top: clamp(6px, 1vw, 10px);
  left: clamp(6px, 1vw, 10px);
  width: clamp(22px, 3vw, 30px);
  height: clamp(22px, 3vw, 30px);
  border-radius: 50%;
  background: linear-gradient(135deg, #8a63e6, #b878d8);
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1.4vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(140, 100, 220, 0.4);
  z-index: 2;
}
.step-sketch svg {
  width: 78%;
  height: auto;
  animation: tf-soft 6.5s ease-in-out infinite;
}
.step-card:nth-child(2) .step-sketch svg {
  width: 80%;
  animation-duration: 7s;
  animation-delay: -2.2s;
}
.step-card:nth-child(3) .step-sketch svg {
  width: 74%;
  animation-duration: 6s;
  animation-delay: -4s;
}
.step-card h3 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 2.2vw, 22px);
  color: var(--purple-dark);
  margin: 0 0 10px;
}
.step-card p {
  font-size: clamp(12.5px, 1.6vw, 15px);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Highlight section ---------- */
.highlight-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(16px, 2vw, 28px) clamp(20px, 4vw, 48px) clamp(48px, 7vw, 80px);
}
.highlight-card {
  position: relative;
  background: linear-gradient(135deg, #efe4fc 0%, #e6eefb 55%, #fbe3f0 100%);
  border-radius: 34px;
  padding: clamp(32px, 4vw, 60px);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.highlight-card .bg-emoji {
  position: absolute;
  top: -24px;
  right: 24px;
  font-size: 120px;
  opacity: 0.14;
  transform: rotate(-10deg);
}
.highlight-copy {
  position: relative;
  flex: 1 1 340px;
  min-width: 280px;
}
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.72);
  padding: 6px 15px 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #5a3fb8;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(120, 90, 200, 0.1);
}
.highlight-copy h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
  margin: 0 0 16px;
}
.highlight-copy p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: #524b6c;
  margin: 0 0 28px;
  max-width: 460px;
}
.highlight-phone-wrap {
  position: relative;
  flex: 0 1 240px;
  display: flex;
  justify-content: center;
  min-width: 200px;
}
.highlight-phone {
  position: relative;
  width: clamp(180px, 22vw, 232px);
  background: #fff;
  border-radius: 40px;
  padding: 7px;
  box-shadow: 0 30px 62px rgba(90, 60, 160, 0.26), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.highlight-phone .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 7px;
  background: #141420;
  border-radius: 99px;
  z-index: 2;
}
.highlight-phone .phone-frame {
  border-radius: 33px;
}

/* ---------- Benefits ---------- */
.benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 48px);
  scroll-margin-top: 76px;
}
.benefits-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.benefit-col {
  flex: 1 1 380px;
  min-width: 300px;
  background: linear-gradient(162deg, #f6f0fd 0%, #eef4fc 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 18px 44px rgba(120, 90, 200, 0.1);
}
.benefit-col-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--purple-dark);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(124, 92, 200, 0.14);
  width: 100%;
}
.benefit-col-title .ico {
  font-size: 24px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.benefit-tile {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(120, 90, 200, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-tile:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 26px rgba(120, 90, 200, 0.22) !important;
}
.benefit-item h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--purple-dark);
  margin: 0 0 4px;
}
.benefit-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- O Tušilce ---------- */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 48px);
  scroll-margin-top: 76px;
}
.about-card {
  position: relative;
  background: linear-gradient(155deg, #efe4fc 0%, #e6eefb 55%, #fbe3f0 100%);
  border-radius: 34px;
  padding: clamp(36px, 5vw, 68px);
  overflow: hidden;
}
.about-card .bg-emoji {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 120px;
  opacity: 0.18;
  transform: rotate(-12deg);
}
.about-copy {
  position: relative;
  max-width: 720px;
}
.about-copy h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--purple-dark);
  margin: 0 0 24px;
}
.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #524b6c;
  margin: 0 0 16px;
}
.about-copy .signature {
  margin: 0;
  font-weight: 600;
}
.about-copy .signature .name {
  display: block;
  margin-top: 12px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--accent-purple);
}

/* ---------- Dark CTA ---------- */
.dark-cta {
  position: relative;
  background: #14121f;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 48px);
  overflow: hidden;
  scroll-margin-top: 76px;
}
.dark-cta .glow-1 {
  position: absolute;
  top: -160px;
  left: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 100, 230, 0.5), transparent 68%);
}
.dark-cta .glow-2 {
  position: absolute;
  bottom: -180px;
  right: 4%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 150, 205, 0.42), transparent 68%);
}
.dark-cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.dark-cta-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.dark-cta-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: tf-fly 5s ease-in-out infinite;
}
.dark-cta h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
}
.dark-cta p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 38px;
  max-width: 560px;
}
.dark-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-section {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 48px);
  scroll-margin-top: 76px;
}
.faq-list {
  border-top: 1px solid rgba(124, 92, 200, 0.14);
}
.faq-item {
  border-bottom: 1px solid rgba(124, 92, 200, 0.14);
  cursor: pointer;
}
.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
}
.faq-q {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 1.6vw, 17.5px);
  font-weight: 700;
  color: var(--purple-dark);
  transition: color 0.2s ease;
}
.faq-ico {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124, 92, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.45s ease;
}
.faq-ico .hbar {
  position: absolute;
  width: 13px;
  height: 2.6px;
  background: var(--accent-purple);
  border-radius: 2px;
}
.faq-ico .vbar {
  position: absolute;
  width: 2.6px;
  height: 13px;
  background: var(--accent-purple);
  border-radius: 2px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.faq-ans {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}
.faq-ans p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: 0 46px 26px 4px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--text-muted);
}
@media (hover: hover) {
  .faq-item:hover .faq-ans {
    grid-template-rows: 1fr;
    opacity: 1;
  }
  .faq-item:hover .vbar {
    opacity: 0;
    transform: scaleY(0);
  }
  .faq-item:hover .faq-ico {
    background: rgba(124, 92, 200, 0.18);
  }
  .faq-item:hover .faq-q {
    color: #5a3fb8;
  }
}
.faq-item.is-open .faq-ans {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-item.is-open .vbar {
  opacity: 0;
  transform: scaleY(0);
}
.faq-item.is-open .faq-ico {
  background: rgba(124, 92, 200, 0.18);
}
.faq-item.is-open .faq-q {
  color: #5a3fb8;
}

/* ---------- Kontakt ---------- */
.contact-section {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 48px) clamp(56px, 7vw, 96px);
  scroll-margin-top: 76px;
}
.contact-head {
  text-align: center;
  margin: 0 auto clamp(30px, 4vw, 42px);
}
.contact-head h2 {
  margin: 0 0 16px;
}
.contact-head p {
  font-size: clamp(16px, 1.5vw, 17.5px);
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 auto;
  max-width: 520px;
}
.contact-card {
  background: linear-gradient(162deg, #f6f0fd 0%, #eef4fc 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 18px 44px rgba(120, 90, 200, 0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-mid);
  margin-bottom: 8px;
}
.contact-form label .optional {
  opacity: 0.6;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(46, 31, 94, 0.14);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: #2c2440;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 200, 0.12);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}
.contact-form button {
  align-self: center;
  margin-top: 4px;
  border-radius: 14px;
}
.contact-error {
  display: none;
  font-size: 14px;
  color: #c0392b;
  margin: 0;
}
.contact-thanks {
  text-align: center;
  padding: 24px 0;
}
.contact-thanks .emoji {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 14px;
}
.contact-thanks h3 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--purple-dark);
  margin: 0 0 8px;
}
.contact-thanks p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.contact-thanks,
.contact-form.hidden {
  display: none;
}

/* ---------- Footer ---------- */
footer {
  background: #0c0b13;
  padding: clamp(44px, 6vw, 64px) clamp(20px, 4vw, 48px) max(30px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand {
  max-width: 320px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-row img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.footer-brand-row span {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.footer-brand p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}
.footer-bottom {
  padding-top: 22px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Mobile centering ---------- */
@media (max-width: 820px) {
  .mm-link {
    text-align: center;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .highlight-card {
    justify-content: center;
  }
  .highlight-copy {
    text-align: center;
  }
  .highlight-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .benefit-col {
    text-align: center;
  }
  .benefit-col-title {
    justify-content: center;
  }
  .benefit-item {
    flex-direction: column;
    align-items: center;
  }
  .about-copy {
    text-align: center;
  }
  .footer-top {
    justify-content: center;
    text-align: center;
  }
  .footer-brand-row {
    justify-content: center;
  }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
