:root {
  --bg: #0b0c0c;
  --bg-alt: #131515;
  --bg-card: #151817;
  --text: #f5f4f0;
  --text-dim: rgba(245, 244, 240, 0.68);
  --text-dimmer: rgba(245, 244, 240, 0.5);
  --border: rgba(245, 244, 240, 0.1);
  --accent: #74bd55;
  --accent-light: #96d17e;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: 120px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

::selection { background: var(--accent); color: var(--bg); }

h1, h2 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
  overflow-wrap: break-word;
}

p { margin: 0 0 18px; color: var(--text-dim); font-size: 16.5px; line-height: 1.7; }

.accent { color: var(--accent); }

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 16px 30px;
  cursor: pointer;
  border: none;
  transition: opacity .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: var(--bg); }
.btn-accent:hover { opacity: 0.88; box-shadow: 0 8px 24px -8px rgba(116, 189, 85, 0.55); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(245,244,240,0.35); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }

/* SCROLL REVEAL */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translate(0, 0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.16,.84,.44,1), transform .55s cubic-bezier(.16,.84,.44,1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .22s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .34s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-stagger > * {
    transition: none; opacity: 1; transform: none;
  }
  .hero-inner { animation: none; }
  .nav-logo-text .accent { animation: none; }
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(11,12,12,0);
  border-bottom: 1px solid transparent;
  transition: all .35s ease;
}
.nav.scrolled {
  padding: 14px 6vw;
  background: rgba(11,12,12,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: baseline; gap: 8px; cursor: pointer; }
.nav-logo-text { font-family: var(--font-head); font-weight: 700; font-size: 22px; letter-spacing: 0.02em; }
.nav-logo-text .accent { display: inline-block; animation: floatSlow 3s ease-in-out infinite; }
.nav-logo-sub { font-weight: 500; font-size: 11px; letter-spacing: 0.12em; color: var(--text-dimmer); }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  position: relative;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: rgba(245,244,240,0.78); white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1.5px;
  background: var(--accent); transition: right .3s cubic-bezier(.16,.84,.44,1);
}
.nav-links a:hover { color: var(--accent-light); }
.nav-links a:hover::after { right: 0; }
.nav-links .btn { padding: 11px 22px; }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; flex-direction: column; justify-content: space-between; padding: 0;
}
.nav-burger span { display: block; height: 2px; width: 100%; background: var(--text); transition: transform .25s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 110px 32px 40px; display: none; flex-direction: column; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-weight: 600; font-size: 28px; text-transform: uppercase; color: var(--text); letter-spacing: 0.02em; }
.mobile-menu .btn { margin-top: 12px; align-self: flex-start; padding: 16px 22px; font-size: 15px; }

.mobile-menu a, .mobile-menu .btn {
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
}
.mobile-menu.open a, .mobile-menu.open .btn { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: .05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .20s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .30s; }
.mobile-menu.open .btn { transition-delay: .35s; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 96px;
  background-image:
    linear-gradient(180deg, rgba(11,12,12,0.35) 0%, rgba(11,12,12,0.55) 55%, #0b0c0c 100%),
    linear-gradient(135deg, #1b2e1a 0%, #0b0c0c 60%);
  background-size: cover;
  background-position: center;
}
.hero.has-photo {
  background-image:
    linear-gradient(180deg, rgba(11,12,12,0.35) 0%, rgba(11,12,12,0.55) 55%, #0b0c0c 100%),
    url('../assets/hero-stretchfilm.webp');
}
.hero-inner { max-width: 920px; animation: fadeUp .9s ease both; }
.eyebrow {
  font-weight: 600; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(38px, 6vw, 78px); line-height: 1.04; letter-spacing: -0.01em; margin: 0 0 26px; }
.lead { font-size: 19px; line-height: 1.5; color: var(--text-dim); max-width: 560px; margin: 0 0 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* STATS */
.stats { padding: var(--section-pad) 6vw; background: var(--bg); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; row-gap: 40px; align-items: center; }
.stats-headline { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px,4.5vw,58px); text-transform: uppercase; line-height: 1.05; margin: 0 0 8px; }
.stats-sub { font-size: 15.5px; color: var(--text-dimmer); max-width: 420px; }
.stats-chips { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.chip { border: 1px solid var(--border); padding: 22px 16px; text-align: center; transition: transform .3s ease, border-color .3s ease; }
.chip:hover { transform: translateY(-4px); border-color: var(--accent); }
.chip-value { font-family: var(--font-head); font-weight: 700; font-size: 24px; margin-bottom: 8px; }
.chip-label { font-weight: 500; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dimmer); }

/* SECTIONS */
.section { padding: var(--section-pad) 6vw; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kicker { font-weight: 600; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.kicker-light { color: var(--accent-light); }
.section h2 { font-size: clamp(28px,3.4vw,42px); line-height: 1.1; margin: 0 0 22px; }
.lead-narrow { max-width: 480px; margin-bottom: 36px; }

.img-wrap { position: relative; width: 100%; border-radius: 4px; overflow: hidden; background: linear-gradient(135deg, #1c1f1e, #0e0f0f); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,.84,.44,1); }
.img-wrap:hover img { transform: scale(1.06); }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-3-4 { aspect-ratio: 3/4; }
.ratio-5-4 { aspect-ratio: 5/4; }
.ratio-16-9 { aspect-ratio: 16/9; margin-top: 28px; }
.img-wrap-white { background: #fff; }
.img-wrap.img-fallback img { display: none; }
.img-wrap.img-fallback::after {
  content: attr(data-fallback-text) '';
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,244,240,0.28); text-align: center; padding: 20px;
}
.grayscale img { filter: grayscale(1) contrast(1.05); }

.grid-about { grid-template-columns: 0.9fr 1.1fr; }
.grid-products { grid-template-columns: 1.1fr 0.9fr; align-items: start; }

.product-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.product-item { display: flex; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--border); transition: padding-left .25s ease, border-color .25s ease; }
.product-item:hover { padding-left: 6px; border-color: var(--accent); }
.dash { font-size: 18px; line-height: 1; }
.product-item span:last-child { font-size: 15px; color: rgba(245,244,240,0.82); }

.callout { margin-top: 36px; padding: 26px 28px; background: var(--bg-card); border-top: 2px solid var(--accent); }
.callout-title { font-family: var(--font-head); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.callout-body { font-size: 15px; line-height: 1.6; color: rgba(245,244,240,0.65); }

/* LOGISTICS */
.logistics-photo {
  position: relative; border-radius: 6px; overflow: hidden;
  background: linear-gradient(120deg, #1a2519, #0b0c0c 70%);
}
.logistics-photo img { width: 100%; display: block; aspect-ratio: 21/9; object-fit: cover; }
.logistics-photo.img-fallback img { display: none; }
.logistics-photo.img-fallback::before {
  content: attr(data-fallback-text);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,244,240,0.28); aspect-ratio: 21/9;
}
.logistics-photo::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, rgba(11,12,12,0) 0%, rgba(11,12,12,0.75) 100%);
  pointer-events: none;
}

.logistics-body {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start;
  padding-top: 56px;
}

.logistics-intro h2 { font-size: clamp(34px,4.4vw,58px); line-height: 1.22; margin: 0 0 34px; }
.logistics-intro p { font-size: 17px; line-height: 1.6; color: rgba(245,244,240,0.72); margin: 0 0 14px; }
.logistics-intro p.strong-line { font-weight: 600; color: var(--text); }
.logistics-intro u { color: var(--accent); text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 700; }

.partners-label {
  display: inline-block; background: var(--text); color: var(--bg);
  font-family: var(--font-head); font-weight: 600; font-size: 15px; text-transform: uppercase;
  line-height: 1.3; letter-spacing: 0.01em; padding: 14px 20px; border-radius: 2px; margin-bottom: 22px;
}

.partner-list { display: flex; flex-direction: column; gap: 4px; }
.partner-item {
  display: flex; align-items: center; gap: 14px; font-size: 15.5px; font-weight: 600; color: var(--text);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .25s ease, border-color .25s ease;
}
.partner-item:hover { padding-left: 6px; border-color: var(--accent); }
.partner-item span:last-child { text-decoration: underline; text-decoration-color: rgba(116,189,85,0.55); text-underline-offset: 3px; }
.partner-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(116, 189, 85, 0.12); color: var(--accent);
}
.partner-icon svg { width: 18px; height: 18px; }
.logistics-outro { font-size: 14.5px; line-height: 1.6; color: var(--text-dimmer); margin: 22px 0 0; }

/* REFERENCE */
.grid-reference { grid-template-columns: 1fr 1fr; }
.ref-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 32px; }
.ref-num { font-family: var(--font-head); font-weight: 700; font-size: 34px; }
.ref-num-sm { font-size: 20px; line-height: 1.2; padding-top: 6px; }
.ref-label { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dimmer); margin-top: 6px; }

/* VALUES */
.values-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.values-head h2 { margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.value-card { background: var(--bg); padding: 36px 26px; transition: transform .3s ease, background .3s ease; }
.value-card:hover { transform: translateY(-6px); background: #101312; }
.value-num { font-family: var(--font-head); font-weight: 600; font-size: 13px; margin-bottom: 18px; }
.value-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; line-height: 1.25; }
.value-desc { font-size: 14px; line-height: 1.55; color: rgba(245,244,240,0.6); }

/* CONTACT */
.grid-contact { grid-template-columns: 0.85fr 1.15fr; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.info-label { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,244,240,0.45); margin-bottom: 5px; }
.info-value { font-size: 15.5px; color: var(--text); }
.info-link { display: block; }

.contact-form-wrap { background: var(--bg); padding: 44px; border-radius: 6px; display: flex; flex-direction: column; }

@media (min-width: 901px) {
  .contact-form-wrap { min-height: 460px; justify-content: center; padding: 56px; }
}
.contact-form { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.field label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(245,244,240,0.55); margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1.5px solid rgba(245,244,240,0.25);
  color: var(--text); font-family: var(--font-body); font-size: 16px; padding: 13px 2px; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,244,240,0.38); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.btn-submit { margin-top: 8px; padding: 17px 30px; align-self: flex-start; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error { font-size: 14px; color: #e2836f; }
.form-note { font-size: 13.5px; line-height: 1.6; color: var(--text-dimmer); margin-top: 18px; }

.form-thanks { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; height: 100%; min-height: 360px; }
.form-thanks-title { font-family: var(--font-head); font-weight: 700; font-size: 26px; text-transform: uppercase; margin-bottom: 14px; }
.form-thanks-body { font-size: 15.5px; color: rgba(245,244,240,0.7); line-height: 1.6; }

/* FOOTER */
.footer {
  padding: 44px 6vw; background: var(--bg); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: 0.02em; color: rgba(245,244,240,0.7); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(245,244,240,0.55); }
.footer-links a:hover { color: var(--accent-light); }
.footer-copy { font-size: 13px; color: rgba(245,244,240,0.4); }

/* LEGAL PAGE */
.legal-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6vw; background: rgba(11,12,12,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.legal-back { font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; color: rgba(245,244,240,0.7); white-space: nowrap; }
.legal-back:hover { color: var(--accent-light); }

.legal-header { padding: 64px 6vw 32px; background: var(--bg); }
.legal-header .kicker { margin-bottom: 14px; }
.legal-header h1 { font-size: clamp(32px, 4.5vw, 52px); }

.legal-content { padding: 0 6vw 120px; }
.legal-block { padding: 32px 0; border-top: 1px solid var(--border); }
.legal-block:first-child { border-top: none; padding-top: 0; }
.legal-block h2 { font-family: var(--font-head); font-weight: 600; font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 16px; }
.legal-block h3 { font-family: var(--font-head); font-weight: 600; font-size: 16px; text-transform: none; letter-spacing: 0.01em; margin: 26px 0 10px; color: var(--text); }
.legal-block h3:first-of-type { margin-top: 0; }
.legal-block p { font-size: 15.5px; line-height: 1.75; color: var(--text-dim); margin: 0 0 14px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: var(--text); }
.legal-block ol { margin: 0 0 14px; padding-left: 22px; }
.legal-block ol:last-child { margin-bottom: 0; }
.legal-block li { font-size: 15.5px; line-height: 1.75; color: var(--text-dim); margin-bottom: 10px; }
.legal-block li::marker { color: var(--accent); font-weight: 600; }
.legal-block li:last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .legal-header { padding: 48px 6vw 24px; }
  .legal-content { padding-bottom: 72px; }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .grid-2, .stats-grid { grid-template-columns: 1fr; }
  .stats-chips { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .product-list { grid-template-columns: 1fr; }
  .grid-products .img-wrap { order: -1; }
  .logistics-body { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .logistics-photo img { aspect-ratio: 4/3; }
}

@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-chips { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .hero { padding: 0 6vw 64px; }
}

@media (max-width: 400px) {
  .nav, .nav.scrolled { padding: 12px 5vw; }
  .nav-logo { gap: 5px; }
  .nav-logo-text { font-size: 17px; }
  .nav-logo-sub { display: none; }
  .nav-burger { width: 26px; height: 20px; }

  .eyebrow { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(26px, 8.6vw, 36px); margin-bottom: 18px; }
  .lead { font-size: 15.5px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 15px 20px; }

  .kicker { font-size: 11px; }
  .section h2 { font-size: clamp(24px, 7.5vw, 30px); }
  .stats-headline { font-size: clamp(26px, 8vw, 34px); }

  .chip-value { font-size: 20px; }
  .value-card { padding: 26px 18px; }

  .cc-floating-btn svg { width: 18px; height: 18px; }
}

@media (max-width: 768px) {
  .cc-floating-btn { width: 38px; height: 38px; bottom: 1rem; left: 1rem; }
}

/* A Google reCAPTCHA jelvény alapból ~2 milliárdos z-indexszel lebeg
   mindenhol a tartalom fölött — visszafogjuk, hogy a kártyák/dobozok
   ugyanúgy elé kerüljenek, mint a süti-gombnál. */
.grecaptcha-badge {
  z-index: 999999 !important;
}
