:root {
  --amber: #e4a33f;
  --amber-dark: #cf8d24;
  --amber-soft: rgba(228, 163, 63, 0.12);
  --amber-line: rgba(228, 163, 63, 0.22);

  --text: #181b20;
  --text-strong: #111111;
  --muted: #5f6672;
  --muted-soft: #7a818d;

  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.12);

  --bg-body: #f1f2f4;
  --bg-light: #f7f7f8;
  --bg-soft: #eceef1;
  --bg-card: rgba(255, 255, 255, 0.96);
  --bg-card-soft: rgba(250, 250, 251, 0.98);

  --bg-dark: #15181d;
  --bg-dark-2: #1c2026;
  --bg-dark-3: #262b33;
  --footer-dark: #333333;

  --white: #ffffff;

  --shadow-sm: 0 10px 22px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.12);

  --max: 1240px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(228, 163, 63, 0.05), transparent 18%),
    linear-gradient(180deg, #f7f7f8 0%, #f1f2f4 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container,
.topbar-inner,
.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(228, 163, 63, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.topbar.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 108px;
  height: 36px;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  transition: opacity .2s ease;
}

.brand-logo-hover {
  opacity: 0;
}

.brand:hover .brand-logo-default {
  opacity: 0;
}

.brand:hover .brand-logo-hover {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.desktop-nav a,
.topbar-actions a,
.lang-btn {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition);
}

.desktop-nav a:hover,
.topbar-actions a:hover,
.lang-btn:hover {
  color: #111;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.lang-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-size: 15px;
}

.lang-menu a:hover {
  background: #fff5e4;
}

.mobile-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(228, 163, 63, 0.12), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(135deg, #13161b 0%, #1a1e24 48%, #111318 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 95%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 34%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 470px);
  gap: 54px;
  align-items: center;
  padding: 96px 0 82px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.section-kicker {
  color: var(--amber-dark);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.03;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-text,
.section-lead {
  font-size: 18px;
  margin: 22px 0 0;
}

.hero-text {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.benefits-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

#benefits .benefits-hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #111;
  box-shadow: 0 14px 30px rgba(228, 163, 63, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ebb04f 0%, #d79428 100%);
  box-shadow: 0 18px 34px rgba(228, 163, 63, 0.30);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(228, 163, 63, 0.12), transparent 32%);
  pointer-events: none;
}

.hero-panel-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
}

.hero-panel-item + .hero-panel-item {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(228, 163, 63, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  color: #f0c57a;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-panel strong {
  display: block;
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.08), transparent);
}

.section-light {
  background: linear-gradient(180deg, #f7f7f8 0%, #eeeff2 100%);
}

.section-soft {
  background: linear-gradient(180deg, #f3f4f6 0%, #eaecf0 100%);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

.two-col p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 960px;
  text-align: center;
  margin: 0 auto 52px;
}

.section-lead {
  color: var(--muted);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.intro-section {
  background:
    linear-gradient(180deg, #fcfcfd 0%, #f3f4f6 100%);
}

.intro-section .two-col > div:first-child {
  position: relative;
}

.intro-section .two-col > div:first-child::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber) 0%, rgba(228, 163, 63, 0.10) 100%);
}

.cards {
  display: grid;
  gap: 24px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.contact-card,
.band-card,
.step {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.card:hover,
.contact-card:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: var(--amber-line);
  box-shadow: var(--shadow-md);
}

.card-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--amber-dark);
  background: linear-gradient(180deg, rgba(228, 163, 63, 0.16) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(228, 163, 63, 0.18);
  margin-bottom: 18px;
}

.card h3,
.contact-card h3,
.band-card h3,
.step h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.18;
  color: var(--text-strong);
}

.card p,
.contact-card p,
.band-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.card p + p,
.contact-card p + p {
  margin-top: 10px;
}

#services {
  background:
    radial-gradient(circle at top right, rgba(228, 163, 63, 0.06), transparent 16%),
    linear-gradient(180deg, #f8f8f9 0%, #eff1f4 100%);
}

#services .section-head {
  margin-bottom: 56px;
}

#services .card {
  min-height: 100%;
}

#benefits {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 163, 63, 0.10), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(135deg, #17191d 0%, #20242b 50%, #15181d 100%);
  color: #fff;
}

#benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 95%);
  pointer-events: none;
}

#benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 36%),
    linear-gradient(90deg, transparent 0%, rgba(228, 163, 63, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

#benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-hero {
  padding: 26px 0 82px;
  text-align: center;
}

.benefits-hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.benefits-hero-title {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 80px);
  line-height: 1.01;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.benefits-hero-title span {
  color: var(--amber);
}

.benefits-hero-text {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.solutions-hub-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 163, 63, 0.08), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(135deg, #191d23 0%, #232831 50%, #171b21 100%);
  color: #fff;
}

.solutions-hub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 96%);
  pointer-events: none;
}

.solutions-hub-shell {
  position: relative;
  z-index: 1;
}

.solutions-hub-head {
  max-width: 980px;
  margin-bottom: 54px;
}

.solutions-hub-head .section-kicker {
  color: #f0c57a;
}

.solutions-hub-head h2 {
  color: #ffffff;
}

.solutions-hub-head .section-lead {
  color: rgba(255, 255, 255, 0.74);
  max-width: 860px;
}

.solutions-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.solutions-hub-card {
  position: relative;
  min-height: 100%;
  padding: 30px 28px 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(33, 38, 46, 0.96) 0%, rgba(24, 28, 35, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.solutions-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 163, 63, 0.28);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.solutions-hub-card-primary {
  background:
    radial-gradient(circle at top right, rgba(228, 163, 63, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(34, 39, 47, 0.98) 0%, rgba(25, 29, 36, 0.98) 100%);
}

.solutions-hub-card-accent {
  border-color: rgba(228, 163, 63, 0.22);
  box-shadow:
    0 0 0 1px rgba(228, 163, 63, 0.08),
    0 22px 50px rgba(0, 0, 0, 0.26);
}

.solutions-hub-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(228, 163, 63, 0.08);
  border: 1px solid rgba(240, 197, 122, 0.24);
  color: #f0c57a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-hub-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.solutions-hub-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

.solutions-hub-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.solutions-hub-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.solutions-hub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(228, 163, 63, 0.08);
}

@media (max-width: 1180px) {
  .solutions-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .solutions-hub-card h3 {
    font-size: 26px;
  }

  .solutions-hub-card p {
    font-size: 17px;
  }
}

@media (max-width: 680px) {
  .solutions-hub-card {
    padding: 24px 22px 22px;
    border-radius: 22px;
  }

  .solutions-hub-card h3 {
    font-size: 24px;
  }

  .solutions-hub-card p {
    font-size: 16px;
  }

  .solutions-hub-list li {
    font-size: 14px;
  }
}

#how {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 163, 63, 0.05), transparent 28%),
    linear-gradient(180deg, #fcfcfd 0%, #f1f3f6 100%);
}

#how::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(228, 163, 63, 0.03), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(228, 163, 63, 0.025), transparent 18%);
  pointer-events: none;
}

#how .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1460px);
}

#how .how-head {
  max-width: 1080px;
  margin-bottom: 46px;
}

#how h2 {
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #14183a;
}

#how .section-lead {
  max-width: 860px;
  margin-top: 18px;
  font-size: 18px;
  color: #6a7180;
}

/* celek pro každý krok */
.how-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.how-step {
  position: relative;
}

.how-step-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin-bottom: -11px;
  z-index: 2;
}

.how-step-line {
  display: none;
}

.how-step-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(251,249,245,0.98) 100%);
  border: 6px solid rgba(233, 220, 205, 0.82);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.88);
  font-size: 28px;
  font-weight: 700;
  color: #f19a12;
  transition:
    border-color .28s ease,
    color .28s ease,
    background .28s ease,
    transform .28s ease;
}

.how-step:hover .how-step-number {
  color: #cf8d24;
  border-color: rgba(228, 163, 63, 0.95);
  background: linear-gradient(180deg, #fffdfa 0%, #f8efe3 100%);
  transform: translateY(-1px);
}

@keyframes howProcessLine {
  0% {
    background-position: -180px 0;
  }
  100% {
    background-position: calc(100% + 180px) 0;
  }
}

/* svislé napojení */
.how-step-drop {
  position: relative;
  width: 2px;
  height: 34px;
  margin: 0 auto 0px;
  background: linear-gradient(180deg, rgba(228, 163, 63, 0.78), rgba(228, 163, 63, 0.28));
}

.how-step-drop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(228, 163, 63, 0.08);
  transition: box-shadow .35s ease, transform .35s ease;
}

/* karta */
.how-card {
  position: relative;
  min-height: 480px;
  padding: 34px 20px 28px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,250,252,0.98) 100%);
  border: 1px solid rgba(17, 17, 17, 0.045);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255,255,255,0.84);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.how-step:hover .how-card {
  transform: translateY(-8px);
  border-color: rgba(228, 163, 63, 0.24);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(228, 163, 63, 0.06);
}

.how-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8ef 0%, #f3eadf 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
  color: #e7a13f;
  transition: transform .35s ease, box-shadow .35s ease;
}

.how-step:hover .how-card-icon {
  transform: scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 0 0 10px rgba(228,163,63,0.06);
}

.how-card-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.9;
}

.how-card h3 {
  margin: 0;
  min-height: 98px;
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: #131d4d;
}

.how-card-accent {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px auto 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e7a33f 0%, #d98c1d 100%);
}

.how-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: #667085;
}

.how-step:hover .how-step-drop::after {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(228, 163, 63, 0.10);
}

.how-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.how-process::before {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(100% / 12);
  width: calc(100% - (100% / 6));
  height: 2px;
  background: rgba(228, 163, 63, 0.42);
  z-index: 0;
  pointer-events: none;
}

.how-process::after {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(100% / 12);
  width: calc(100% - (100% / 6));
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(228,163,63,0) 0%,
    rgba(228,163,63,0.92) 18%,
    rgba(253, 205, 132, 0.95) 50%,
    rgba(228,163,63,0.92) 82%,
    rgba(228,163,63,0) 100%
  );
  background-size: 180px 100%;
  background-repeat: no-repeat;
  animation: howProcessLine 3.8s linear infinite;
  z-index: 1;
  pointer-events: none;
}

/* spodní panel */
.how-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 36px auto 0;
  padding: 24px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(249,250,252,0.97) 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.how-bottom-info {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.how-bottom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8ef 0%, #f4e8da 100%);
  color: #e6a03a;
}

.how-bottom-icon svg,
.how-bottom-badge svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.9;
}

.how-bottom-info strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #171c43;
}

.how-bottom-info p {
  margin: 0;
  font-size: 18px;
  color: #6d7380;
}

.how-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255,249,240,0.95) 0%, rgba(255,245,231,0.98) 100%);
  border: 1px solid rgba(228, 163, 63, 0.22);
  color: #e28c12;
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

@media (max-width: 1380px) {
  #how .container {
    width: min(calc(100% - 32px), 1320px);
  }

  .how-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .how-card {
    min-height: 400px;
  }
}

@media (max-width: 820px) {
  .how-process::before,
  .how-process::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .how-process {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .how-step-top {
    min-height: 88px;
  }

  .how-step-number {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    font-size: 24px;
  }

  .how-card {
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .how-card-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
  }

  .how-card-icon svg {
    width: 44px;
    height: 44px;
  }

  .how-card h3 {
    min-height: auto;
    font-size: 22px;
  }

  .how-card p {
    font-size: 16px;
  }

  .how-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .how-bottom-info {
    align-items: flex-start;
  }

  .how-bottom-info strong {
    font-size: 22px;
  }

  .how-bottom-info p {
    font-size: 16px;
  }

  .how-bottom-badge {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

#pricing {
  background:
    radial-gradient(circle at top left, rgba(228, 163, 63, 0.05), transparent 16%),
    linear-gradient(180deg, #f5f3ef 0%, #eceff3 100%);
}

#pricing .section-head {
  margin-bottom: 54px;
}

#pricing .card h3 {
  color: #17191d;
}

#pricing .card p strong {
  color: var(--amber-dark);
  font-size: 26px;
}

#contact {
  background:
    linear-gradient(180deg, #fafafb 0%, #eff1f4 100%);
}

#contact .section-head {
  margin-bottom: 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card a {
  font-weight: 700;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--amber-dark);
}

.footer {
  background: var(--footer-dark);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-inner,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 36px;
  }

  .hero-panel {
    max-width: 720px;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .mobile-menu {
    display: block;
    background: rgba(228, 163, 63, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0 20px 20px;
  }

  .mobile-menu-links {
    display: grid;
    gap: 12px;
    padding-top: 18px;
  }

  .mobile-menu-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
  }

  .mobile-lang-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .mobile-lang {
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
  }

  .cards-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 74px 0 62px;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-panel-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .hero-panel-icon {
    width: 52px;
    height: 52px;
  }

  .benefits-hero {
    padding: 8px 0 58px;
  }

  .benefits-hero-text {
    font-size: 17px;
  }

  .benefits-hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container,
  .topbar-inner,
  .hero-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .hero h1,
  .section h2 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .hero-text,
  .section-lead,
  .two-col p,
  .card p,
  .contact-card p,
  .step p {
    font-size: 16px;
  }

  .card,
  .contact-card,
  .band-card,
  .step,
  .hero-panel {
    border-radius: 20px;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }

  .benefits-hero-title {
    font-size: clamp(36px, 9vw, 52px);
  }

  .step {
    padding: 24px 22px;
  }

  .hero-panel-item {
    grid-template-columns: 1fr;
  }

  .hero-panel-icon {
    margin-bottom: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .card,
  .contact-card,
  .step {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
#pricing {
  background:
    radial-gradient(circle at top left, rgba(228, 163, 63, 0.08), transparent 18%),
    linear-gradient(180deg, #f4f1ec 0%, #e9edf2 100%);
}

#pricing .pricing-head {
  margin-bottom: 62px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card,
.pricing-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,248,250,0.99) 100%);
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.pricing-card:hover,
.pricing-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 163, 63, 0.24);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.09);
}

.pricing-card-featured {
  border: 1px solid rgba(228, 163, 63, 0.42);
  box-shadow:
    0 0 0 1px rgba(228, 163, 63, 0.10),
    0 20px 48px rgba(0, 0, 0, 0.08);
}

.pricing-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(228, 163, 63, 0.14);
  color: #9a6411;
  border: 1px solid rgba(228, 163, 63, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card-wide {
  grid-column: span 2;
}

.pricing-card-enterprise {
  background:
    radial-gradient(circle at top right, rgba(228, 163, 63, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(246,247,249,0.99) 100%);
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.pricing-card h3,
.pricing-info-card h3 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #14171c;
  max-width: 92%;
}

.pricing-card h3 {
  font-size: 25px;
}

.pricing-info-card h3 {
  font-size: 22px;
}

.pricing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 14px;
  padding: 10px 16px 10px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(228, 163, 63, 0.10) 0%, rgba(228, 163, 63, 0.16) 100%);
  border: 1px solid rgba(228, 163, 63, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #cf8d24;
  letter-spacing: -0.03em;
}

.pricing-price span {
  position: relative;
  top: -1px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #9d6b1f;
  white-space: nowrap;
  letter-spacing: 0;
}

.pricing-subtitle,
.pricing-subtitle-info {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #5a6170;
  max-width: 95%;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.pricing-list-specs {
  display: grid;
  gap: 14px;
}

.pricing-list-specs li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.pricing-list-specs li::before {
  content: none;
}

.pricing-label {
  display: block;
  font-size: 17px;
  line-height: 1.45;
  color: #4e5563;
  font-weight: 600;
}

.pricing-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(228, 163, 63, 0.14);
  color: #8e5d13;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.pricing-list-info-modern {
  display: grid;
  gap: 16px;
}

.pricing-list-info-modern li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.025);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.pricing-list-info-modern li::before {
  content: none;
}

.pricing-list-info-modern strong {
  font-size: 17px;
  line-height: 1.4;
  color: #1b1f25;
  font-weight: 700;
}

.pricing-list-info-modern span {
  font-size: 16px;
  line-height: 1.6;
  color: #5d6472;
}

.pricing-card-bottom {
  margin-top: 28px;
}

.pricing-btn,
.pricing-btn-secondary {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  justify-content: center;
}

.pricing-info-card {
  background: linear-gradient(180deg, rgba(252,252,253,0.98) 0%, rgba(244,246,249,0.98) 100%);
}

.pricing-info-card .btn-secondary {
  background: rgba(17,17,17,0.05);
  color: #17191d;
  border-color: rgba(17,17,17,0.10);
  box-shadow: none;
}

.pricing-info-card .btn-secondary:hover {
  background: rgba(17,17,17,0.08);
  color: #111;
  border-color: rgba(17,17,17,0.16);
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-wide {
    grid-column: span 1;
  }

  .pricing-card-top {
    min-height: auto;
  }

  .pricing-list-specs li {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-value {
    justify-self: start;
  }

  .pricing-card h3,
  .pricing-info-card h3 {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .pricing-card,
  .pricing-info-card {
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .pricing-info-card h3 {
    font-size: 21px;
  }

  .pricing-price {
    font-size: 42px;
  }

  .pricing-price span {
    font-size: 17px;
  }

  .pricing-subtitle,
  .pricing-subtitle-info {
    font-size: 16px;
  }

  .pricing-label,
  .pricing-value,
  .pricing-list-info-modern strong,
  .pricing-list-info-modern span {
    font-size: 15px;
  }
}

.benefits-hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 163, 63, 0.12), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(135deg, #15181d 0%, #1d2128 48%, #14171c 100%);
  color: #fff;
}

.benefits-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 95%);
  pointer-events: none;
}

.benefits-hero-panel {
  position: relative;
  z-index: 1;
  padding: 54px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.benefits-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
  gap: 44px;
  align-items: center;
}

.benefits-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(228, 163, 63, 0.12);
  border: 1px solid rgba(228, 163, 63, 0.24);
  color: #f0c57a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefits-hero-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}

.benefits-hero-title span {
  color: var(--amber);
}

.benefits-hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,0.76);
}

.benefits-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.benefits-visual-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.benefits-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(228, 163, 63, 0.10), transparent 34%);
  pointer-events: none;
}

.benefits-visual-line {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.benefits-visual-line + .benefits-visual-line {
  margin-top: 14px;
}

.benefits-visual-line span {
  position: relative;
  padding-left: 18px;
}

.benefits-visual-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(228, 163, 63, 0.10);
}

@media (max-width: 980px) {
  .benefits-hero-panel {
    padding: 34px 28px;
    border-radius: 28px;
  }

  .benefits-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefits-hero-text {
    font-size: 17px;
  }
}

@media (max-width: 680px) {
  .benefits-hero-panel {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .benefits-kicker {
    margin-bottom: 16px;
  }

  .benefits-hero-title {
    font-size: clamp(32px, 9vw, 44px);
  }

  .benefits-hero-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .benefits-hero-actions .btn {
    width: 100%;
  }

  .benefits-visual-line {
    min-height: 56px;
    font-size: 15px;
  }
}
.footer-links {
  background: linear-gradient(180deg, #f3f4f6 0%, #eceef1 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  padding: 44px 0 30px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-strong);
}

.footer-col a {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.footer-col a:hover {
  color: var(--amber-dark);
  transform: translateX(2px);
}

.footer-col a:last-child {
  margin-bottom: 0;
}

/* tablet */
@media (max-width: 980px) {
  .footer-links {
    padding: 38px 0 24px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 28px;
  }
}

/* mobile */
@media (max-width: 640px) {
  .footer-links {
    padding: 30px 0 18px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-col {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  }

  .footer-col:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-col h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-col a {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
#footerText {
  font-size: 15px;
  color: #fff;
  text-align: center;
}

#footerText a {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition);
}

#footerText a:hover {
  color: var(--amber);
}
@keyframes eso9DotBlink {
  0%, 70%, 100% {
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(228, 163, 63, 0);
  }

  75% {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(228, 163, 63, 0.18);
  }

  82% {
    opacity: 1;
    box-shadow: 0 0 0 12px rgba(228, 163, 63, 0.10);
  }

  100% {
    opacity: 0.7;
    box-shadow: 0 0 0 18px rgba(228, 163, 63, 0);
  }
}

body.dots-animated .benefits-visual-line span::before,
body.dots-animated .solutions-hub-list li::before {
  animation: eso9DotBlink 3.5s linear infinite;
}

