/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
*, button, input, textarea, select { font-family: inherit; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #22b8cf;
  color: #fff;
  border-color: #22b8cf;
}
.btn-primary:hover { background: #1aa3b8; border-color: #1aa3b8; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #1e293b;
  border-color: #e2e8f0;
}
.btn-outline:hover { border-color: #22b8cf; color: #22b8cf; }
.btn-ghost {
  background: transparent;
  color: #64748b;
  border-color: transparent;
}
.btn-ghost:hover { color: #22b8cf; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { font-size: 1.75rem; font-weight: 900; line-height: 1.1; }
.logo-ticha { color: #2d5f8a; }
.logo-ordinace { color: #b92d5d; }
.logo-img { height: 110px; width: auto; }
.logo-img-footer { height: 64px; width: auto; }
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 1.15rem;
  font-weight: 600;
  color: #64748b;
  transition: color 0.2s;
}
.nav a:hover { color: #22b8cf; }
.header-actions { display: flex; gap: 12px; }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 600; color: #1e293b; padding: 8px 0; }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #e0f7fa;
  color: #0e7490;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #22b8cf, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}
.trust-check {
  color: #22b8cf;
  font-weight: 800;
}
.hero-image { position: relative; }
.hero-mockup {
  background: #f8fafc;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.hero-mockup img {
  border-radius: 12px;
  width: 100%;
  display: block;
}

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #22b8cf;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}

/* ===== PROBLEM ===== */
.problem { padding: 80px 0; background: #fff; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
}
.section-sub {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 8px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.problem-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  text-align: center;
}
.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}
.problem-closing {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
  margin-top: 40px;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 60px 0;
  background: #f0fdfa;
}
.solution-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.solution-text {
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: #f8fafc;
}
.steps { display: flex; flex-direction: column; gap: 64px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #22b8cf;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.step-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}
.step-visual {
  display: flex;
  justify-content: center;
}

/* Phone mockup */
.phone-mockup {
  background: #1e293b;
  border-radius: 24px;
  padding: 20px 16px;
  width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.phone-screen {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ivr-option {
  padding: 10px 14px;
  background: #f0fdfa;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0e7490;
  border: 1px solid #ccfbf1;
}

/* Dashboard mini mockup */
.dashboard-mini {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
}
.mini-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 4px solid;
}
.mini-recept {
  background: #eff6ff;
  border-color: #3b82f6;
}
.mini-objednani {
  background: #f5f3ff;
  border-color: #8b5cf6;
}
.mini-type { font-size: 0.82rem; font-weight: 800; color: #0f172a; }
.mini-phone { font-size: 0.78rem; color: #64748b; font-weight: 600; }
.mini-time { font-size: 0.72rem; color: #94a3b8; font-weight: 600; }

/* Action mockup */
.action-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 280px;
}
.action-btn {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}
.action-recept {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.action-done {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

/* ===== BENEFITS ===== */
.benefits { padding: 80px 0; background: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}
.benefit-card:hover {
  border-color: #22b8cf;
  box-shadow: 0 8px 32px rgba(34,184,207,0.08);
  transform: translateY(-2px);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== FOR WHO ===== */
.for-who { padding: 80px 0; background: #f8fafc; }
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.for-who-card {
  padding: 40px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.2s ease;
}
.for-who-card:hover {
  border-color: #22b8cf;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.for-who-icon { font-size: 2.5rem; margin-bottom: 16px; }
.for-who-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.for-who-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  padding: 36px 28px;
  border-radius: 20px;
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  text-align: center;
  position: relative;
}
.pricing-featured {
  background: #fff;
  border-color: #22b8cf;
  box-shadow: 0 16px 48px rgba(34,184,207,0.12);
  transform: scale(1.04);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #22b8cf;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}
.pricing-price {
  margin-bottom: 28px;
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #64748b;
}
.price-period {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 600;
}
.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
}
.pricing-features li::before {
  content: "✓ ";
  color: #22b8cf;
  font-weight: 800;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: #f8fafc; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f7fa;
  color: #0e7490;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}
.testimonial-role {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ===== CTA / CONTACT ===== */
.cta { padding: 80px 0; background: #0f172a; }
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.cta p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input {
  padding: 14px 18px;
  border: 2px solid #334155;
  border-radius: 12px;
  background: #1e293b;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: #64748b; }
.cta-form input:focus { outline: none; border-color: #22b8cf; }
.form-note {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 12px;
}
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col a:hover { color: #22b8cf; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: auto 1fr; }
  .step-visual { display: none; }
  .step-reverse { direction: ltr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .for-who-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .section-header h2 { font-size: 1.7rem; }
  .stats-grid, .stats-grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .stat-number { font-size: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step-number { width: 44px; height: 44px; font-size: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .cta h2 { font-size: 1.7rem; }
}
