/**
 * LilaPacks — design tokens, layout, components
 * Typography: Syne (display) + Source Sans 3 (body)
 */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Syne:wght@500;600;700;800&display=swap');

:root {
  /* Semantic surfaces */
  --surface: #ffffff;
  --surface-muted: #f3f4f6;
  --surface-elevated: #fafafa;
  --text: #12141a;
  --text-muted: #5c6473;
  --border: rgba(18, 20, 26, 0.08);
  --border-strong: rgba(18, 20, 26, 0.14);

  /* Brand */
  --primary-lilac: #6d28d9;
  --primary-lilac-hover: #5b21b6;
  --primary-navy: #1e1b4b;
  --accent-yellow: #f5c518;
  --accent-yellow-hover: #e6b800;
  --kraft: #c4956a;
  --dark: #12141a;

  /* Feature / catalog accents */
  --red-soft: #ef4444;
  --black: #0a0a0a;
  --dark-blue: #0f172a;
  --cyan: #06b6d4;
  --orange-soft: #ffedd5;
  --pink-soft: #fce7f3;
  --cyan-soft: #ecfeff;
  --teal-soft: #ccfbf1;
  --light-purple: #f3e8ff;

  /* Typography */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(18, 20, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 20, 26, 0.08);
  --shadow-lg: 0 20px 48px rgba(18, 20, 26, 0.12);
  --transition: 0.22s ease;
  /* Fixed bar offset: logo max-height + .navbar-container padding-block */
  --nav-h: 132px;
  --white: #ffffff;
  --muted: var(--text-muted);
  --bg-light-gray: var(--surface-muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition), background-color var(--transition);
}

ul {
  list-style: none;
}

/* Screen reader only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible — keyboard users */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-input:focus-visible,
.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--primary-lilac);
  outline-offset: 3px;
}

.btn-primary:focus-visible {
  outline-color: var(--primary-navy);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section--tight {
  padding: var(--space-12) 0;
}

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pt-4 { padding-top: var(--space-16); }
.pb-4 { padding-bottom: var(--space-16); }
.pt-1 { padding-top: var(--space-4); }
.pb-2 { padding-bottom: var(--space-8); }
.mt-1 { margin-top: var(--space-4); }
.mb-1 { margin-bottom: var(--space-4); }
.mt-2 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-8); }
.mt-3 { margin-top: var(--space-12); }
.mt-4 { margin-top: var(--space-16); }
.mt-6 { margin-top: 6rem; }
.mb-4 { margin-bottom: var(--space-16); }
.mb-sm { margin-bottom: var(--space-2); }
.mb-xs { margin-bottom: var(--space-1); }
.mt-xs { margin-top: var(--space-1); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.pr-2 { padding-right: 1rem; }
.py-6 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.inline-block { display: inline-block; }
.text-xl { font-size: 1.35rem; }
.p-4 { padding: var(--space-8); }
.p-2 { padding: var(--space-4); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-between { display: flex; justify-content: space-between; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.flex-grow { flex-grow: 1; }
.gap-xs { gap: var(--space-1); }
.gap-1 { gap: var(--space-4); }
.gap-2 { gap: var(--space-8); }

.text-lilac { color: var(--primary-lilac); }
.text-white { color: var(--white); }
.text-light { color: rgba(255, 255, 255, 0.78); }
.text-kraft { color: var(--kraft); }
.text-muted { color: var(--text-muted); }
.text-dark { color: var(--text); }
.text-cyan { color: var(--cyan); }
.text-accent-yellow { color: var(--accent-yellow); }

.bg-white { background-color: var(--surface); }
.bg-light-gray { background-color: var(--surface-muted); }
.bg-red-soft { background-color: var(--red-soft); }
.bg-dark { background-color: var(--dark); }
.bg-black { background-color: var(--black); }
.bg-lilac { background-color: var(--primary-lilac); }
.bg-dark-blue { background-color: var(--dark-blue); }
.bg-orange-soft { background-color: var(--orange-soft); }
.bg-pink-soft { background-color: var(--pink-soft); }
.bg-cyan-soft { background-color: var(--cyan-soft); }
.bg-teal-soft { background-color: var(--teal-soft); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-dark-gradient { background: linear-gradient(165deg, #312e81 0%, #0f172a 100%); }
.bg-kraft-light { background: linear-gradient(135deg, rgba(196, 149, 106, 0.22) 0%, rgba(196, 149, 106, 0.08) 100%); }
.bg-brown-texture {
  background: repeating-linear-gradient(45deg, #c9956f, #c9956f 10px, #bd8a62 10px, #bd8a62 20px);
}

.padding-2 { padding: var(--space-6); }
.padding-4 { padding: var(--space-16); }

.radius-sm { border-radius: var(--radius-sm); }
.radius-md { border-radius: var(--radius-md); }
.radius-lg { border-radius: var(--radius-lg); }

.shadow-xs { box-shadow: 0 1px 3px rgba(18, 20, 26, 0.06); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.border-sm { border: 1px solid var(--border); }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.border-top-sm { border-top: 1px solid var(--border); }
.bt-1 { border-top: 1px solid var(--border); }

.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.06em; }
.lh-relaxed { line-height: 1.65; }

.title-huge { font-size: clamp(2.25rem, 5vw, 3.25rem); letter-spacing: -0.03em; }
.title-large { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
.text-lg { font-size: 1.2rem; }
.text-md { font-size: 1.05rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }
.text-xxs { font-size: 0.7rem; }

.img-fluid { max-width: 100%; height: auto; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* Buttons & badges */
.badge {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}
.badge-accent { background-color: var(--accent-yellow); color: var(--dark); }
.badge-light { background-color: rgba(255, 255, 255, 0.18); color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
  border: none;
}
.btn-primary {
  background-color: var(--primary-lilac);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-lilac-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-secondary {
  background-color: var(--accent-yellow);
  color: var(--dark);
}
.btn-secondary:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-1px);
}
.btn-text-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  border: none;
  cursor: pointer;
  min-height: 44px;
  padding: var(--space-2) var(--space-2);
  font-family: inherit;
  font-size: inherit;
}
.btn-text-icon:hover {
  opacity: 0.85;
}

.btn-icon-link {
  width: 40px;
  height: 40px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--primary-lilac);
  font-size: 1.15rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}
.btn-icon-link:hover {
  background: rgba(109, 40, 217, 0.08);
}

.icon-btn-gray {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f1f4;
  color: var(--dark);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color var(--transition);
}
.icon-btn-gray:hover {
  background: #e4e6ea;
}

/* Site header + navbar */
.site-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(18, 20, 26, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  /* Do not clip oversized logo / focus rings */
  overflow: visible;
}

.navbar.navbar--scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  min-height: var(--nav-h);
  height: auto;
  padding-block: 0;
  box-sizing: border-box;
}

.navbar-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Official logo: transparent PNG — fixed navbar size (matches preview) */
.navbar-brand-logo {
  display: block;
  width: 160px;
  height: 85px;
  margin-top: -34px;
  margin-bottom: -34px;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

/* Hamburger — mobile only */
.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text);
}

/* Three-line icon → X when open */
.nav-menu-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.nav-menu-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu-toggle__bars span {
    transition: none;
  }
}

/* Panel: desktop inline, mobile drawer */
.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-8);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color var(--transition), background-color var(--transition);
}

.nav-links a:hover {
  color: var(--primary-lilac);
  background: rgba(109, 40, 217, 0.08);
}

.nav-actions {
  display: flex;
  gap: var(--space-5);
  align-items: center;
}

.nav-cta {
  white-space: nowrap;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(18, 20, 26, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Current page — pill state (nav only; keeps contrast ≥ AA on lilac tint) */
.nav-links .active-underline {
  color: var(--primary-lilac) !important;
  background: rgba(109, 40, 217, 0.14);
  font-weight: 700;
}

.nav-links .active-underline:hover {
  background: rgba(109, 40, 217, 0.2);
}

@media (max-width: 768px) {
  :root {
    --nav-h: 76px;
  }

  .navbar-brand-logo {
    width: min(200px, 58vw);
    height: auto;
    max-width: min(200px, 58vw);
    max-height: 44px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar-container {
    padding-block: 0;
  }

  .nav-menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-panel {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--space-6);
    background: var(--surface);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-4);
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: var(--space-4) var(--space-2);
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }

  .nav-links .active-underline {
    background: rgba(109, 40, 217, 0.1);
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }

  .nav-actions .nav-cta {
    text-align: center;
    justify-content: center;
  }
}

/* Hero */
.hero-section {
  padding: calc(var(--nav-h) + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 55%);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -15%;
  width: 45%;
  max-width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Landing hero hidden — keep sibling spacing under fixed navbar */
.hero-section {
  display: none !important;
}
.hero-section + .feature-section {
  padding-top: calc(var(--nav-h) + var(--space-16));
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
  line-height: 1.02;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.65;
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  align-items: center;
  margin-bottom: var(--space-8);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  max-width: 36rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text);
  font-weight: 600;
  font-size: 0.8125rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.mock-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  height: 58%;
  background: linear-gradient(145deg, #ddb07a 0%, #b8834e 100%);
  border-radius: 6px;
  box-shadow: -16px 20px 40px rgba(18, 20, 26, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mock-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0.06) 100%);
  border-radius: inherit;
}

.mock-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #2d2a26;
  z-index: 2;
  opacity: 0.88;
}

.box-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

/* Feature / category cards */
.feature-section {
  padding-top: var(--space-16);
}

.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.feature-header .section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-header .section-subtitle {
  margin: 0 auto;
}

.inline-link {
  margin-left: var(--space-2);
  font-weight: 700;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: inherit;
  min-height: 100%;
}
.feature-card-link:focus-visible {
  outline: 2px solid var(--primary-lilac);
  outline-offset: 2px;
}

.feature-img {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mock-brand-text {
  color: var(--white);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.placeholder-items {
  display: flex;
  font-size: 3.5rem;
}

.feature-card-content {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-card-content h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}

.feature-card-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Eco teaser — split layout + proof chips */
.eco-teaser {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) 1.25fr;
  gap: var(--space-10);
  align-items: stretch;
  padding: var(--space-10) var(--space-10);
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(16, 185, 129, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(5, 150, 105, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #ecfdf5 0%, #d1fae5 42%, #f0fdf4 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
}

.eco-teaser__visual {
  position: relative;
  min-height: 200px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  gap: var(--space-4);
}

.eco-teaser__mesh {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(5, 150, 105, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 150, 105, 0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.eco-teaser__glyph {
  position: relative;
  z-index: 1;
  font-size: 3.25rem;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(5, 150, 105, 0.25));
}

.eco-teaser__chips {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  max-width: 200px;
}

.eco-teaser__chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
}

.eco-teaser__chip strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.02em;
  text-transform: none;
}

.eco-teaser__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  min-width: 0;
}

.eco-teaser__copy {
  max-width: 38rem;
}

.eco-teaser__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.eco-teaser__btn {
  flex-shrink: 0;
}

/* Digital split */
.digital-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-8);
  border: 1px solid var(--border);
}

.digital-feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.d-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.2rem;
}

.digital-right {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

/* Digital panel — package + QR nodes + orbit (physical ↔ digital) */
.abstract-graphic {
  position: relative;
  width: min(280px, 88vw);
  height: min(280px, 88vw);
  aspect-ratio: 1;
}

.abstract-graphic__aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(56, 189, 248, 0.25) 0%, transparent 40%);
  opacity: 0.85;
  filter: blur(2px);
}

.abstract-graphic__grid {
  position: absolute;
  inset: 8%;
  border-radius: var(--radius-md);
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

.abstract-graphic__package {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 42%;
  transform: translate(-50%, -50%) rotate(-6deg);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(226, 232, 240, 0.95) 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.abstract-graphic__qr {
  position: absolute;
  width: 22%;
  height: 22%;
  border: 2px solid rgba(15, 23, 42, 0.85);
  border-radius: 4px;
  box-sizing: border-box;
}

.abstract-graphic__qr::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.9) 2px,
    transparent 2px,
    transparent 5px
  );
  opacity: 0.35;
  border-radius: 2px;
}

.abstract-graphic__qr--tl {
  left: 8%;
  top: 8%;
}

.abstract-graphic__qr--tr {
  right: 8%;
  top: 8%;
}

.abstract-graphic__qr--bl {
  left: 8%;
  bottom: 8%;
}

.abstract-graphic__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.abstract-graphic__nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abstract-graphic__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 16px rgba(245, 197, 24, 0.75);
}

.abstract-graphic__node:nth-child(1) {
  top: 12%;
  left: 18%;
}

.abstract-graphic__node:nth-child(2) {
  top: 22%;
  right: 14%;
}

.abstract-graphic__node:nth-child(3) {
  bottom: 20%;
  left: 12%;
}

.abstract-graphic__node:nth-child(4) {
  bottom: 14%;
  right: 20%;
}

.abstract-graphic__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .abstract-graphic__orbit {
    animation: abstract-orbit-drift 22s linear infinite;
  }
}

@keyframes abstract-orbit-drift {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Solutions page hero */
.solutions-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--space-12)) 0 var(--space-16);
  color: var(--white);
  overflow: hidden;
}

.solutions-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(109, 40, 217, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(6, 182, 212, 0.2) 0%, transparent 45%),
    linear-gradient(165deg, #1e1b4b 0%, var(--dark-blue) 48%, #020617 100%);
  z-index: 0;
}

.solutions-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.solutions-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.42fr);
  gap: var(--space-12);
  align-items: center;
}

.solutions-hero__copy {
  text-align: left;
  max-width: 36rem;
}

.solutions-hero__badge {
  display: inline-block;
  margin-bottom: var(--space-3);
}

.solutions-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.solutions-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-6);
}

.solutions-hero__cta {
  display: inline-flex;
}

.solutions-hero__viz {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 240px;
}

.solutions-hero__dieline {
  position: relative;
  width: 140px;
  height: 140px;
  transform: rotateX(12deg) rotateY(-18deg);
  transform-style: preserve-3d;
  perspective: 400px;
}

.solutions-hero__fold {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
}

.solutions-hero__fold--1 {
  inset: 10% 28% 38% 10%;
}

.solutions-hero__fold--2 {
  inset: 10% 10% 38% 52%;
  background: rgba(255, 255, 255, 0.08);
}

.solutions-hero__fold--3 {
  inset: 64% 10% 10% 10%;
  background: rgba(255, 255, 255, 0.18);
}

.solutions-hero__cut {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 2px;
  height: 36%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-yellow), rgba(245, 197, 24, 0.2));
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.5);
}

.solutions-hero__viz-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0;
  max-width: 12rem;
}

.abstract-line-2::before {
  content: '';
  position: absolute;
  left: 0;
  top: -15px;
  width: 2px;
  height: 15px;
  background: var(--white);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  align-items: start;
}

.icon-leaf {
  font-size: 1.75rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--space-2);
}

/* Portfolio grid */
.portfolio-section {
  background: var(--surface-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.portfolio-card__media {
  aspect-ratio: 4 / 3;
  background: var(--surface-muted);
  position: relative;
  overflow: hidden;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__body {
  padding: var(--space-4) var(--space-5);
}

.portfolio-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-lilac);
  margin-bottom: var(--space-1);
}

/* Insights */
.insights-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.insight-row-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.row-card-img {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  min-height: 200px;
}

.abstract-blocks {
  width: 60%;
  height: 60%;
  display: flex;
  justify-content: space-between;
  gap: 10%;
}

.abstract-blocks::before,
.abstract-blocks::after {
  content: '';
  width: 30%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.icon-logistics {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--cyan);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
}

.read-more:hover {
  color: var(--text);
  text-decoration: underline;
}

.w-16 { width: 4rem; }
.h-16 { height: 4rem; }

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
}

.newsletter-form {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
}

.newsletter-form .form-input {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
}

.newsletter-form .newsletter-submit {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  min-width: 48px;
  min-height: 48px;
  padding: 0 var(--space-4);
  background: var(--primary-lilac);
  color: var(--white);
  border: 1px solid var(--primary-lilac);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color var(--transition);
}
.newsletter-form .newsletter-submit:hover {
  background: var(--primary-lilac-hover);
}

/* Catalog */
.catalog-layout {
  max-width: 1180px;
  padding: 0 var(--space-6);
}

.catalog-header {
  display: flex;
  flex-direction: column;
}

.catalog-main-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.catalog-grid-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-10);
  align-items: start;
}

.filter-title {
  margin-bottom: var(--space-3);
}

.custom-checkbox,
.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  user-select: none;
}

.custom-checkbox input,
.custom-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  height: 17px;
  width: 17px;
  background: var(--surface);
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: var(--space-3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.custom-radio .radiomark {
  height: 17px;
  width: 17px;
  background: var(--surface);
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: var(--space-3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.custom-checkbox input:checked ~ .checkmark {
  background: var(--primary-lilac);
  border-color: var(--primary-lilac);
}

.custom-checkbox input:checked ~ .checkmark::after {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.custom-radio input:checked ~ .radiomark::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-lilac);
}

.price-slider-wrap {
  width: 100%;
}

.slider-track {
  width: 100%;
  height: 4px;
  background: #e8eaef;
  border-radius: 2px;
  position: relative;
  margin: 10px 0;
}

.slider-fill {
  position: absolute;
  left: 0;
  width: 60%;
  height: 100%;
  background: var(--primary-lilac);
  border-radius: 2px;
}

.slider-thumb {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--primary-lilac);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.product-item {
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-item-img {
  height: 220px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.absolute-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  margin: 0;
}

.mock-product {
  font-size: 4rem;
  z-index: 1;
}

.mock-box-solid {
  position: absolute;
  bottom: 20%;
  width: 120px;
  height: 80px;
  background: #e2b27b;
  border-radius: 4px;
  transform: perspective(200px) rotateX(10deg);
  box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.1);
}

.mock-box-solid::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: #f1d4b3;
  border-radius: 4px 4px 0 0;
  transform: skewX(45deg);
  transform-origin: top;
}

.mock-box-solid::after {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 15px;
  height: 100%;
  background: #c59966;
  border-radius: 0 4px 4px 0;
  transform: skewY(45deg);
  transform-origin: right;
}

/* Product page */
.product-split {
  min-height: 500px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--text);
}

.btn-qty {
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background-color var(--transition);
}

.btn-qty:hover {
  background: #e8eaef;
}

.qty-input {
  height: 44px;
  outline: none;
  border: 1px solid var(--border);
}

.w-full {
  width: 100%;
}

.block {
  display: block;
}

/* Quote */
.quote-layout {
  max-width: 1020px;
}

.quote-grid {
  align-items: stretch;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 0.8rem var(--space-4);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--surface);
}

.form-input:focus {
  border-color: var(--primary-lilac);
}

.form-row {
  align-items: start;
}

.custom-select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="gray" viewBox="0 0 16 16"><path d="M4 6h8l-4 5z"/></svg>') no-repeat right 1rem center;
  background-size: 12px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
  .feature-card:hover,
  .portfolio-card:hover,
  .product-item:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .trust-strip {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrapper {
    max-width: 440px;
    margin: 0 auto;
    padding-bottom: 90%;
  }

  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-split-card {
    grid-template-columns: 1fr;
  }

  .eco-teaser {
    grid-template-columns: 1fr;
    padding: var(--space-8);
    gap: var(--space-8);
  }

  .eco-teaser__visual {
    min-height: 180px;
    order: -1;
  }

  .eco-teaser__body {
    text-align: center;
    align-items: center;
  }

  .eco-teaser__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .eco-teaser__cta {
    justify-content: center;
    width: 100%;
  }

  .eco-teaser__chips {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .eco-teaser__chip {
    flex: 1 1 auto;
    min-width: 100px;
    max-width: 140px;
    text-align: center;
  }

  .solutions-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }

  .solutions-hero__copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-hero__cta {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }

  .insight-row-card {
    flex-direction: column;
  }

  .row-card-img {
    width: 100%;
    height: 200px;
    min-height: 180px;
  }

  .catalog-grid-layout {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    text-align: center;
    margin-bottom: var(--space-5);
  }

  .footer-brand {
    padding-right: 0;
  }

  .newsletter-form {
    max-width: 320px;
    margin: 0 auto;
  }

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