/*
  PEPERO-POLO v2 — Main Stylesheet
  Darmowe biblioteki (CDN w HTML):
    • AOS.js      – animacje on-scroll
    • Swiper.js   – slider produktów
    • CountUp.js  – animowane liczniki
  Fonty: Google Fonts (Playfair Display + Inter)
*/

/* === RESET & ROOT ===================================================== */
:root {
  --c-dark:       #1e3d25;
  --c-dark2:      #285535;
  --c-green:      #3da05e;
  --c-green-mid:  #54c47c;
  --c-green-lt:   #78d99a;
  --c-pale:       #d8f2e5;
  --c-gold:       #c8991a;
  --c-gold-lt:    #e8bc4a;
  --c-red:        #b52329;
  --c-white:      #ffffff;
  --c-off:        #f7f9f5;
  --c-gray:       #eaeae6;
  --c-text:       #1e2620;
  --c-muted:      #5a6b5f;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --nav-h:        72px;
  --r:            14px;
  --r-lg:         22px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --shadow:       0 8px 30px rgba(0,0,0,.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* === TYPOGRAPHY ======================================================= */
.serif        { font-family: var(--font-serif); }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); line-height: 1.15; color: var(--c-dark); }

/* === UTILITIES ======================================================== */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section      { padding: 90px 0; }
.section--lg  { padding: 120px 0; }
.section--sm  { padding: 55px 0; }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-green-mid);
  margin-bottom: 10px;
}
.tag--light { color: var(--c-pale); }
.tag--gold  { color: var(--c-gold-lt); }

.h-xl {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
}
.h-lg {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.h-md {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.lead {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.9;
  max-width: 600px;
}
.lead--white { color: rgba(255,255,255,.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn--green  { background: var(--c-green); color: #fff; }
.btn--green:hover { background: var(--c-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,92,56,.35); }
.btn--gold   { background: var(--c-gold); color: var(--c-dark); }
.btn--gold:hover { background: var(--c-gold-lt); transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn--outline-dark { background: transparent; color: var(--c-green); border-color: var(--c-green); }
.btn--outline-dark:hover { background: var(--c-green); color: #fff; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === NAVBAR =========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  /* Ten sam odcień co .solid na podstronach (#1e3d25 — spójny pasek całej witryny) */
  background: var(--c-dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.navbar.solid {
  background: var(--c-dark);
}
.navbar.solid.scrolled {
  background: var(--c-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo__mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--c-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.logo__img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.logo__name em { font-style: normal; color: var(--c-gold-lt); }

.nav-links {
  display: flex;
  gap: .3rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .25s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-sw {
  display: flex;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-sw button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all .2s;
}
.lang-sw button.on { background: var(--c-green); color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; transition: all .3s; }

/* === HERO ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Pseudo-foto background z gradientem (do zastąpienia prawdziwym zdjęciem) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg,
      rgba(11,31,20,.92) 0%,
      rgba(21,43,28,.85) 40%,
      rgba(30,92,56,.6) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600"><defs><radialGradient id="g" cx="60%" cy="40%" r="50%"><stop offset="0" stop-color="%232d7a4f"/><stop offset="1" stop-color="%230b1f14"/></radialGradient></defs><rect fill="url(%23g)" width="800" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,153,26,.08), transparent);
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(200,153,26,.15);
  border: 1px solid rgba(200,153,26,.3);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 1.6rem;
}
.hero__chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold-lt);
  display: inline-block;
}

.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 .gold { color: var(--c-gold-lt); }
.hero p.lead { margin-bottom: 2rem; max-width: 480px; }

.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat {}
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-gold-lt);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}

/* Prawa strona hero – karta z obrazem */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-end;
}
.hero__card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(45,122,79,.4), rgba(11,31,20,.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  gap: 8px;
  font-size: .82rem;
}
.hero__img-icon { font-size: 3rem; opacity: .4; }
.hero__badges {
  display: flex;
  gap: 8px;
  padding: 1rem 1.2rem;
  flex-wrap: wrap;
}
.badge {
  padding: 5px 14px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.1);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === PAGE HEADER (podstrony) ========================================== */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 70px;
  overflow: hidden;
  background: var(--c-dark);
  color: #fff;
  text-align: center;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--c-dark) 0%, var(--c-dark2) 50%, var(--c-green) 100%);
  opacity: .85;
  z-index: 0;
}
.page-header__inner { position: relative; z-index: 2; }
.page-header h1 { color: #fff; }
.page-header .lead { color: rgba(255,255,255,.72); margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { color: var(--c-gold-lt); }

/* === STRIP / CTA BAND ================================================= */
.strip {
  background: var(--c-green);
  color: #fff;
  text-align: center;
  padding: 60px 2rem;
}
.strip h2 { color: #fff; margin-bottom: 10px; }
.strip p { color: rgba(255,255,255,.78); margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* === DARK PHOTO SECTION (like agroprim) =============================== */
.photo-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 100px 0;
}
.photo-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax! */
  transition: transform .1s linear;
}
.photo-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.photo-section__inner {
  position: relative;
  z-index: 2;
}

/* Agroprim-inspired gradient overlays per section */
.photo-section.ps--green .photo-section__bg {
  background: linear-gradient(135deg, #0d3a1e 0%, #1a5c35 50%, #0f2918 100%);
}
.photo-section.ps--green .photo-section__overlay {
  background: linear-gradient(90deg, rgba(11,31,20,.92) 0%, rgba(11,31,20,.6) 100%);
}
.photo-section.ps--dark .photo-section__bg {
  background: linear-gradient(135deg, #0a1a0f 0%, #152b1c 60%, #1e5c38 100%);
}
.photo-section.ps--dark .photo-section__overlay {
  background: linear-gradient(90deg, rgba(5,12,8,.95) 0%, rgba(5,12,8,.7) 100%);
}
.photo-section.ps--mid .photo-section__bg {
  background: linear-gradient(135deg, #142a1b 0%, #0f2918 50%, #1a4a28 100%);
}
.photo-section.ps--mid .photo-section__overlay {
  background: rgba(10,25,14,.82);
}

/* === INTRO CARDS ====================================================== */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.intro-card {
  padding: 2.2rem 1.8rem;
  background: var(--c-white);
  border-radius: var(--r);
  border: 1px solid var(--c-gray);
  transition: all .35s var(--ease);
}
.intro-card:hover {
  border-color: var(--c-green-lt);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.intro-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.intro-card h3 { font-size: 1rem; font-weight: 600; color: var(--c-dark); margin-bottom: 6px; }
.intro-card p { font-size: .85rem; color: var(--c-muted); line-height: 1.75; }

/* === ABOUT SPLIT ====================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__text { order: 1; }
.split__img {
  position: relative;
}
.split__img-inner {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-pale), #e8f5ec);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-green-lt);
  gap: 8px;
  font-size: .82rem;
}
.img-ph .ph-icon { font-size: 3rem; opacity: .45; }
.img-ph .ph-txt { color: var(--c-muted); font-size: .75rem; }

/* Floating badge na zdjęciu */
.img-float {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: var(--c-red);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(181,35,41,.35);
}
.img-float strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; }
.img-float span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }

.split__text p {
  color: var(--c-muted);
  margin-bottom: 1rem;
  font-size: .97rem;
  line-height: 1.9;
}
.quote-block {
  border-left: 3px solid var(--c-green);
  padding: 1rem 1.4rem;
  background: var(--c-off);
  border-radius: 0 var(--r) var(--r) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--c-green);
  font-size: .95rem;
  line-height: 1.75;
}
.check-list { display: flex; flex-direction: column; gap: 8px; margin-top: 1.2rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--c-text);
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--c-pale);
  color: var(--c-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === STATS BAR ======================================================== */
.stats-bar {
  background: var(--c-dark);
  color: #fff;
  padding: 60px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-item__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__lbl {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}

/* === OFFER TABS (agroprim-style) ====================================== */
.offer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}
.offer-nav-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--c-off);
  border: 2px solid var(--c-gray);
  border-radius: var(--r);
  font-size: .92rem;
  font-weight: 600;
  color: var(--c-muted);
  transition: all .3s var(--ease);
  text-align: left;
}
.offer-nav-btn:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  background: var(--c-white);
}
.offer-nav-btn.active {
  border-color: var(--c-green);
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30,92,56,.3);
}
.offer-nav-btn__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.offer-nav-btn:not(.active) .offer-nav-btn__icon { background: var(--c-pale); }

.offer-panel { display: none; }
.offer-panel.active { display: block; }

/* Product grid (eco-corn style, interaktywne) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  border-radius: var(--r);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all .3s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-pale), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover {
  border-color: var(--c-green-lt);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.product-card:hover::before { opacity: 1; }
.product-card__emoji {
  font-size: 2.6rem;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 1;
}
.product-card h4 {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--c-dark);
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.product-card span {
  font-size: .75rem;
  color: var(--c-muted);
  position: relative;
  z-index: 1;
}

/* Custom mix banner */
.mix-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--c-dark), var(--c-dark2));
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}
.mix-banner h4 { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.mix-banner p { font-size: .88rem; color: rgba(255,255,255,.65); }

/* === QUALITY ITEMS ==================================================== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.q-item {
  display: flex;
  gap: 16px;
  padding: 1.4rem;
  border-radius: var(--r);
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  transition: all .3s var(--ease);
}
.q-item:hover { border-color: var(--c-green-lt); box-shadow: var(--shadow); }
.q-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--c-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.q-item h4 { font-size: .92rem; font-weight: 600; color: var(--c-dark); margin-bottom: 3px; }
.q-item p { font-size: .82rem; color: var(--c-muted); line-height: 1.6; }

/* === CERTS ============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.cert-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--r);
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  transition: all .3s var(--ease);
}
.cert-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--c-green-lt); }
.cert-disc {
  width: 68px; height: 68px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff;
}
.cert-disc.halal  { background: linear-gradient(135deg, var(--c-green), var(--c-green-mid)); }
.cert-disc.kosher { background: linear-gradient(135deg, #1a3c6e, #4a8fe7); }
.cert-disc.brc    { background: linear-gradient(135deg, var(--c-red), #e85d5d); }
.cert-disc.axpo   { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-lt)); color: var(--c-dark); }
.cert-card h4 { font-size: .95rem; font-weight: 600; color: var(--c-dark); margin-bottom: 2px; }
.cert-card p  { font-size: .78rem; color: var(--c-muted); }

/* === SERVICES ========================================================= */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.srv-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  border-radius: var(--r);
  padding: 2rem 1rem;
  text-align: center;
  transition: all .3s var(--ease);
}
.srv-card:hover { border-color: var(--c-green-lt); box-shadow: var(--shadow); transform: translateY(-4px); }
.srv-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.srv-card:nth-child(1) .srv-icon { background: #eaf4ff; }
.srv-card:nth-child(2) .srv-icon { background: #fff3e0; }
.srv-card:nth-child(3) .srv-icon { background: #e8f5e9; }
.srv-card:nth-child(4) .srv-icon { background: #fce4ec; }
.srv-card:nth-child(5) .srv-icon { background: #f3e5f5; }
.srv-card h3 { font-size: .95rem; font-weight: 600; color: var(--c-dark); margin-bottom: 4px; }
.srv-card p  { font-size: .8rem; color: var(--c-muted); line-height: 1.6; }

/* === CONTACT ========================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.c-info h3 { font-size: 1.5rem; color: var(--c-dark); margin-bottom: 10px; }
.c-info > p { color: var(--c-muted); margin-bottom: 2rem; font-size: .95rem; line-height: 1.85; }

.c-item { display: flex; gap: 14px; margin-bottom: 1.2rem; align-items: flex-start; }
.c-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--c-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.c-item__lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); margin-bottom: 1px; }
.c-item__val { font-weight: 500; font-size: .92rem; color: var(--c-dark); }
.c-item__val a { color: var(--c-green); }
.c-item__val a:hover { text-decoration: underline; }

.form-box {
  background: var(--c-off);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  border: 1px solid var(--c-gray);
}
.form-box h4 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: .8rem; font-weight: 500; margin-bottom: 4px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-gray);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: .88rem;
  background: var(--c-white);
  transition: border-color .2s;
  outline: none;
  color: var(--c-text);
}
.fg input:focus, .fg textarea:focus { border-color: var(--c-green); }
.fg textarea { min-height: 100px; resize: vertical; }

/* Map */
.map-ph {
  width: 100%;
  height: 260px;
  background: var(--c-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--c-muted);
  font-size: .82rem;
}

/* === FOOTER =========================================================== */
.footer {
  background: var(--c-dark);
  color: #fff;
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__brand p {
  color: rgba(255,255,255,.42);
  font-size: .85rem;
  line-height: 1.75;
  max-width: 250px;
  margin-top: 10px;
}
.footer h5 {
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-green-lt);
  margin-bottom: 14px;
}
.footer__links li + li { margin-top: 8px; }
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color .2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,.3); }
.footer__bottom a:hover { color: rgba(255,255,255,.6); }

/* === AOS CUSTOM overrides ============================================= */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* === RESPONSIVE ======================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: 85vh; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__img { order: 0; }
  .split--reverse .split__text { order: 0; }
  .img-float { right: 10px; }
  .intro-cards { grid-template-columns: 1fr; gap: 1rem; }
  .offer-nav { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .quality-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .mix-banner { flex-direction: column; text-align: center; }
  .photo-section__bg { background-attachment: scroll; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 60px 0; }
  .section--lg { padding: 70px 0; }
  .hero { min-height: 90vh; }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__stat-num { font-size: 1.6rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
}
