/* =====================================================
   Metony Packaging Ltd — Global Stylesheet
   ===================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

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

:root {
  --orange:   #E8722A;
  --orange-d: #c95e1a;
  --black:    #111111;
  --dark:     #1a1a1a;
  --mid:      #444444;
  --light:    #f4f4f2;
  --border:   #e0e0e0;
  --white:    #ffffff;

  --ff-body:    'Barlow', sans-serif;
  --ff-heading: 'Barlow Condensed', sans-serif;

  --container: 1200px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 16px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-d); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #333; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Divider accent */
.accent-bar {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--ff-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--mid);
  position: relative;
  transition: color 0.2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--black);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta { font-size: 14px; padding: 10px 22px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

/* =====================================================
   PAGE TOP OFFSET
   ===================================================== */
main { padding-top: var(--nav-h); }

/* =====================================================
   HERO (index)
   ===================================================== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--light);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  background: var(--white);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { padding-block: 80px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero__tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__body {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrap {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e4 0%, #d0cfc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-placeholder {
  text-align: center;
  color: #999;
}

.hero__img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
  margin: 0 auto 12px;
}

.hero__img-placeholder p {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Stats strip */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  display: flex;
  divide: 1px solid #333;
}

.hero__stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid #2a2a2a;
  text-align: center;
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero__stat-lbl {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* =====================================================
   WHY METONY (4-grid)
   ===================================================== */
.why {
  padding: 100px 0;
  background: var(--white);
}

.why__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why__card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.why__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.3s;
}

.why__card:hover { background: var(--light); }
.why__card:hover::after { width: 100%; }

.why__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--orange);
}

.why__card-num {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #ccc;
  margin-bottom: 16px;
}

.why__card-title {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 14px;
}

.why__card-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* =====================================================
   PRODUCTS (3-grid cards)
   ===================================================== */
.products {
  padding: 100px 0;
  background: var(--light);
}

.products__head {
  text-align: center;
  margin-bottom: 56px;
}

.products__head .accent-bar { margin-inline: auto; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-card__img {
  height: 240px;
  background: linear-gradient(135deg, #e8e8e4 0%, #d0cfc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__img-placeholder {
  text-align: center;
}

.product-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
  margin: 0 auto 8px;
}

.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-card__body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.product-card__title {
  font-family: var(--ff-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
}

.product-card__desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.product-card__tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--light);
  color: var(--mid);
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}

/* =====================================================
   ABOUT BANNER (half-half)
   ===================================================== */
.about-banner {
  padding: 100px 0;
  background: var(--white);
}

.about-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-banner__content { }

.about-banner__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-banner__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--mid);
}

.about-banner__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

.about-banner__cta { margin-top: 40px; }

.about-banner__visual {
  height: 480px;
  background: linear-gradient(135deg, #e4e2dc 0%, #cac8c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}

.about-banner__visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
}

.about-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* =====================================================
   CONTACT SECTION (dark bg)
   ===================================================== */
.contact-section {
  background: var(--black);
  padding: 100px 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-section__info { }

.contact-section__title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-section__body {
  font-size: 15px;
  color: #999;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 400px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-detail__icon svg { width: 18px; height: 18px; }

.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.contact-detail__val {
  font-size: 15px;
  color: var(--white);
}

/* Form */
.contact-form { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2d2d2d;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option { background: #1a1a1a; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid #2a2a2a;
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer__brand-logo span { color: #E8722A; }

.footer__brand-body {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-links a {
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.footer__col-links a:hover { color: var(--orange); }

.footer__col-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.footer__divider {
  height: 1px;
  background: #2a2a2a;
  margin-bottom: 28px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}

.footer__bottom a { color: #555; transition: color 0.2s; }
.footer__bottom a:hover { color: var(--orange); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}

.page-hero__label {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero__body {
  font-size: 17px;
  color: #888;
  max-width: 560px;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin-bottom: 32px;
}

.breadcrumb a { color: #666; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* =====================================================
   PRODUCTS LIST (inner pages)
   ===================================================== */
.products-list {
  padding: 80px 0;
  background: var(--white);
}

.products-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-right: 4px;
}

.filter-btn {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-intro {
  padding: 100px 0;
  background: var(--white);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  padding: 100px 0;
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-top: 3px solid var(--orange);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin-bottom: 20px;
}

.value-card__title {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.value-card__body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
}

/* Team (optional) */
.team-strip {
  padding: 100px 0;
  background: var(--white);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page {
  padding: 80px 0;
  background: var(--light);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--black);
  padding: 48px 40px;
}

.contact-info-card__title {
  font-family: var(--ff-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 56px 48px;
}

.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  background: var(--light);
  border-color: var(--border);
  color: var(--black);
}

.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder { color: #aaa; }

.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group select:focus,
.contact-form-wrap .form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.contact-form-wrap .form-group select {
  background-color: var(--light);
  color: var(--black);
}

.contact-form-wrap .form-group label { color: var(--mid); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band__title {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
}

.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--orange); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .container { padding-inline: 24px; }

  .hero__inner { gap: 40px; }
  .hero__title { font-size: 48px; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__head { grid-template-columns: 1fr; gap: 16px; }

  .products__grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .contact-section__info {
    padding-bottom: 0;
  }

  :root { --nav-h: 60px; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Mobile menu open */
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav--open .nav__links a { font-size: 16px; }

  .nav--open .nav__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .hero { min-height: auto; }
  .hero::before { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__content { padding-block: 60px 40px; }
  .hero__visual { height: 280px; }

  .hero__stats { position: static; }
  .hero__stat { padding: 16px 12px; }
  .hero__stat-num { font-size: 22px; }

  .why { padding: 60px 0; }
  .why__grid { grid-template-columns: 1fr; }

  .products { padding: 60px 0; }
  .products__grid { grid-template-columns: 1fr; }

  .about-banner { padding: 60px 0; }
  .about-banner__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-banner__visual { height: 280px; }

  .contact-section { padding: 60px 0; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero { padding: 60px 0; }
  .page-hero__title { font-size: 40px; }

  .products-list__grid { grid-template-columns: 1fr; }

  .about-intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }

  .contact-page__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 32px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .cta-band__inner { flex-direction: column; text-align: center; }

  .about-intro { padding: 60px 0; }
  .about-values { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .hero__title { font-size: 36px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
