/* Paket Kap — WWW site styles (light theme) */

:root {
  --pk-green: #33673c;
  --pk-green-dark: #28522d;
  --pk-lime: #6db33f;
  --pk-orange: #e68133;
  --pk-bg: #ffffff;
  --pk-surface: #f7f9f5;
  --pk-surface-alt: #eef3ea;
  --pk-text: #1a2e1f;
  --pk-muted: rgba(26,46,31,0.52);
  --pk-border: rgba(51,103,60,0.1);
  --pk-border-strong: rgba(51,103,60,0.18);
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--pk-bg);
  color: var(--pk-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pk-green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ---------- NAV ---------- */
.site-nav {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--pk-border);
}
.site-nav__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pk-green);
  letter-spacing: -0.03em;
  margin-right: auto;
}
.site-nav a {
  color: var(--pk-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--pk-text); text-decoration: none; }
.site-nav .cta-sm {
  background: var(--pk-green);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  transition: background 0.15s;
}
.site-nav .cta-sm:hover { background: var(--pk-green-dark); color: #fff; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--pk-surface) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(109,179,63,0.08), transparent),
    radial-gradient(ellipse 40% 40% at 80% 75%, rgba(230,129,51,0.06), transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--pk-text);
}
.hero h1 span { color: var(--pk-green); }
.hero p {
  font-size: 1.1rem;
  color: var(--pk-muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.hero .cta-row {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CTA BUTTONS ---------- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #f08f4a, var(--pk-orange));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(230,129,51,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(230,129,51,0.35);
  text-decoration: none;
  color: #fff;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  background: transparent;
  color: var(--pk-green);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 2px var(--pk-border-strong);
  transition: background 0.15s, box-shadow 0.15s;
}
.cta-secondary:hover {
  background: var(--pk-surface);
  box-shadow: inset 0 0 0 2px rgba(51,103,60,0.3);
  text-decoration: none;
}

/* ---------- FOOD TICKER ---------- */
.ticker-wrap {
  overflow: hidden;
  padding: 1.75rem 0;
  background: var(--pk-surface);
  border-top: 1px solid var(--pk-border);
  border-bottom: 1px solid var(--pk-border);
}
.ticker {
  display: flex;
  gap: 2.5rem;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(51,103,60,0.22);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION STRUCTURE ---------- */
.section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pk-orange);
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  line-height: 1.2;
  color: var(--pk-text);
}

/* ---------- WHY CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--pk-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.why-card:hover {
  border-color: rgba(51,103,60,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,46,31,0.06);
}
.why-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--pk-surface-alt);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pk-text);
}
.why-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--pk-muted);
  line-height: 1.55;
}

/* ---------- HOW STEPS ---------- */
.how-section {
  background: var(--pk-surface);
  border-top: 1px solid var(--pk-border);
  border-bottom: 1px solid var(--pk-border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.75rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--pk-green);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}
.step h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pk-text);
}
.step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--pk-muted);
  line-height: 1.55;
}

/* ---------- BUSINESS CTA ---------- */
.biz-cta {
  background: linear-gradient(160deg, var(--pk-surface) 0%, var(--pk-surface-alt) 100%);
  border: 1px solid var(--pk-border-strong);
  border-radius: 1.25rem;
  padding: 3rem;
  text-align: center;
}
.biz-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: var(--pk-text);
}
.biz-cta p {
  color: var(--pk-muted);
  font-size: 0.95rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* ---------- STATS BAND ---------- */
.stats-band {
  background: var(--pk-green);
  padding: 2.75rem 1.5rem;
}
.stats-band__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.stats-band__item strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
}
.stats-band__item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.site-footer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--pk-muted);
  border-top: 1px solid var(--pk-border);
}
.site-footer a { color: var(--pk-muted); }
.site-footer a:hover { color: var(--pk-green); }
.footer-links {
  display: flex;
  gap: 1.25rem;
}

/* ---------- LEGAL (content block fallback) ---------- */
.section--legal {
  padding: 2.5rem 1.5rem 4rem;
}

.legal-doc {
  max-width: 46rem;
  margin: 0 auto;
}
.legal-doc > h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: var(--pk-text);
}
.legal-doc .legal-doc__meta {
  font-size: 0.78rem;
  color: var(--pk-muted);
  margin: 0 0 2rem;
}
.legal-doc h2 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
  color: var(--pk-text);
  letter-spacing: -0.02em;
}
.legal-doc h2:first-of-type {
  margin-top: 1.25rem;
}
.legal-doc p,
.legal-doc li {
  font-size: 0.9rem;
  color: var(--pk-text);
  line-height: 1.65;
}
.legal-doc p {
  margin: 0 0 0.85rem;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.legal-doc li {
  margin-bottom: 0.35rem;
}
.legal-doc .legal-doc__note {
  font-size: 0.78rem;
  color: var(--pk-muted);
  border-left: 3px solid var(--pk-border-strong);
  padding: 0.65rem 0 0.65rem 1rem;
  margin-top: 2rem;
  background: var(--pk-surface);
  border-radius: 0 0.5rem 0.5rem 0;
}
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 0.75rem 0 1.25rem;
}
.legal-doc th,
.legal-doc td {
  border: 1px solid var(--pk-border);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
}
.legal-doc th {
  background: var(--pk-surface-alt);
  font-weight: 700;
}
.legal-doc a {
  font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .site-nav { gap: 0.85rem; padding: 0.85rem 1rem; flex-wrap: wrap; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .section { padding: 2.5rem 1rem; }
  .biz-cta { padding: 2rem 1.25rem; }
  .stats-band__inner { gap: 1.5rem; }
  .stats-band { padding: 2rem 1rem; }
}
