:root {
  --blue: #064eac;
  --red: #df2431;
  --ink: #111;
  --muted: #666;
  --header: 100px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; padding-top: var(--header); overflow-x: hidden; color: var(--ink); background: #fff; font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 2147483000 !important;
  width: 100%;
  height: var(--header);
  padding: 12px 2.8vw;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.98);
  transform: none !important;
  isolation: isolate;
}

.brand img { display: block; width: 220px; height: 64px; object-fit: contain; }
.main-nav { display: flex; justify-content: center; gap: clamp(30px, 3.2vw, 58px); }
.main-nav a { position: relative; padding: 12px 0; font-size: clamp(18px, 1.55vw, 25px); text-transform: uppercase; }
.main-nav a.active { font-weight: 800; }
.main-nav a::after { content: ""; position: absolute; right: 100%; bottom: 4px; left: 0; height: 2px; background: var(--red); transition: right .18s; }
.main-nav a:hover::after { right: 0; }
.nav-products { position: relative; display: flex; align-items: center; }
.nav-products::after { content: ""; position: absolute; top: 100%; left: -18px; right: -18px; height: 18px; }
.submenu-toggle { width: 24px; height: 32px; padding: 0; display: grid; place-items: center; border: 0; color: #353b45; background: transparent; font-size: 18px; cursor: pointer; transition: transform .18s; }
.nav-products.submenu-open .submenu-toggle { transform: rotate(180deg); }
.products-submenu { position: absolute; z-index: 2147483001; top: calc(100% + 5px); left: 50%; width: 245px; padding: 10px; display: grid; gap: 3px; transform: translate(-50%, 6px); color: #18202c; background: #fff; border-top: 3px solid var(--red); border-radius: 0 0 11px 11px; box-shadow: 0 18px 42px rgba(15,35,65,.17); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s, visibility .18s, transform .18s; }
.products-submenu a { padding: 12px 13px; border-radius: 7px; font-size: 14px; text-transform: none; }
.products-submenu a::after { display: none; }
.products-submenu a:hover { color: var(--blue); background: #f1f5fb; }
.nav-products:hover .products-submenu, .nav-products:focus-within .products-submenu, .nav-products.submenu-open .products-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }

.header-tools, .languages, .search { display: flex; align-items: center; }
.header-tools { gap: 28px; }
.search { width: 148px; height: 31px; padding-left: 12px; border: 1.5px solid #111; border-radius: 20px; }
.search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 13px; }
.search button { width: 34px; height: 28px; padding: 0; border: 0; background: transparent; font-size: 25px; cursor: pointer; }
.languages { gap: 9px; }
.languages button { position: relative; width: 50px; height: 38px; padding: 4px; display: grid; place-items: center; border: 2px solid transparent; border-radius: 7px; background: transparent; line-height: 1; cursor: pointer; transition: transform .18s, border-color .18s, opacity .18s, background .18s; }
.languages button img { display: block; width: 40px; height: 26px; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 4px rgba(0,0,0,.22); }
.languages button:hover { transform: translateY(-2px); background: #f2f5fa; }
.languages button:not(.active) { opacity: .62; filter: saturate(.82); }
.languages button.active { border-color: var(--blue); background: #f3f7fd; opacity: 1; filter: none; box-shadow: 0 4px 12px rgba(6,78,172,.13); }
.languages button.active::after { content: ""; position: absolute; right: 6px; bottom: -5px; left: 6px; height: 3px; background: var(--red); border-radius: 3px; }
.menu-toggle { display: none; }

.hero-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  margin: 0;
  border-bottom: 7px solid var(--blue);
}
.hero {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100vh - var(--header)));
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 55px 25px;
  background: url("assets/warehouse-hero-professional.jpg") center / cover no-repeat;
  box-shadow: none;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 13, 20, .48), rgba(7, 13, 20, .48)),
    linear-gradient(90deg, rgba(2, 18, 42, .2), transparent 36%, transparent 64%, rgba(2, 18, 42, .2));
}
.hero-content {
  width: min(680px, 92vw);
  min-height: 72%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.6));
}
.hero-logo { width: min(350px, 78%); height: auto; margin: 0 0 22px; transform: translateX(-15px); filter: brightness(1.22) saturate(1.1) drop-shadow(0 3px 5px rgba(0,0,0,.45)); }
.hero h1 { margin: 0 0 42px; color: #fff; font-size: clamp(27px, 2.9vw, 41px); line-height: 1.24; text-transform: uppercase; text-shadow: 0 3px 8px rgba(0,0,0,.85); }
.hero-cta { min-height: 56px; padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; color: #fff; background: var(--red); border-radius: 8px; font-size: 16px; font-weight: 800; box-shadow: 0 11px 28px rgba(223,36,49,.26); transition: transform .18s, background .18s; }
.hero-cta:hover { transform: translateY(-3px); background: #c91d29; }
.hero-cta span { font-size: 22px; }

.blue-band { height: 69px; background: var(--blue); }
.split-section {
  max-width: 1212px;
  margin: 0 auto;
  padding: 86px 0 98px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  gap: 92px;
  align-items: center;
}
.copy h1, .copy h2 { margin: 0 0 34px; font-size: 26px; font-weight: 500; text-transform: uppercase; }
.intro .copy { position: relative; padding-left: 27px; }
.intro .copy::before { content: ""; position: absolute; top: 1px; bottom: 0; left: 0; width: 4px; border-radius: 4px; background: linear-gradient(var(--red) 0 29%, #e6e9ef 29% 100%); }
.intro-kicker { margin: 0 0 13px !important; color: var(--red); font-size: 13px !important; font-weight: 800; letter-spacing: .16em; text-align: left !important; text-transform: uppercase; }
.intro .copy h2 { max-width: 670px; margin-bottom: 27px; color: var(--blue); font-size: clamp(30px, 3.25vw, 46px); line-height: 1.08; font-weight: 800; }
.copy p { margin: 0 0 21px; color: #4f5967; font-size: 18px; line-height: 1.58; text-align: left; }
.button { display: inline-flex; min-height: 54px; padding: 0 18px; align-items: center; justify-content: center; color: #fff; background: var(--red); border-radius: 11px; font-weight: 700; transition: transform .18s, background .18s; }
.button:hover { transform: translateY(-2px); background: #c91d29; }
.intro-actions { margin-top: 33px; display: flex; align-items: center; gap: 28px; }
.text-link { color: var(--blue); font-size: 15px; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .18s; }
.text-link:hover span { transform: translateX(5px); }
.intro-visual { position: relative; padding: 18px 18px 26px 0; }
.image-accent { position: absolute; top: 0; right: 0; width: 72%; height: 74%; background: #e9f0fb; border-radius: 20px; }
.intro-visual .feature-image { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.04; margin-top: 0; object-fit: cover; border-radius: 17px; box-shadow: 0 22px 55px rgba(21, 42, 75, .16); }
.feature-image { width: 100%; aspect-ratio: 1.04; margin-top: 0; object-fit: cover; }
.quality-badge { position: absolute; z-index: 2; right: -20px; bottom: 0; min-width: 245px; padding: 16px 19px; display: grid; grid-template-columns: 45px 1fr; gap: 13px; align-items: center; background: #fff; border-radius: 12px; box-shadow: 0 14px 40px rgba(15, 35, 65, .17); }
.quality-icon { width: 43px; height: 43px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 20px; font-weight: 800; }
.quality-badge strong, .quality-badge small { display: block; }
.quality-badge strong { color: var(--blue); font-size: 16px; }
.quality-badge small { margin-top: 3px; color: #7c8490; font-size: 11px; }
.company-section { padding-top: 68px; }
.company-section .copy p { font-size: 17px; line-height: 1.3; }
.factory { aspect-ratio: 1; }

.company-page { background: #fff; }
.company-hero { position: relative; overflow: hidden; padding: 76px max(30px, calc((100vw - 1212px) / 2)); color: #fff; background: var(--blue); }
.company-hero::after { content: ""; position: absolute; width: 480px; height: 480px; top: -285px; right: -90px; border: 80px solid rgba(255,255,255,.06); border-radius: 50%; }
.company-hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.company-hero-inner > div { max-width: 790px; }
.company-eyebrow { margin: 0 0 14px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.company-hero h1 { margin: 0 0 18px; font-size: clamp(43px, 6vw, 76px); line-height: .95; text-transform: uppercase; }
.company-hero-inner > div > p:last-child { max-width: 720px; margin: 0; font-size: 19px; line-height: 1.55; }
.company-hero-mark { color: rgba(255,255,255,.1); font-size: clamp(80px, 13vw, 165px); line-height: .75; font-weight: 900; letter-spacing: -.08em; }

.company-story { max-width: 1212px; margin: 0 auto; padding: 110px 0 115px; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(380px, .84fr); gap: 92px; align-items: center; }
.company-copy { padding-left: 27px; border-left: 4px solid var(--red); }
.company-copy .intro-kicker { margin-bottom: 28px !important; font-size: 17px !important; }
.company-copy h2 { margin: 0 0 30px; color: var(--blue); font-size: clamp(32px, 3.6vw, 49px); line-height: 1.08; text-transform: uppercase; }
.company-copy > p:not(.intro-kicker) { margin: 0 0 20px; color: #505a68; font-size: 17px; line-height: 1.6; }
.company-visual { position: relative; padding: 18px 0 35px 18px; }
.company-visual::before { content: ""; position: absolute; top: 0; left: 0; width: 72%; height: 72%; background: #e9f0fb; border-radius: 18px; }
.company-photo-frame { position: relative; z-index: 1; overflow: hidden; border-radius: 16px; box-shadow: 0 24px 58px rgba(21,42,75,.18); }
.company-photo-frame img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .45s; }
.company-photo-frame:hover img { transform: scale(1.025); }
.location-card { position: absolute; z-index: 2; right: -18px; bottom: 0; min-width: 265px; padding: 16px 20px; display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; background: #fff; border-radius: 11px; box-shadow: 0 15px 38px rgba(15,35,65,.17); }
.location-pin { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: 13px; }
.location-card strong, .location-card small { display: block; }
.location-card strong { color: var(--blue); font-size: 15px; }
.location-card small { margin-top: 4px; color: #7c8490; font-size: 11px; }

.company-values { padding: 0 max(30px, calc((100vw - 1212px) / 2)) 110px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.company-values article { position: relative; min-height: 270px; padding: 30px; overflow: hidden; background: #f5f7fb; border-top: 4px solid transparent; border-radius: 12px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.company-values article:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 18px 45px rgba(15,42,82,.11); }
.company-values article > span { position: absolute; top: 21px; right: 24px; color: #dce2eb; font-size: 43px; font-weight: 900; }
.value-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 25px; }
.company-values h2 { margin: 35px 0 12px; color: var(--blue); font-size: 23px; text-transform: uppercase; }
.company-values p { margin: 0; color: #66707d; font-size: 15px; line-height: 1.55; }

.argos-branch { max-width: 1212px; margin: 0 auto 110px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; }
.argos-visual { position: relative; padding: 18px 18px 35px 0; }
.argos-visual::before { content: ""; position: absolute; top: 0; right: 0; width: 72%; height: 72%; background: #e9f0fb; border-radius: 18px; }
.argos-photo { position: relative; z-index: 1; overflow: hidden; border-radius: 16px; box-shadow: 0 24px 58px rgba(21,42,75,.18); }
.argos-photo img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .45s; }
.argos-photo:hover img { transform: scale(1.025); }
.argos-location { position: absolute; z-index: 2; right: -2px; bottom: 0; min-width: 275px; padding: 16px 20px; display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; background: #fff; border-radius: 11px; box-shadow: 0 15px 38px rgba(15,35,65,.17); }
.argos-location > span { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: 13px; }
.argos-location strong, .argos-location small { display: block; }
.argos-location strong { color: var(--blue); font-size: 14px; }
.argos-location small { margin-top: 4px; color: #7c8490; font-size: 11px; }
.argos-copy { padding-left: 24px; border-left: 4px solid var(--red); }
.argos-copy h2 { margin: 0 0 25px; color: var(--blue); font-size: 21px; line-height: 1.15; text-transform: uppercase; }
.argos-copy > p { margin: 0; color: #56606d; font-size: 18px; line-height: 1.7; }

.company-cta { padding: 70px max(30px, calc((100vw - 1212px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 55px; color: #fff; background: #102746; }
.company-cta p { margin: 0 0 9px; color: #8da8cf; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.company-cta h2 { max-width: 780px; margin: 0; font-size: clamp(28px, 3.4vw, 45px); line-height: 1.1; }

.production-section {
  padding: 84px max(30px, calc((100vw - 1212px) / 2)) 92px;
  color: #fff;
  background: var(--blue);
}
.production-heading { max-width: 720px; margin-bottom: 42px; }
.section-kicker { margin: 0 0 10px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; opacity: .7; }
.production-heading h2 { margin: 0 0 14px; font-size: clamp(31px, 3.4vw, 48px); line-height: 1.08; text-transform: uppercase; }
.production-heading > p:last-child { margin: 0; font-size: 18px; opacity: .82; }
.production-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 54px; align-items: center; }
.video-frame { overflow: hidden; background: transparent; border-radius: 16px; box-shadow: 0 24px 55px rgba(0,0,0,.24); }
.video-frame video { display: block; width: 100%; height: 100%; max-height: 610px; aspect-ratio: 16 / 9; object-fit: cover; background: transparent; }
.production-benefits { margin: 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.production-benefits li { min-height: 86px; padding: 18px 20px; display: grid; grid-template-columns: 45px 1fr; gap: 17px; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; }
.production-benefits .benefit-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--blue); background: #fff; border-radius: 50%; box-shadow: 0 7px 16px rgba(0,0,0,.15); }
.benefit-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.production-benefits strong { font-size: 17px; line-height: 1.35; }

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 100px max(30px, calc((100vw - 1212px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(530px, 1.15fr);
  gap: 88px;
  align-items: center;
  background: #f5f7fb;
}
.quote-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: -250px;
  left: -180px;
  border: 80px solid rgba(6, 78, 172, .055);
  border-radius: 50%;
}
.quote-intro, .quote-form { position: relative; z-index: 1; }
.quote-intro .section-kicker { color: var(--red); opacity: 1; }
.quote-intro h2 { max-width: 540px; margin: 0 0 22px; color: var(--blue); font-size: clamp(37px, 4.4vw, 61px); line-height: 1.02; text-transform: uppercase; }
.quote-intro > p:not(.section-kicker) { max-width: 520px; margin: 0; color: #586272; font-size: 18px; line-height: 1.65; }
.quote-points { margin-top: 34px; display: grid; gap: 13px; }
.quote-points p { margin: 0; display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 700; }
.quote-points span { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 14px; }

.quote-form { padding: 37px; background: #fff; border-top: 5px solid var(--red); border-radius: 18px; box-shadow: 0 24px 70px rgba(15, 42, 82, .14); }
.form-heading { margin-bottom: 27px; }
.form-heading > span { display: block; color: var(--blue); font-size: 27px; font-weight: 800; text-transform: uppercase; }
.form-heading p { margin: 6px 0 0; color: #7b8390; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { font-size: 13px; font-weight: 700; }
.full-field { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  border: 1px solid #dce1e8;
  border-radius: 9px;
  outline: 0;
  color: #18202c;
  background: #f9fafc;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.form-grid input, .form-grid select { height: 49px; padding: 0 14px; }
.form-grid textarea { min-height: 105px; padding: 13px 14px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(6, 78, 172, .1); }
.consent { margin: 20px 0; display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #687180; font-size: 12px; line-height: 1.45; }
.consent input { margin: 2px 0 0; accent-color: var(--blue); }
.quote-submit { width: 100%; min-height: 55px; padding: 0 21px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: var(--red); border: 0; border-radius: 9px; font-weight: 800; cursor: pointer; transition: background .18s, transform .18s; }
.quote-submit:hover { background: #c91d29; transform: translateY(-2px); }
.quote-submit span { font-size: 23px; }
.form-status { min-height: 18px; margin: 13px 0 0; color: var(--blue); font-size: 13px; font-weight: 700; text-align: center; }
.form-trap { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip-path: inset(50%); pointer-events: none; }

.google-review-section { padding: 80px max(30px, calc((100vw - 1212px) / 2)); background: #fff; }
.reviews-heading { max-width: 720px; margin-bottom: 22px; }
.reviews-heading h2 { margin: 0 0 15px; color: var(--blue); font-size: clamp(31px, 3.6vw, 50px); line-height: 1.06; }
.reviews-heading > p:not(.intro-kicker) { margin: 0; color: #5f6875; font-size: 18px; line-height: 1.58; }
.review-banner { position: relative; overflow: visible; min-height: 138px; padding: 27px 32px; display: grid; grid-template-columns: 150px minmax(0, 1fr) 190px; gap: 30px; align-items: center; background: linear-gradient(135deg, #f7f9fd 0%, #fff 62%, #edf4ff 100%); border: 1px solid #e7ecf4; border-left: 5px solid var(--blue); border-radius: 18px 42px 18px 42px; box-shadow: 0 20px 48px rgba(15,42,82,.08); }
.review-banner::after { content: ""; position: absolute; right: -110px; bottom: -140px; width: 260px; height: 260px; border: 48px solid rgba(6, 78, 172, .045); border-radius: 50%; }
.review-score, .review-quote, .review-action, .review-next { position: relative; z-index: 1; }
.review-score { padding-right: 25px; border-right: 1px solid #dce4ef; }
.review-score strong { display: block; color: var(--blue); font-size: 42px; line-height: 1; font-weight: 900; }
.review-score .review-stars { margin-top: 6px; font-size: 16px; letter-spacing: 1px; }
.review-score span { display: block; margin-top: 7px; color: #687384; font-size: 12px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.review-score .google-label { text-transform: none; font-size: 13px; font-weight: 700; letter-spacing: 0; }
.google-label em { color: #1f2937; font-style: normal; }
.google-label b { font-style: normal; font-weight: 800; letter-spacing: -.03em; }
.google-label i { font-style: normal; }
.google-label i:nth-child(1), .google-label i:nth-child(4) { color: #4285f4; }
.google-label i:nth-child(2), .google-label i:nth-child(6) { color: #ea4335; }
.google-label i:nth-child(3) { color: #fbbc05; }
.google-label i:nth-child(5) { color: #34a853; }
.review-stars { color: #f6b500; font-size: 21px; letter-spacing: 2px; text-shadow: 0 2px 7px rgba(246,181,0,.16); }
.review-quote { min-height: 72px; }
.review-quote p { display: none; margin: 10px 0 0; color: #333d4a; font-size: 17px; line-height: 1.55; }
.review-quote p.active { display: block; animation: reviewFade .22s ease; }
.review-action { display: flex; justify-content: flex-end; }
.review-action a { min-height: 48px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; gap: 4px; color: #fff; background: var(--blue); border-radius: 10px; font-size: 13px; font-weight: 800; white-space: nowrap; box-shadow: 0 13px 26px rgba(6,78,172,.22); transition: transform .18s, background .18s; }
.review-action a:hover { transform: translateY(-2px); background: #053f8a; }
.review-action a span { color: #fff; font-size: 15px; font-weight: 900; letter-spacing: .01em; }
.review-next { position: absolute; right: -18px; top: 50%; width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: #fff; border: 1px solid #e1e7f0; border-radius: 50%; font-size: 19px; font-weight: 900; cursor: pointer; box-shadow: 0 12px 26px rgba(15,42,82,.13); transform: translateY(-50%); transition: transform .18s, color .18s, border-color .18s; }
.review-next:hover { transform: translateY(-50%) translateX(2px); color: var(--red); border-color: #d5dfed; }
@keyframes reviewFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.products-page { min-height: calc(100vh - var(--header)); padding: 78px max(26px, calc((100vw - 1320px) / 2)) 92px; }
.products-heading { max-width: 830px; margin: 0 0 55px; }
.products-heading .eyebrow { margin: 0 0 13px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.products-heading h1 { margin: 0 0 18px; color: var(--blue); font-size: clamp(38px, 5vw, 64px); line-height: 1.02; text-transform: uppercase; }
.products-heading > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 18px; }
.cardboard-heading { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.cardboard-heading .eyebrow { margin-bottom: 18px; color: var(--blue); font-size: clamp(28px, 4.2vw, 48px); letter-spacing: .08em; }
.cardboard-heading > p:not(.eyebrow) { margin: 0 auto; max-width: 650px; }
.cardboard-heading .category-back { margin-top: 24px; }
.products-note { width: fit-content; margin-top: 24px; padding: 9px 13px; color: #66707d; background: #f2f5fa; border-radius: 20px; font-size: 12px; font-weight: 700; }
.products-note span { color: var(--red); font-size: 16px; }
.product-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.product-gallery article { position: relative; min-height: 245px; padding: 18px 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f7f8fa; border: 1px solid #ebedf1; border-radius: 14px; cursor: zoom-in; transition: transform .22s, box-shadow .22s, border-color .22s, background .22s; }
.product-gallery article:hover, .product-gallery article:focus-visible { transform: translateY(-6px); border-color: #d8e2f1; background: #fff; box-shadow: 0 18px 42px rgba(15,42,82,.11); outline: 0; }
.product-gallery article > span { position: absolute; top: 15px; left: 17px; color: #d9dee6; font-size: 27px; font-weight: 900; }
.product-gallery img { width: 100%; height: 190px; object-fit: contain; transition: transform .3s; }
.product-gallery article:hover img { transform: scale(1.07); }
.product-zoom-modal { position: fixed; inset: 0; z-index: 200; padding: 28px; display: grid; place-items: center; background: rgba(10, 18, 31, .72); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.product-zoom-modal.open { opacity: 1; visibility: visible; }
.product-zoom-dialog { position: relative; width: min(900px, 92vw); min-height: 380px; padding: 34px; display: grid; place-items: center; background: #fff; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.32); transform: translateY(12px) scale(.98); transition: transform .2s; }
.product-zoom-modal.open .product-zoom-dialog { transform: none; }
.product-zoom-dialog img { display: block; width: auto; max-width: min(760px, 82vw); max-height: 68vh; object-fit: contain; }
.product-zoom-close { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: #f4f7fb; border: 1px solid #dfe6f0; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer; transition: transform .18s, color .18s, background .18s; }
.product-zoom-close:hover { transform: rotate(90deg); color: var(--red); background: #fff; }
.products-cta { position: relative; overflow: hidden; margin: 62px 0 0; padding: 34px 42px; display: flex; align-items: center; justify-content: space-between; gap: 42px; color: #18202c; background: linear-gradient(135deg, #fff 0%, #f7faff 58%, #eef4ff 100%); border: 1px solid #e5ebf4; border-left: 5px solid var(--blue); border-radius: 16px 44px 16px 44px; box-shadow: 0 20px 48px rgba(15,42,82,.08); }
.products-cta::after { content: ""; position: absolute; right: -110px; bottom: -145px; width: 270px; height: 270px; border: 50px solid rgba(6,78,172,.045); border-radius: 50%; }
.products-cta > * { position: relative; z-index: 1; }
.products-cta p { margin: 0 0 8px; color: var(--blue); font-size: clamp(20px, 2vw, 30px); font-weight: 800; letter-spacing: 0; text-transform: none; }
.products-cta h2 { max-width: 720px; margin: 0; color: #5f6875; font-size: 16px; font-weight: 500; line-height: 1.6; }
.products-cta .button { min-width: 190px; white-space: nowrap; }
.no-results { padding: 35px; text-align: center; color: var(--muted); }
.category-back { display: inline-block; margin-top: 22px; color: var(--blue); font-size: 13px; font-weight: 800; }
.category-back:hover { color: var(--red); }
.categories-page { min-height: calc(100vh - var(--header)); padding: 70px max(26px, calc((100vw - 1320px) / 2)) 120px; background: #f5f5f5; }
.categories-heading { margin-bottom: 70px; text-align: center; }
.categories-heading h1 { margin: 0; color: var(--blue); font-size: clamp(40px, 5vw, 62px); line-height: 1.02; text-transform: none; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.category-card { overflow: hidden; padding: 0 0 25px; background: #fff; border-radius: 70px 70px 70px 0; box-shadow: none; text-align: center; transition: transform .22s, box-shadow .22s; }
.category-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(15,42,82,.13); }
.category-image { height: 260px; padding: 24px; display: grid; place-items: center; }
.category-image img { width: 100%; height: 100%; object-fit: contain; }
.cardboard-category-card .category-image img { width: 88%; height: 88%; }
.plastic-category-card .category-image { padding: 0 0 18px; place-items: center; }
.plastic-category-card .category-image img { width: 132%; height: 252px; max-width: none; object-position: center center; }
.category-card h2 { min-height: 58px; margin: 0; padding: 0 18px; display: grid; place-items: center; color: var(--blue); font-size: 23px; line-height: 1.18; text-transform: none; }
.products-banner { position: relative; overflow: hidden; margin-top: 135px; padding: 44px 54px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 46px; align-items: center; background: linear-gradient(135deg, #fff 0%, #f7faff 58%, #eef4ff 100%); border: 1px solid #e5ebf4; border-left: 5px solid var(--red); border-radius: 16px 44px 16px 44px; box-shadow: 0 20px 48px rgba(15,42,82,.08); }
.products-banner::after { content: ""; position: absolute; right: -115px; bottom: -145px; width: 270px; height: 270px; border: 50px solid rgba(6,78,172,.045); border-radius: 50%; }
.products-banner > * { position: relative; z-index: 1; }
.products-banner .intro-kicker { margin-bottom: 10px !important; }
.products-banner h2 { max-width: 850px; margin: 0 0 13px; color: var(--blue); font-size: clamp(29px, 3vw, 42px); line-height: 1.08; }
.products-banner p:not(.intro-kicker) { max-width: 900px; margin: 0; color: #5f6875; font-size: 17px; line-height: 1.65; }
.products-banner .button { min-width: 185px; gap: 10px; white-space: nowrap; }
.plastic-detail-images img { object-fit: contain; background: #f6f6f6; padding: 20px; }
.category-detail { max-width: 1212px; min-height: calc(100vh - var(--header)); margin: 0 auto; padding: 75px 0 100px; }
.category-detail > h1 { max-width: 800px; margin: 15px 0 18px; color: var(--blue); font-size: clamp(38px, 5vw, 62px); line-height: 1.02; text-transform: uppercase; }
.category-detail > p:not(.intro-kicker) { max-width: 700px; margin: 0; color: #626c79; font-size: 18px; line-height: 1.6; }
.focused-category { text-align: center; }
.focused-category .category-back { margin-bottom: 22px; }
.focused-category .intro-kicker { margin-right: auto !important; margin-left: auto !important; margin-bottom: 18px !important; color: var(--blue); font-size: clamp(25px, 3.8vw, 44px) !important; letter-spacing: .08em; text-align: center !important; }
.focused-category > p:not(.intro-kicker) { margin-right: auto; margin-left: auto; }
.category-detail-images { margin: 45px 0 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-detail-images img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 13px; box-shadow: 0 15px 35px rgba(15,42,82,.11); }
.category-detail-images img[data-zoom] { cursor: zoom-in; transition: transform .2s, box-shadow .2s; }
.category-detail-images img[data-zoom]:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(15,42,82,.16); }
.category-quote-button { margin-top: 18px; }
.materials-detail { max-width: 1212px; }
.materials-grid { width: 100%; margin: 62px 0 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 24px; align-items: stretch; }
.material-card { min-height: 286px; padding: 10px 9px 18px; display: grid; place-items: center; align-content: start; gap: 17px; background: #f7f8fa; border: 1px solid #ebedf1; border-radius: 14px; box-shadow: none; cursor: zoom-in; transition: transform .22s, box-shadow .22s, border-color .22s, background .22s; }
.material-card:hover { transform: translateY(-6px); border-color: #d8e2f1; background: #fff; box-shadow: 0 18px 42px rgba(15,42,82,.11); }
.material-image { width: 100%; height: 220px; padding: 12px; display: grid; place-items: center; background: #fff; border: 1px solid #edf1f7; border-radius: 13px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); }
.material-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.material-card h2 { margin: 0; color: #1d2633; font-size: 18px; line-height: 1.25; }

.contact-page { min-height: calc(100vh - var(--header) - 90px); }
.contact-intro { max-width: 1212px; margin: 0 auto; padding: 85px 0 50px; }
.contact-intro h1 { max-width: 850px; margin: 0 0 20px; color: var(--blue); font-size: clamp(39px, 5vw, 64px); line-height: 1.02; text-transform: uppercase; }
.contact-intro .intro-kicker { margin-bottom: 25px !important; font-size: 17px !important; }
.contact-intro > p:last-child { max-width: 760px; margin: 0; color: #626c79; font-size: 18px; line-height: 1.6; }
.contact-layout { max-width: 1212px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); gap: 50px; align-items: stretch; }
.contact-map-wrap { position: relative; padding: 17px 17px 35px 0; }
.contact-map-wrap::before { content: ""; position: absolute; top: 0; right: 0; width: 73%; height: 72%; background: #e9f0fb; border-radius: 18px; }
.map-link { position: relative; z-index: 1; overflow: hidden; display: block; border-radius: 16px; box-shadow: 0 24px 58px rgba(21,42,75,.18); }
.map-link img { display: block; width: 100%; aspect-ratio: 1.33; object-fit: cover; transition: transform .4s; }
.map-link:hover img { transform: scale(1.018); }
.map-link > span { position: absolute; right: 18px; bottom: 18px; padding: 11px 15px; color: white; background: rgba(6,78,172,.94); border-radius: 7px; font-size: 12px; font-weight: 800; transition: transform .18s; }
.map-link:hover > span { transform: translateY(-3px); }
.map-caption { position: absolute; z-index: 2; left: 24px; bottom: 0; min-width: 280px; padding: 16px 20px; display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; background: #fff; border-radius: 11px; box-shadow: 0 15px 38px rgba(15,35,65,.17); }
.map-caption-icon { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: 13px; }
.map-caption strong, .map-caption small { display: block; }
.map-caption strong { color: var(--blue); font-size: 14px; }
.map-caption small { margin-top: 4px; color: #7c8490; font-size: 11px; }
.contact-panel { display: flex; flex-direction: column; gap: 17px; }
.contact-card { min-height: 130px; padding: 23px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; background: #f5f7fb; border-left: 4px solid transparent; border-radius: 13px; transition: transform .18s, border-color .18s, box-shadow .18s; }
.contact-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 15px 35px rgba(15,42,82,.1); }
.contact-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; }
.contact-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h2 { margin: 0 0 9px; color: var(--blue); font-size: 16px; text-transform: uppercase; }
.contact-card a { display: block; margin: 4px 0; color: #424c59; font-size: 14px; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--red); }
.contact-hours, .contact-time { display: block; margin: 4px 0; color: #424c59; font-size: 14px; font-weight: 400; }
.contact-address { color: inherit; }
.contact-address p { margin: 4px 0; color: #424c59; font-size: 14px; line-height: 1.45; }
.contact-note { flex: 1; padding: 25px; color: #fff; background: #102746; border-radius: 13px; }
.contact-note > span { color: #8da8cf; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-note strong { display: block; margin: 13px 0 10px; font-size: 19px; }
.contact-note p { margin: 0; color: #c9d4e3; font-size: 13px; line-height: 1.55; }
.locations-section { margin-top: 95px; padding: 80px max(30px, calc((100vw - 1212px) / 2)) 100px; background: #f5f7fb; border-bottom: 18px solid #fff; }
.locations-heading { margin-bottom: 35px; }
.locations-heading .intro-kicker { margin-bottom: 0 !important; font-size: 17px !important; }
.locations-heading h2 { margin: 0; color: var(--blue); font-size: 37px; text-transform: uppercase; }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.location-box { position: relative; padding: 30px; overflow: hidden; background: #fff; border-top: 4px solid transparent; border-radius: 12px; transition: transform .18s, border-color .18s, box-shadow .18s; }
.location-box:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 18px 42px rgba(15,42,82,.1); }
.location-number { position: absolute; top: 20px; right: 25px; color: #e2e6ed; font-size: 40px; font-weight: 900; }
.location-box-icon { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 12px; }
.location-box > p { margin: 28px 0 7px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-box h3 { margin: 0 0 9px; color: var(--blue); font-size: 25px; }
.location-box address { margin-bottom: 24px; color: #697381; font-size: 15px; font-style: normal; }
.location-box > strong { color: var(--blue); font-size: 13px; }

footer { min-height: 90px; padding: 18px max(30px, calc((100vw - 1212px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 25px; color: var(--muted); border-top: 1px solid #eee; font-size: 14px; }
footer img { width: 145px; }

.site-header {
  transition: box-shadow .25s;
}
.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue) 0 72%, var(--red) 72% 100%);
  pointer-events: none;
  will-change: transform;
}
.back-to-top {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 49px;
  height: 49px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6,78,172,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.9);
  cursor: pointer;
  transition: opacity .22s, visibility .22s, transform .22s, background .18s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--red); transform: translateY(-3px); }
.back-to-top svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.scroll-reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity .54s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay),
    translate .54s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay),
    scale .54s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay);
  will-change: opacity, translate, scale;
}
.scroll-reveal.reveal-left { translate: -30px 0; }
.scroll-reveal.reveal-right { translate: 30px 0; }
.scroll-reveal.reveal-zoom { translate: 0 14px; scale: .98; }
.scroll-reveal.is-visible { opacity: 1; translate: 0 0; scale: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header, .scroll-reveal, .hero-cta, .button, .product-card,
  .company-values article, .location-box, .contact-card {
    transition: none !important;
    animation: none !important;
  }
  .scroll-reveal { opacity: 1; translate: none; scale: 1; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 185px 1fr auto; gap: 14px; }
  .brand img { width: 180px; }
  .header-tools { gap: 12px; }
  .search { display: none; }
  .languages button { font-size: 29px; }
  .split-section { margin: 0 28px; }
  .contact-intro, .contact-layout { margin-right: 28px; margin-left: 28px; }
  .split-section { gap: 48px; }
  .company-story { margin: 0 28px; gap: 50px; }
  .argos-branch { margin-right: 28px; margin-left: 28px; gap: 42px; }
  .quality-badge { right: -8px; }
  .production-layout { grid-template-columns: 1.15fr .85fr; gap: 30px; }
  .quote-section { grid-template-columns: .8fr 1.2fr; gap: 40px; }
  .product-gallery { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { display: block; }
}

@media (max-width: 790px) {
  :root { --header: 74px; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; padding: 7px 10px; }
  .brand img { width: 148px; height: 54px; }
  .header-tools { gap: 6px; }
  .languages { gap: 4px; }
  .languages button { width: 39px; height: 31px; padding: 2px; }
  .languages button img { width: 32px; height: 21px; }
  .menu-toggle { width: 38px; height: 42px; padding: 9px 6px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-toggle span { width: 100%; height: 2px; background: #111; transition: .18s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; padding: 14px 20px 20px; display: none; flex-direction: column; gap: 0; background: white; box-shadow: 0 12px 20px rgba(0,0,0,.08); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 8px; font-size: 17px; }
  .nav-products { display: grid; grid-template-columns: 1fr 42px; }
  .nav-products > a { grid-column: 1; }
  .submenu-toggle { grid-column: 2; grid-row: 1; width: 42px; height: 48px; }
  .products-submenu { position: static; grid-column: 1 / -1; width: auto; padding: 0 0 6px 18px; display: none; transform: none; border: 0; border-left: 2px solid var(--blue); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transition: none; }
  .nav-products:hover .products-submenu, .nav-products:focus-within .products-submenu { display: none; transform: none; }
  .nav-products.submenu-open .products-submenu { display: grid; transform: none; }
  .products-submenu a { padding: 10px 9px; color: #4e5865; font-size: 14px; }
  .languages button { font-size: 25px; }
  .hero-shell { width: 100%; margin: 0; }
  .hero { min-height: 630px; padding: 40px 18px; }
  .hero-content { min-height: 70%; padding: 20px; }
  .blue-band { height: 35px; }
  .split-section { margin: 0; padding: 52px 22px; grid-template-columns: 1fr; gap: 35px; }
  .company-hero { padding: 58px 22px; }
  .company-hero-mark { display: none; }
  .company-story { margin: 0; padding: 70px 22px 82px; grid-template-columns: 1fr; gap: 45px; }
  .company-copy { padding-left: 19px; }
  .company-visual { width: min(100%, 540px); margin: 0 auto; padding-right: 10px; }
  .company-values { padding: 0 22px 75px; grid-template-columns: 1fr; }
  .company-values article { min-height: 230px; }
  .argos-branch { margin: 0; padding: 0 22px 75px; grid-template-columns: 1fr; gap: 38px; }
  .argos-visual { width: min(100%, 560px); margin: 0 auto; }
  .company-cta { padding: 58px 22px; align-items: flex-start; flex-direction: column; gap: 30px; }
  .copy h1, .copy h2 { margin-bottom: 25px; font-size: 25px; }
  .copy p, .company-section .copy p { font-size: 17px; text-align: left; }
  .intro .copy { padding-left: 19px; }
  .intro .copy h2 { font-size: clamp(29px, 7vw, 39px); }
  .intro-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .intro-visual { width: min(100%, 540px); margin: 0 auto; padding-right: 12px; }
  .feature-image { max-width: 520px; margin: 0 auto; }
  .production-section { padding: 65px 22px; }
  .production-heading { margin-bottom: 30px; }
  .production-layout { grid-template-columns: 1fr; }
  .production-benefits { grid-template-columns: repeat(2, 1fr); }
  .quote-section { padding: 68px 22px; grid-template-columns: 1fr; gap: 42px; }
  .quote-intro { text-align: center; }
  .quote-intro h2, .quote-intro > p:not(.section-kicker) { margin-left: auto; margin-right: auto; }
  .quote-points { width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }
  .review-banner { grid-template-columns: 1fr; gap: 18px; }
  .review-score { padding-right: 0; padding-bottom: 18px; border-right: 0; border-bottom: 1px solid #dce4ef; }
  .review-action { justify-content: flex-start; }
  .review-next { right: 16px; top: auto; bottom: 20px; transform: none; }
  .review-next:hover { transform: translateX(2px); }
  .products-page { padding: 58px 20px 75px; }
  .categories-page { padding: 65px 22px 75px; }
  .category-card { display: block; }
  .products-banner { grid-template-columns: 1fr; gap: 26px; margin-top: 90px; padding: 36px 28px; }
  .products-banner .button { width: fit-content; }
  .category-detail { margin: 0; padding: 60px 22px 75px; }
  .category-detail-images { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .product-gallery { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .product-gallery article { min-height: 220px; }
  .product-gallery img { height: 165px; }
  .products-cta { margin: 50px 0 0; padding: 32px 24px; align-items: flex-start; flex-direction: column; gap: 24px; }
  .contact-intro { margin: 0; padding: 65px 22px 38px; }
  .contact-layout { margin: 0; padding: 0 22px; grid-template-columns: 1fr; gap: 38px; }
  .contact-map-wrap { width: min(100%, 720px); }
  .contact-panel { display: grid; grid-template-columns: repeat(2, 1fr); }
  .locations-section { margin-top: 70px; padding: 65px 22px 75px; }
  .scroll-reveal {
    translate: 0 18px;
    transition-duration: .42s;
  }
  .scroll-reveal.reveal-left,
  .scroll-reveal.reveal-right { translate: 0 18px; }
  .scroll-reveal.reveal-zoom { translate: 0 12px; scale: .99; }
}

@media (max-width: 430px) {
  .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
  .hero-shell { width: 100%; margin: 0; }
  .hero { min-height: 570px; padding: 30px 12px; background-position: 51% center; }
  .hero-content { width: 100%; min-height: 68%; padding: 18px 10px; }
  .hero-logo { width: min(260px, 78%); }
  .hero-logo { transform: translateX(-8px); }
  .hero h1 { margin-bottom: 34px; font-size: 24px; }
  .products-heading h1 { font-size: 27px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery article { min-height: 220px; }
  .product-gallery img { height: 165px; }
  .product-zoom-modal { padding: 16px; }
  .product-zoom-dialog { min-height: 280px; padding: 24px 16px; border-radius: 17px; }
  .product-zoom-dialog img { max-width: 86vw; max-height: 58vh; }
  .materials-grid { grid-template-columns: 1fr; }
  .products-cta .button { width: 100%; }
  .products-banner .button { width: 100%; }
  .production-benefits { grid-template-columns: 1fr; }
  .company-hero h1 { font-size: 40px; }
  .company-hero-inner > div > p:last-child { font-size: 16px; }
  .company-copy h2 { font-size: 30px; }
  .argos-copy { padding-left: 18px; }
  .argos-location { position: relative; right: auto; bottom: auto; width: calc(100% - 25px); min-width: 0; margin: -25px auto 0; }
  .location-card { position: relative; right: auto; bottom: auto; width: calc(100% - 25px); min-width: 0; margin: -25px auto 0; }
  .company-cta .button { width: 100%; }
  .contact-panel, .location-grid { grid-template-columns: 1fr; }
  .map-caption { position: relative; left: auto; bottom: auto; width: calc(100% - 25px); min-width: 0; margin: -25px auto 0; }
  .quality-badge { position: relative; right: auto; bottom: auto; width: calc(100% - 25px); min-width: 0; margin: -25px auto 0; }
  .quote-form { padding: 27px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .quote-row .button { width: 100%; }
  .google-review-section { padding: 52px 22px; }
  .review-banner { padding: 24px 20px; border-radius: 16px 32px 16px 32px; }
  .review-score strong { font-size: 38px; }
  .review-action a { min-height: 46px; padding: 0 14px; }
  footer { align-items: flex-start; flex-direction: column; }
}
