:root {
  --brand-green: #609841;
  --brand-orange: #dd5a2b;
  --text-main: #1d1d1d;
  --text-muted: #5a5a5a;
  --bg-main: #ffffff;
  --bg-soft: #f6f6f6;
  --bg-tint: #eef4e8;
  --border-soft: #e8ece4;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 16px 44px rgba(24, 49, 14, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 92% 8%, rgba(96, 152, 65, 0.12), transparent 30%),
    radial-gradient(circle at 12% 22%, rgba(221, 90, 43, 0.1), transparent 28%),
    var(--bg-main);
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(1400px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.section {
  padding: 4.75rem 0;
}

.section-light {
  background: linear-gradient(180deg, var(--bg-soft), #ffffff);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(120px, 13vw, 180px);
  height: auto;
}

.mobile-header-actions,
.mobile-overlay,
.mobile-drawer {
  display: none;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.icon-btn svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.6px;
  border-radius: 2px;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-green);
  border-radius: 999px;
  padding: 0.35rem;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #ffffff;
  color: var(--brand-orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.8rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-header {
  background: var(--brand-orange);
  color: #ffffff;
}

.btn-primary {
  background: var(--brand-green);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.hero {
  padding-top: 5.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
}

.eyebrow-light {
  color: #c7e3b6;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  line-height: 1.15;
  max-width: 22ch;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead {
  margin-top: 1.2rem;
  max-width: 54ch;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 2.1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-stats li {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

.hero-stats strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 1.6rem;
  background: rgba(96, 152, 65, 0.12);
  color: var(--brand-green);
  margin-bottom: 0;
}

.hero-stats strong i {
  font-size: 3.1rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-panel {
  background: linear-gradient(170deg, #ffffff, var(--bg-tint));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.hero-panel h2 {
  font-size: 1.5rem;
  max-width: 15ch;
}

.hero-panel>p {
  color: var(--text-muted);
  margin-top: 0.95rem;
}

.product-gallery {
  padding-top: 1.2rem;
  padding-bottom: 0;
}

.gallery-lead {
  margin-top: 0.95rem;
  max-width: 68ch;
  color: var(--text-muted);
}

.carousel-shell {
  margin-top: 1.7rem;
}

.carousel-shell-mobile {
  display: none;
  margin-top: 1.2rem;
}

.carousel-frame {
  position: relative;
  padding: 0 3.2rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(24, 49, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 12px 30px rgba(24, 49, 14, 0.14);
}

.carousel-arrow i {
  font-size: 1.25rem;
  line-height: 1;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: transparent;
  min-height: clamp(360px, 41vw, 620px);
}

.carousel-track {
  position: relative;
  min-height: inherit;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(62%, 760px);
  margin: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%) scale(0.86);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 0.42s ease,
    filter 0.42s ease;
  will-change: transform, opacity, filter;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: clamp(240px, 36vw, 520px);
  object-fit: contain;
  background: #ffffff;
}

.carousel-slide figcaption {
  padding: 0.9rem 1.15rem 1rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
}

.carousel-slide.is-active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
  filter: none;
  pointer-events: auto;
}

.carousel-slide.is-prev {
  transform: translateX(calc(-50% - 33%)) scale(0.82);
  opacity: 0.45;
  z-index: 3;
  filter: saturate(0.76) brightness(0.82);
  pointer-events: auto;
  cursor: pointer;
}

.carousel-slide.is-next {
  transform: translateX(calc(-50% + 33%)) scale(0.82);
  opacity: 0.45;
  z-index: 3;
  filter: saturate(0.76) brightness(0.82);
  pointer-events: auto;
  cursor: pointer;
}

.carousel-slide.is-far-left {
  transform: translateX(calc(-50% - 38%)) scale(0.74);
  opacity: 0;
  z-index: 1;
  filter: saturate(0.75) brightness(0.85);
}

.carousel-slide.is-far-right {
  transform: translateX(calc(-50% + 38%)) scale(0.74);
  opacity: 0;
  z-index: 1;
  filter: saturate(0.75) brightness(0.85);
}

.carousel-dots {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cad7c2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--brand-green);
  transform: scale(1.2);
}

.carousel-dot:focus-visible {
  outline: 2px solid rgba(96, 152, 65, 0.4);
  outline-offset: 3px;
}

.mobile-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.mobile-carousel-track {
  display: flex;
  transform: translateX(0);
  transition: transform 0.36s ease;
  will-change: transform;
}

.mobile-carousel-slide {
  min-width: 100%;
  margin: 0;
}

.mobile-carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #ffffff;
}

.mobile-carousel-slide figcaption {
  padding: 0.8rem 0.9rem 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
  font-size: 0.92rem;
}

.mobile-carousel-controls {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.mobile-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-carousel-arrow i {
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.mobile-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cad7c2;
  cursor: pointer;
}

.mobile-carousel-dot.is-active {
  background: var(--brand-green);
  transform: scale(1.15);
}

.panel-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.panel-list article {
  background: #ffffff;
  border-radius: 14px;
  border-left: 4px solid var(--brand-orange);
  padding: 0.95rem 1rem;
}

.panel-list p {
  margin-top: 0.4rem;
  color: var(--text-muted);
}

.cards {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.card p {
  margin-top: 0.55rem;
  color: var(--text-muted);
}

.section-accent {
  background: linear-gradient(160deg, #325220, var(--brand-green) 56%, #476f2f);
  color: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: center;
}

.split p {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
}

.ip-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.ip-box p {
  margin: 0;
  color: #d7ebcc;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ip-box strong {
  display: block;
  margin-top: 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
}

.ip-box span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.timeline {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: #ffffff;
}

.step span {
  display: inline-block;
  color: var(--brand-orange);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.step p {
  margin-top: 0.55rem;
  color: var(--text-muted);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dfd3;
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(96, 152, 65, 0.28);
  border-color: var(--brand-green);
}

.turnstile-widget {
  width: 100%;
  min-height: 68px;
}

.turnstile-widget .cf-turnstile {
  max-width: 100%;
}

.form-status {
  margin: 0.35rem 0 0;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.form-status.is-success {
  background: #eaf5e3;
  color: #2f5f1a;
  border: 1px solid #bad9aa;
}

.form-status.is-error {
  background: #fce9e2;
  color: #8a3113;
  border: 1px solid #f2c0ad;
}

.site-footer {
  background: #f0f3ee;
  border-top: 1px solid var(--border-soft);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

@media (max-width: 1024px) {

  .hero-grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 4.5rem;
  }

  .carousel-frame {
    padding: 0 2.8rem;
  }

  .carousel-viewport {
    min-height: clamp(420px, 54vw, 590px);
  }

  .carousel-slide {
    width: min(86%, 820px);
  }

  .carousel-slide.is-prev {
    transform: translateX(calc(-50% - 34%)) scale(0.84);
  }

  .carousel-slide.is-next {
    transform: translateX(calc(-50% + 34%)) scale(0.84);
  }

  .carousel-slide img {
    height: clamp(220px, 46vw, 500px);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .carousel-shell {
    display: none;
  }

  .carousel-shell-mobile {
    display: block;
  }

  .nav-shell {
    flex-wrap: nowrap;
    min-height: 70px;
  }

  .main-nav,
  .btn-header {
    display: none;
  }

  .mobile-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
  }

  .mobile-overlay,
  .mobile-drawer {
    display: block;
  }

  .mobile-overlay {
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(29, 29, 29, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 45;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, calc(100% - 56px));
    height: 100dvh;
    background: var(--brand-green);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.22, 0.91, 0.24, 1);
    z-index: 70;
    padding: 1.9rem 1.8rem;
  }

  .menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-close span {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 19px;
    height: 2.8px;
    border-radius: 3px;
    background: #ffffff;
  }

  .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-drawer-nav {
    display: grid;
    gap: 0.9rem;
    margin-top: 3.1rem;
  }

  .mobile-drawer-nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #d8ebcb;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    line-height: 1.14;
  }

  .mobile-drawer-nav a:hover,
  .mobile-drawer-nav a:focus-visible {
    color: #ffffff;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-drawer {
    transform: translateX(0);
  }

  .brand-logo {
    width: 130px;
  }

  .hero-stats,
  .cards-3,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 4rem;
    gap: 1.25rem;
  }

  .hero-panel {
    padding: 1.2rem;
  }

  .carousel-frame {
    padding: 0;
  }

  .carousel-arrow {
    position: absolute;
    top: calc(50% - 20px);
    z-index: 3;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(24, 49, 14, 0.2);
  }

  .carousel-arrow:hover,
  .carousel-arrow:focus-visible {
    transform: translateY(0);
  }

  .carousel-viewport {
    min-height: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .carousel-track {
    display: flex;
    min-height: 0;
    transform: translateX(0);
    transition: transform 0.45s ease;
    will-change: transform;
  }

  .carousel-slide {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    z-index: auto;
    filter: none;
    pointer-events: auto;
    transition: none;
  }

  .carousel-prev {
    left: 0.65rem;
  }

  .carousel-next {
    right: 0.65rem;
  }

  .carousel-slide img {
    aspect-ratio: 4 / 5;
  }

  .carousel-slide figcaption {
    padding: 0.8rem 0.9rem 0.9rem;
    font-size: 0.92rem;
  }

  .contact {
    gap: 2rem;
  }

  .product-gallery {
    padding-bottom: 0;
  }

  #kontakt {
    padding-bottom: 2rem;
  }

  .footer-shell {
    flex-direction: column;
  }
}