@charset "UTF-8";
* {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  background: #f7faf9;
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  border-radius: 12px;
  border: 0;
  background: #55c48b;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(85, 196, 139, 0.15);
  text-decoration: none;
}
.btn:hover {
  background: #3da873;
  transform: translateY(-1px);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #e6efea;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
@media (max-width: 960px) {
  header .nav {
    padding: 18px 20px;
  }
}
header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
}
header .brand img {
  width: 200px;
  height: auto;
}
header .nav-links a {
  color: #33403c;
  text-decoration: none;
  font-weight: 500;
  margin-left: 20px;
}
header .nav-links a:hover {
  color: #55c48b;
}
header .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  border-radius: 12px;
  border: 0;
  background: #55c48b;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(85, 196, 139, 0.15);
  text-decoration: none;
}
header .btn:hover {
  background: #3da873;
  transform: translateY(-1px);
}

/* Desktop-only prvky */
@media (max-width: 960px) {
  .nav-links {
    display: none !important;
  }
}

/* CTA úplne preč na mobile (pre istotu prebijeme všetko) */
@media (max-width: 960px) {
  .nav-cta {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Poradie na mobile: hamburger vľavo, logo vpravo */
@media (max-width: 960px) {
  header .nav {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    column-gap: 12px;
  }
  .hamburger {
    order: 1;
    justify-self: start;
  }
  .brand {
    order: 2;
    justify-self: end;
  }
}
.hero {
  background: radial-gradient(1200px 400px at 50% -10%, rgba(85, 196, 139, 0.25), transparent 70%), linear-gradient(180deg, #ffffff, #f1f8f4 60%);
  padding: 72px 0 48px;
}
.hero .hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .hero-inner img {
    margin: 20px auto 0;
    width: 80%;
    max-width: 400px;
  }
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #e6efea;
  border-radius: 999px;
  color: #5b6b66;
  font-size: 0.9rem;
}
.hero .eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #55c48b;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 14px 0 10px;
}
.hero .lead {
  color: #486059;
  max-width: 60ch;
  margin: 0 auto;
}
.hero .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero .hero-cta .outline {
  background: #fff;
  color: #176341;
  border: 1px solid #e6efea;
}
@media (max-width: 640px) {
  .hero .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-cta .btn,
  .hero .hero-cta .outline {
    width: 100%;
    text-align: center;
  }
}
.hero img {
  width: 500px;
}

section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 0 0 8px;
}

.section-desc {
  color: #5b6b66;
  margin: 0 0 28px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #e6efea;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(85, 196, 139, 0.15);
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.feature-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #55c48b;
  color: #fff;
  font-size: 18px;
}

.muted {
  color: #5b6b66;
}

.soft {
  background: #fff;
}

.pricing {
  align-items: stretch;
}

.price .cost {
  font-size: 1.9rem;
  font-weight: 800;
  color: #55c48b;
}

.list {
  display: grid;
  gap: 8px;
}

.list li {
  display: flex;
  gap: 8px;
}
.list li:not(.no-icone)::before {
  content: "✓";
  color: #55c48b;
  font-weight: 900;
}

.center {
  text-align: center;
}

footer {
  border-top: 1px solid #e6efea;
  padding: 26px 0;
  color: #5b6b66;
  background: #fff;
}
footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #e6efea;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 102;
}
.hamburger span {
  position: absolute;
  width: 22px;
  height: 2.5px;
  background: #33403c;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 19px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
@media (max-width: 960px) {
  .hamburger {
    display: inline-flex;
  }
}

/* animácia na X */
.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

/* Off‑canvas wrapper + vrstvy */
.mobile-wrap {
  position: fixed;
  inset: 0;
  z-index: 101;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 101;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(84vw, 320px);
  background: #fff;
  border-left: 1px solid #e6efea;
  box-shadow: 0 10px 30px rgba(85, 196, 139, 0.15);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 102;
}
.mobile-menu .mobile-link {
  padding: 12px 10px;
  border-radius: 10px;
  color: #33403c;
  text-decoration: none;
  font-weight: 600;
}
.mobile-menu .mobile-link:hover {
  background: #f3f7f5;
  color: #55c48b;
}

/* Otvorený stav */
.mobile-wrap.is-open .backdrop {
  opacity: 1;
}
.mobile-wrap.is-open .mobile-menu {
  transform: translateX(0);
}

/* Lock scroll pri otvorenom menu */
.body-locked {
  overflow: hidden;
}

/* Extra istota: CTA na mobile naozaj nikdy neukazuj */
@media (max-width: 960px) {
  .nav-cta {
    display: none !important;
    visibility: hidden !important;
  }
}
.contact-section {
  padding: 56px 0;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.contact-section .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-icon .mail-svg {
  width: 180px;
  height: 180px;
  color: #55c48b;
  transform: scaleX(-1);
}
@media (max-width: 900px) {
  .contact-section .contact-icon {
    margin-bottom: 20px;
  }
}
.contact-section .php-email-form {
  background: #ffffff;
  border: 1px solid #e6efea;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(85, 196, 139, 0.15);
  padding: 20px;
}
.contact-section .php-email-form .hp-input {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-section .php-email-form .form-group {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.contact-section .php-email-form .form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #33403c;
}
.contact-section .php-email-form .form-group .form-control {
  width: 100%;
  border: 1px solid #e6efea;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #111827;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-section .php-email-form .form-group .form-control:focus {
  outline: none;
  border-color: #73cfa0;
  box-shadow: 0 0 0 4px rgba(85, 196, 139, 0.18);
}
.contact-section .php-email-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.contact-section .php-email-form .status {
  min-height: 24px;
  margin: 8px 0 14px;
}
.contact-section .php-email-form .status .loading,
.contact-section .php-email-form .status .error-message,
.contact-section .php-email-form .status .sent-message {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.contact-section .php-email-form .status .loading {
  background: #f3fbf7;
  color: #176341;
  border: 1px solid #a8e1c4;
}
.contact-section .php-email-form .status .error-message {
  background: #fff5f5;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.contact-section .php-email-form .status .sent-message {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.contact-section .php-email-form .status [hidden] {
  display: none !important;
}
.contact-section .php-email-form .text-right {
  display: flex;
  justify-content: flex-end;
}
.contact-section .php-email-form .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  border-radius: 12px;
  border: 0;
  background: #55c48b;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(85, 196, 139, 0.15);
  text-decoration: none;
  padding: 12px 18px;
  font-weight: 800;
  border-radius: 12px;
  width: auto;
}
.contact-section .php-email-form .submit-btn:hover {
  background: #3da873;
  transform: translateY(-1px);
}
.contact-section img {
  width: 300px;
}