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

:root {
  --green:       #00873d;
  --dark-green:  #103510;
  --olive:       #4a5c2a;
  --mint:        #b1fdd3;
  --light-green: #e6faef;
  --text:        #343434;
  --muted:       #676767;
  --white:       #ffffff;
  --font:        'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Android Emoji', Arial, sans-serif;
  --radius:      20px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 990;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  height: 60px; display: flex; align-items: center;
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { height: 34px; display: block; }
.nav__links { list-style: none; display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 600; color: var(--green);
  text-decoration: none; position: relative; padding-bottom: 2px;
}
.nav__links a.active { color: var(--dark-green); pointer-events: none; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__mobile {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,.1);
  padding: 24px 40px; z-index: 980;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.nav__mobile ul a { font-size: 16px; font-weight: 600; color: var(--green); text-decoration: none; }

/* ── INTRO BLOCK ── */
/* ── RATIONS SECTIONS DESIGN SYSTEM (Clean & Cardless, matching Homepage) ── */
.intro {
  background-image: linear-gradient(0deg, #ffffff 32%, #e6faef 100%);
  padding: 90px 20px 75px;
  position: relative;
  overflow: hidden;
}
.intro__inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start;
  position: relative; z-index: 1;
}
.intro__title {
  font-size: 52px; font-weight: 700; color: #343434; line-height: 1.1; margin-bottom: 20px;
}
.intro__title span { color: #00873d; }
.intro__sub {
  font-size: 20px; font-weight: 500; color: #676767; line-height: 1.5; margin-bottom: 32px;
}
.intro__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #e6faef; border: 1px solid #b1fdd3;
  color: #00873d; font-size: 14px; font-weight: 600;
  padding: 10px 20px; border-radius: 30px;
}
.intro__steps { display: flex; flex-direction: column; gap: 32px; }
.intro-step {
  display: flex; align-items: flex-start; gap: 20px; padding: 0; border-radius: 0;
  background: transparent;
}
.intro-step__num {
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 50%;
  background: #e6faef; color: #00873d; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.intro-step__title {
  font-size: 22px; font-weight: 700; color: #343434; margin-bottom: 8px; line-height: 1.25;
}
.intro-step__desc { font-size: 15px; font-weight: 500; color: #676767; line-height: 1.6; }

/* ── FEATURES & USE CASES (Matching t844 block from Homepage pixel-for-pixel) ── */
.feat-grid, .use-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 40px;
  max-width: 1200px; margin: 0 auto;
}
.feat-card, .use-card {
  background: transparent; padding: 0; border: none; text-align: center;
  border-radius: 0; box-shadow: none; display: flex; flex-direction: column; align-items: center;
}
.feat-icon, .use-icon {
  width: 60px; height: 60px; margin: 0 auto 25px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; background: transparent; border-radius: 0;
}
.feat-icon img, .use-icon img {
  width: 60px; height: 60px; object-fit: contain;
}
.feat-title, .use-title {
  font-size: 22px; font-weight: 700; color: #343434; margin-top: 0; margin-bottom: 15px;
  line-height: 1.25; text-align: center;
}
.feat-desc, .use-desc {
  font-size: 15px; font-weight: 500; color: #676767; line-height: 1.6;
  text-align: center; max-width: 320px; margin: 0 auto;
}

/* Assortment (Rations) */
.assort-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1200px; margin: 0 auto;
}
.assort-card {
  border-radius: 20px; border: none; overflow: hidden; background: #e6faef;
  padding: 32px 28px; box-shadow: none; display: flex; flex-direction: column;
}
.assort-head {
  padding: 0; display: flex; align-items: center; gap: 14px;
  font-size: 24px; font-weight: 700; color: #343434; margin-bottom: 16px;
}
.assort-emoji { font-size: 34px; }
.assort-badge {
  display: inline-block; background: #ffffff; color: #00873d; font-size: 14px;
  font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
  align-self: flex-start;
}
.assort-list { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.assort-list li { font-size: 15px; font-weight: 500; color: #676767; padding-left: 20px; position: relative; line-height: 1.5; }
.assort-list li::before {
  content: '•'; position: absolute; left: 0; top: 0; color: #00873d; font-size: 18px; font-weight: 700;
}

/* ── SECTION BASE ── */
.section { padding: 80px 40px; }
.section--light { background: var(--light-green); }
.section--stripe { background: linear-gradient(180deg, #fff 0%, var(--light-green) 100%); }
.section--dark { background: linear-gradient(135deg, var(--dark-green) 0%, #1b4d1b 100%); }
.container { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700; color: #343434; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -0.5px; text-align: center; margin-left: auto; margin-right: auto;
}
.section--dark .section-title { color: #fff; }
.section-desc {
  font-size: 18px; font-weight: 500; color: #676767; line-height: 1.5;
  max-width: 640px; text-align: center; margin-left: auto; margin-right: auto;
}
.section--dark .section-desc { color: rgba(255,255,255,.7); }
.head { margin-bottom: 60px; text-align: center; }

/* ── SCROLL ANIMATIONS ── */
.tech-card, .feat-card, .adv-card, .prod-card, .nat-card, .diff-item, .about-block, .use-card, .compare-banner__inner {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.tech-card.visible, .feat-card.visible, .adv-card.visible, .prod-card.visible, .nat-card.visible, .diff-item.visible, .about-block.visible, .use-card.visible, .compare-banner__inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for tech-grid */
.tech-card:nth-child(1) { transition-delay: 0.1s; }
.tech-card:nth-child(2) { transition-delay: 0.25s; }
.tech-card:nth-child(3) { transition-delay: 0.4s; }
.tech-card:nth-child(4) { transition-delay: 0.55s; }

/* Staggered animation delays for grids */
.adv-card:nth-child(1), .nat-card:nth-child(1), .prod-card:nth-child(1), .feat-card:nth-child(1) { transition-delay: 0.1s; }
.adv-card:nth-child(2), .nat-card:nth-child(2), .prod-card:nth-child(2), .feat-card:nth-child(2) { transition-delay: 0.2s; }
.adv-card:nth-child(3), .nat-card:nth-child(3), .prod-card:nth-child(3), .feat-card:nth-child(3) { transition-delay: 0.3s; }
.adv-card:nth-child(4), .nat-card:nth-child(4), .prod-card:nth-child(4), .feat-card:nth-child(4) { transition-delay: 0.4s; }
.adv-card:nth-child(5), .nat-card:nth-child(5), .prod-card:nth-child(5), .feat-card:nth-child(5) { transition-delay: 0.5s; }
.adv-card:nth-child(6), .nat-card:nth-child(6), .feat-card:nth-child(6) { transition-delay: 0.6s; }
.feat-card:nth-child(2) { transition-delay: .08s; }
.feat-card:nth-child(3) { transition-delay: .16s; }
.feat-card:nth-child(4) { transition-delay: .24s; }
.feat-card:nth-child(5) { transition-delay: .32s; }
.feat-card:nth-child(6) { transition-delay: .40s; }

/* ── FEATURE CARDS ── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feat-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0,135,61,.1);
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.feat-icon {
  width: 52px; height: 52px;
  background: var(--light-green); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feat-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feat-desc { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.65; }

/* ── STATS CARDS (Equal height, no text jump, 100% aligned) ── */
.section--stats {
  background: #e6faef;
  padding-top: 75px; padding-bottom: 75px;
}
.stat-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.stat-card {
  text-align: center; padding: 28px 12px;
  min-height: 165px; height: 100%;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 135, 61, 0.12);
  box-shadow: 0 6px 20px rgba(0, 135, 61, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: #00873d;
  box-shadow: 0 12px 30px rgba(0, 135, 61, 0.12);
}
.stat-val {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800; color: #00873d;
  line-height: 1.1; margin-bottom: 12px; text-align: center;
  white-space: nowrap;
}
.stat-lbl {
  font-size: 14px; font-weight: 600; color: #343434;
  line-height: 1.35; text-align: center;
}

/* ── SPECS TABLE ── */
.specs-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,135,61,.15);
}
.spec-row {
  display: grid; grid-template-columns: 2fr 3fr;
  border-bottom: 1px solid rgba(0,135,61,.1);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) .spec-key { background: #f3fbf6; }
.spec-row:nth-child(even) .spec-val { background: #f9fef9; }
.spec-key {
  padding: 16px 28px; font-size: 14px; font-weight: 600;
  color: var(--muted); background: var(--light-green);
  border-right: 1px solid rgba(0,135,61,.1);
}
.spec-val {
  padding: 16px 28px; font-size: 15px; font-weight: 700;
  color: var(--text); background: #fff;
}
.spec-val em { font-style: normal; color: var(--green); }

/* ── USE CASES ── */
.use-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.use-card {
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 32px 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.use-card.visible { opacity: 1; transform: translateY(0); }
.use-card:nth-child(2) { transition-delay: .1s; }
.use-card:nth-child(3) { transition-delay: .2s; }
.use-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.use-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.use-desc { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ── ASSORTMENT TABLE ── */
.assort-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.assort-card {
  border-radius: var(--radius); border: 1px solid rgba(0,135,61,.12);
  overflow: hidden; background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.assort-head {
  padding: 24px; display: flex; align-items: center; gap: 14px;
  font-size: 18px; font-weight: 700;
}
.assort-head--s { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); }
.assort-head--m { background: linear-gradient(135deg,#fff3e0,#ffe0b2); }
.assort-head--d { background: linear-gradient(135deg,#fce4ec,#f8bbd0); }
.assort-emoji { font-size: 34px; }
.assort-list { padding: 20px 24px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.assort-list li { font-size: 14px; font-weight: 500; color: var(--muted); padding-left: 18px; position: relative; }
.assort-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
}

/* ── CONTACT BAND (Order section, matching original t581 block pixel-for-pixel) ── */
.contact-band {
  position: relative; overflow: hidden;
  height: 560px; display: flex; align-items: center; justify-content: center;
  text-align: center; box-sizing: border-box;
}
.contact-band__bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/Banner_1.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 1;
}
.contact-band__filter {
  position: absolute; inset: 0;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.40), rgba(251,63,0,0.80));
  z-index: 2;
}
.contact-band__inner {
  position: relative; z-index: 3;
  max-width: 800px; padding: 0 20px;
}
.contact-band__title {
  font-size: 42px; font-weight: 700; color: #ffffff;
  margin-bottom: 20px; text-align: center; line-height: 1.2;
}
.contact-band__sub {
  font-size: 18px; font-weight: 500; color: #ffffff;
  max-width: 600px; margin: 0 auto 36px; text-align: center; line-height: 1.5;
}
.contact-band__btn-wrap {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.contact-band__arrow {
  width: 60px; height: 120px; fill: #ffffff;
  position: absolute; left: calc(50% - 190px); top: -40px;
  pointer-events: none;
}
.contact-band__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; font-size: 16px; font-weight: 500;
  color: #ffffff; background-color: transparent;
  border: 2px solid #ffffff; border-radius: 10px;
  cursor: pointer; text-decoration: none; transition: all 0.2s ease-in-out;
}
.contact-band__btn:hover {
  color: #ffffff; background-color: #f15926; border-color: #f15926;
}
.btn-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green);
  font-size: 14px; font-weight: 700; font-family: var(--font);
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  cursor: pointer; border: none;
}
.btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-size: 14px; font-weight: 700; font-family: var(--font);
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
}

/* ── MODAL ── */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(10, 30, 14, 0.72);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: 28px;
  padding: 48px 44px 40px;
  max-width: 520px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,60,20,0.28), 0 0 0 1px rgba(0,135,61,.1);
  position: relative;
  animation: modalIn .35s cubic-bezier(.34,1.56,.64,1) both;
  font-family: var(--font);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.88) translateY(28px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light-green); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--green);
}
.modal__icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--green) 0%, #1b7a3a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0,135,61,.3);
}
.modal__title {
  font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 6px;
}
.modal__sub {
  font-size: 14px; font-weight: 500; color: var(--muted); margin-bottom: 28px; line-height: 1.6;
}
.modal__form { display: flex; flex-direction: column; gap: 14px; }
.modal__field {
  position: relative;
}
.modal__field input, .modal__field textarea, .modal__field select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(0,135,61,.2);
  border-radius: 14px; font-family: var(--font);
  font-size: 14px; font-weight: 500; color: var(--text);
  background: #f9fef9; outline: none;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
}
.modal__field input:focus, .modal__field textarea:focus, .modal__field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,135,61,.12);
  background: #fff;
}
.modal__field textarea { resize: vertical; min-height: 90px; }
.modal__agree {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 4px;
}
.modal__agree input[type="checkbox"] {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 6px; border: 1.5px solid rgba(0,135,61,.4);
  background: #f9fef9; cursor: pointer;
  accent-color: var(--green); margin-top: 1px;
}
.modal__agree-text {
  font-size: 13px; font-weight: 500; color: var(--muted); line-height: 1.55;
  text-align: left;
}
.modal__agree-text a {
  color: var(--green); text-decoration: underline; text-underline-offset: 2px;
}
.modal__submit {
  margin-top: 6px;
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--green) 0%, #1b7a3a 100%);
  color: #fff; font-size: 15px; font-weight: 700; font-family: var(--font);
  border: none; border-radius: 14px; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,135,61,.35);
}
.modal__submit:active { transform: translateY(0); }
.modal__submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.modal__error {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  background: #fff5f5;
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #e53935;
  line-height: 1.5;
}
.modal__error.visible { display: block; }
.modal__success {
  display: none; text-align: center; padding: 20px 0 10px;
}
.modal__success-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.modal__success-title { font-size: 22px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.modal__success-text { font-size: 15px; font-weight: 500; color: var(--muted); line-height: 1.6; }

/* ── FOOTER & SUBFOOTER (Matching original t551 and t191 blocks pixel-for-pixel) ── */
.footer {
  background-image: linear-gradient(0deg, rgba(230,250,239,1) 0%, rgba(255,255,255,1) 83%);
  padding-top: 60px; padding-bottom: 0;
  text-align: center; color: #343434;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.footer__title {
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  color: #676767; margin-bottom: 16px; text-transform: uppercase;
}
.footer__contacts {
  font-size: 24px; font-weight: 700; color: #343434;
  margin-bottom: 24px; line-height: 1.4; text-align: center;
}
.footer__contacts a {
  color: #343434; text-decoration: none; transition: color 0.2s ease-in-out;
}
.footer__contacts a:hover {
  color: #00873d;
}
.footer__social-label {
  font-size: 15px; font-weight: 500; color: #676767;
  margin-bottom: 16px; text-align: center;
}
.footer__social-links {
  display: flex; gap: 16px; margin-bottom: 0; list-style: none; padding: 0;
}
.footer__social-item a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; transition: transform 0.2s ease-in-out;
}
.footer__social-item a:hover {
  transform: scale(1.15);
}

.subfooter {
  background-color: #e6faef;
  padding: 15px 20px; text-align: center;
}
.subfooter p {
  font-size: 13px; font-weight: 500; color: #676767; margin-bottom: 6px;
}
.subfooter__link {
  font-size: 14px; font-weight: 500; color: #333333;
  text-decoration: none; transition: color 0.2s ease-in-out;
}
.subfooter__link:hover {
  color: #f15926;
}

/* ── NAV (Matching original t228 block pixel-for-pixel) ── */
.nav {
  position: sticky; top: 0; z-index: 990;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
  height: 60px; display: flex; align-items: center;
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { width: 200px; height: auto; display: block; }
.nav__links { list-style: none; display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; font-weight: 600; color: #00873d;
  text-decoration: none; transition: color 0.2s ease-in-out;
}
.nav__links a:hover { color: #f15a26; }

/* ── HOME HERO COVER ── */
.hero-home {
  position: relative;
  height: 594px; min-height: 594px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #ffffff;
  padding: 0 20px; overflow: hidden;
}
.hero-home__carrier {
  position: absolute; inset: 0;
  background-image: url('../assets/images/Banner_3.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 1;
}
.hero-home__filter {
  position: absolute; inset: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  z-index: 2;
}
.hero-home__inner {
  position: relative; z-index: 3;
  max-width: 900px; margin: 0 auto;
}
.hero-home__title {
  font-size: 52px; font-weight: 700; color: #ffffff;
  line-height: 1.1; margin-bottom: 24px; text-align: center;
}
.hero-home__sub {
  font-size: 24px; font-weight: 500; color: #ffffff;
  line-height: 1.5; margin-bottom: 0; text-align: center;
}

/* ── RATIONS HERO COVER (Matching homepage Banner_3.jpg background & white text) ── */
.hero-rations {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 20px 60px; overflow: hidden;
}
.hero-rations__carrier {
  position: absolute; inset: 0;
  background-image: url('../assets/images/Banner_rations_hero.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 1;
}
.hero-rations__filter {
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 18, 12, 0.88) 0%, rgba(10, 18, 12, 0.65) 45%, rgba(10, 18, 12, 0.35) 100%);
  z-index: 2;
}
.hero-rations__inner {
  position: relative; z-index: 3;
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start;
}
.hero-rations__title {
  font-size: 52px; font-weight: 700; color: #ffffff; line-height: 1.1; margin-bottom: 20px;
}
.hero-rations__title span { color: #b1fdd3; }
.hero-rations__sub {
  font-size: 20px; font-weight: 500; color: #ffffff; line-height: 1.5; margin-bottom: 32px;
}
.hero-rations .intro-step__title {
  color: #ffffff; font-size: 22px; font-weight: 700; margin-bottom: 8px;
}
.hero-rations .intro-step__desc {
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; line-height: 1.6;
}
.hero-rations .intro-step__num {
  background: rgba(177,253,211,0.2); color: #b1fdd3; border: 1px solid rgba(177,253,211,0.5);
}

/* ── TECH GRID (Matching original t899 block) ── */
.tech-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px 60px;
  max-width: 1000px; margin: 0 auto;
}
.tech-card {
  position: relative; overflow: visible;
  padding: 0; background: transparent; border: none;
}
.tech-card__num {
  position: absolute; top: -45px; left: 0;
  font-size: 180px; font-weight: 800; color: rgba(220, 232, 224, 0.75);
  line-height: 1; z-index: 1; user-select: none; pointer-events: none;
  font-family: inherit;
}
.tech-card__title {
  position: relative; z-index: 2;
  padding-top: 60px; font-size: 22px; font-weight: 700; color: #343434;
  margin-bottom: 8px; line-height: 1.2;
}
.tech-card__desc {
  position: relative; z-index: 2;
  font-size: 15px; font-weight: 400; color: #676767; line-height: 1.6;
}

/* ── COMPARE BANNER (Matching original t476 block) ── */
.compare-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  overflow: hidden;
}
.compare-banner__carrier {
  position: absolute; inset: 0;
  background-image: url('../assets/images/banner_compare.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 1;
}
.compare-banner__filter {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 135, 61, 0.5));
  z-index: 2;
}
.compare-banner__inner {
  position: relative; z-index: 3;
  max-width: 820px; width: 100%;
  background: #ffffff;
  padding: 60px 48px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.compare-banner__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700; color: #343434; margin-bottom: 20px;
  line-height: 1.25; text-align: center;
}
.compare-banner__line {
  width: 50px; height: 2px; background: #676767; margin: 20px auto 28px;
}
.compare-banner__desc {
  font-size: 17px; font-weight: 500; color: #676767; line-height: 1.65;
  text-align: center; margin-bottom: 24px;
}
.compare-banner__desc:last-child {
  margin-bottom: 0;
}

/* ── DIFFERENCES SECTION (Matching original t1095 block pixel-for-pixel) ── */
.section--diff {
  background-image: linear-gradient(0deg, rgba(255,255,255,1) 32%, rgba(230,250,239,1) 100%);
  padding-top: 90px; padding-bottom: 75px;
}
.section--diff .head {
  margin-bottom: 90px;
}
.section--diff .section-title {
  font-size: 32px; font-weight: 700; color: #343434;
  text-align: center; margin-left: auto; margin-right: auto;
}
.diff-list {
  display: flex; flex-direction: column; gap: 65px;
  max-width: 800px; margin: 0 auto;
}
.diff-item {
  display: flex; align-items: flex-start; gap: 0;
  background: transparent; padding: 0; border: none;
  border-radius: 0; box-shadow: none;
}
.diff-item__icon {
  flex-shrink: 0; width: 65px; height: 65px;
  display: flex; align-items: flex-start; justify-content: center;
}
.diff-item__icon img {
  width: 65px; height: 65px; object-fit: contain;
}
.diff-item__content {
  padding-left: 30px;
}
.diff-item__title {
  font-size: 30px; font-weight: 700; color: #343434; margin-bottom: 0;
  line-height: 1.2;
}
.diff-item__desc {
  font-size: 15px; font-weight: 500; color: #646464; line-height: 1.55;
  padding-top: 14px;
}
.diff-item:nth-child(1) { transition-delay: 0.1s; }
.diff-item:nth-child(2) { transition-delay: 0.25s; }
.diff-item:nth-child(3) { transition-delay: 0.4s; }
.diff-item:nth-child(4) { transition-delay: 0.55s; }

@media (max-width: 960px) {
  .section--diff .head { margin-bottom: 45px; }
}
@media (max-width: 768px) {
  .section--diff { padding-top: 60px; padding-bottom: 50px; }
  .diff-list { gap: 40px; }
  .diff-item__icon { width: 50px; height: 50px; }
  .diff-item__icon img { width: 50px; height: 50px; }
  .diff-item__content { padding-left: 20px; }
  .diff-item__title { font-size: 22px; }
}

/* ── ABOUT BLOCK (Matching screenshot & original t814 block pixel-for-pixel) ── */
.section--about {
  padding-top: 100px; padding-bottom: 100px;
  background: #ffffff;
}
.about-block {
  display: grid; grid-template-columns: 5fr 7fr; gap: 0; align-items: flex-start;
  max-width: 1140px; margin: 0 auto; position: relative;
}
.about-block__info {
  background: #e6faef; padding: 50px 60px 50px 48px; border-radius: 20px;
  border: none; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2; width: 112%; margin-right: -12%;
  margin-top: 50px;
  box-sizing: border-box; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.about-block__title {
  font-size: 32px; font-weight: 700; color: #343434; margin-bottom: 12px;
  line-height: 1.2;
}
.about-block__line {
  width: 44px; height: 3px; background: #f15926; opacity: 0.6; margin-bottom: 24px;
}
.about-block__desc {
  font-size: 15px; font-weight: 400; color: #676767; line-height: 1.65; margin-bottom: 36px;
}
.about-block__btn {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start;
  padding: 10px 24px; font-size: 14px; font-weight: 500;
  color: #00873d; background-color: transparent;
  border: 1.5px solid #00873d; border-radius: 10px;
  text-decoration: none; transition: all 0.2s ease-in-out;
}
.about-block__btn:hover {
  color: #ffffff; background-color: #f15926; border-color: #f15926;
}
.about-block__image {
  background-image: url('../assets/images/about_company.jpg');
  background-size: cover; background-position: center; border-radius: 20px;
  min-height: 500px; width: 100%; position: relative; z-index: 1;
}

/* ── ADVANTAGES SECTION (Matching original t502 block pixel-for-pixel) ── */
.section--adv {
  padding-top: 60px; padding-bottom: 60px;
  background: #ffffff;
}
.section--adv .head {
  margin-bottom: 90px; text-align: center;
}
.section--adv .section-title {
  font-size: 32px; font-weight: 700; color: #343434; margin-bottom: 0; text-align: center;
}
.adv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 90px 40px;
  max-width: 1200px; margin: 0 auto;
}
.adv-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: transparent; padding: 0; border: none;
  border-radius: 0; box-shadow: none;
}
.adv-card__circle {
  width: 60px; height: 60px; border-radius: 50%;
  background-color: #e6faef; color: #00873d;
  font-size: 20px; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.adv-card__title {
  font-size: 24px; font-weight: 700; color: #343434;
  margin-top: 0; margin-bottom: 13px; line-height: 1.25;
}
.adv-card__desc {
  font-size: 15px; font-weight: 500; color: #676767; line-height: 1.6;
}

/* ── PRODUCTS SECTION (Matching original t939 block pixel-for-pixel) ── */
.section--prod {
  padding-top: 60px; padding-bottom: 60px;
  background: #ffffff;
}
.section--prod .head {
  margin-bottom: 0; text-align: center;
}
.section--prod .section-title {
  font-size: 32px; font-weight: 700; color: #343434;
  margin-bottom: 0; text-align: center;
}
.section--prod .section-desc {
  font-size: 18px; font-weight: 500; color: #676767; line-height: 1.5;
  max-width: 560px; text-align: center; margin: 12px auto 0;
  padding-bottom: 40px;
}
.prod-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.prod-col-left {
  display: flex; height: 100%;
}
.prod-col-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.prod-card {
  position: relative; border-radius: 20px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 30px;
  border: none; cursor: pointer; background: #f8f8f8;
}
.prod-card--tall {
  width: 100%; height: 100%; min-height: 560px;
}
.prod-card--square {
  min-height: 270px; aspect-ratio: 1 / 1;
}
.prod-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform 0.45s ease-in-out;
  z-index: 0;
}
.prod-card:hover .prod-card__bg {
  transform: scale(1.06);
}
.prod-card__filter {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 25%, rgba(255,255,255,0.85) 70%, rgba(255,255,255,1) 100%);
  z-index: 1; pointer-events: none;
}
.prod-card__content {
  position: relative; z-index: 2; color: #343434; width: 100%;
}
.prod-card__title {
  font-size: 32px; font-weight: 700; color: #343434; line-height: 1.05;
  margin-bottom: 8px;
}
.prod-card__desc {
  font-size: 16px; font-weight: 500; color: #343434; line-height: 1.3;
}

/* ── NATURAL FEATURES (Matching original t844 block pixel-for-pixel) ── */
.section--nat {
  padding-top: 90px; padding-bottom: 90px;
  background-image: linear-gradient(0deg, rgba(230,250,239,1) 68%, rgba(255,255,255,1) 100%);
}
.nat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 40px;
  max-width: 1200px; margin: 0 auto;
}
.nat-card {
  background: transparent; padding: 0; border: none; text-align: center;
  border-radius: 0; box-shadow: none; display: flex; flex-direction: column; align-items: center;
}
.nat-card__icon {
  width: 60px; height: 60px; margin-bottom: 25px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.nat-card__icon img {
  width: 60px; height: 60px; object-fit: contain;
}
.nat-card__title {
  font-size: 20px; font-weight: 700; color: #343434; margin-top: 0; margin-bottom: 12px;
  line-height: 1.3; text-align: center;
}
.nat-card__desc {
  font-size: 15px; font-weight: 400; color: #676767; line-height: 1.6;
  text-align: center; max-width: 320px; margin: 0 auto;
}
.nat-card__list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nat-card__list li {
  font-size: 15px; font-weight: 500; color: #676767; padding-left: 18px;
  position: relative; line-height: 1.5; list-style: none !important;
}
.nat-card__list li::before {
  content: '•'; position: absolute; left: 0; top: -1px; color: #00873d;
  font-size: 18px; font-weight: 700; line-height: 1;
}

/* ── RESPONSIVE MEDIA QUERIES ── */
.nav__logo-img {
  width: 200px; height: auto; display: block; max-width: 100%;
}

@media (max-width: 1024px) {
  .hero-home { height: auto; min-height: 480px; padding: 70px 20px; }
  .hero-home__title { font-size: clamp(32px, 5vw, 44px); }
  .hero-rations { height: auto; min-height: 480px; padding: 70px 20px; }
  .hero-rations__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-rations__title { font-size: clamp(32px, 5vw, 44px); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
  .prod-grid { grid-template-columns: 1fr; gap: 20px; }
  .prod-col-left { height: auto; }
  .prod-card--tall { min-height: 320px; }
  .nat-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 30px; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 30px; }
  .about-block { grid-template-columns: 1fr; gap: 30px; }
  .about-block__info { width: 100%; margin-right: 0; margin-top: 0; padding: 40px 30px; }
  .about-block__image { min-height: 360px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-img { width: 160px; }
  .nav__inner { padding: 0 20px; }
  .nav__mobile { padding: 20px; }

  .section { padding: 56px 20px; }
  .section--diff { padding-top: 60px; padding-bottom: 50px; }
  .section--nat { padding-top: 60px; padding-bottom: 60px; }
  .section--adv { padding-top: 50px; padding-bottom: 50px; }

  .hero-home { height: auto; min-height: 420px; padding: 60px 20px; }
  .hero-home__title { font-size: clamp(26px, 6vw, 36px); margin-bottom: 16px; }
  .hero-home__sub { font-size: clamp(15px, 4vw, 18px); }

  .hero-rations { height: auto; min-height: 420px; padding: 60px 20px; }
  .hero-rations__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-rations__title { font-size: clamp(26px, 6vw, 36px); margin-bottom: 16px; }
  .hero-rations__sub { font-size: clamp(15px, 4vw, 18px); margin-bottom: 24px; }
  
  .tech-grid { grid-template-columns: 1fr; gap: 24px; }

  .diff-list { gap: 40px; }
  .diff-item__icon { width: 50px; height: 50px; }
  .diff-item__icon img { width: 50px; height: 50px; }
  .diff-item__content { padding-left: 20px; }
  .diff-item__title { font-size: 22px; }
  .diff-item__desc { font-size: 14px; padding-top: 8px; }

  .prod-col-right { grid-template-columns: 1fr; gap: 16px; }
  .prod-card--square { min-height: 240px; aspect-ratio: auto; }
  .prod-card__title { font-size: 24px; }

  .section--about { padding-top: 50px; padding-bottom: 50px; }
  .about-block__info { padding: 28px 20px; }
  .about-block__title { font-size: 28px; }
  .about-block__desc { font-size: 15px; margin-bottom: 24px; }
  .about-block__image { min-height: 260px; }

  .adv-grid { grid-template-columns: 1fr; gap: 32px; }
  .adv-card__circle { width: 48px; height: 48px; font-size: 18px; }
  .adv-card__title { font-size: 20px; }

  .nat-grid { grid-template-columns: 1fr; gap: 36px; }

  .compare-banner { padding: 60px 16px; min-height: 420px; }
  .compare-banner__inner { padding: 36px 20px; }
  .compare-banner__title { font-size: 24px; }
  .compare-banner__desc { font-size: 15px; }

  .contact-band { height: auto; min-height: 380px; padding: 56px 20px; }
  .contact-band__title { font-size: clamp(24px, 6vw, 32px); margin-bottom: 16px; }
  .contact-band__sub { font-size: 15px; margin-bottom: 24px; }
  .contact-band__arrow { display: none; }
  .contact-band__btn { padding: 14px 28px; font-size: 15px; width: 100%; max-width: 300px; }

  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stat-val { font-size: 36px; }
  .stat-lbl { font-size: 14px; }

  .btn-w, .btn-o { width: 100%; max-width: 320px; justify-content: center; }
  .modal { padding: 32px 20px 24px; border-radius: 20px; }
  .modal__title { font-size: 20px; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .head { margin-bottom: 32px; }
  .section-title { font-size: 26px; }
  .modal { padding: 24px 16px 20px; border-radius: 16px; }
  .modal__icon { width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
  .modal__title { font-size: 18px; }
  .footer__contacts { font-size: 20px; }
  .nat-grid { grid-template-columns: 1fr; gap: 28px; }
  .adv-grid { grid-template-columns: 1fr; gap: 28px; }
  .prod-col-right { grid-template-columns: 1fr; }
  .hero-home__title { font-size: clamp(24px, 7vw, 32px); }
  .compare-banner { padding: 40px 12px; min-height: unset; }
  .compare-banner__inner { padding: 28px 16px; }
  .contact-band__title { font-size: 22px; }
  .adv-card { gap: 14px; }
}
