@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;700&display=swap');

:root {
  /* Brand colors from README */
  --primary: #115E58;
  --primary-light: #18867E;
  --primary-dark: #0A3C38;
  --secondary: #0E172A; 
  /* Slate palette for light theme */
  --bg-color: #F8FAFC; 
  --surface: #FFFFFF;
  --text-main: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;

  /* Premium soft shadows */
  --shadow-sm: 0 2px 4px rgba(14, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(14, 23, 42, 0.05), 0 8px 10px -6px rgba(14, 23, 42, 0.01);
  --shadow-lg: 0 20px 25px -5px rgba(14, 23, 42, 0.05), 0 10px 10px -5px rgba(14, 23, 42, 0.02);
  --shadow-neumorphic: 8px 8px 16px #e2e8f0, -8px -8px 16px #ffffff;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
  font-family: 'Noto Sans', sans-serif;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(17, 94, 88, 0.39);
}

@media (min-width: 993px) {
  .btn-primary {
    width: 230px;
  }
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 94, 88, 0.23);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo span b {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 96px 0 2rem; /* Side padding moved to inner text elements to allow image to be edge-to-edge */
  background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(226, 232, 240, 0.5) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
}

.hero-bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 70.71% 70.71% at 50% 50%, rgba(17, 94, 88, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 5px;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding-bottom: 25px;
}

.hero-title {
  font-size: 32px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.2;
  padding: 0 8px;
}

.hero-motto {
  font-size: 20px;
  max-width: 290px;
  font-family: 'Noto Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #115E58;
  margin-bottom: 25px;
  line-height: 1.3;
  padding: 0 8px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 409px;
  min-height: 219px;
  margin-bottom: 1.4rem;
  display: flex;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  height: 219px;
  object-fit: cover;
  display: block;
  opacity: 0.89;
}

.hero-info-card {
  position: absolute;
  bottom: -20px;
  right: -5px;
  background: #F8FAFC;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 14px 20px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 226px;
  text-align: left;
}

@media (max-width: 992px) {
  .hero-info-card {
    right: 50%;
    transform: translateX(50%);
  }
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 20px;
  height: 20px;
  background: #005954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 2.5;
}

.info-card-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #334155;
}

.info-card-body {
  display: flex;
  flex-direction: column;
}

.info-card-body strong {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #334155;
  line-height: 1.2;
}

.info-card-body span {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 14px;
  padding: 0 8px;
}

.location-badge {
  background: rgba(17, 94, 88, 0.10);
  border-radius: 9999px;
  padding: 8px 16px;
  color: #115E58;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.btn-large {
  background: #115E58;
  border-radius: 20px;
  color: white;
  font-size: 20px;
  padding: 12px 30px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  font-weight: 400;
  border: none;
}

.btn-large:hover {
  background: #0A3C38;
  transform: translateY(-2px);
}


/* DESKTOP ORIGINAL STYLES */
.desktop-only {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem 4rem;
  align-items: center;
  max-width: 1200px !important; 
  padding: 0 1.5rem;
}
.mobile-only {
  display: none !important;
}

@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
}

.hero-text-top {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  text-align: left;
}

.hero-text-bottom {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  text-align: left;
}

.hero-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
}

.hero-text-top .badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(17, 94, 88, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-text-top h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  padding: 0;
}

.hero-text-top .motto {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-style: italic;
  padding: 0;
  max-width: none;
}

.hero-text-bottom .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-img-box {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-img-box img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-floating-services {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10;
}

.hero-service-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.7);
  white-space: nowrap;
  width: max-content;
}

.hero-service-item .icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-service-item .icon svg {
  width: 18px;
  height: 18px;
}

.hero-service-item:nth-child(1) { margin-left: 0px; }
.hero-service-item:nth-child(2) { margin-left: 15px; }
.hero-service-item:nth-child(3) { margin-left: 30px; }
.hero-service-item:nth-child(4) { margin-left: 45px; }
.hero-service-item:nth-child(5) { margin-left: 30px; }
.hero-service-item:nth-child(6) { margin-left: 15px; }
.hero-service-item:nth-child(7) { margin-left: 0px; }
/* END DESKTOP ORIGINAL STYLES */

/* Contact Info Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.contact-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-card .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E2EFEF;
  color: var(--primary);
}

.contact-card .card-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.contact-list, .hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-list i {
  color: var(--primary);
  margin-top: 4px;
}

.contact-list strong {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact-list span {
  color: var(--text-muted);
  line-height: 1.4;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row span {
  color: var(--secondary);
  font-weight: 500;
}

.hours-row strong {
  color: var(--primary);
}

.hours-row.closed span, .hours-row.closed strong {
  color: #94A3B8;
}

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

/* Comparison Section */
.comparison-section {
  min-height: calc(100vh - 80px); /* Fill screen minus navbar */
  display: flex;
  align-items: center;
  background-color: var(--surface);
  padding: 4rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-card {
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.comparison-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.comparison-card.symptoms {
  border-top: 4px solid #EF4444; /* Red accent */
}

.comparison-card.benefits {
  border-top: 4px solid var(--primary); /* Green accent */
}

.comparison-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.comparison-card .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-card .icon-wrapper.alert-icon {
  background-color: #FEE2E2;
  color: #EF4444;
}

.comparison-card .icon-wrapper.success-icon {
  background-color: #CCFBF1;
  color: var(--primary);
}

.comparison-card .card-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.comparison-card .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comparison-card .feature-list i {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 6px;
  margin-top: 2px;
}

.text-danger { color: #EF4444 !important; }
.text-success { color: var(--primary) !important; }

.comparison-card .feature-text {
  display: flex;
  flex-direction: column;
}

.comparison-card .feature-text strong {
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.comparison-card .feature-text span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comparison-section {
    min-height: auto;
    padding: 3rem 0;
  }
  .comparison-card {
    padding: 1.5rem;
  }
}

/* Uvod */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.125rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.pillars-card {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neumorphic);
}

.pillars-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(17, 94, 88, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Služby Accordion */
.services {
  background-color: var(--surface);
}

.services-list-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-accordion {
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-accordion:hover {
  border-color: rgba(17, 94, 88, 0.3);
  box-shadow: var(--shadow-sm);
}

.service-accordion-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.service-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.service-icon-small {
  width: 48px;
  height: 48px;
  background-color: #E2EFEF;
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(17, 94, 88, 0.05);
}

.service-header-left h3 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--secondary);
}

.toggle-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.service-accordion.active .toggle-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.service-accordion.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

/* Fluid height animation technique using CSS Grid */
.service-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.content-inner {
  overflow: hidden;
}

.content-inner p {
  padding: 0 1.5rem 1.5rem 5rem; /* Indented to align with text */
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.service-accordion.active .service-accordion-content {
  grid-template-rows: 1fr;
}

@media (max-width: 768px) {
  .service-accordion-header {
    padding: 1.25rem;
  }
  .service-header-left {
    gap: 1rem;
  }
  .service-icon-small {
    width: 40px;
    height: 40px;
  }
  .service-header-left h3 {
    font-size: 1.05rem;
  }
  .content-inner p {
    padding: 0 1.25rem 1.25rem 1.25rem; /* No deep indent on mobile */
  }
}

/* Tym */
.team {
  background-color: var(--bg-color);
}

.team-grid-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-member-compact {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--border);
}

.team-member-compact:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-avatar {
  min-width: 80px;
  height: 80px;
  background-color: #E2EFEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.team-avatar i {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.team-info-compact {
  flex: 1;
}

.team-info-compact h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-info-compact .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

.team-info-compact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .team-grid-compact {
    grid-template-columns: 1fr;
  }
}

/* Cenik */
.pricing {
  background-color: var(--surface);
  text-align: center;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem;
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

.pricing-card h3 {
  color: var(--text-muted);
  font-weight: 500;
}


/* FAQ Section */
.faq-list-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.faq-accordion:hover {
  border-color: rgba(17, 94, 88, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-accordion-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 1rem;
}

.faq-accordion-header h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.4;
}

.faq-accordion.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-accordion.active .toggle-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  background: var(--bg-color);
}

.faq-accordion.active .faq-accordion-content {
  grid-template-rows: 1fr;
}

.faq-accordion-content .content-inner {
  overflow: hidden;
}

.faq-accordion-content p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-accordion-header {
    padding: 1.25rem;
  }
  .faq-accordion-header h3 {
    font-size: 1.05rem;
  }
  .faq-accordion-content p {
    padding: 0 1.25rem 1.25rem;
  }
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info .logo {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-info .logo img {
  max-width: 140px;
  max-height: 45px;
  height: auto;
  width: auto;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer p {
  color: #94A3B8;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #94A3B8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #94A3B8;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
.hero-text-top {
    grid-column: 1;
    grid-row: 1;
  }

.hero-text-bottom {
    grid-column: 1;
    grid-row: 3;
  }
  
.hero-buttons {
    justify-content: center;
  }
  
.intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
.section {
    padding: 4rem 0;
  }
}

/* 320x640 minimal viewport adjustments */
@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }
  
  .logo span {
    font-size: 1.125rem;
  }
  
  .nav-actions .btn-outline {
    display: none; /* Skrýt vedlejší tlačítko na malém displeji */
  }
  
  .nav-actions .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
.hero-img-box img {
    height: 250px;
  }
  
.hero-buttons .btn {
    width: 100%;
  }
  
  .pillars-card {
    padding: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
.pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  
  .footer-info {
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}
