:root {
  --red: #dd1f2d;
  --red-dark: #b81824;
  --blue: #3da5d9;
  --blue-dark: #2b8bb8;
  --ink: #1f2933;
  --muted: #5c6b76;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-soft: #eef3f7;
  --dark: #15191e;
  --header: #ffffff;
  --white: #fff;
  --max: 1180px;
  --radius: 10px;
  --shadow: 0 12px 32px rgba(21, 25, 30, 0.1);
  --font: "Poppins", system-ui, sans-serif;
  --display: "Lexend", "Poppins", sans-serif;
  --hero: "Manrope", "Lexend", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color .2s, background .2s, transform .2s; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.55em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(92%, var(--max)); margin: 0 auto; }
.center { text-align: center; }

::selection { background: rgba(221, 31, 45, 0.18); }

/* Header — logo left, nav + phone + Veleprodaja right */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header);
  box-shadow: 0 4px 20px rgba(21, 25, 30, 0.08);
}

.header-inner {
  width: min(94%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  padding: 10px 4px;
  position: relative;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem 1.75rem;
  flex: 1;
}

.header-top {
  background: var(--dark);
  color: var(--white);
}

.header-top-inner {
  width: min(94%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  min-height: 42px;
  padding: 6px 4px;
  font-size: 0.92rem;
}

.header-top a {
  color: var(--white);
  font-weight: 600;
}

.header-top a:hover { color: #ffd0d3; }

.header-top .header-phone {
  color: var(--white);
  gap: 8px;
}

.header-top .header-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-top .header-b2b {
  min-height: auto;
  padding: 4px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  box-shadow: none;
  font-family: var(--font);
}

.header-top .header-b2b:hover {
  background: transparent;
  color: #ffd0d3 !important;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-phone:hover { color: var(--red-dark); }

.header-b2b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55em 1.25em;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(221, 31, 45, 0.28);
}

.header-b2b:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.logo img {
  width: min(220px, 58vw);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .25s, opacity .25s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after { display: none; }

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.55rem;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  border: 2px solid var(--red);
  box-shadow: 0 8px 20px rgba(221, 31, 45, 0.25);
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--red) !important;
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white) !important;
}

.btn-white {
  background: var(--white);
  color: var(--red) !important;
  border-color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: #fff5f5;
  border-color: #fff5f5;
}

.btn-catalog {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(61, 165, 217, 0.28);
}

.btn-catalog:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url("../img/6430_result.webp") top center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.37;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("../img/slider-sp1.png") top right / auto no-repeat;
  opacity: 0.37;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 160px 0 175px;
  text-align: right;
}

.hero h1 {
  font-family: var(--hero);
  color: var(--white);
  font-size: clamp(2.25rem, 7vw, 100px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2.1px;
  margin: 0 0 10px auto;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  animation: fadeUp .8s ease both;
}

.hero .lead-line {
  color: var(--white);
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 15px;
  animation: fadeUp .8s ease .12s both;
}

.hero .btn { animation: fadeUp .8s ease .22s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 0.4em;
}

.eyebrow {
  color: var(--red);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.lead-text {
  color: var(--muted);
  max-width: 52ch;
}

.promo-banner {
  padding: 0;
  background: #fff;
}

.promo-banner img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid #e6ebf0;
  border-radius: 8px;
  padding: 2rem 1.35rem 1.7rem;
  box-shadow: none;
  text-align: center;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.feature-card:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(221, 31, 45, 0.28);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  color: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.feature-card .icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  transition: color .25s;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
  transition: color .25s;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .icon {
  color: var(--white);
}

/* Product blocks */
.product-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.product-block.reverse { grid-template-columns: 0.95fr 1.05fr; }
.product-block.reverse .product-copy { order: 2; }
.product-block.reverse .product-media { order: 1; }

.product-media {
  position: relative;
  min-height: 360px;
}

.product-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.product-media.collage {
  min-height: 460px;
  padding: 2.5rem 0 1rem 1.5rem;
}

.product-media.collage .collage-main {
  width: 78%;
  margin-left: auto;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: auto;
}

.product-media.collage .collage-side {
  position: absolute;
  width: 58%;
  left: 0;
  bottom: 0;
  z-index: 3;
  box-shadow: 0 16px 32px rgba(21, 25, 30, 0.16);
}

.product-media.collage .collage-dots {
  position: absolute;
  left: 0;
  top: 12%;
  width: 42px;
  z-index: 1;
  box-shadow: none;
  border-radius: 0;
  opacity: 0.85;
}

.frame-l {
  position: absolute;
  left: 8px;
  bottom: 18%;
  width: 42%;
  height: 42%;
  border: 14px solid var(--red);
  border-right: 0;
  border-top: 0;
  z-index: 1;
}

.product-copy { min-width: 0; }

#pribor-za-kancelariju .product-copy > .btn {
  align-self: flex-end;
}

#pribor-za-kancelariju .product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-copy .points {
  display: grid;
  gap: 1.25rem;
  margin: 1.4rem 0 1.8rem;
}

.point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.point-icon {
  width: 48px;
  height: 48px;
  background: #f3f5f7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.point-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.point-icon.solid {
  background: var(--red);
  border-radius: 8px;
  color: var(--white);
}

.point-icon.solid svg { fill: currentColor; width: 22px; height: 22px; }

#orink-toneri .product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#orink-toneri .toner-media {
  padding: 0 0 2rem 0;
  min-height: 520px;
}

#orink-toneri .collage-main {
  width: 86%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

#orink-toneri .red-bar {
  position: absolute;
  left: 6%;
  top: 6%;
  width: 14px;
  height: 62%;
  background: var(--red);
  z-index: 2;
}

#orink-toneri .collage-side {
  width: 44%;
  left: auto;
  right: 0;
  bottom: 0;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.point h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.point p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.section-title.has-mark {
  position: relative;
  padding-left: 0.15em;
}

.section-title.has-mark::before {
  content: "";
  position: absolute;
  left: -0.7em;
  top: 0.18em;
  width: 0.5em;
  height: 0.5em;
  background: var(--red);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.stat-chip {
  position: absolute;
  left: 0;
  top: 1.2rem;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 8px 8px 0 8px;
  padding: 0.85rem 1.1rem 0.75rem;
  box-shadow: 0 10px 24px rgba(221, 31, 45, 0.28);
}

.stat-chip svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-bottom: 0.2rem;
}

.stat-chip .num {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.stat-chip .label {
  font-size: 0.85rem;
  opacity: 0.92;
}

.stat-box {
  display: inline-flex;
  flex-direction: column;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin: 1rem 0 1.5rem;
  min-width: 160px;
}

.stat-box.overlay {
  position: absolute;
  left: 0;
  top: 1.2rem;
  z-index: 4;
  margin: 0;
}

.stat-box .num {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-box .label {
  color: var(--muted);
  font-size: 0.9rem;
}

.quality-bar {
  margin: 1rem 0 1.5rem;
}

.quality-bar .meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.quality-bar .track {
  height: 12px;
  background: #e8edf2;
  border-radius: 999px;
  overflow: hidden;
}

.quality-bar .fill {
  width: 0;
  height: 100%;
  background: var(--red);
  border-radius: 999px;
  transition: width 1.2s ease;
}

.quality-bar.is-in .fill { width: 100%; }

/* Delivery band */
.delivery {
  padding: 0;
  background: var(--white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  align-items: stretch;
  min-height: 240px;
}

.delivery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.delivery-copy {
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4.5rem;
}

.delivery h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0;
  line-height: 1.15;
}

/* Brands */
.brands {
  padding: 3rem 0;
  background: var(--bg);
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
  flex-wrap: wrap;
}

.brands-row img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.9;
  transition: opacity .2s, filter .2s;
}

.brands-row img:hover {
  opacity: 1;
  filter: none;
}

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(120deg, rgba(21, 25, 30, 0.82), rgba(221, 31, 45, 0.55)),
    url("../img/Office-banner_result.webp") center / cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-hero .eyebrow { color: #ffd0d3; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 0; }

/* About */
.about-page { padding-top: 3.5rem; }

.about-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-head .section-title {
  display: inline-block;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(220px, 0.85fr) minmax(280px, 1.45fr);
  gap: 2.2rem 2.4rem;
  align-items: start;
}

.about-years {
  text-align: center;
  position: relative;
}

.about-years img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 0;
}

.about-years-num {
  font-family: "Poppins", var(--font);
  font-size: clamp(6.5rem, 10vw, 9.4rem);
  font-weight: 700;
  line-height: 0.75;
  color: #000;
  -webkit-text-stroke: 1.1px #fec63f;
  paint-order: stroke fill;
  margin-top: -4.4rem;
  position: relative;
  z-index: 2;
}

.about-years-label {
  font-family: "Poppins", var(--font);
  font-size: clamp(1.35rem, 2.2vw, 1.875rem);
  font-weight: 400;
  line-height: 1.25;
  color: #6f7174;
  margin: 0.35rem 0 0;
}

.about-highlights {
  display: grid;
  gap: 1.6rem;
  padding-top: 0.4rem;
}

.about-highlights article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.about-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef1f4;
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.about-highlights h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.about-highlights p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.about-layout .faq { margin-top: 0; }

.faq {
  display: grid;
  gap: 0.65rem;
}

.faq details {
  background: var(--white);
  border: 0;
  border-bottom: 1px solid #e4e9ee;
  border-radius: 0;
  padding: 0.35rem 0 0.85rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  float: right;
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform .2s;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.55rem;
}

.faq p {
  color: var(--muted);
  margin: 0.75rem 0 0.25rem;
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  border-top: 3px solid var(--red);
}

.contact-card h2 {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-card a,
.contact-card p {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer { margin-top: 0; }

.footer-contact-bar {
  background: var(--red);
  color: var(--white);
  padding: 18px 0;
}

.footer-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.footer-icon-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
}

.footer-icon-box:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-icon-box svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: currentColor;
}

.footer-icon-box .kicker {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  opacity: 0.95;
}

.footer-icon-box strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}

.footer-bottom-bar {
  background: #000;
  padding: 28px 0;
  border-top: 0;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-bar .logo img {
  width: 200px;
  filter: none;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 2.4rem;
}

.footer-nav a {
  color: var(--white);
  font-weight: 500;
}

.footer-nav a:hover { color: var(--red); }

.social {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white) !important;
  display: grid;
  place-items: center;
}

.social a:hover { background: var(--red-dark); }

.social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-legacy {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.footer-legacy .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-legacy .logo img {
  width: 200px;
  filter: brightness(0) invert(1);
}

.footer-legacy h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-legacy .footer-nav {
  display: grid;
  gap: 0.55rem;
  justify-content: start;
}

.footer-legacy .footer-nav a { color: rgba(255, 255, 255, 0.82); }
.footer-legacy .footer-nav a:hover { color: var(--white); }

.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover { color: #ffd0d3; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-legacy .footer-bottom a { color: rgba(255, 255, 255, 0.82); }
.footer-legacy .footer-bottom a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .product-block,
  .product-block.reverse,
  .about-layout,
  .contact-grid,
  .footer-icons,
  .footer-bottom-inner,
  .footer-legacy .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-block.reverse .product-copy,
  .product-block.reverse .product-media { order: initial; }
  .hero-inner { text-align: center; padding: 85px 0 110px; }
  .hero h1 { margin-left: auto; margin-right: auto; -webkit-text-stroke-width: 1px; }
  .header-inner > .header-phone,
  .header-right .header-phone { display: none; }
  .footer-icon-box { justify-content: center; }
  .footer-icon-box:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .footer-nav, .social { justify-content: center; }
  .footer-bottom-bar .logo { justify-self: center; }
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-copy { padding: 2.4rem 1.5rem; justify-content: center; text-align: center; flex-wrap: wrap; }
  .about-layout { grid-template-columns: 1fr 1fr; }
  .about-layout .faq { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-right {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    padding: 0.9rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  body.nav-open .header-right { display: flex; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .header-inner > .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 1.25rem 1.25rem;
  }
  body.nav-open .header-inner > .site-nav { display: block; }
  .header-phone { display: inline-flex; }
  .header-b2b { align-self: flex-start; }
  .header-top-inner { justify-content: center; }
  .footer-legacy .footer-bottom { justify-content: center; text-align: center; }
  .features { grid-template-columns: 1fr; }
  .product-media.collage { min-height: 0; padding: 3.5rem 0 0; }
  .product-media.collage .collage-main,
  .product-media.collage .collage-side { width: 100%; position: relative; left: auto; right: auto; bottom: auto; margin: 0.75rem 0 0; aspect-ratio: auto; }
  .frame-l { display: none; }
  .stat-chip,
  .stat-box.overlay { left: 0; top: 0; }
  .product-media.collage .collage-dots { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-layout .faq { grid-column: auto; }
}
