* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Scrollovanie z menu*/
html {
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #0f2942;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header a Navigácia */
header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 41, 66, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Logo */
.logo {
  font-size: 30px;
  font-weight: 700;
  color: #0f2942;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo span {
  color: #00b4d8;
  font-weight: 400;
}

/* Navigačné odkazy */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 15px;
}

nav a:hover {
  color: #00b4d8;
}

/* Tlačidlo v menu */
.btn-nav {
  display: inline-block;
  background: #00b4d8;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
}

.btn-nav:hover {
  background: #0096b4;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.3);
}

/* --- HERO SEKCIA --- */

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background: radial-gradient(
    100% 100% at 50% 0%,
    rgba(0, 180, 216, 0.05) 0%,
    #ffffff 100%
  );
  overflow: hidden;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.badge {
  display: inline-block;
  background: #e0f7fa;
  color: #007791;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}

/* Nadpis*/
.hero-content h1 {
  font-size: 46px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f2942;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-highlight {
  color: #00b4d8;
  position: relative;
  display: inline-block;
}

/* Podnadpis */
.hero-description {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 540px;
}

.hero-description strong {
  color: #0f2942;
}

/* Tlačidlá */
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 45px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f2942;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(15, 41, 66, 0.15);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #00b4d8;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.3);
}

.btn-primary .arrow {
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-block;
  color: #4a5568;
  text-decoration: none;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.btn-secondary:hover {
  color: #00b4d8;
}

.hero-features-mini {
  display: flex;
  gap: 30px;
  border-top: 1px solid #e2e8f0;
  padding-top: 25px;
  max-width: 500px;
}

.mini-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.feature-tick {
  color: #10b981;
  font-weight: 700;
}

.screenshot-wrapper {
  position: relative;
  display: inline-block;
}

.hero-screenshot-img {
  width: 120%;
  max-width: 120%;
  display: block;
}

.screenshot-badge {
  margin-top: -60px;
  margin-left: 330px;
  background: #0f2942;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- SEKCIA O RIEŠENÍ --- */
.riesenie-sekcia {
  min-height: 100vh; /* Drží celú sekciu fixne na výšku obrazovky */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9f8ff;
  padding: 30px 0;
  box-sizing: border-box;
}

.riesenie-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.riesenie-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 35px auto;
}

.riesenie-intro h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f2942;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/*Virtálna Sestra - podobnosť s logom*/
.text-highlight {
  color: #00b4d8;
  position: relative;
  display: inline-block;
}

.riesenie-intro p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.5;
}

/* Layout mriežky */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Štýl karty */
.benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 15px 30px rgba(15, 41, 66, 0.05);
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.5;
}

/* ZVÝRAZNENÁ KARTA */
.benefit-card.highlight {
  background: #0f2942;
  border-color: #0f2942;
  box-shadow: 0 15px 35px rgba(15, 41, 66, 0.12);
}

.benefit-card.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 41, 66, 0.18);
}

.benefit-card.highlight h3 {
  color: #ffffff;
}

.benefit-card.highlight p {
  color: #e2e8f0;
}

.benefit-card.highlight p strong {
  color: #00b4d8;
}

/* SEKCIA PREPOJENIE S MEDICOMOM */
.medicom-sekcia {
  padding: 60px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.medicom-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}

.medicom-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: #4a5568;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Štýlovanie zoznamu výhod */
.medicom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.medicom-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.check-icon {
  background: #10b981;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.medicom-list div {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.5;
}

/* PRAVÁ STRANA: obrazok */
.medicom-visual {
  display: flex;
  justify-content: center;
}

.live-call-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  width: 100%;
  max-width: 440px;
  padding: 22px;
  box-shadow: 0 25px 50px rgba(15, 41, 66, 0.08);
}

.call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
}

.call-status {
  font-size: 13px;
  font-weight: 600;
  color: #718096;
}

.patient-preview {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.patient-avatar {
  font-size: 40px;
  background: #edf2f7;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-info h4 {
  font-size: 18px;
  color: #0f2942;
  font-weight: 700;
}

.patient-info p {
  font-size: 14px;
  color: #718096;
  margin: 2px 0 6px 0;
}

.match-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.call-action-box {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.request-tag {
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 12px;
}

.btn-medicom-action {
  display: block;
  background: #0f2942;
  color: #ffffff;
  text-decoration: none;
  padding: 11px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
}

.btn-medicom-action:hover {
  background: #00b4d8;
}

/* ŠTÝLOVANIE NOVÉHO OBRÁZKA (CONNECT.JPG) */
.medicom-mega-connect {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1250px;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(15, 41, 66, 0.1);
  border: 1px solid #e2e8f0;
}

/* SEKCIA HLASOVÉ MENU (IVR) */
.ivr-sekcia {
  padding: 60px 0 90px 0;
  background: #ffffff;
}

.ivr-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px auto;
}

.ivr-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 12px;
}

.ivr-intro p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.5;
}

/* KOMPAKTNÝ SIVÝ BOX */
.ivr-single-box {
  background: #f8fafc;
  padding: 30px 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(15, 41, 66, 0.03);
}

.ivr-single-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

/* ŠTÝLOVANIE ZOZNAMU V BOXE */
.scenario-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scenario-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-bullet {
  width: 7px;
  height: 7px;
  background: #00b4d8;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.scenario-list p {
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.45;
  margin: 0;
}

.nested-scenario-list {
  list-style: none;
  padding-left: 15px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nested-scenario-list li {
  font-size: 13.5px;
  color: #4a5568;
  position: relative;
  padding-left: 12px;
}

.nested-scenario-list li::before {
  content: "•";
  color: #cbd5e1;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* NOVÉ ŠTÝLY PRE OBRÁZKY A TEXT POD BOXOM */
.ivr-examples {
  margin-top: 70px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.examples-header {
  text-align: center;
  max-width: 850px;
  margin-bottom: 40px;
}

.examples-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 15px;
}

.examples-header p {
  font-size: 15.5px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Obal pre zoznam obrázkov */
.examples-images-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  max-width: 800px;
  align-items: center;
}

/* ŠTÝL PRE SAMOTNÉ OBRÁZKY */
.ivr-example-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(15, 41, 66, 0.05);
}

/* CENNÍK */
.cennik-sekcia {
  padding: 25px 0;
  background-color: #fafbfc;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.cennik-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.cennik-header {
  text-align: center;
  margin-bottom: 20px;
}

.cennik-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0f2942;
  margin: 0;
}

/* TROJSTĹPEC PRE PROGRAMY */
.cennik-grid-3 {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.cennik-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 18px; /* Menší vnútorný padding šetrí výšku */
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.cennik-card.hlavny-karta {
  border: 2px solid #0f2942;
}

.badge-naj {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f2942;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: bold;
}

.cennik-card h4 {
  font-size: 16px; /* Kompaktnejší nadpis */
  margin: 0 0 4px 0;
  color: #0f2942;
}

.card-subtitle {
  font-size: 11.5px; /* Menšie písmo */
  color: #718096;
  margin: 0 0 10px 0;
  min-height: 28px; /* Menej miesta pre podnadpis */
  line-height: 1.2;
}

.cennik-cena {
  font-size: 22px;
  font-weight: 700;
  color: #e53e3e;
  margin-bottom: 10px;
}

.cennik-cena span {
  font-size: 11px;
  color: #718096;
  margin-left: 4px;
}

.cennik-vlastnosti {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11.5px;
  color: #4a5568;
}

.cennik-vlastnosti li {
  margin-bottom: 4px; /* Tesnejšie pod sebou */
  position: relative;
  padding-left: 10px;
}

/* DVOJSTĹPEC PRE AI MODULY */
.cennik-grid-2 {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.ai-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 12px 15px; /* Zoštíhlený padding */
  border-radius: 8px;
}

.ai-card.border-blue {
  border-left: 4px solid #3182ce;
}
.ai-card.border-red {
  border-left: 4px solid #e53e3e;
}

.ai-card h5 {
  font-size: 13.5px;
  margin: 0 0 4px 0;
  color: #0f2942;
}

.ai-card p {
  font-size: 11.5px;
  color: #4a5568;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.ai-cena {
  font-size: 12.5px;
  font-weight: 700;
  color: #e53e3e;
}

.ai-jednorazovo {
  text-align: center;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 6px;
  padding: 5px; /* Minimalizovaný prúžok */
  font-size: 11px;
  color: #4a5568;
  margin-bottom: 15px;
}

/* ODPORÚČANÝ BALÍK */
.odporucany-balík {
  background: #1a202c;
  color: #ffffff;
  border-radius: 10px;
  padding: 16px 25px; /* Sploštené na výšku */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.balík-akcia {
  background: #ffffff;
  color: #e53e3e;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.odporucany-balík h3 {
  font-size: 17px;
  margin: 0 0 8px 0;
}

.balík-checky {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11.5px;
  color: #cbd5e0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 15px;
}

.balík-cena-box {
  text-align: right;
  padding-left: 25px;
  border-left: 1px solid #4a5568;
}

.balík-hlavna-cena {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.balík-cena-box p {
  font-size: 11px;
  color: #a0aec0;
  margin: 2px 0;
}

.cena-s-dph {
  font-size: 11.5px;
  color: #cbd5e0;
}

/*HAMBURGER MENU*/
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #0f2942;
}

/* Responzivita */
@media (max-width: 768px) {
  .cennik-grid-3,
  .cennik-grid-2,
  .odporucany-balík {
    flex-direction: column;
  }
  .balík-checky {
    grid-template-columns: 1fr;
  }
  .balík-cena-box {
    text-align: left;
    padding-left: 0;
    border-left: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #4a5568;
  }
}
/* --- SEKCIA: POSTUP ZRIADENIA (KOMPAKTNÁ) --- */

.postup-sekcia {
  min-height: calc(100vh - 140px);
  padding: 40px 0;
  background-color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  display: flex;
  align-items: center;
}

.postup-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.postup-header {
  text-align: center;
  margin-bottom: 30px;
}

.postup-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 8px;
}

.postup-header p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

/* ZOZNAM KROKOV POD SEBOU */
.postup-kroky {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Minimálne medzery pre úsporu miesta */
}

.postup-krok {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 18px;
}

/* KRUHOVÉ ČÍSLOVANIE */
.krok-cislo {
  background: #0f2942;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.krok-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f2942;
  margin: 0 0 4px 0;
}

.krok-text p {
  font-size: 13px;
  color: #4a5568;
  margin: 0;
  line-height: 1.4;
}

#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #0f2942;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 41, 66, 0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;

  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: #00b4d8;
  transform: translateY(-3px);
}

.footer {
  background: #eef5fa;
  border-top: 1px solid #d9e5ef;
  padding: 18px 20px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 13px;
  color: #718096;
}

/*RESPONZIVITA*/

/*TABLET*/

@media (min-width: 769px) and (max-width: 1024px) {
  /* Kontajner */
  .container {
    width: 94%;
  }

  /* Header */
  header .header-flex {
    gap: 10px;
  }

  .logo {
    font-size: 18px;
  }

  .hamburger {
    display: none;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 13px;
  }

  .btn-nav {
    padding: 8px 12px;
    font-size: 10px;
  }

  /* Hero */
  .hero-grid,
  .medicom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-screenshot-img {
    width: 100%;
    max-width: 100%;
  }

  .screenshot-badge {
    display: none;
  }

  /* Benefity */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Medicom */
  .medicom-mega-connect {
    max-width: 100%;
  }

  /* Cenník */
  .cennik-grid-3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cennik-card {
    min-width: 280px;
  }

  .odporucany-balík {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .balík-cena-box {
    border-left: none;
    border-top: 1px solid #4a5568;
    padding-left: 0;
    padding-top: 15px;
    text-align: center;
  }
}

/* MOBIL */

@media (max-width: 768px) {
  /* Header */
  header .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
  }

  .logo {
    font-size: 24px;
  }

  .hamburger {
    display: block;
  }

  nav {
    display: none;
  }

  nav.active {
    display: flex;
    flex-direction: column;
    gap: 16px;

    position: absolute;
    top: 70px;
    left: 0;

    width: 100%;
    padding: 20px;

    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 41, 66, 0.08);

    align-items: flex-start;
    z-index: 1000;
  }

  .btn-nav {
    display: none;
  }

  .btn-nav.active {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .container {
    width: calc(100% - 32px);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-grid,
  .medicom-grid,
  .benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-description {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions,
  .hero-features-mini {
    flex-direction: column;
    align-items: center;
  }

  .hero-image img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-image {
    display: none;
  }

  /* Nadpisy */
  h2 {
    font-size: 28px !important;
  }

  /* Medicom */
  .live-call-box {
    max-width: 100%;
  }

  /* Cenník */
  .cennik-grid-3,
  .cennik-grid-2,
  .odporucany-balík {
    flex-direction: column;
  }

  .balík-checky {
    grid-template-columns: 1fr;
  }

  .balík-cena-box {
    text-align: left;
    padding-left: 0;
    border-left: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #4a5568;
  }

  /* IVR */
  .ivr-single-box {
    padding: 25px;
  }

  /* Posledná sekcia */
  .postup-sekcia {
    min-height: auto;
  }

  /* Scroll tlačidlo */
  #scrollTopBtn {
    width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
  }
}
