:root {
  --navy-950: #061a2f;
  --navy-900: #0b2545;
  --navy-800: #173961;
  --gold-500: #d97706;
  --kraft-500: #c99457;
  --kraft-600: #b8793a;
  --green-600: #2f7d32;
  --cream-50: #fff8ec;
  --cream-100: #faf7f1;
  --cream-200: #f2eadf;
  --charcoal-900: #1f2933;
  --gray-600: #6b7280;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(7, 21, 39, 0.12);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--charcoal-900);
  background: var(--cream-100);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(2, 10, 20, 0.24);
}

.header-topbar {
  background: #08203a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-tagline {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a9bfd2;
  font-size: 0.84rem;
  font-weight: 500;
}

.header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex: none;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contacts a {
  color: #d7e3ee;
  font-size: 0.86rem;
}

.header-phone {
  color: var(--white) !important;
  font-weight: 800;
}

.header-mainbar {
  background: #20384f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: none;
}

.brand-logo {
  width: auto;
  height: 56px;
  max-width: min(360px, 42vw);
  object-fit: contain;
  filter: brightness(1.12) contrast(1.12) drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-500);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--gold-500);
}

.nav-caret {
  color: var(--gold-500);
  font-size: 0.72rem;
  margin-left: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #f08b16, var(--gold-500));
  box-shadow: 0 18px 32px rgba(217, 119, 6, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 72vh;
  padding: 58px 0 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(217, 119, 6, 0.22), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(201, 148, 87, 0.16), transparent 30%),
    linear-gradient(160deg, #04111f 8%, #071f38 54%, #0b2545 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 54%, transparent 100%);
  opacity: 0.38;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 30px 34px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.trust-row,
.eco-points,
.quote-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow span,
.trust-row span,
.eco-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.85rem;
}

.hero h1,
.section-heading h2,
.footer-cta h2 {
  margin: 0 0 16px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.3rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.quote-copy p,
.footer-grid p,
.faq-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 18px;
  max-width: 560px;
  color: #f7fbff;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-categories span {
  position: relative;
}

.hero-categories span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--gold-500);
  transform: translateY(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 28px;
}

.trust-row {
  margin-bottom: 24px;
}

.trust-row span {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0 0 0 18px;
  border-radius: 0;
  color: #b7c8d8;
  font-size: 0.96rem;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  transform: translateY(-50%) rotate(45deg);
}

.hero-bottombar {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
}

.hero-divider {
  height: 1px;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  width: 100%;
}

.stat-card {
  padding: 0 36px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.stat-card:not(:first-child) {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card strong {
  display: block;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.3vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
  color: #f39112;
}

.stat-card span {
  color: #a9bfd2;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1800px;
  transform-style: preserve-3d;
  overflow: visible;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: 12% 10% 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 119, 6, 0.36), rgba(201, 148, 87, 0.14) 42%, transparent 72%);
  filter: blur(16px);
}

.boxfx {
  position: absolute;
  inset: -16px -12px -12px -12px;
  overflow: visible;
  --stage-scale: 1;
  --floor-scale: 1;
  --floor-opacity: 0.72;
  pointer-events: none;
}

.boxfx__floor {
  position: absolute;
  left: 50%;
  top: calc(50% + 220px);
  width: 1140px;
  height: 158px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(2, 12, 24, 0.56) 0%, rgba(2, 12, 24, 0.22) 58%, transparent 100%);
  filter: blur(24px);
  opacity: var(--floor-opacity);
  transform: translate(-50%, 0) scale(var(--floor-scale));
  transform-origin: center center;
}

.boxfx__stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1280px;
  height: 760px;
  transform: translate(-50%, -50%) scale(var(--stage-scale));
  transform-style: preserve-3d;
  transform-origin: center center;
}

.boxfx__item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--w, 220px);
  opacity: 0;
  transform:
    translate3d(
      calc(-50% + var(--tx, 0px)),
      calc(-50% + var(--ty, 0px)),
      var(--tz, 0px)
    )
    rotateZ(var(--rz, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
  transform-style: preserve-3d;
  transition: none;
  will-change: transform, opacity, filter;
  filter: saturate(0.98) brightness(1);
  transform-origin: center center;
}

.boxfx__item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 68%;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 12, 24, 0.5) 0%, rgba(2, 12, 24, 0.16) 58%, transparent 100%);
  filter: blur(16px);
  opacity: var(--shadow-opacity, 0);
  transform: translateX(-50%) scale(var(--shadow-scale, 0.5));
  transform-origin: center center;
  z-index: -1;
}

.boxfx__float {
  position: relative;
  transform-origin: center center;
  transform: var(--rot, rotate(0deg));
  transform-style: preserve-3d;
}

.boxfx__float img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.1);
  transform-origin: center center;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
  backface-visibility: hidden;
}

.boxfx.is-primed .boxfx__item {
  opacity: 0;
  transform: translate3d(
      calc(var(--x) + var(--drop-x, 0px)),
      calc(var(--y) - 420px),
      var(--z)
    )
    scale(0.76);
}

.boxfx.is-animating .boxfx__item.is-dropped,
.boxfx.is-settled .boxfx__item {
  opacity: 1;
  transform: translate3d(var(--x), var(--y), var(--z)) scale(1);
}

.boxfx.is-settled .boxfx__float {
  animation: gb-bob var(--dur, 4.8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.boxfx.is-exposing .boxfx__item:not(.is-exposed) {
  opacity: 0;
  transform: translate3d(var(--x), var(--y), var(--z)) scale(0.82);
  filter: saturate(0.72) brightness(0.7);
}

.boxfx.is-exposing .boxfx__item.is-exposed {
  opacity: 1;
  transform: translate3d(0, -18px, 300px) scale(1.42);
  filter: saturate(1.12) brightness(1.08);
  z-index: 30;
}

.boxfx.is-exposing .boxfx__item.is-exposed .boxfx__float img {
  filter: drop-shadow(0 42px 90px rgba(0, 0, 0, 0.5));
}

.boxfx.is-exposing .boxfx__floor {
  opacity: 0.35;
}

.hero-story-section {
  position: relative;
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 119, 6, 0.08), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(112, 76, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #faf5ed 100%);
}

.hero-story-section::before,
.hero-story-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(201, 148, 87, 0.28);
  pointer-events: none;
}

.hero-story-section::before {
  width: 360px;
  height: 360px;
  top: 18px;
  left: -110px;
}

.hero-story-section::after {
  width: 440px;
  height: 440px;
  right: -160px;
  bottom: -110px;
}

.hero-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 56px;
}

.hero-story-visual {
  position: relative;
}

.hero-story-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 1.08 / 1;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(227, 207, 177, 0.72);
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 151, 91, 0.18), transparent 18%),
    radial-gradient(circle at 84% 10%, rgba(214, 185, 142, 0.22), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #f8f0e5 100%);
  box-shadow:
    0 28px 70px rgba(7, 21, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero-story-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.hero-story-frame::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 170px;
  height: 170px;
  background:
    radial-gradient(circle at 32% 36%, rgba(66, 98, 63, 0.22), transparent 18%),
    linear-gradient(145deg, rgba(70, 103, 62, 0.18), rgba(70, 103, 62, 0));
  filter: blur(24px);
  opacity: 0.52;
  pointer-events: none;
}

.hero-story-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-story-content {
  max-width: 610px;
  justify-self: end;
}

.hero-story-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-story-kicker::after {
  content: "✦";
  grid-column: 1 / -1;
  width: auto;
  height: auto;
  background: none;
  color: rgba(201, 148, 87, 0.72);
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 400;
}

.hero-story-kicker-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 148, 87, 0.58);
  color: var(--kraft-500);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(201, 148, 87, 0.16);
}

.hero-story-kicker-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-story-kicker::after {
  content: "";
  flex: 1;
  min-width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(218, 189, 141, 0.65), rgba(218, 189, 141, 0));
}

.hero-story-kicker-copy {
  line-height: 1.2;
}

.hero-story-content h2 {
  margin: 0 0 22px;
  color: var(--navy-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-story-line {
  display: inline;
}

.hero-story-content p {
  margin: 0 0 24px;
  color: rgba(11, 37, 69, 0.84);
  font-size: 1.04rem;
  line-height: 1.62;
}

.hero-story-lead strong,
.hero-story-tail strong {
  color: var(--gold-500);
  font-weight: 800;
}

.hero-story-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.hero-story-list li {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-left: 56px;
  color: rgba(11, 37, 69, 0.9);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-story-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold-500);
  font-size: 1.18rem;
  font-weight: 800;
  background: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(201, 148, 87, 0.52);
  box-shadow: 0 14px 28px rgba(201, 148, 87, 0.16);
}

.hero-story-tail {
  max-width: 46ch;
}

.hero-story-cta {
  padding: 16px 30px;
  color: var(--white);
  background: linear-gradient(135deg, #f08b16, var(--gold-500));
  box-shadow: 0 18px 32px rgba(217, 119, 6, 0.28);
}

.hero-story-cta:hover,
.hero-story-cta:focus-visible {
  box-shadow: 0 22px 38px rgba(217, 119, 6, 0.34);
}

@media (min-width: 1101px) {
  .hero-story-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
  }

  .hero-story-content {
    max-width: 780px;
    align-self: center;
  }

  .hero-story-content h2 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 2.35vw, 3.05rem);
    line-height: 0.94;
    text-wrap: pretty;
  }

  .hero-story-line {
    display: block;
  }

  .hero-story-kicker {
    margin-bottom: 18px;
    font-size: 0.76rem;
  }

  .hero-story-content p {
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-story-list {
    margin-bottom: 18px;
    gap: 10px;
  }

  .hero-story-list li {
    min-height: 34px;
    padding-left: 48px;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .hero-story-list li::before {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .hero-story-tail {
    max-width: 42ch;
  }

  .hero-story-cta {
    padding: 14px 24px;
  }
}

.section {
  padding: 104px 0;
}

.warm-section {
  background: var(--cream-100);
}

.tinted-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 119, 6, 0.12), transparent 18%),
    linear-gradient(180deg, #fff5e7 0%, #f8efe2 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.quote-copy p,
.footer-grid p,
.faq-item p {
  color: var(--gray-600);
}

.kicker {
  margin: 0;
  color: var(--gold-500);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-heading h2,
.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--navy-950);
}

.card-grid,
.benefits-grid,
.steps-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.products-grid,
.industries-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-card--extra {
  display: none;
}

.gallery-grid.is-expanded .gallery-card--extra {
  display: block;
}

.product-card,
.info-card,
.benefit-card,
.step-card,
.whatsapp-card,
.gallery-card,
.faq-item,
.footer-cta,
.eco-visual {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.product-card,
.info-card,
.benefit-card,
.step-card,
.faq-item {
  background: var(--white);
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(11, 37, 69, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card.is-clickable {
  cursor: pointer;
}

.product-card.is-clickable:hover,
.product-card.is-clickable:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(7, 21, 39, 0.12);
  border-color: rgba(217, 119, 6, 0.26);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  padding: 24px 24px 0;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.14), transparent 36%),
    linear-gradient(180deg, #fffdf8, #f6efe5);
}

.product-card img.product-image-large {
  transform: scale(1.15);
  transform-origin: center center;
}

.product-card img.product-image-xlarge {
  transform: scale(1.2);
  transform-origin: center center;
}

.product-card div,
.info-card,
.benefit-card,
.step-card {
  padding: 28px;
}

.product-card h3,
.info-card h3,
.benefit-card h3,
.step-card h3,
.gallery-overlay h3,
.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 10px;
  color: var(--navy-950);
}

.product-card p,
.info-card p,
.benefit-card p,
.step-card p {
  margin: 0 0 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

.product-card a,
.gallery-overlay a {
  color: var(--gold-500);
  font-weight: 800;
}

.products-showcase {
  background: linear-gradient(180deg, #f6f0e6 0%, #f8f3ea 100%);
}

.products-showcase-heading {
  max-width: none;
  margin-bottom: 34px;
}

.products-showcase-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  color: #050505;
  letter-spacing: -0.05em;
}

.products-showcase-heading p {
  max-width: none;
  color: #111111;
  font-size: 1.02rem;
  line-height: 1.55;
}

.products-showcase .products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.products-showcase .product-card--catalog {
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(223, 206, 181, 0.72);
  box-shadow: 0 22px 44px rgba(7, 21, 39, 0.08);
  overflow: hidden;
}

.products-showcase .product-card--catalog.is-clickable:hover,
.products-showcase .product-card--catalog.is-clickable:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(7, 21, 39, 0.12);
  border-color: rgba(217, 119, 6, 0.22);
}

.product-card-media {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 0;
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.18), transparent 36%),
    linear-gradient(180deg, #0d223b, #122f4f);
}

.products-showcase .product-card img {
  width: 100%;
  height: auto;
  max-height: 300px;
  padding: 0;
  object-fit: contain;
  background: none;
}

.products-showcase .product-card img.product-image-large {
  transform: scale(1.02);
}

.products-showcase .product-card img.product-image-xlarge {
  transform: scale(1.06);
}

.product-card-copy {
  padding: 26px 30px 30px;
  text-align: left;
}

.product-card-copy h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: clamp(1.15rem, 1.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.18;
}

.product-card-title-line {
  white-space: nowrap;
}

.products-showcase .product-card--catalog[data-product-slug="branded-takeaway-packaging"] .product-card-copy h3,
.products-showcase .product-card--catalog[data-product-slug="branded-solidboard-cartons"] .product-card-copy h3 {
  min-height: 2.5em;
  font-size: clamp(1rem, 1.25vw, 1.48rem);
  line-height: 1.15;
}

.product-card-copy p {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.7;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-500);
  font-weight: 800;
  font-size: 0;
}

.product-card-link::after {
  content: "Explore";
  font-size: 0.98rem;
}

.info-card {
  border: 1px solid rgba(11, 37, 69, 0.08);
  min-height: 100%;
}

.split-panel {
  display: grid;
  gap: 34px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 121, 58, 0.16);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.08), transparent 48%);
  pointer-events: none;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.benefit-card {
  padding: 28px 24px;
  border-top: 4px solid rgba(217, 119, 6, 0.54);
}

.sustainability-section {
  background:
    radial-gradient(circle at 78% 16%, rgba(47, 125, 50, 0.14), transparent 22%),
    linear-gradient(180deg, #eef8ee, #f9fcf6);
}

.sustainability-grid,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.eco-visual {
  position: relative;
  padding: 40px;
  background: linear-gradient(180deg, #ffffff, #f0f8ef);
  border: 1px solid rgba(47, 125, 50, 0.12);
}

.eco-visual img {
  margin: 0 auto;
  max-height: 440px;
  object-fit: contain;
}

.eco-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.18), transparent 36%),
    linear-gradient(180deg, #0d223b, #122f4f);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  transform: scale(1.03);
  transition: transform 220ms ease;
}

.gallery-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-within .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 70px;
  background:
    radial-gradient(circle at 14% 14%, rgba(217, 119, 6, 0.1), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(201, 148, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f0, #f6efe4);
}

.services-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 37, 69, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(11, 37, 69, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.services-hero-layout,
.services-sustainability-grid,
.services-why-layout {
  display: grid;
  gap: 34px;
}

.services-hero-layout,
.services-sustainability-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.services-why-layout {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
}

.services-breadcrumb {
  margin-bottom: 18px;
}

.services-hero-copy {
  position: relative;
  z-index: 1;
}

.services-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.services-hero-copy h1 span {
  display: block;
}

.services-hero-copy h1 span,
.services-sustainability-copy h2 span {
  color: var(--gold-500);
  font-style: italic;
}

.services-hero-summary,
.services-sustainability-copy p,
.services-why-copy p,
.service-card p,
.service-proof-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.78;
}

.services-hero-summary + .services-hero-summary {
  margin-top: 14px;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.services-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 37, 69, 0.1);
}

.services-stat-strip article {
  padding-right: 8px;
}

.services-stat-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.48rem;
}

.services-stat-strip span {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.services-hero-panel {
  position: relative;
}

.services-hero-frame,
.services-sustainability-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(7, 21, 39, 0.18);
}

.services-hero-frame {
  min-height: 470px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.14), transparent 24%),
    linear-gradient(180deg, #163453, #102842);
}

.services-hero-frame::after,
.services-sustainability-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero-frame img,
.services-sustainability-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-hero-frame img {
  min-height: 350px;
}

.services-panel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.18);
  color: #ffe5b7;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-panel-watermark {
  position: absolute;
  left: 22px;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.services-panel-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.services-panel-cards article,
.service-card,
.service-proof-card {
  background: var(--white);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.services-panel-cards article {
  padding: 18px;
}

.services-panel-cards span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-panel-cards strong {
  color: var(--navy-950);
  font-size: 0.92rem;
  line-height: 1.5;
}

.services-grid,
.services-why-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.services-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border-radius: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within,
.service-proof-card:hover,
.service-proof-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.24);
  box-shadow: 0 22px 42px rgba(7, 21, 39, 0.1);
}

.services-section-heading {
  max-width: none;
  margin-bottom: 34px;
}

.services-section-heading h2 {
  margin-bottom: 0;
}

.services-section-heading h2 span {
  color: var(--gold-500);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 119, 6, 0.14), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(201, 148, 87, 0.14), transparent 24%),
    linear-gradient(135deg, #051425 0%, #081d34 52%, #0b2545 100%);
}

.about-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.about-hero-shell {
  position: relative;
  z-index: 1;
}

.about-hero-grid,
.about-story-grid,
.about-closing-banner {
  display: grid;
  gap: 34px;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.about-breadcrumb {
  margin-bottom: 18px;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
}

.about-hero-copy h1,
.about-story-copy h2,
.about-closing-banner-copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.about-hero-copy h1 {
  font-size: clamp(3.1rem, 5.8vw, 5.8rem);
  color: #fff7eb;
}

.about-hero-copy h1 span {
  display: block;
  color: #f1b458;
}

.about-hero-summary,
.about-story-copy p,
.about-journey-card p,
.about-value-item p,
.about-solution-copy p,
.about-closing-banner-copy p {
  margin: 0;
  line-height: 1.78;
}

.about-hero-summary {
  max-width: 56ch;
  color: rgba(255, 247, 235, 0.84);
  font-size: 1.03rem;
}

.about-hero-actions,
.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-button-secondary {
  color: #fff2dd;
  border: 1px solid rgba(241, 180, 88, 0.42);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about-button-secondary:hover,
.about-button-secondary:focus-visible {
  border-color: rgba(241, 180, 88, 0.7);
  background: rgba(241, 180, 88, 0.08);
}

.about-hero-visual {
  position: relative;
}

.about-hero-visual-frame {
  position: relative;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(241, 180, 88, 0.16);
  background:
    radial-gradient(circle at 16% 18%, rgba(241, 180, 88, 0.18), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(15, 34, 58, 0.74), rgba(11, 27, 48, 0.92)),
    url("assets/corrugated-box-production-service.png") center/cover no-repeat;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.about-hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about-hero-visual-glow {
  position: absolute;
  left: 28%;
  top: 8%;
  width: 52%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 180, 88, 0.34), rgba(241, 180, 88, 0.06) 52%, transparent 74%);
  filter: blur(14px);
}

.about-hero-main-pack,
.about-hero-side-pack {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.28));
}

.about-hero-main-pack {
  right: 3%;
  bottom: 2%;
  width: clamp(300px, 44vw, 520px);
}

.about-hero-side-pack--left {
  left: -2%;
  bottom: 6%;
  width: clamp(190px, 26vw, 290px);
  transform: rotate(-8deg);
}

.about-hero-side-pack--right {
  right: -4%;
  top: 9%;
  width: clamp(180px, 24vw, 250px);
  transform: rotate(6deg);
}

.about-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(241, 180, 88, 0.16);
  background: rgba(8, 29, 52, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-hero-strip-item,
.about-story-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-hero-strip-item {
  padding: 22px 24px;
}

.about-hero-strip-item:not(:last-child) {
  border-right: 1px solid rgba(241, 180, 88, 0.16);
}

.about-inline-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #f1b458;
}

.about-inline-icon svg,
.about-journey-icon svg,
.about-value-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-hero-strip-item strong,
.about-story-card-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff3df;
  font-size: 1rem;
}

.about-hero-strip-item p,
.about-story-card-item p {
  margin: 0;
  color: rgba(255, 243, 223, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-story-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(217, 119, 6, 0.08), transparent 18%),
    linear-gradient(180deg, #fffdfa 0%, #f8f2e8 100%);
}

.about-story-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.82fr);
  align-items: center;
}

.about-story-copy h2,
.about-closing-banner-copy h2 {
  color: var(--navy-950);
  font-size: clamp(2.5rem, 4.8vw, 4.3rem);
}

.about-story-copy p {
  color: var(--gray-600);
  font-size: 1rem;
}

.about-story-copy p + p {
  margin-top: 16px;
}

.about-story-card {
  padding: 24px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(241, 180, 88, 0.18), transparent 18%),
    linear-gradient(180deg, #071a31, #0d2746);
  border: 1px solid rgba(241, 180, 88, 0.18);
  box-shadow: 0 26px 58px rgba(7, 21, 39, 0.18);
}

.about-story-card-item {
  padding: 18px 0;
}

.about-story-card-item:not(:last-child) {
  border-bottom: 1px solid rgba(241, 180, 88, 0.14);
}

.about-journey-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at 10% 18%, rgba(241, 180, 88, 0.12), transparent 16%),
    radial-gradient(circle at 92% 80%, rgba(241, 180, 88, 0.1), transparent 14%),
    linear-gradient(180deg, #06172d 0%, #091d36 100%);
}

.about-journey-section .section-heading h2,
.about-solutions-section .section-heading h2 {
  color: #fff4e4;
}

.about-journey-grid,
.about-values-grid,
.about-solutions-grid {
  display: grid;
}

.about-journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-journey-card {
  position: relative;
  padding: 78px 26px 26px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(241, 180, 88, 0.22);
  background: linear-gradient(180deg, #fffdf8, #fbf5ea);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.about-journey-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f1b458;
  background: #081d34;
  border: 4px solid #f8f2e8;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.about-journey-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-500);
  font-size: 2rem;
  font-weight: 800;
}

.about-journey-card h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 1.28rem;
}

.about-journey-card p,
.about-value-item p,
.about-solution-copy p {
  color: var(--gray-600);
}

.about-values-section {
  background: linear-gradient(180deg, #fffefa 0%, #fbf7ef 100%);
}

.about-values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(11, 37, 69, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-value-item {
  padding: 28px 24px 30px;
  text-align: center;
}

.about-value-item:not(:last-child) {
  border-right: 1px solid rgba(11, 37, 69, 0.08);
}

.about-value-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--gold-500);
}

.about-value-item h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.06rem;
}

.about-solutions-section {
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 12% 10%, rgba(241, 180, 88, 0.12), transparent 18%),
    linear-gradient(180deg, #081a31 0%, #0a203a 100%);
}

.about-solutions-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-solution-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(241, 180, 88, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-solution-card:hover,
.about-solution-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.about-solution-media {
  height: 210px;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.16), transparent 36%),
    linear-gradient(180deg, #f7f0e4, #fffdfa);
}

.about-solution-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.about-solution-copy {
  padding: 22px 22px 24px;
}

.about-solution-copy h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.2rem;
  line-height: 1.2;
}

.about-solution-copy a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-500);
  font-weight: 800;
}

.about-closing-banner {
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
  margin-top: 32px;
  padding: 26px 30px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(241, 180, 88, 0.24);
  background:
    radial-gradient(circle at top right, rgba(241, 180, 88, 0.16), transparent 22%),
    linear-gradient(135deg, #071a31 0%, #0b2441 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.about-closing-banner-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-closing-banner-media img {
  width: 100%;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
}

.about-closing-banner-copy h2 {
  color: #fff4e4;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.about-closing-banner-copy p {
  color: rgba(255, 244, 228, 0.8);
  font-size: 1rem;
}

.service-card-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 276px;
  padding: 10px 10px 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 241, 219, 0.98), transparent 36%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96), transparent 38%),
    radial-gradient(circle at 84% 14%, rgba(231, 198, 151, 0.2), transparent 28%),
    linear-gradient(180deg, #fffefa 0%, #f8f0e4 48%, #f4eadb 100%);
  border-bottom: 1px solid rgba(201, 148, 87, 0.14);
}

.service-card-media::before {
  content: "";
  position: absolute;
  inset: 8px 8px 10px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at top, rgba(255, 244, 227, 0.82), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 40px rgba(182, 146, 95, 0.08);
  pointer-events: none;
}

.service-card-media img {
  position: relative;
  z-index: 2;
  width: 112%;
  max-width: none;
  height: calc(100% - 4px);
  object-fit: contain;
  object-position: center center;
  transform: scale(1.12);
  transform-origin: center bottom;
  filter: drop-shadow(0 24px 34px rgba(89, 62, 28, 0.16));
}

.service-card--feature-image .service-card-media {
  min-height: 276px;
}

.service-card--feature-image .service-card-media::before {
  inset: 8px 8px 10px;
}

.service-card--feature-image .service-card-media img {
  height: calc(100% - 4px);
}

.service-card--feature-image .service-card-shadow {
  display: block;
  bottom: 16px;
  width: 68%;
  height: 20px;
  background: radial-gradient(circle, rgba(109, 83, 48, 0.24) 0%, rgba(109, 83, 48, 0.1) 56%, transparent 100%);
  filter: blur(14px);
}

.service-card-shadow {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 68%;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 83, 48, 0.24) 0%, rgba(109, 83, 48, 0.1) 56%, transparent 100%);
  transform: translateX(-50%);
  filter: blur(14px);
}

.service-card-body {
  position: relative;
  padding: 34px 18px 20px;
  background: var(--white);
}

.service-card-icon {
  position: absolute;
  left: 24px;
  top: 0;
  transform: translateY(-50%);
  z-index: 3;
}

.service-icon,
.industry-icon,
.service-proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #133352, #0a223a);
  border: 4px solid var(--white);
  box-shadow: 0 16px 30px rgba(7, 21, 39, 0.16);
}

.service-icon svg,
.industry-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f5c88e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.industry-panel h3,
.service-proof-card h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
}

.service-card h3 {
  font-size: 0.9rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.service-card p {
  color: #5f7084;
  font-size: 0.81rem;
  line-height: 1.6;
}

.services-industries-section {
  background: var(--white);
}

.services-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.industry-panel {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.industry-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.industry-food {
  background: linear-gradient(135deg, #1f4930, #163825);
}

.industry-retail {
  background: linear-gradient(135deg, #223d5c, #142a44);
}

.industry-logistics {
  background: linear-gradient(135deg, #604823, #433017);
}

.industry-brand {
  background: linear-gradient(135deg, #3a2950, #2d1d41);
}

.industry-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(7, 21, 39, 0.16);
}

.industry-icon img {
  width: 165%;
  height: 165%;
  max-width: none;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 16px;
  transform: translateY(-6%);
}

.industry-icon--logistics img {
  width: 138%;
  height: 138%;
  object-position: center center;
  transform: translateY(0);
}

.industry-icon--branding img {
  width: 140%;
  height: 140%;
  object-position: center center;
  transform: translateY(0);
}

.industry-icon svg {
  stroke: #ffffff;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(7, 21, 39, 0.38);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-panel h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.4;
}

.services-sustainability {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 119, 6, 0.16), transparent 24%),
    linear-gradient(180deg, #081c31, #06182a);
}

.services-sustainability-copy h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.services-sustainability-copy p,
.services-sustainability-note {
  color: rgba(255, 255, 255, 0.8);
}

.services-sustainability-frame {
  min-height: 380px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.18), transparent 22%),
    linear-gradient(180deg, #102c48, #0b2137);
}

.services-check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.services-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--white);
  line-height: 1.65;
}

.services-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.2);
  color: #ffd79e;
  font-size: 0.84rem;
  font-weight: 800;
}

.services-sustainability-note {
  margin-top: 24px;
}

.services-proof-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0 26px;
  background:
    radial-gradient(circle at 12% 16%, rgba(217, 119, 6, 0.12), transparent 20%),
    radial-gradient(circle at 84% 10%, rgba(7, 21, 39, 0.04), transparent 18%),
    linear-gradient(180deg, #fbf7f0, #f6efe4);
}

.services-why-layout {
  grid-template-columns: minmax(320px, 0.43fr) minmax(0, 0.57fr);
  gap: 16px;
  align-items: stretch;
}

.services-why-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px 18px 0;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 187, 80, 0.16), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(145deg, #071b32 0%, #0a2340 58%, #0f2e4f 100%);
  box-shadow: 0 28px 70px rgba(4, 15, 29, 0.24);
}

.services-why-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
  background-position: 16px 16px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 26%);
  pointer-events: none;
}

.services-why-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 83%, rgba(255, 204, 120, 0.92) 83% 84.2%, transparent 84.2%),
    linear-gradient(315deg, transparent 0 90%, rgba(255, 204, 120, 0.82) 90% 91%, transparent 91%);
  pointer-events: none;
}

.services-why-copy > * {
  position: relative;
  z-index: 1;
}

.services-why-copy .kicker {
  color: #ffab2e;
}

.services-why-copy h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.84rem, 3vw, 2.9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.services-why-copy h2 span {
  color: #ffd36d;
}

.services-why-divider {
  width: 80px;
  height: 4px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcf67, #f08b16);
}

.services-why-lead {
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.88rem;
  line-height: 1.38 !important;
}

.services-why-button {
  margin-top: 14px;
  align-self: flex-start;
  min-height: 44px;
  padding-inline: 18px;
  box-shadow: 0 18px 36px rgba(240, 139, 22, 0.28);
}

.services-why-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  padding: 12px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-why-feature-row article {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.services-why-miniicon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 188, 79, 0.08);
  border: 1px solid rgba(255, 205, 132, 0.26);
}

.services-why-miniicon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #ffd36d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-why-feature-row strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.67rem;
  line-height: 1.12;
}

.services-why-product-shot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 120px;
  padding-top: 2px;
}

.services-why-product-shot img {
  width: min(84%, 350px);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.3));
}

.services-why-grid {
  gap: 14px;
}

.service-proof-card {
  --proof-accent: #f7b821;
  --proof-accent-deep: #f08b16;
  --proof-soft: #fff2c8;
  --proof-title: #0b2140;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 234px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 44px rgba(7, 21, 39, 0.12);
}

.service-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0 54%, rgba(255, 255, 255, 0.96) 54% 69%, var(--proof-soft) 69% 100%);
  opacity: 0.92;
  pointer-events: none;
}

.service-proof-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 18px 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 33, 64, 0.08), transparent);
  pointer-events: none;
}

.proof-card-gold {
  --proof-accent: #f9bd29;
  --proof-accent-deep: #f0a20a;
  --proof-soft: #fff1c3;
  --proof-title: #8e5e00;
}

.proof-card-blue {
  --proof-accent: #1c8ff3;
  --proof-accent-deep: #135fdd;
  --proof-soft: #deefff;
  --proof-title: #1f4fb8;
}

.proof-card-lime {
  --proof-accent: #96d400;
  --proof-accent-deep: #6fb400;
  --proof-soft: #eefac8;
  --proof-title: #608b00;
}

.proof-card-violet {
  --proof-accent: #9e53ff;
  --proof-accent-deep: #7836dd;
  --proof-soft: #efe3ff;
  --proof-title: #6e34c2;
}

.proof-card-orange {
  --proof-accent: #ff9e31;
  --proof-accent-deep: #ef7f00;
  --proof-soft: #ffe9c9;
  --proof-title: #a75a00;
}

.proof-card-cyan {
  --proof-accent: #12bfd2;
  --proof-accent-deep: #0892ab;
  --proof-soft: #dff9fc;
  --proof-title: #0e6f8d;
}

.service-proof-top {
  position: relative;
  z-index: 2;
  padding: 12px 16px 0;
  min-height: 56px;
}

.service-proof-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: linear-gradient(135deg, var(--proof-accent), var(--proof-accent-deep));
  box-shadow: 0 18px 34px rgba(7, 21, 39, 0.16);
}

.service-proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-proof-content {
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.service-proof-card h3 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 0.84rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.service-proof-index {
  color: var(--proof-title);
}

.service-proof-card p {
  color: #32465f;
  font-size: 0.74rem;
  line-height: 1.34;
}

.service-proof-visual {
  position: relative;
  z-index: 2;
  margin-top: auto;
  min-height: 68px;
  padding: 6px 12px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.service-proof-pills span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(11, 37, 69, 0.06);
  color: var(--proof-title);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-proof-visual-stat {
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.service-proof-big {
  color: var(--proof-accent-deep);
  font-size: 3.1rem;
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.service-proof-big--compact {
  font-size: 2.65rem;
  letter-spacing: -0.06em;
}

.service-proof-sub {
  color: var(--proof-title);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-proof-visual-image img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(89, 62, 28, 0.16));
}

.service-proof-visual-boards {
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 6px;
}

.service-proof-board-stack {
  display: grid;
  gap: 5px;
}

.service-proof-board-stack span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #d6a56a, #b57d43);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 8px 16px rgba(130, 81, 28, 0.12);
}

.service-proof-board-stack span:nth-child(1) {
  width: 76px;
}

.service-proof-board-stack span:nth-child(2) {
  width: 90px;
}

.service-proof-board-stack span:nth-child(3) {
  width: 104px;
}

.service-proof-board-stack span:nth-child(4) {
  width: 118px;
}

.service-proof-visual-boards small {
  color: var(--proof-title);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 46px;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 119, 6, 0.1), transparent 20%),
    radial-gradient(circle at 86% 8%, rgba(201, 148, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f0, #f7f1e7);
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.66), transparent);
  pointer-events: none;
}

.product-detail-hero-grid,
.product-detail-intro-grid,
.product-detail-showcase,
.product-detail-faq-grid {
  display: grid;
  gap: 34px;
}

.product-detail-hero-grid,
.product-detail-showcase {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
}

.product-detail-intro-grid,
.product-detail-faq-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.product-detail-copy,
.product-detail-copy h1,
.product-detail-copy .kicker {
  position: relative;
  z-index: 1;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-back-link::before {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(45deg);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-breadcrumb strong,
.product-breadcrumb a:hover {
  color: var(--gold-500);
}

.product-detail-label {
  margin: 6px 0 12px;
  color: var(--kraft-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.product-detail-copy h1 em {
  color: var(--gold-500);
  font-style: italic;
}

.product-detail-title-nowrap {
  display: inline-block;
}

@media (min-width: 1101px) {
  .product-detail-hero-grid--takeaway {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .product-detail-copy h1.product-detail-title--takeaway {
    font-size: clamp(2.45rem, 3.2vw, 3.4rem);
    line-height: 1;
  }

  .product-detail-copy h1.product-detail-title--takeaway .product-detail-title-nowrap {
    white-space: nowrap;
  }
}

.product-detail-summary {
  margin: 0;
  max-width: 60ch;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
}

.product-detail-lead {
  margin: 14px 0 0;
  max-width: 60ch;
  color: var(--charcoal-900);
  line-height: 1.78;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.product-secondary-link {
  color: var(--navy-950);
  border-color: rgba(11, 37, 69, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.product-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 37, 69, 0.1);
}

.detail-stat-card {
  padding-right: 10px;
}

.detail-stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.9rem;
}

.detail-stat-card span {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.product-detail-visual {
  position: relative;
}

.product-detail-visual-frame {
  position: relative;
  min-height: 456px;
  padding: 28px 28px 18px;
  border-radius: 26px;
  overflow: hidden;
  perspective: 1400px;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.12), transparent 24%),
    linear-gradient(180deg, #163453, #112b46);
  box-shadow: 0 30px 70px rgba(7, 21, 39, 0.18);
}

.product-detail-visual-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-detail-visual-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
  will-change: transform;
}

.product-detail-visual-frame:hover img {
  transform: scale(1.16);
}

.product-hero-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.18);
  color: #ffe5b7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-watermark {
  position: absolute;
  left: 24px;
  bottom: 58px;
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 10px;
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f6efe4);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb.is-active,
.product-thumb:hover,
.product-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 119, 6, 0.38);
  box-shadow: 0 14px 24px rgba(7, 21, 39, 0.1);
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.product-detail-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 37, 69, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-detail-copy-card,
.product-detail-offer-card,
.product-detail-formats-card,
.detail-gallery-card,
.detail-point-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.product-detail-copy-card,
.product-detail-offer-card,
.product-detail-formats-card {
  padding: 30px;
}

.product-detail-copy-card h2,
.product-detail-offer-card h3,
.product-detail-formats-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
}

.product-detail-copy-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.product-detail-copy-card--rich h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-detail-copy-card--rich > p {
  color: var(--charcoal-900);
  font-size: 1rem;
  line-height: 1.82;
}

.product-detail-rich-section {
  margin-top: 34px;
}

.product-detail-rich-section h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.product-detail-rich-section h4 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  line-height: 1.15;
}

.product-detail-rich-section p,
.product-detail-rich-note {
  color: var(--charcoal-900);
  font-size: 0.98rem;
  line-height: 1.78;
}

.product-detail-rich-note {
  margin-top: 34px !important;
}

.product-detail-editorial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 139, 22, 0.18), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(9, 31, 55, 0.08), transparent 22%),
    linear-gradient(135deg, #efe2c8 0%, #e4d4b7 48%, #f5ecdc 100%);
}

.product-detail-intro-grid--editorial {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.product-detail-copy-card--editorial,
.product-detail-offer-card--editorial {
  position: relative;
  overflow: hidden;
  padding: 42px 40px;
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.66);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 60px rgba(7, 21, 39, 0.12);
}

.product-detail-copy-card--editorial::before,
.product-detail-offer-card--editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 38%),
    radial-gradient(circle at top right, rgba(240, 139, 22, 0.08), transparent 28%);
  pointer-events: none;
}

.product-detail-copy-card--editorial > *,
.product-detail-offer-card--editorial > * {
  position: relative;
  z-index: 1;
}

.product-detail-editorial-kicker {
  margin: 0 0 22px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-detail-editorial-lead {
  margin: 0 0 34px;
  color: var(--charcoal-900) !important;
  font-size: 1.08rem;
  line-height: 1.78 !important;
}

.product-detail-copy-card--editorial h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-detail-copy-card--editorial p:last-child {
  color: var(--charcoal-900);
  font-size: 1.04rem;
  line-height: 1.82;
}

.product-detail-offer-card--editorial h3 {
  margin: 0 0 24px;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-detail-offer-lines {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-offer-lines li {
  position: relative;
  padding: 18px 0 18px 54px;
  color: var(--navy-950);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(11, 37, 69, 0.18);
}

.product-detail-offer-lines li:first-child {
  padding-top: 8px;
}

.product-detail-offer-lines li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-detail-offer-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(240, 139, 22, 0.78);
  background:
    radial-gradient(circle at center, rgba(240, 139, 22, 0.95) 0 3px, transparent 3px);
  transform: translateY(-50%);
}

.section-heading--compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.product-detail-range-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(240, 139, 22, 0.14), transparent 20%),
    radial-gradient(circle at 86% 12%, rgba(11, 37, 69, 0.08), transparent 22%),
    linear-gradient(180deg, #f9f2e7 0%, #f7efe3 52%, #fbf8f2 100%);
}

.product-detail-range-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.product-detail-range-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-range-card,
.product-detail-range-panel,
.product-detail-trust-bar {
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 24px 54px rgba(7, 21, 39, 0.08);
  backdrop-filter: blur(10px);
}

.product-detail-range-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-detail-range-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 28px 58px rgba(7, 21, 39, 0.12);
}

.product-detail-range-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.2), transparent 34%),
    linear-gradient(180deg, #0d223b, #122f4f);
}

.product-detail-range-card-media img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 280ms ease;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.product-detail-range-card:hover .product-detail-range-card-media img {
  transform: scale(1.28);
}

.product-detail-range-card-copy {
  padding: 18px 18px 20px;
}

.product-detail-range-card-copy h3 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.25;
}

.product-detail-range-card-copy p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.7;
}

.product-detail-range-sidebar {
  display: grid;
  gap: 18px;
}

.product-detail-range-panel {
  padding: 26px 24px;
}

.product-detail-range-panel h3 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.product-detail-range-offer-list,
.product-detail-mini-faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-range-offer-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 14px;
  align-items: center;
  column-gap: 16px;
  position: relative;
  padding: 14px 20px 14px 0;
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(191, 144, 77, 0.18);
}

.product-detail-range-offer-list li:first-child {
  padding-top: 6px;
}

.product-detail-range-offer-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-detail-range-offer-list li::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #be8a3c;
  font-size: 1.05rem;
  font-weight: 800;
}

.product-detail-range-offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #b6863f;
}

.product-detail-range-offer-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-detail-range-offer-text {
  display: block;
}

.product-detail-mini-faq-list {
  display: grid;
  gap: 10px;
}

.product-detail-mini-faq-item {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(11, 37, 69, 0.1);
}

.product-detail-mini-faq-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-detail-mini-faq-item summary {
  position: relative;
  padding-right: 26px;
  cursor: pointer;
  list-style: none;
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-detail-mini-faq-item summary::-webkit-details-marker {
  display: none;
}

.product-detail-mini-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  color: var(--gold-500);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-detail-mini-faq-item[open] summary::after {
  content: "-";
}

.product-detail-mini-faq-item p {
  margin: 10px 0 0;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.7;
}

.product-detail-trust-bar {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  padding: 18px 22px;
  border-color: rgba(191, 144, 77, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(217, 119, 6, 0.1), transparent 20%),
    linear-gradient(135deg, #fcf6ea 0%, #f5ead8 48%, #fbf6ef 100%);
  box-shadow:
    0 24px 48px rgba(122, 90, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-detail-trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 42%);
  pointer-events: none;
}

.product-detail-trust-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
}

.product-detail-trust-item:not(:last-child) {
  border-right: 1px solid rgba(191, 144, 77, 0.2);
}

.product-detail-trust-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #be8a3c;
}

.product-detail-trust-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-detail-trust-copy {
  min-width: 0;
}

.product-detail-trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-trust-item p {
  margin: 0;
  color: #6d6a67;
  font-size: 0.8rem;
  line-height: 1.55;
}

.product-detail-offer-card--soft h3 {
  margin: 0 0 24px;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-detail-offer-lines--soft li {
  color: var(--navy-950);
  font-size: 1.08rem;
  border-bottom-color: rgba(11, 37, 69, 0.14);
}

.product-detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.product-detail-feature-card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 18px;
  background: #fffdfa;
}

.product-detail-feature-card h3 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 1rem;
}

.product-detail-feature-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-detail-list,
.product-detail-formats {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-list li,
.product-detail-formats li {
  position: relative;
  padding-left: 18px;
  color: var(--charcoal-900);
  line-height: 1.7;
}

.product-detail-list li + li,
.product-detail-formats li + li {
  margin-top: 14px;
}

.product-detail-list li::before,
.product-detail-formats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kraft-500), var(--gold-500));
}

.product-detail-contact-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: var(--navy-950);
}

.product-detail-contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-contact-card p {
  margin: 0 0 14px;
  color: rgba(233, 240, 246, 0.86);
  line-height: 1.7;
}

.product-detail-contact-card a {
  color: #ffc16a;
  font-weight: 800;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-gallery-card {
  padding: 22px;
  min-height: 240px;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.14), transparent 28%),
    linear-gradient(180deg, #fdf7ef, #fffefe);
}

.detail-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#product-detail-sizes {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 139, 22, 0.14), transparent 20%),
    radial-gradient(circle at 86% 12%, rgba(255, 204, 120, 0.08), transparent 18%),
    linear-gradient(180deg, #081b31 0%, #0e2845 100%);
}

#product-detail-sizes .section-heading .kicker,
#product-detail-sizes .section-heading h2 {
  color: var(--white);
}

#product-detail-sizes .section-heading .kicker {
  color: #ffbf63;
}

#product-detail-sizes .product-detail-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

#product-detail-sizes .product-detail-formats-card {
  width: 100%;
  max-width: 620px;
  justify-self: start;
}

#product-detail-sizes .detail-gallery-card {
  min-height: 190px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#product-detail-sizes .detail-gallery-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: scale(1.75);
  transform-origin: center;
  transition: transform 220ms ease;
  will-change: transform;
}

#product-detail-sizes .detail-gallery-card:hover img {
  transform: scale(2.15);
  position: relative;
  z-index: 3;
}

.product-detail-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.product-detail-table thead {
  background: var(--navy-950);
}

.product-detail-table th {
  padding: 14px 16px;
  color: var(--white);
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-detail-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  color: var(--charcoal-900);
  font-size: 0.94rem;
}

.product-detail-table td:last-child {
  color: var(--gray-600);
}

.product-detail-table tbody tr:last-child td {
  border-bottom: 0;
}

.product-detail-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.detail-point-card {
  padding: 26px 24px;
  border: 1px solid rgba(11, 37, 69, 0.08);
}

.detail-point-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f08b16, var(--gold-500));
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.detail-point-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.75;
}

.detail-point-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-detail-faq-grid .section-heading p:last-of-type {
  margin-bottom: 24px;
  color: var(--gray-600);
  line-height: 1.8;
}

.product-detail-faq-grid .button {
  width: fit-content;
}

.quote-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(201, 148, 87, 0.18), transparent 18%),
    linear-gradient(180deg, #fff7ea, #f6efe4);
}

.quote-benefits {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.quote-benefits li {
  position: relative;
  padding-left: 18px;
  color: var(--navy-900);
  font-weight: 700;
}

.quote-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.whatsapp-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(11, 37, 69, 0.08);
}

.whatsapp-card-header h3 {
  margin: 14px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.whatsapp-card-header p,
.whatsapp-note {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(47, 125, 50, 0.1);
  color: #1d6a28;
  font-weight: 800;
  font-size: 0.86rem;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: none;
}

.whatsapp-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 18px;
}

.whatsapp-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff7ec;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.whatsapp-message-field {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.96rem;
}

.whatsapp-message {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(11, 37, 69, 0.12);
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: #fffcf8;
  color: var(--charcoal-900);
  line-height: 1.65;
  resize: vertical;
}

.whatsapp-message:focus {
  outline: 2px solid rgba(217, 119, 6, 0.16);
  border-color: var(--gold-500);
}

.whatsapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.whatsapp-send {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 32px rgba(18, 140, 126, 0.24);
  color: var(--white);
}

.whatsapp-send:hover,
.whatsapp-send:focus-visible {
  background: linear-gradient(135deg, #2be06c, #149688);
}

.whatsapp-copy {
  cursor: pointer;
}

.whatsapp-note {
  margin-top: 16px;
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px 26px;
  border: 1px solid rgba(11, 37, 69, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy-950);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 28px 0 48px;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 119, 6, 0.22), transparent 20%),
    linear-gradient(180deg, #07172b, #04101d);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(201, 148, 87, 0.2), rgba(217, 119, 6, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
  color: var(--white);
  max-width: 12ch;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}

.footer-grid h3,
.footer-grid h4,
.footer-grid a {
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp.is-dragging {
  cursor: grabbing;
  transform: scale(1.04);
}

.floating-whatsapp img {
  width: 67px;
  height: 67px;
  object-fit: contain;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gb-bob {
  0%,
  100% {
    transform: var(--rot, rotate(0deg)) translateY(0);
  }
  50% {
    transform: var(--rot, rotate(0deg)) translateY(-9px);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.92rem;
  }

  .hero-grid,
  .hero-story-grid,
  .about-hero-grid,
  .about-story-grid,
  .about-closing-banner,
  .services-hero-layout,
  .sustainability-grid,
  .services-sustainability-grid,
  .services-why-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero-bottombar {
    margin-top: 0;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-story-content {
    max-width: none;
    justify-self: start;
  }

  .hero-story-frame {
    min-height: 520px;
  }

  .boxfx {
    inset: -10px -6px -10px -6px;
  }

  .services-panel-cards {
    grid-template-columns: 1fr;
  }

  .about-journey-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid,
  .industries-grid,
  .gallery-grid,
  .steps-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-media {
    min-height: 340px;
  }

  .products-showcase .product-card img {
    max-height: 300px;
  }

  .services-grid,
  .services-why-grid,
  .services-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero-grid,
  .product-detail-intro-grid,
  .product-detail-showcase,
  .product-detail-faq-grid,
  .product-detail-points,
  .product-detail-gallery,
  .product-detail-range-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-range-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-trust-item:nth-child(2n) {
    border-right: 0;
  }

  .product-detail-trust-item:nth-child(-n + 2) {
    margin-bottom: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  }

  .product-detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail-visual-frame {
    min-height: 460px;
  }

  .product-detail-range-panel {
    padding: 24px 22px;
  }

  .services-why-copy {
    padding: 20px 20px 0;
  }

  .services-why-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .services-why-product-shot {
    min-height: 170px;
  }

  .service-proof-card {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: none;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 2px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(8, 32, 58, 0.98);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .header-topbar-inner {
    min-height: 40px;
  }

  .header-tagline {
    font-size: 0.76rem;
  }

  .header-contacts {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .product-detail-hero {
    padding: 26px 0 38px;
  }

  .product-detail-hero-grid {
    gap: 22px;
  }

  .product-detail-copy h1,
  .product-detail-copy h1.product-detail-title--takeaway {
    font-size: clamp(2.2rem, 8vw, 3.35rem);
    line-height: 1.02;
  }

  .product-detail-summary,
  .product-detail-lead {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .product-detail-badges {
    gap: 8px;
  }

  .product-detail-badges span {
    font-size: 0.78rem;
  }

  .product-detail-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail-actions .button {
    width: 100%;
    justify-content: center;
  }

  .product-detail-stats {
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .detail-stat-card {
    padding-right: 0;
  }

  .product-detail-range-card-media {
    min-height: 176px;
  }

  .product-detail-range-cards {
    grid-template-columns: 1fr;
  }

  .product-detail-range-panel h3 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .product-detail-range-offer-list li {
    grid-template-columns: 26px minmax(0, 1fr) 12px;
    column-gap: 12px;
    padding: 13px 18px 13px 0;
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .product-detail-range-offer-icon {
    width: 24px;
    height: 24px;
  }

  .product-detail-mini-faq-item summary {
    font-size: 0.88rem;
  }

  .product-detail-trust-item {
    align-items: flex-start;
    gap: 12px;
  }

  .product-detail-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-thumb {
    min-height: 84px;
  }

  .product-detail-trust-bar {
    padding: 16px 18px;
  }

  .hero {
    padding-top: 62px;
  }

  .services-hero {
    padding-top: 32px;
  }

  .about-hero {
    padding: 26px 0 34px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .about-hero-summary {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .about-hero-actions,
  .about-closing-actions {
    width: 100%;
  }

  .about-hero-actions .button,
  .about-closing-actions .button {
    flex: 1 1 100%;
  }

  .about-hero-visual-frame {
    min-height: 430px;
    padding: 24px;
    border-radius: 28px;
  }

  .about-hero-main-pack {
    right: 2%;
    bottom: 2%;
    width: min(86%, 430px);
  }

  .about-hero-side-pack--left {
    left: -1%;
    bottom: 8%;
    width: min(44%, 220px);
  }

  .about-hero-side-pack--right {
    right: -1%;
    top: 10%;
    width: min(36%, 180px);
  }

  .about-hero-strip,
  .about-values-grid,
  .about-solutions-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-strip-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(241, 180, 88, 0.16);
  }

  .about-value-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  }

  .about-story-section {
    padding-top: 64px;
  }

  .about-story-copy h2,
  .about-closing-banner-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 0.98;
  }

  .about-story-card {
    padding: 20px 22px;
  }

  .about-journey-section,
  .about-solutions-section {
    padding: 64px 0 72px;
  }

  .about-journey-card {
    padding: 70px 22px 24px;
  }

  .about-closing-banner {
    padding: 24px 22px;
  }

  .hero-story-section {
    padding: 54px 0 68px;
  }

  .hero-story-grid {
    gap: 28px;
  }

  .hero-story-section::before {
    width: 220px;
    height: 220px;
    top: 22px;
    left: -100px;
  }

  .hero-story-section::after {
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -80px;
  }

  .hero-stats,
  .services-grid,
  .services-why-grid,
  .services-industries-grid,
  .services-stat-strip,
  .products-grid,
  .industries-grid,
  .gallery-grid,
  .steps-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .products-showcase .products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card-media {
    min-height: 300px;
  }

  .products-showcase .product-card img {
    max-height: 250px;
  }

  .product-detail-stats {
    grid-template-columns: 1fr;
  }

  .product-detail-feature-grid,
  .product-detail-thumbs {
    grid-template-columns: 1fr;
  }

  .services-hero-frame,
  .services-sustainability-frame {
    min-height: 320px;
    padding: 22px;
  }

  .hero-story-frame {
    min-height: 420px;
    border-radius: 28px;
  }

  .hero-story-frame img {
    padding: 0;
    object-position: center top;
  }

  .hero-story-kicker {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }

  .hero-story-kicker::after {
    display: none;
  }

  .hero-story-kicker-icon {
    width: 40px;
    height: 40px;
  }

  .hero-story-content h2 {
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 9vw, 3.15rem);
    line-height: 0.97;
    text-wrap: pretty;
  }

  .hero-story-line {
    display: block;
  }

  .hero-story-content p {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-story-list {
    margin-bottom: 22px;
    gap: 14px;
  }

  .hero-story-list li {
    min-height: 0;
    align-items: flex-start;
    padding-left: 50px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-story-list li::before {
    top: 1px;
    transform: none;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .hero-story-tail {
    max-width: none;
  }

  .hero-story-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .boxfx {
    inset: -6px -4px -8px -4px;
  }

  .hero-actions,
  .services-hero-actions,
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-categories {
    gap: 8px 18px;
    font-size: 0.92rem;
  }

  .services-hero-copy h1,
  .services-sustainability-copy h2,
  .services-why-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-why-copy {
    padding: 18px 18px 0;
    border-radius: 28px;
  }

  .services-why-lead {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.46 !important;
  }

  .services-why-feature-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
    padding: 14px 0 12px;
  }

  .services-why-product-shot {
    min-height: 138px;
  }

  .services-why-product-shot img {
    width: min(104%, 360px);
    max-width: 100%;
  }

  .services-why-miniicon {
    width: 36px;
    height: 36px;
  }

  .services-why-feature-row strong {
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .service-proof-card {
    min-height: auto;
  }

  .service-proof-top {
    min-height: 74px;
    padding: 16px 18px 0;
  }

  .service-proof-content {
    padding: 0 18px;
  }

  .service-proof-card h3 {
    font-size: 0.98rem;
  }

  .service-proof-card p {
    font-size: 0.84rem;
  }

  .service-proof-visual {
    min-height: 96px;
    padding: 10px 16px 16px;
  }

  .service-proof-big {
    font-size: 3.8rem;
  }

  .service-proof-big--compact {
    font-size: 3.1rem;
  }

  .services-panel-watermark {
    left: 18px;
    bottom: 26px;
  }

  .industry-panel {
    min-height: 150px;
  }

  .hero-divider {
    margin-bottom: 24px;
  }

  .stat-card,
  .stat-card:not(:first-child) {
    padding: 14px 0;
    border-left: 0;
  }

  .stat-card:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 40px;
    max-width: min(260px, 56vw);
  }

  .header-tagline {
    line-height: 1.3;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .about-hero {
    padding: 20px 0 28px;
  }

  .about-breadcrumb {
    margin-bottom: 14px;
    gap: 8px;
    font-size: 0.76rem;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3.15rem);
  }

  .about-hero-summary,
  .about-story-copy p,
  .about-closing-banner-copy p {
    font-size: 0.93rem;
  }

  .about-hero-visual-frame {
    min-height: 330px;
    padding: 18px;
  }

  .about-hero-main-pack {
    width: min(92%, 360px);
  }

  .about-hero-side-pack--left {
    width: min(48%, 170px);
  }

  .about-hero-side-pack--right {
    width: min(38%, 136px);
  }

  .about-hero-strip-item,
  .about-story-card-item {
    align-items: flex-start;
    padding: 18px 18px;
  }

  .about-inline-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .about-story-card {
    padding: 14px 18px;
  }

  .about-journey-section,
  .about-solutions-section {
    padding: 54px 0 60px;
  }

  .about-journey-card strong {
    font-size: 1.7rem;
  }

  .about-journey-card h3,
  .about-solution-copy h3,
  .about-value-item h3 {
    font-size: 1.1rem;
  }

  .about-value-item {
    padding: 24px 18px;
  }

  .about-solution-media {
    height: 180px;
  }

  .about-solution-copy {
    padding: 18px 18px 20px;
  }

  .about-closing-banner {
    padding: 20px 18px;
  }

  .about-closing-banner-media img {
    max-width: 220px;
  }

  .hero-story-section {
    padding: 42px 0 56px;
  }

  .hero-story-grid {
    gap: 22px;
  }

  .hero-story-frame {
    min-height: 0;
    aspect-ratio: 1 / 0.94;
    border-radius: 24px;
  }

  .hero-story-kicker {
    margin-bottom: 16px;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-story-kicker-icon {
    width: 36px;
    height: 36px;
  }

  .hero-story-kicker-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-story-content h2 {
    font-size: clamp(1.85rem, 10.2vw, 2.65rem);
    line-height: 0.99;
  }

  .hero-story-content p {
    font-size: 0.94rem;
  }

  .hero-story-list li {
    padding-left: 44px;
    font-size: 0.91rem;
  }

  .hero-story-list li::before {
    width: 30px;
    height: 30px;
    font-size: 0.92rem;
  }

  .hero-story-cta {
    padding: 15px 20px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 330px;
  }

  .boxfx {
    inset: -4px -2px -6px -2px;
  }

  .product-card img,
  .gallery-card {
    min-height: 240px;
    height: auto;
  }

  .products-showcase .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card-media {
    min-height: 248px;
    padding: 12px 12px 0;
  }

  .products-showcase .product-card img {
    max-height: 210px;
  }

  .product-card-copy {
    padding: 22px 20px 24px;
  }

  .product-card-copy h3,
  .products-showcase .product-card--catalog[data-product-slug="branded-takeaway-packaging"] .product-card-copy h3,
  .products-showcase .product-card--catalog[data-product-slug="branded-solidboard-cartons"] .product-card-copy h3 {
    min-height: 0;
    font-size: 1.28rem;
  }

  .product-card-title-line {
    white-space: normal;
  }

  .product-card-copy p {
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .product-detail-hero {
    padding: 18px 0 32px;
  }

  .product-detail-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
    margin-bottom: 10px;
  }

  .product-breadcrumb {
    margin-bottom: 14px;
    gap: 8px;
    font-size: 0.76rem;
  }

  .product-detail-showcase {
    gap: 24px;
  }

  .product-detail-copy-card,
  .product-detail-offer-card,
  .product-detail-formats-card,
  .detail-point-card,
  .detail-gallery-card,
  .product-detail-range-panel {
    padding: 22px;
  }

  .product-detail-range-cards,
  .product-detail-trust-bar {
    grid-template-columns: 1fr;
  }

  .product-detail-range-card-media {
    min-height: 160px;
    padding: 14px;
  }

  .product-detail-range-card-media img {
    height: 180px;
  }

  .product-detail-range-card-copy {
    padding: 16px 16px 18px;
  }

  .product-detail-range-card-copy h3 {
    font-size: 0.94rem;
  }

  .product-detail-range-card-copy p {
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .product-detail-range-offer-list li {
    font-size: 0.79rem;
    letter-spacing: 0.01em;
  }

  .product-detail-trust-item,
  .product-detail-trust-item:nth-child(-n + 2) {
    margin-bottom: 0;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  }

  .product-detail-trust-item:last-child {
    border-bottom: 0;
  }

  .product-detail-visual-frame {
    min-height: 310px;
    padding: 18px;
  }

  .product-detail-visual-frame img {
    min-height: 235px;
  }

  .product-thumb {
    min-height: 72px;
  }

  .product-detail-table th,
  .product-detail-table td {
    padding: 12px 10px;
    font-size: 0.84rem;
  }

  .section {
    padding: 76px 0;
  }

  .whatsapp-card,
  .footer-cta {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 67px;
    height: 67px;
  }

  .floating-whatsapp img {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boxfx__float {
    animation: none !important;
  }
}
