:root {
  --bp-green: #74bd55;
  --bp-green-dark: #5aa441;
  --bp-dark: #1c1f19;
  --bp-white: #ffffff;
  --bp-ink: #1c1f19;
  --bp-ink-dim: #565c50;
  --bp-font-head: 'Oswald', sans-serif;
  --bp-font-body: 'Inter', sans-serif;

  /* Unified type scale used across every brochure page */
  --bp-fs-display: clamp(46px, 8.6vw, 92px);   /* cover H1 */
  --bp-fs-h2: clamp(40px, 5vw, 58px);          /* section headings */
  --bp-fs-h3: clamp(19px, 2.3vw, 25px);        /* sub headings */
  --bp-fs-eyebrow: clamp(13px, 1.3vw, 17px);   /* small caps labels */
  --bp-fs-tagline: clamp(20px, 2.7vw, 32px);   /* large intro statements */
  --bp-fs-lead: clamp(16px, 1.6vw, 19px);      /* lead / larger body copy */
  --bp-fs-body: clamp(14.5px, 1.25vw, 16.5px); /* standard paragraph body */
  --bp-fs-label: clamp(12px, 1vw, 14px);       /* tiny caption labels */
  --bp-fs-stat: clamp(26px, 3vw, 40px);        /* stat numbers in chips/tiles */
  --bp-fs-stat-sm: clamp(19px, 2.1vw, 26px);   /* secondary/smaller stat numbers */
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bp-white); font-family: var(--bp-font-body); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--bp-font-head); font-weight: 700; text-transform: uppercase; margin: 0;
  line-height: 1.05; overflow-wrap: break-word; word-break: normal;
  hyphens: auto; -webkit-hyphens: auto;
}
p, li { hyphens: auto; -webkit-hyphens: auto; }
.bp .accent { color: var(--bp-green); }
.bp-bold { font-weight: 700 !important; }

.bp-exit {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: rgba(0,0,0,0.65); color: #fff; font-family: var(--bp-font-body);
  font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px; backdrop-filter: blur(6px);
  text-decoration: none;
}
.bp-exit:hover { background: var(--bp-green); color: var(--bp-dark); }

.bp { position: relative; width: 100%; }

/* ============ PAGE 3 — PRODUCTS ============ */
.bp-products {
  background: var(--bp-white);
  padding-bottom: 0;
}

.bp-logistics-photo::after {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: -70px;
  width: min(42vw, 520px);
  aspect-ratio: 2.2 / 1;
  background: url('../assets/car_image.webp') center / contain no-repeat;
  z-index: 3;
  pointer-events: none;
}

.bp-products-photo {
  height: clamp(330px, 52vw, 480px);
  max-height: none;
  aspect-ratio: auto;
  background-image: url('../assets/products-wrapping-bw.webp');
  background-size: cover;
  background-position: center 42%;
  position: relative;
}

.bp-products-card,
.bp-products-green {
  width: min(84vw, 960px);
  margin-left: auto;
  margin-right: auto;
}

.bp-products-card {
  position: relative;
  z-index: 2;
  margin-top: clamp(-228px, -24vw, -122px);
  background: #282d30;
  color: var(--bp-white);
  padding: clamp(52px, 6.5vw, 66px) clamp(46px, 7.5vw, 70px) 110px;
  box-shadow: 0 20px 46px rgba(0,0,0,0.34);
}

.bp-products-card h2 {
  font-family: var(--bp-font-body);
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--bp-fs-h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--bp-white);
  text-shadow: 2px 3px 0 rgba(42,82,125,0.38);
}

.bp-products-card p {
  max-width: 680px;
  margin: 0;
  font-size: var(--bp-fs-lead);
  line-height: 1.45;
  font-weight: 500;
  color: var(--bp-white);
}

.bp-products-green {
  position: relative;
  z-index: 3;
  margin-top: -66px;
  background: var(--bp-green);
  color: var(--bp-white);
  padding: clamp(48px, 6.6vw, 60px) clamp(46px, 7.5vw, 70px) 110px;
  clip-path: polygon(8.5% 0, 91.5% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
}

.bp-products-green h3 {
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-h3);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: var(--bp-white);
}

.bp-products-green h3:not(:first-child) {
  margin-top: 42px;
  margin-bottom: 10px;
}

.bp-dashed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.bp-dashed-list li {
  position: relative;
  font-style: italic;
  font-weight: 800;
  font-size: var(--bp-fs-lead);
  line-height: 1.3;
  padding: 10px 0 10px 30px;
  border-bottom: 2px dashed rgba(255,255,255,0.68);
}

.bp-dashed-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 8px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--bp-white);
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.bp-products-green > p {
  max-width: 640px;
  margin: 0;
  font-size: var(--bp-fs-lead);
  line-height: 1.4;
  font-weight: 700;
  color: var(--bp-white);
}


/* PAGE 3 — PRODUCTS responsive felülírások */
@media (max-width: 900px) {
  .bp-products-photo {
    height: clamp(300px, 56vw, 430px);
  }

  .bp-products-card,
  .bp-products-green {
    width: min(88vw, 820px);
  }
}

@media (max-width: 560px) {
  .bp-products-photo {
    height: 310px;
  }

  .bp-products-card,
  .bp-products-green {
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .bp-products-card {
    margin-top: -145px;
    padding: 34px 28px 88px;
  }

  .bp-products-card h2 {
    font-size: 28px;
  }

  .bp-products-green {
    margin-top: -54px;
    padding: 38px 28px 78px;
    clip-path: polygon(9% 0, 91% 0, 100% 8%, 100% 100%, 0 100%, 0 8%);
  }

  .bp-dashed-list li {
    padding-left: 24px;
  }
}


/* ==========================================================
   PAGE 4 — LOGISTICS / PDF MINTÁHOZ IGAZÍTOTT VÉGLEGES NÉZET
   ========================================================== */
.bp-logistics {
  --bp-logistics-page: 1400px;
  overflow: hidden;
  background: #2d3135;
  padding: 0;
}

.bp-logistics-photo,
.bp-logistics-bottom {
  width: min(100%, var(--bp-logistics-page));
  margin-left: auto;
  margin-right: auto;
}

.bp-logistics-photo {
  position: relative;
  min-height: 760px;
  padding: 220px 78px 58px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(15,17,19,0.84) 0%,
      rgba(15,17,19,0.75) 28%,
      rgba(15,17,19,0.42) 58%,
      rgba(15,17,19,0.08) 100%),
    linear-gradient(180deg,
      rgba(45,49,53,0) 67%,
      rgba(45,49,53,0.76) 88%,
      #2d3135 100%),
    url('../assets/logistics-warehouse.webp');
  background-size: cover;
  background-position: center top;
}

.bp-logistics-photo::after {
  display: none;
}

.bp-logistics-text {
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.bp-logistics-text h2 {
  margin: 0 0 20px;
  color: var(--bp-white);
  font-size: var(--bp-fs-h2);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 4px 5px 0 rgba(0,0,0,0.24);
}

.bp-logistics-text p {
  max-width: 470px;
  margin: 0 0 20px;
  color: var(--bp-white);
  font-size: var(--bp-fs-lead);
  line-height: 1.35;
}

.bp-logistics-text .bp-bold {
  font-weight: 900 !important;
}

.bp-logistics-visual {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 4px;
  width: 55%;
  height: 77%;
  background: url('../assets/car_image.webp') right bottom / contain no-repeat;
  pointer-events: none;
}

.bp-badge-row {
  display: none !important;
}

.bp-logistics-bottom {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  grid-template-areas:
    'label empty'
    'list factory'
    'outro factory';
  grid-template-rows: auto auto 1fr;
  column-gap: 12px;
  row-gap: 16px;
  align-items: start;
  margin-top: 0;
  padding: 0 50px 40px 64px;
  background: #2d3135;
}

.bp-partners-label {
  grid-area: label;
  display: inline-block;
  width: calc(100% + 44px);
  max-width: none;
  margin: 0 0 30px -64px;
  padding: 18px 28px 16px 86px;
  background: rgba(255,255,255,0.99);
  color: var(--bp-green);
  box-shadow: none;
  font-family: var(--bp-font-head);
  font-weight: 700;
  font-size: var(--bp-fs-h3);
  line-height: 1.1;
  text-transform: uppercase;
}

.bp-partner-list {
  grid-area: list;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-partner-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 17px;
  color: var(--bp-white);
  font-size: var(--bp-fs-lead);
  line-height: 1.7;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--bp-green);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.bp-box-icon {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  flex: 0 0 auto;
  margin-top: 0;
  color: var(--bp-green);
  background: url('../assets/image_felsorolas.webp') center / contain no-repeat;
}

.bp-box-icon svg {
  display: none;
}

.bp-factory {
  grid-area: factory;
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.03;
  justify-self: end;
  align-self: start;
  margin-top: -10px;
  color: var(--bp-green);
  opacity: 1;
  background: url('../assets/factory_image.webp') center top / contain no-repeat;
}

.bp-factory svg {
  display: none;
}

.bp-logistics-outro {
  grid-area: outro;
  width: 100%;
  max-width: 430px;
  margin: 0;
  padding: 0 0 0 22px;
  color: rgba(255,255,255,0.96);
  font-size: var(--bp-fs-body);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .bp-logistics-photo {
    min-height: 82vw;
    padding: 25vw 8.5vw 6vw;
  }

  .bp-logistics-text {
    max-width: 52%;
  }

  .bp-logistics-visual {
    right: -2vw;
    bottom: 0;
    width: 57%;
    height: 56%;
  }

  .bp-logistics-bottom {
    min-height: 52vw;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    padding: 0 5vw 5vw 7vw;
  }

  .bp-partners-label {
    width: calc(100% + 4vw);
    margin-left: -7vw;
    padding-left: 9.5vw;
  }

  .bp-logistics-outro {
    padding-left: 2.5vw;
  }
}

@media (max-width: 640px) {
  .bp-logistics-photo {
    min-height: 670px;
    padding: 104px 26px 32px;
    background-position: 52% top;
  }

  .bp-logistics-text {
    max-width: 330px;
  }

  .bp-logistics-text h2 {
    margin-bottom: 20px;
  }

  .bp-logistics-text p {
    max-width: 300px;
    margin-bottom: 18px;
  }

  .bp-logistics-visual {
    right: -72px;
    bottom: -2px;
    width: 82%;
    height: 48%;
  }

  .bp-logistics-bottom {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      'label'
      'empty'
      'list'
      'factory'
      'outro';
    gap: 22px;
    padding: 0 24px 42px;
  }

  .bp-warehouses {
    max-width: none;
  }

  .bp-partners-label {
    width: calc(100% + 48px);
    margin: 0 0 30px -24px;
    padding: 17px 24px 15px;
    text-align: center;
  }

  .bp-factory {
    width: min(100%, 390px);
    justify-self: center;
    margin-top: -6px;
  }

  .bp-logistics-outro {
    max-width: none;
    padding: 0;
  }
}
/* ==========================================================
   PAGE 5 — KIEMELT REFERENCIA / KORRIGÁLT NÉZET
   ========================================================== */
.bp-reference {
  --bp-reference-page: 1400px;
  position: relative;
  width: min(100%, var(--bp-reference-page));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #efefef;
  isolation: isolate;
}

/* Külső világos sáv */
.bp-reference::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 66.6%;
  width: 19.2%;
  background: linear-gradient(180deg,
    #d5d5d5 0%,
    #cfcfcf 24%,
    #bbbbbb 58%,
    #8e8e92 100%);
}

/* Belső sötétebb csík, mint a mintán */
.bp-reference::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 76.8%;
  width: 9.4%;
  background: linear-gradient(180deg,
    #b4b4b7 0%,
    #8e8f93 20%,
    #57595d 52%,
    #2b2d31 100%);
}

.bp-reference-main {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(220px, 22.5%);
  justify-content: space-between;
  align-items: start;
  gap: clamp(26px, 4.4vw, 70px);
  min-height: 520px;
  padding: 90px 76px 6px 88px;
}

.bp-reference-text {
  max-width: 620px;
}

.bp-reference-text h2 {
  margin: 0 0 24px;
  color: var(--bp-green);
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-h2);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bp-reference-text p {
  max-width: 590px;
  margin: 0 0 18px;
  color: #5e6064;
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-body);
  font-weight: 400;
  line-height: 1.5;
}

.bp-reference-text strong {
  display: inline;
  color: #2c2d30;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--bp-green);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

.bp-reference-text .bp-bold {
  max-width: 540px;
  margin-top: 14px;
  color: #292a2d;
  font-size: var(--bp-fs-lead);
  font-weight: 900 !important;
  line-height: 1.3;
}

.bp-reference-stats {
  position: relative;
  z-index: 4;
  width: min(100%, 250px);
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 36px;
}

.bp-stat {
  position: relative;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 12px 15px;
  border-radius: 0;
  clip-path: polygon(7% 0, 93% 0, 100% 12%, 100% 88%, 93% 100%, 7% 100%, 0 88%, 0 12%);
  color: #fff;
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-stat);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.26);
}

.bp-stat span {
  display: block;
  margin-top: 7px;
  font-size: var(--bp-fs-label);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.bp-stat-green { background: var(--bp-green); }
.bp-stat-dark { background: #2a2d31; }

.bp-stat-sm {
  min-height: 82px;
  font-size: var(--bp-fs-stat-sm);
  line-height: 1;
}

.bp-stat-sm span {
  margin-top: 4px;
  font-size: var(--bp-fs-label);
}

.bp-reference-visual {
  position: relative;
  z-index: 2;
  width: min(70%, 820px);
  aspect-ratio: 972 / 666;
  margin: -34px auto 0;
  background: url('../assets/reference-visual.webp') center bottom / contain no-repeat;
  pointer-events: none;
}

.bp-map-decor,
.bp-bread-photo {
  display: none !important;
}

@media (max-width: 1100px) {
  .bp-reference::before {
    left: 65.8%;
    width: 20.5%;
  }

  .bp-reference::after {
    left: 77.6%;
    width: 8.8%;
  }

  .bp-reference-main {
    grid-template-columns: minmax(0, 58%) minmax(180px, 22%);
    min-height: 470px;
    padding: 70px 5vw 4px 6vw;
    gap: 3vw;
  }

  .bp-reference-text h2 {
    margin-bottom: 20px;
  }

  .bp-reference-text p {
    margin-bottom: 16px;
  }

  .bp-reference-stats {
    width: min(100%, 210px);
    gap: 18px;
    padding-top: 22px;
  }

  .bp-stat {
    min-height: 92px;
  }

  .bp-stat-sm {
    min-height: 72px;
  }

  .bp-reference-visual {
    width: min(74%, 720px);
    margin-top: -18px;
    transform: translateX(34px);
  }
}

@media (max-width: 680px) {
  .bp-reference {
    width: 100%;
  }

  .bp-reference::before,
  .bp-reference::after {
    display: none;
  }

  .bp-reference-main {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 44px 24px 4px;
    gap: 20px;
  }

  .bp-reference-text h2 {
    margin-bottom: 18px;
  }

  .bp-reference-text p {
    margin-bottom: 14px;
  }

  .bp-reference-text strong {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  .bp-reference-stats {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-self: start;
    gap: 12px;
    padding-top: 4px;
  }

  .bp-stat {
    flex: 1 1 140px;
    min-height: 72px;
    padding: 10px 6px;
  }

  .bp-stat-sm {
    min-height: 58px;
    flex-basis: 100%;
  }

  .bp-reference-visual {
    width: min(94%, 560px);
    margin: 12px auto 0;
    transform: translateX(0);
  }
}

/* ==========================================================
   PAGE 6 — KAPCSOLAT / PDF MINTÁHOZ IGAZÍTOTT VÉGLEGES NÉZET
   ========================================================== */
.bp-contact {
  --bp-contact-page: 1400px;
  position: relative;
  width: min(100%, var(--bp-contact-page));
  min-height: 980px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: var(--bp-green);
  isolation: isolate;
}

.bp-contact-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  display: block;
  padding: 0;
  background:
    linear-gradient(180deg,
      rgba(20,22,19,0.06) 0%,
      rgba(87,156,62,0.12) 27%,
      rgba(116,189,85,0.66) 51%,
      rgba(116,189,85,0.95) 69%,
      var(--bp-green) 82%,
      var(--bp-green) 100%),
    url('../assets/contact-handshake.webp');
  background-size: cover;
  background-position: center top;
}

.bp-contact-text {
  position: absolute;
  z-index: 3;
  top: 245px;
  left: 82px;
  width: min(650px, 54%);
}

.bp-contact-text h2 {
  margin: 0 0 24px;
  color: var(--bp-white);
  font-family: var(--bp-font-body);
  font-size: clamp(36px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 5px 7px 10px rgba(0,0,0,0.32);
}

.bp-underline {
  display: inline-block;
  text-decoration: none;
  border-bottom: 6px solid #303236;
  padding-bottom: 7px;
}

.bp-contact-text p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,0.97);
  font-size: var(--bp-fs-lead);
  font-weight: 500;
  line-height: 1.45;
}

.bp-contact-text strong {
  color: var(--bp-white);
  font-weight: 900;
}

.bp-contact-card {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 64px;
  width: min(520px, 48%);
  max-width: none;
  margin: 0;
  padding: 34px 42px 30px 80px;
  border-radius: 0;
  background: rgba(255,255,255,0.99);
  box-shadow: 10px 12px 20px rgba(0,0,0,0.24);
}

.bp-contact-card h3 {
  margin: 0 0 18px;
  color: #2e3034;
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-h3);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.bp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 7px 0;
  border-top: 0;
  color: #34363a;
  font-size: var(--bp-fs-body);
  font-weight: 800;
  line-height: 1.3;
}

.bp-contact-row a {
  color: inherit;
  text-decoration: none;
}

.bp-contact-row a:hover {
  color: var(--bp-green-dark);
}

.bp-c-icon {
  width: 23px;
  height: 23px;
  margin-top: 2px;
  color: var(--bp-green);
  flex: 0 0 auto;
}

.bp-c-icon svg {
  width: 100%;
  height: 100%;
}

.bp-contact-visual {
  position: absolute;
  z-index: 4;
  right: -48px;
  bottom: 18px;
  width: min(54%, 750px);
  height: 48%;
  background: url('../assets/car_image.webp') right bottom / contain no-repeat;
  pointer-events: none;
}

@media (max-width: 1050px) {
  .bp-contact {
    min-height: 900px;
  }

  .bp-contact-text {
    top: 210px;
    left: 6vw;
    width: 57%;
  }

  .bp-contact-card {
    bottom: 48px;
    width: min(480px, 50%);
    padding: 30px 34px 28px 6vw;
  }

  .bp-contact-visual {
    right: -60px;
    width: 58%;
    height: 44%;
  }
}

/* Below 700px: background-position tweak only — layout itself is flattened
   unconditionally further down (PAGE 6 / ŰRLAPPAL BŐVÍTETT VÉGLEGES NÉZET). */
@media (max-width: 700px) {
  .bp-contact-photo {
    background-position: 57% top;
  }

  .bp-underline {
    border-bottom-width: 4px;
    padding-bottom: 5px;
  }
}


/* ==========================================================
   PAGE 6 — KAPCSOLAT / ÁTFEDÉS JAVÍTÁSA
   ========================================================== */
@media (min-width: 1051px) {
  .bp-contact-text {
    width: min(760px, 61%);
  }

  .bp-contact-text p {
    max-width: 660px;
  }

  .bp-contact-card {
    bottom: 28px;
  }
}


/* ==========================================================
   PAGE 2 — RÓLUNK / PDF MINTÁHOZ IGAZÍTOTT NÉZET
   ========================================================== */
.bp-stats {
  --bp-stats-page: 1415px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #efefef;
}

.bp-stats-photo,
.bp-chips,
.bp-about {
  width: min(100%, var(--bp-stats-page));
  margin-left: auto;
  margin-right: auto;
}

.bp-stats-photo {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-start;
  padding: 168px 86px 180px;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.92) 0%, rgba(19, 34, 19, 0.72) 24%, rgba(71, 126, 46, 0.30) 100%),
    linear-gradient(180deg, rgba(28, 44, 21, 0.18) 0%, rgba(19, 31, 17, 0.42) 100%),
    url('../assets/about-warehouse-rolls.webp');
  background-size: cover;
  background-position: center;
}

.bp-stats-text {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.bp-eyebrow {
  margin-bottom: 8px;
  color: var(--bp-white);
  font-family: var(--bp-font-body);
  font-weight: 800;
  font-size: var(--bp-fs-eyebrow);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bp-stats-text h2 {
  color: var(--bp-white);
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-display);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 8px 18px rgba(0,0,0,0.36), 5px 6px 0 rgba(0,0,0,0.40);
}

.bp-substat {
  margin-top: 12px;
  color: var(--bp-white);
  font-family: var(--bp-font-body);
  font-weight: 500;
  font-size: var(--bp-fs-tagline);
  line-height: 1.2;
}

.bp-chips {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 0.95fr 2.25fr;
  gap: 18px;
  padding: 0 86px;
  margin-top: -94px;
  transform: none;
}

.bp-chip,
.bp-chip-green,
.bp-chip-white {
  min-height: 126px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  gap: 7px;
}

.bp-chip strong,
.bp-chip-white strong,
.bp-chip-green strong {
  color: var(--bp-green);
  font-family: var(--bp-font-body);
  font-weight: 900;
  font-size: var(--bp-fs-stat);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.bp-chip span,
.bp-chip-white span,
.bp-chip-green span {
  color: var(--bp-green);
  font-family: var(--bp-font-body);
  font-weight: 900;
  font-size: var(--bp-fs-label);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.bp-about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.96fr);
  gap: 54px;
  align-items: center;
  padding: 58px 86px 96px;
  background: #efefef;
}

.bp-about-text p {
  margin: 0 0 20px;
  color: var(--bp-ink-dim);
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-body);
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

.bp-about-text p:last-child {
  margin-bottom: 0;
}

.bp-about-photo {
  width: 100%;
  aspect-ratio: 1.04 / 0.96;
  border-radius: 0;
  overflow: hidden;
  background: url('../assets/about-warehouse-rolls.webp') center / cover;
  box-shadow: none;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .bp-stats-photo {
    min-height: 630px;
    padding: 138px 6vw 150px;
  }

  .bp-stats-text {
    max-width: 470px;
  }

  .bp-stats-text h2 {
    font-size: 60px;
  }

  .bp-chips {
    gap: 14px;
    padding: 0 6vw;
    margin-top: -74px;
  }

  .bp-chip,
  .bp-chip-green,
  .bp-chip-white {
    min-height: 112px;
    padding: 18px 14px 16px;
  }

  .bp-about {
    gap: 38px;
    padding: 48px 6vw 74px;
  }
}

@media (max-width: 820px) {
  .bp-stats-photo {
    min-height: 560px;
    padding: 118px 24px 124px;
  }

  .bp-stats-text {
    max-width: 380px;
  }

  .bp-stats-text h2 {
    font-size: 48px;
  }

  .bp-chips {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
    margin-top: -58px;
  }

  .bp-chips .bp-chip:last-child {
    grid-column: 1 / -1;
  }

  .bp-about {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 24px 54px;
  }

  .bp-about-photo {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .bp-stats-photo {
    min-height: 300px;
    padding: 106px 20px 108px;
    background-position: 56% center;
  }

  .bp-stats-text {
    max-width: 300px;
  }

  .bp-stats-text h2 {
    font-size: 36px;
    text-shadow: 0 6px 12px rgba(0,0,0,0.34), 3px 4px 0 rgba(0,0,0,0.34);
  }

  .bp-substat {
    margin-top: 8px;
  }

  .bp-chips {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 20px;
    margin-top: -42px;
  }

  .bp-chips .bp-chip:last-child {
    grid-column: auto;
  }

  .bp-chip,
  .bp-chip-green,
  .bp-chip-white {
    min-height: 96px;
    padding: 16px 14px 14px;
  }

  .bp-about {
    padding: 36px 20px 46px;
  }
}

/* ==========================================================
   PAGE 1 — FŐOLDAL / VÉGSŐ, A MINTÁHOZ IGAZÍTOTT NÉZET
   ========================================================== */
.bp-cover {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #272c31;
  isolation: isolate;
}

.bp-cover-photo,
.bp-cover-dark,
.bp-cover-collage {
  width: 100%;
}

.bp-cover-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(98, 168, 67, 0.72) 0%, rgba(95, 158, 68, 0.52) 34%, rgba(22, 42, 20, 0.62) 100%),
    url('../assets/hero-stretchfilm.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 46%, 0 69%);
}

.bp-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #272c31;
  clip-path: polygon(0 68%, 100% 47%, 100% 100%, 0 100%);
}

.bp-cover-collage {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.bp-cover-strip {
  position: absolute;
  display: block;
  width: 240px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6eb349 0%, #4a7d34 100%);
  box-shadow: 0 10px 18px rgba(0,0,0,0.22);
  transform: rotate(-44deg);
}

.bp-cover-strip-one {
  right: 23.5%;
  top: 31.5%;
}

.bp-cover-strip-two {
  right: 35.5%;
  top: 43.5%;
}






.bp-cover-dark {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 142px 86px 100px;
}

.bp-cover-text {
  position: relative;
  max-width: 1040px;
}

.bp-cover-text h1 {
  margin: 0;
  color: #fff;
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: none;
  text-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.bp-cover-text h1 .accent {
  color: #ffffff;
}

.bp-kft {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.34em;
  font-weight: 900;
  vertical-align: 0.05em;
  color: #ffffff;
}

.bp-cover-tagline {
  margin: 22px 0 0;
  max-width: 640px;
  color: #ffffff;
  font-family: var(--bp-font-body);
  font-weight: 800;
  font-size: var(--bp-fs-tagline);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.bp-cover-sub {
  margin: 20px 0 0;
  max-width: 510px;
  color: rgba(255,255,255,0.96);
  font-family: var(--bp-font-body);
  font-size: var(--bp-fs-lead);
  font-weight: 500;
  line-height: 1.4;
}

.bp-cover-cta {
  margin-top: 36px;
  padding: 16px 34px;
  font-size: var(--bp-fs-body);
}

.bp-cover-scroll {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 40px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #fff;
  animation: bp-scroll-bounce 2.2s ease-in-out infinite;
}

.bp-cover-scroll svg {
  width: 18px;
  height: 18px;
}

.bp-cover-scroll:hover {
  border-color: var(--bp-green);
  color: var(--bp-green);
}

@media (max-width: 768px) {
  .bp-cover-scroll { right: 16px; bottom: 16px; width: 38px; height: 38px; }
}

@keyframes bp-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.bp-cover-enter {
  animation: bp-fade-up .9s cubic-bezier(.16,.84,.44,1) both;
}

.bp-cover-enter .bp-cover-cta {
  animation: bp-fade-up .9s cubic-bezier(.16,.84,.44,1) .25s both;
}

@keyframes bp-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.bp-cover-strip {
  animation: bp-strip-drift 6s ease-in-out infinite;
}

.bp-cover-strip-two {
  animation-delay: .6s;
}

@keyframes bp-strip-drift {
  0%, 100% { transform: rotate(-44deg) translateY(0); }
  50% { transform: rotate(-44deg) translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .bp-cover-enter,
  .bp-cover-enter .bp-cover-cta,
  .bp-cover-scroll,
  .bp-cover-strip {
    animation: none;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-stagger > * {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .bp-cover {
    min-height: 520px;
  }

  .bp-cover-photo {
    clip-path: polygon(0 0, 100% 0, 100% 47%, 0 67%);
  }

  .bp-cover::after {
    clip-path: polygon(0 66%, 100% 48%, 100% 100%, 0 100%);
  }

  .bp-cover-strip {
    width: 190px;
    height: 20px;
  }

  .bp-cover-dark {
    min-height: 520px;
    padding: 126px 6vw 100px;
  }

  .bp-cover-text {
    max-width: 620px;
  }

  .bp-cover-tagline {
    max-width: 560px;
  }

  .bp-cover-sub {
    margin-top: 20px;
  }
}

@media (max-width: 820px) {
  .bp-cover {
    min-height: 520px;
  }

  .bp-cover-photo {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 61%);
  }

  .bp-cover::after {
    clip-path: polygon(0 60%, 100% 46%, 100% 100%, 0 100%);
  }

  .bp-cover-collage {
    transform: scale(0.82);
    transform-origin: top right;
  }

  .bp-cover-dark {
    min-height: 520px;
    align-items: flex-end;
    padding: 118px 24px 100px;
  }

  .bp-cover-text {
    max-width: 480px;
  }

  .bp-cover-text h1 {
    line-height: 0.96;
  }

  .bp-cover-tagline {
    max-width: 430px;
  }

  .bp-cover-sub {
    max-width: 400px;
  }
}

@media (max-width: 560px) {
  .bp-cover {
    min-height: 520px;
  }

  .bp-cover-photo {
    clip-path: polygon(0 0, 100% 0, 100% 43%, 0 69%);
    background-position: 42% center;
  }

  .bp-cover::after {
    clip-path: polygon(0 68%, 100% 49%, 100% 100%, 0 100%);
  }

  .bp-cover-collage {
    inset: 24px -28px auto auto;
    width: 100%;
    height: 520px;
    transform: scale(1);
  }

  .bp-cover-strip {
    width: 138px;
    height: 16px;
  }

  .bp-cover-strip-one {
    right: 20%;
    top: 43%;
  }

  .bp-cover-strip-two {
    right: 37%;
    top: 59%;
  }

  .bp-cover-dark {
    min-height: 520px;
    padding: 22px 22px 100px;
    align-items: flex-end;
  }

  .bp-cover-text {
    max-width: 340px;
  }

  .bp-cover-text h1 {
    line-height: 0.98;
    text-shadow: 0 7px 14px rgba(0,0,0,0.32), 4px 5px 0 rgba(0,0,0,0.34);
  }

  .bp-kft {
    margin-left: 6px;
  }

  .bp-cover-tagline {
    margin-top: 18px;
    max-width: 310px;
    line-height: 1.15;
  }

  .bp-cover-sub {
    margin-top: 24px;
    max-width: 300px;
    line-height: 1.4;
  }
}

/* ==========================================================
   PAGE 4B — LOGISZTIKA / RAKTÁRAK + TÉRKÉP
   ========================================================== */
.bp-warehouses {
  grid-area: empty;
  width: 100%;
  max-width: 430px;
  margin: 0 0 24px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.98);
}

.bp-warehouses-label {
  color: var(--bp-green);
  font-family: var(--bp-font-head);
  font-weight: 700;
  font-size: var(--bp-fs-h3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bp-warehouse-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-warehouse-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--bp-ink);
  font-weight: 700;
  font-size: var(--bp-fs-body);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.bp-warehouse-list li:first-child {
  border-top: none;
}

.bp-warehouse-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-green);
}

@media (max-width: 900px) {
  .bp-warehouses {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .bp-warehouses {
    margin: 0;
    padding: 20px;
  }
}

/* ==========================================================
   PAGE 5B — MIÉRT MI
   ========================================================== */
.bp-why {
  background: #f4f5f1;
  padding: 7vw 7vw 6vw;
}

.bp-why-head h2 {
  color: var(--bp-ink);
  font-family: var(--bp-font-body);
  font-weight: 900;
  font-size: var(--bp-fs-h2);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.bp-why-head h2 br + span,
.bp-why-head .accent { color: var(--bp-green); }

.bp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
}

.bp-why-card {
  background: var(--bp-white);
  border-top: 4px solid var(--bp-green);
  padding: 26px 24px 28px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.bp-why-num {
  font-family: var(--bp-font-head);
  font-weight: 700;
  font-size: 32px;
  color: var(--bp-green);
  margin-bottom: 10px;
}

.bp-why-title {
  font-family: var(--bp-font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16.5px;
  color: var(--bp-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.bp-why-desc {
  color: var(--bp-ink-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .bp-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .bp-why { padding: 12vw 6vw 10vw; }
  .bp-why-grid { grid-template-columns: 1fr; }

  .bp-why-head h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

/* ==========================================================
   PAGE 6 — KAPCSOLAT / ŰRLAPPAL BŐVÍTETT VÉGLEGES NÉZET
   ========================================================== */
.bp-contact {
  min-height: 0;
}

.bp-contact-photo {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: auto;
  min-height: 52vh;
  padding: 7vw;
  box-sizing: border-box;
}

.bp-contact-text {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 650px;
}

.bp-contact-body {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  width: min(100%, var(--bp-contact-page, 1400px));
  margin: -70px auto 0;
  padding: 0 7vw 7vw;
}

.bp-contact-card {
  position: relative;
  z-index: 5;
  left: auto;
  bottom: auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 36px 38px;
  border-radius: 0;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 20px 46px rgba(0,0,0,0.20);
}

.bp-contact-addr {
  align-items: flex-start;
  flex-direction: row;
}

.bp-addr-label {
  color: var(--bp-green);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 6px;
}

.bp-addr-label:first-child { margin-top: 0; }

.bp-addr-value {
  margin-bottom: 2px;
}

.bp-contact-form-wrap {
  position: relative;
  z-index: 5;
  background: var(--bp-white);
  padding: 36px 38px;
  box-shadow: 0 20px 46px rgba(0,0,0,0.20);
}

.bp-contact-form { display: flex; flex-direction: column; gap: 16px; }

.bp-field { display: flex; flex-direction: column; gap: 6px; }

.bp-field label {
  font-weight: 700;
  font-size: 13px;
  color: var(--bp-ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bp-field input,
.bp-field textarea {
  font-family: var(--bp-font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.14);
  border-radius: 4px;
  background: #fff;
  color: var(--bp-ink);
  resize: vertical;
}

.bp-field input:focus,
.bp-field textarea:focus {
  outline: none;
  border-color: var(--bp-green);
}

.bp-form-error {
  color: #c0392b;
  font-size: 13.5px;
  font-weight: 600;
}

.bp-form-submit {
  align-self: flex-start;
}

.bp-form-note {
  color: var(--bp-ink-dim);
  font-size: 12.5px;
  line-height: 1.4;
}

.bp-form-thanks-title {
  color: var(--bp-green);
  font-family: var(--bp-font-head);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}

.bp-form-thanks-body {
  color: var(--bp-ink-dim);
  font-size: 14.5px;
  line-height: 1.5;
}

.bp-contact-visual { display: none !important; }

@media (max-width: 900px) {
  .bp-contact-body {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
}

@media (max-width: 700px) {
  .bp-contact-photo { min-height: 380px; }
}

@media (max-width: 560px) {
  .bp-contact-photo { min-height: 320px; padding: 12vw 6vw 10vw; }
  .bp-contact-body { margin-top: 0; padding: 0 6vw 10vw; }
  .bp-contact-card,
  .bp-contact-form-wrap { padding: 26px 24px; }
}