/* ===== SHOPTET FULL-WIDTH OVERRIDE ===== */
.content-wrapper,
.content-wrapper .content,
#content,
.page-content {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: visible !important;
}

/* ===== RESET & VARIABLES ===== */
.sk-landing * { margin: 0; padding: 0; box-sizing: border-box; }
.sk-landing {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  --sk-bg: #FAFAF8;
  --sk-bg-alt: #F0EDE8;
  --sk-text: #1A1A1A;
  --sk-text-muted: #6B6560;
  --sk-accent: #2B5A3D;
  --sk-accent-light: #3A7A52;
  --sk-cta: #D4A017;
  --sk-cta-hover: #B8890F;
  --sk-white: #FFFFFF;
  --sk-border: #DDD8D0;
  --sk-font-heading: 'Outfit', sans-serif;
  --sk-font-body: 'DM Sans', sans-serif;
  --sk-radius: 12px;
  --sk-radius-sm: 8px;
  font-family: var(--sk-font-body);
  color: var(--sk-text);
  background: var(--sk-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.sk-landing a { color: inherit; text-decoration: none; }

/* ===== UTILITY ===== */
.sk-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.sk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(43, 90, 61, 0.08);
  color: var(--sk-accent);
  font-family: var(--sk-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
}
.sk-section-title {
  font-family: var(--sk-font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sk-text);
}
.sk-section-sub {
  font-size: 17px;
  color: var(--sk-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== TOPBAR ===== */
.sk-topbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--sk-border);
  background: var(--sk-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(250, 250, 248, 0.9);
}
.sk-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sk-logo {
  font-family: var(--sk-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--sk-text);
  letter-spacing: -0.03em;
}
.sk-logo span { color: var(--sk-accent); }
.sk-nav { display: flex; align-items: center; gap: 32px; }
.sk-nav a {
  font-family: var(--sk-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--sk-text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.sk-nav a:hover { color: var(--sk-text); }
.sk-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--sk-accent);
  color: var(--sk-white) !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s;
}
.sk-nav-cta:hover { background: var(--sk-accent-light); transform: translateY(-1px); }

/* ===== HERO ===== */
.sk-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.sk-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 90, 61, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.sk-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sk-hero-content { position: relative; z-index: 2; }
.sk-hero h1 {
  font-family: var(--sk-font-heading);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 20px;
  margin-bottom: 24px;
}
.sk-hero h1 em {
  font-style: normal;
  color: var(--sk-accent);
  position: relative;
}
.sk-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(43, 90, 61, 0.15);
  border-radius: 3px;
}
.sk-hero-desc {
  font-size: 18px;
  color: var(--sk-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.sk-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--sk-cta);
  color: var(--sk-text);
  font-family: var(--sk-font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.25);
  text-decoration: none;
}
.sk-btn-primary:hover {
  background: var(--sk-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.35);
}
.sk-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--sk-text);
  font-family: var(--sk-font-heading);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--sk-border);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
}
.sk-btn-secondary:hover {
  border-color: var(--sk-accent);
  color: var(--sk-accent);
  transform: translateY(-1px);
}
.sk-hero-visual {
  position: relative;
  border-radius: var(--sk-radius);
  overflow: hidden;
}
.sk-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--sk-radius);
  background: var(--sk-bg-alt);
  display: block;
}
.sk-hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--sk-radius);
  background: linear-gradient(135deg, var(--sk-bg-alt) 0%, #E4DFD6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--sk-text-muted);
  font-size: 14px;
  font-family: var(--sk-font-heading);
}
.sk-hero-img-placeholder svg { opacity: 0.4; }
.sk-hero-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--sk-white);
  border-radius: var(--sk-radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: sk-float 3s ease-in-out infinite;
}
@keyframes sk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sk-hero-float-icon {
  width: 44px;
  height: 44px;
  background: rgba(43, 90, 61, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sk-hero-float-text strong {
  display: block;
  font-family: var(--sk-font-heading);
  font-size: 15px;
  font-weight: 700;
}
.sk-hero-float-text span {
  font-size: 12px;
  color: var(--sk-text-muted);
}
.sk-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sk-border);
}
.sk-stat-num {
  font-family: var(--sk-font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--sk-accent);
  letter-spacing: -0.02em;
}
.sk-stat-label {
  font-size: 13px;
  color: var(--sk-text-muted);
  margin-top: 2px;
}

/* ===== VÝHODY ===== */
.sk-benefits {
  padding: 100px 0;
  background: var(--sk-bg-alt);
  position: relative;
}
.sk-benefits-header {
  text-align: center;
  margin-bottom: 60px;
}
.sk-benefits-header .sk-section-sub {
  margin: 16px auto 0;
}
.sk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sk-benefit-card {
  background: var(--sk-white);
  border-radius: var(--sk-radius);
  padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.sk-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sk-accent);
  opacity: 0;
  transition: opacity 0.25s;
}
.sk-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.sk-benefit-card:hover::before { opacity: 1; }
.sk-benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(43, 90, 61, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sk-benefit-card h3 {
  font-family: var(--sk-font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sk-benefit-card p {
  font-size: 15px;
  color: var(--sk-text-muted);
  line-height: 1.65;
}

/* ===== JAK TO FUNGUJE ===== */
.sk-process {
  padding: 100px 0;
}
.sk-process-header {
  text-align: center;
  margin-bottom: 60px;
}
.sk-process-header .sk-section-sub {
  margin: 16px auto 0;
}
.sk-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.sk-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--sk-border), var(--sk-accent), var(--sk-border));
  z-index: 0;
}
.sk-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.sk-step-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--sk-white);
  border: 2px solid var(--sk-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sk-font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--sk-accent);
}
.sk-step h3 {
  font-family: var(--sk-font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sk-step p {
  font-size: 15px;
  color: var(--sk-text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.sk-faq {
  padding: 100px 0;
  background: var(--sk-bg-alt);
}
.sk-faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.sk-faq-header .sk-section-sub {
  margin: 16px auto 0;
}
.sk-faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sk-faq-item {
  background: var(--sk-white);
  border-radius: var(--sk-radius-sm);
  overflow: hidden;
  border: 1px solid var(--sk-border);
  transition: border-color 0.2s;
}
.sk-faq-item.active { border-color: var(--sk-accent); }
.sk-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--sk-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--sk-text);
  text-align: left;
  transition: color 0.2s;
  line-height: 1.4;
}
.sk-faq-q:hover { color: var(--sk-accent); }
.sk-faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--sk-text-muted);
}
.sk-faq-item.active .sk-faq-q svg { transform: rotate(45deg); color: var(--sk-accent); }
.sk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.sk-faq-item.active .sk-faq-a {
  max-height: 300px;
}
.sk-faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--sk-text-muted);
  line-height: 1.7;
}

/* ===== CTA STRIP ===== */
.sk-cta-strip {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--sk-accent);
  color: var(--sk-white);
}
.sk-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.sk-cta-strip .sk-section-title { color: var(--sk-white); }
.sk-cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin: 16px auto 36px;
  max-width: 500px;
}
.sk-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--sk-cta);
  color: var(--sk-text);
  font-family: var(--sk-font-heading);
  font-size: 20px;
  font-weight: 800;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  letter-spacing: -0.01em;
}
.sk-cta-phone:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.sk-cta-or {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.sk-cta-email {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sk-cta-email:hover { color: var(--sk-white); }

/* ===== FOOTER ===== */
.sk-footer {
  padding: 40px 0;
  border-top: 1px solid var(--sk-border);
  font-size: 13px;
  color: var(--sk-text-muted);
}
.sk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.sk-footer-links { display: flex; gap: 24px; }
.sk-footer-links a { transition: color 0.2s; }
.sk-footer-links a:hover { color: var(--sk-text); }

/* ===== REVEAL ANIMATION ===== */
.sk-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sk-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HAMBURGER BUTTON ===== */
.sk-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.sk-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sk-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.sk-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sk-hamburger.active span:nth-child(2) { opacity: 0; }
.sk-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE — TABLET (max 900px) ===== */
@media (max-width: 900px) {
  .sk-hamburger { display: flex; }

  .sk-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100dvh;
    background: var(--sk-bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
    overflow-y: auto;
  }
  .sk-nav.open { transform: translateX(0); }
  .sk-nav a {
    display: block !important;
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--sk-border);
    color: var(--sk-text);
  }
  .sk-nav a:last-child { border-bottom: none; }
  .sk-nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    border-bottom: none !important;
  }

  .sk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .sk-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .sk-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .sk-hero { padding: 50px 0 60px; }
  .sk-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sk-process-steps { grid-template-columns: 1fr; gap: 32px; }
  .sk-process-steps::before { display: none; }
  .sk-hero-stats { gap: 24px; flex-wrap: wrap; }
  .sk-hero-float { display: none; }

  .sk-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .sk-footer-links { justify-content: center; }
}

/* ===== RESPONSIVE — MOBILE (max 600px) ===== */
@media (max-width: 600px) {
  .sk-container { padding: 0 16px; }
  .sk-hero h1 { font-size: 32px; }
  .sk-hero-desc { font-size: 16px; }
  .sk-hero-actions { flex-direction: column; align-items: stretch; }
  .sk-btn-primary, .sk-btn-secondary { justify-content: center; padding: 14px 24px; }
  .sk-benefits, .sk-process, .sk-faq, .sk-cta-strip { padding: 60px 0; }
  .sk-benefits-grid { grid-template-columns: 1fr; }
  .sk-benefit-card { padding: 28px 20px; }
  .sk-section-title { font-size: 28px; }
  .sk-hero-stats { gap: 20px; }
  .sk-stat-num { font-size: 24px; }
  .sk-cta-phone { font-size: 17px; padding: 16px 28px; }
  .sk-faq-q { font-size: 15px; padding: 16px 20px; }
  .sk-faq-a-inner { padding: 0 20px 16px; font-size: 14px; }
}
