:root {
  --c-dark: #20384E;
  --c-blue: #5384B6;
  --c-light-blue: #ACCCE5;
  --c-bg: #f8fafc;
  --header-scrolled-bg: rgb(255 255 255 / 88%);
  --product-item-dim-bg: #0f4d97;
  --c-white: #ffffff;
  --c-text: #2c3e50;
  --layout-gutter: max(1.25rem, calc((100vw - min(1440px, 90vw)) / 2));
  --split-gap: clamp(2rem, 4vw, 4rem);

  --font-heading: 'Nunito Sans', system-ui, sans-serif;
  --font-main: 'Figtree', system-ui, sans-serif;
  --transition-fast: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  --transition-slow: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --reveal-duration: 0.82s;
  --reveal-distance: 30px;

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(12px);
  --shadow-soft: 0 20px 40px rgba(32, 56, 78, 0.08);
  --shadow-hover: 0 30px 60px rgba(83, 132, 182, 0.15);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 90px;
}

section[id] {
  scroll-margin-top: -7px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: var(--c-bg);
  box-shadow: inset 0 0 5px rgba(32, 56, 78, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: var(--c-light-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--c-blue);
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Trust / Partners Section */
.trust-section {
  background: var(--c-bg);
  position: relative;
      padding: 3rem 0 6rem;
}

.trust-section .section-heading {
  margin-bottom: 4rem;
  max-width: 65%;
  line-height: 1.05;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  max-width: 100%;
  background: var(--c-white);
  border: 1px solid rgba(32, 56, 78, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(32, 56, 78, 0.04);
}

.trust-logo-card {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 110px;
  transition: background 0.3s ease;
}

.trust-logo-card:not(:first-child) {
  border-left: 1px solid rgba(32, 56, 78, 0.06);
}

.trust-logo-card:hover {
  background: rgba(83, 132, 182, 0.04);
}

.trust-logo-card img {
  display: block;
  max-width: min(180px, 100%);
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}


@media (max-width: 1024px) {
  .trust-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trust-logo-card:not(:first-child) {
    border-left: none;
  }
  .trust-logo-card:nth-child(3n+2),
  .trust-logo-card:nth-child(3n) {
    border-left: 1px solid rgba(32, 56, 78, 0.06);
  }
  .trust-logo-card:nth-child(n + 4) {
    border-top: 1px solid rgba(32, 56, 78, 0.06);
  }
}

@media (max-width: 640px) {
  .trust-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-logo-card {
    padding: 1.25rem 0.75rem;
    min-height: 84px;
  }
  .trust-logo-card img {
    max-height: 56px;
  }
  .trust-logo-card:not(:first-child),
  .trust-logo-card:nth-child(3n+2),
  .trust-logo-card:nth-child(3n) {
    border-left: none;
  }
  .trust-logo-card:nth-child(2n) {
    border-left: 1px solid rgba(32, 56, 78, 0.06);
  }
  .trust-logo-card:nth-child(n + 3) {
    border-top: 1px solid rgba(32, 56, 78, 0.06);
  }
  .trust-section .section-heading {
    max-width: none;
    margin-bottom: 2.5rem;
  }
}

/* Reveal-on-scroll animations */
[data-aos] {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--ease-smooth),
    transform var(--reveal-duration) var(--ease-smooth);
}

[data-aos="fade-up"]    { transform: translate3d(0, var(--reveal-distance), 0); }
[data-aos="fade-down"]  { transform: translate3d(0, calc(var(--reveal-distance) * -1), 0); }
[data-aos="fade-left"]  { transform: translate3d(var(--reveal-distance), 0, 0); }
[data-aos="fade-right"] { transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0); }
[data-aos="zoom-in"]    { transform: scale(0.97); }
[data-aos="zoom-out"]   { transform: scale(1.03); }
[data-aos="fade"]       { transform: none; }

[data-aos].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.section-padding {
  padding: 8rem 0;
}

.relative {
  position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--c-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

.display-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
  line-height: 1;
}

.text-gradient {
  background: linear-gradient(135deg, var(--c-blue), var(--c-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.lead-text {
  font-size: 1.4rem;
  color: rgba(44, 62, 80, 0.8);
  margin-bottom: 3.6rem;
  font-weight: 400;
  line-height: 1.3;
  max-width: 80%;
}

/* Graphic Elements Decoration */
.bg-graphic {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.graphic-about-tl {
  top: 0;
  left: 0;
  width: 563px;
  height: 200px;
  transform: rotate(1deg) translate(-35%, -29%);
  opacity: 0.4;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1),
    background .25s cubic-bezier(.2, .7, .2, 1),
    color .25s cubic-bezier(.2, .7, .2, 1),
    box-shadow .25s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.btn--solid {
  background: var(--c-blue);
  color: var(--c-white);
}

.btn--solid:hover {
  background: var(--c-dark);
  box-shadow: 0 10px 24px -10px rgba(32, 56, 71, .4);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, .55);
}

.btn--outline:hover {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}

.btn--light {
  background: var(--c-white);
  color: var(--c-dark);
  box-shadow: 0 2px 8px rgba(32, 56, 78, .08);
}

.btn--light:hover {
  background: var(--c-bg);
}

.arrow {
  display: inline-flex;
  width: 18px;
  height: 10px;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}

.btn:hover .arrow {
  transform: translateX(5px);
}

/* Header (Transparent by default) */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: transparent;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    backdrop-filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-backdrop-filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 36px 0 14px 0;
}

.glass-header.scrolled {
  background: var(--header-scrolled-bg);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(32, 56, 71, .10);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 54px;
  width: auto;
  transition: var(--transition-fast);
}

/* SVG Colors Default (Transparent Header - Light logo colors) */
.site-logo .st0 {
  fill: #f8f8ed;
  transition: fill 0.3s ease;
}

.site-logo .st1 {
  fill: #5280b4;
  transition: fill 0.3s ease;
}

.site-logo .st2 {
  fill: #accce3;
  transition: fill 0.3s ease;
}

.site-logo .st-text {
  fill: #f8f8ed;
  transition: fill 0.3s ease;
}

/* SVG Colors Scrolled (White Header - Dark logo colors) */
.glass-header.scrolled .site-logo .st0 {
  fill: #afcbe5;
}

.glass-header.scrolled .site-logo .st1 {
  fill: #5280b4;
}

.glass-header.scrolled .site-logo .st2 {
  fill: #22374e;
}

.glass-header.scrolled .site-logo .st-text {
  fill: #22374e;
}

/* Ensure logo remains dark when mobile nav is open and scrolled, but wait, transparent when nav is open means light logo? No, mobile menu background is light, so logo must be dark */
.glass-header.nav-active .site-logo .st0 {
  fill: #afcbe5;
}

.glass-header.nav-active .site-logo .st1 {
  fill: #5280b4;
}

.glass-header.nav-active .site-logo .st2 {
  fill: #22374e;
}

.glass-header.nav-active .site-logo .st-text {
  fill: #22374e;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--c-white);
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  position: relative;
}

.glass-header.scrolled nav a {
  color: var(--c-dark);
}

nav a:hover,
nav a.active {
  color: var(--c-light-blue);
}

.glass-header.scrolled nav a:hover,
.glass-header.scrolled nav a.active {
  color: var(--c-blue);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--c-white);
  transition: var(--transition-fast);
  border-radius: 3px;
}

.glass-header.scrolled .burger-menu span {
  background: var(--c-dark);
}

.glass-header.nav-active .burger-menu span {
  background: var(--c-dark);
}

.glass-header.nav-active .burger-menu span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.glass-header.nav-active .burger-menu span:nth-child(2) {
  opacity: 0;
}

.glass-header.nav-active .burger-menu span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: safe center;
  padding-top: 110px;
  padding-bottom: 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease-in-out;
}

.hero-bg.is-active {
  opacity: 1;
  animation: hero-bg-zoom 7s ease-out forwards;
}

.hero-bg.is-leaving {
  opacity: 0;
  z-index: 2;
  animation: none;
  transform: scale(1);
}

@keyframes hero-bg-zoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg.is-active {
    animation: none;
    transform: scale(1);
  }

  .hero-bg.is-leaving {
    transition-duration: 0.01ms;
  }
}

.glass-overlay,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(32, 56, 78, 0.8) 0%, rgba(32, 56, 78, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--c-white);
}

.content-box {
  max-width: 900px;
}

.content-box h1 {
  color: var(--c-white);
}

.content-box p {
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */

.about {
  padding: 0;
  background: var(--c-bg);
  position: relative;
  z-index: 2;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.about-container {
  position: relative;
  z-index: 2;
}

/* Split layout — full width, image half screen flush to edge */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  min-height: clamp(520px, 62vh, 760px);
}

.split-section__content {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) var(--split-gap) clamp(3rem, 5vw, 5rem) var(--layout-gutter);
}

.split-section__inner {
  width: 100%;
  max-width: 640px;
}

.split-section__media {
  position: relative;
  min-height: 100%;
  align-self: stretch;
}

.split-section__media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}

.about-visual {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem) var(--split-gap);
  box-sizing: border-box;
}

.about-visual .image-collage {
  width: 100%;
}

.split-section--reverse .split-section__content {
  order: 2;
  padding: clamp(3rem, 5vw, 5rem) var(--layout-gutter) clamp(3rem, 5vw, 5rem) var(--split-gap);
}

.split-section--reverse .split-section__media {
  order: 1;
}

.split-section--reverse .split-section__media > img {
  border-radius: 0 24px 24px 0;
}

.about-split .split-section__inner {
  max-width: 680px;
}

.about-heading-block {
  margin-bottom: 3.5rem;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.about-eyebrow-rule {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--c-blue);
}

.about-eyebrow-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
}

.about-main-heading {
  font-family: var(--font-heading);
  margin: 0;
  max-width: 80%;
}

.about-heading-name {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.about-heading-desc {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--c-blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-text > p {
  margin: 0 0 1.35rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(44, 62, 80, 0.92);
  font-size: 1.1rem;
}

.about-text > p.about-mission {
  color: var(--c-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-text > p:last-of-type {
  margin-bottom: 0;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-text ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  color: var(--c-dark);
  font-weight: 500;
  line-height: 1.5;
}

.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235384B6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(32, 56, 78, 0.08);
}

.parallax-img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* About — Image Collage (4 tiles, clean rectangle) */
.image-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 12px;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.collage-tile {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(32, 56, 78, 0.10);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-tile--main {
  grid-column: 1 / 5;
  grid-row: 1 / 5;
  border-radius: 18px 0 0 0;
}

.collage-tile--top {
  grid-column: 5 / 8;
  grid-row: 1 / 4;
  border-radius: 0;
}

.collage-tile--right {
  grid-column: 5 / 8;
  grid-row: 4 / 7;
  border-radius: 0;
}

.collage-tile--bottom {
  grid-column: 1 / 5;
  grid-row: 5 / 7;
  border-radius: 0 0 0 18px;
}

/* Stats Section */

.graphic-stats-bottom {
  bottom: 0;
  right: 0;
  width: 41%;
  height: 40%;
  opacity: 0.5;
  transform: rotate(357deg) translate(37%, 30%);
}

/* Stats (inside first product-item) */
.stats {
  position: relative;
  padding: 4rem 0 0;
  background: transparent;
}

.stats-eyebrow {
  margin-bottom: 3.5rem;
}

.stats-eyebrow,
.product-item-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.stats-eyebrow-line,
.product-item-eyebrow-line {
  flex-shrink: 0;
  width: 2rem;
  height: 2px;
  background: var(--c-blue);
}

.stats-eyebrow-text,
.product-item-eyebrow-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-card {
  background: transparent;
  border: none;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
}

.stat-card:not(:first-child) {
  border-left: 1px solid rgba(32, 56, 78, 0.12);
}

.stat-card .stat-number {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--c-dark);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
}

.stat-plus,
.stat-suffix {
  color: var(--c-blue);
  font-weight: 800;
  margin-left: .5rem;
  font-size: 2.5rem;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--c-blue);
  margin-bottom: 0.75rem;
}

.stat-card .stat-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(44, 62, 80, 0.72);
}

/* Product benefits (feed, ingredients) */
.product-benefits {
  position: relative;
  padding: 4rem 0 0;
}

.product-benefits-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-left: 0.25rem;
}

.product-benefits-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--c-blue);
  opacity: 0.45;
}

.product-benefits-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-blue);
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.product-benefit h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.product-benefit p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(44, 62, 80, 0.78);
}

/* Products Showcase */
.products-showcase {
  position: relative;
}

.products-header-wrap,
.brands-header-wrap {
  background: var(--c-bg);
  padding: 5rem 0 4rem;
}

.products-header-wrap {
  border-radius: 20px 20px 0 0;
}
.products-header {
  position: relative;
  isolation: isolate;
  gap: 4rem;
  align-items: start;
}

.products-header-content .section-heading,
.brands-header .section-heading {
  margin: 0 0 1.75rem;
  line-height: 1.05;
  max-width: 70%;
}

.products-intro,
.brands-intro {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(44, 62, 80, 0.78);
  max-width: 65%;
  margin: 0;
}

.product-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-item-content h2 {
  color: var(--c-dark);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  position: relative;
  z-index: 1;
}

.brand-item-content h2 {
  color: var(--c-dark);
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.product-item .split-section__content,
.brand-item .split-section__content {
  position: relative;
}

.product-item-content,
.brand-item-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.product-item-bg-num {
  position: absolute;
  top: -6rem;
  left: -2rem;
  font-size: clamp(18rem, 34vw, 36rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c-dark);
  opacity: 0.04;
  font-family: var(--font-heading);
  letter-spacing: -0.07em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.product-item:has(.split-section--reverse) .product-item-bg-num {
  left: auto;
  right: -2rem;
}

.product-item-eyebrow {
  margin-bottom: 1rem;
}

.product-item-content p,
.product-item-content ul,
.brand-item-content p {
  position: relative;
  z-index: 1;
}

.product-item-content p:not(.product-item-lead) {
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.product-item-content .product-item-lead {
  font-size: clamp(1.3rem, 1.85vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  opacity: 1;
  margin-bottom: 1.25rem;
}

.product-item:last-child .product-item-content p:not(.product-item-lead) {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.product-item:last-child .product-item-content .product-item-lead {
  color: var(--c-white);
}

.brand-item-content p:has(strong) {
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.45;
  opacity: 1;
  margin-bottom: clamp(0.875rem, 1.5vw, 1.125rem);
}

.brand-item-content p:has(strong) strong {
  font-weight: inherit;
}

.brand-item-content p:not(:has(strong)) {
  font-size: clamp(0.875rem, 1.1vw, 1.0625rem);
  color: rgba(44, 62, 80, 0.65);
  line-height: 1.65;
  opacity: 1;
  margin-bottom: 1rem;
  max-width: 95%;
}

.product-item {
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  background: var(--c-bg);
  overflow: hidden;
}

.product-item:last-child {
  padding-bottom: clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(60% 80% at 100% 0%, rgb(83 132 182 / 0.22) 0%, transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgb(172 204 229 / 0.08) 0%, transparent 65%),
    linear-gradient(140deg, #1a3044 0%, var(--c-dark) 55%, #243f56 100%);
  color: var(--c-white);
  border-radius: 0 0 20px 20px;
}

.product-item:last-child .product-item-bg-num {
  color: var(--c-white);
  opacity: 0.06;
}

.product-item:last-child .product-item-content h2 {
  color: var(--c-white);
}

.product-item:last-child .product-item-eyebrow-line,
.product-item:last-child .stats-eyebrow-line {
  background: var(--c-light-blue);
}

.product-item:last-child .product-item-eyebrow-label,
.product-item:last-child .stats-eyebrow-text {
  color: var(--c-light-blue);
}

.product-item:last-child .split-section + .stats::before,
.product-item:last-child .split-section + .product-benefits::before {
  background: rgba(255, 255, 255, 0.1);
}

.product-item:last-child .stat-card .stat-number {
  color: var(--c-white);
}

.product-item:last-child .stat-card .stat-label {
  color: var(--c-light-blue);
}

.product-item:last-child .stat-card .stat-desc {
  color: rgba(255, 255, 255, 0.72);
}

.product-item:last-child .stat-card:not(:first-child) {
  border-left-color: rgba(255, 255, 255, 0.12);
}

.product-item:last-child .stat-plus,
.product-item:last-child .stat-suffix {
  color: var(--c-light-blue);
}

.product-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--product-item-dim-bg);
  opacity: var(--dim, 0);
  pointer-events: none;
  z-index: 5;
}

.product-item .split-section + .stats,
.product-item .split-section + .product-benefits {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 3rem;
}

.product-item .split-section + .stats::before,
.product-item .split-section + .product-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--layout-gutter);
  right: var(--layout-gutter);
  height: 1px;
  background: rgba(32, 56, 78, 0.08);
}

.product-item:last-child .split-section + .stats,
.product-item:last-child .split-section + .product-benefits {
  padding-bottom: 5rem;
}

.product-item:not(:last-child) {
  border-bottom: 1px solid rgba(32, 56, 78, 0.08);
}

.product-item-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.product-item.reverse .product-item-inner {
  flex-direction: row-reverse;
}

.product-item .split-section__media.product-item-img {
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: auto;
  flex: none;
  width: auto;
  border-radius: 0;
}

.product-item-img {
  flex: 0 0 auto;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(32, 56, 78, 0.1);
  position: relative;
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.product-features {
     list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    margin-top: 2rem;
}

.product-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--c-dark);
  font-weight: 500;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235384B6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Brands section */
.brands-section {
  position: relative;
}

.brands-header {
  margin-bottom: 0;
}

.brand-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-item {
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  background: var(--c-bg);
  overflow: visible;
}

.brand-item .split-section__media > img {
  box-shadow:
    0 40px 80px -30px rgba(15, 30, 50, 0.45),
    0 10px 24px -12px rgba(15, 30, 50, 0.18);
}

.brand-item:last-child {
  padding-bottom: clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(230, 57, 70, 0.18) 0%, transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(180, 35, 45, 0.12) 0%, transparent 65%),
    linear-gradient(140deg, #14141a 0%, #1d1d23 60%, #232328 100%);
  color: var(--c-white);
}

.brand-item:last-child .brand-item-content h2 {
  color: var(--c-white);
}

.brand-item:last-child .brand-item-content p:has(strong) {
  color: rgba(255, 255, 255, 0.92);
}

.brand-item:last-child .brand-item-content p:not(:has(strong)) {
  color: rgba(255, 255, 255, 0.62);
}

.brand-item:last-child .product-item-eyebrow-line {
  background: #e63946;
}

.brand-item:last-child .product-item-eyebrow-label {
  color: rgba(230, 142, 150, 0.95);
}

.brand-item:last-child .brand-item-cta {
  background: var(--c-white);
  color: #14141a;
  border-color: var(--c-white);
}

.brand-item:last-child .brand-item-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: #14141a;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.35);
}

.brand-item:first-child {
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(174, 213, 234, 0.55) 0%, transparent 55%),
    radial-gradient(60% 80% at 100% 100%, rgba(255, 230, 175, 0.35) 0%, transparent 65%),
    linear-gradient(160deg, #eaf3fa 0%, #f4f9f1 100%);
}

.brand-item:not(:last-child) {
  border-bottom: 1px solid rgba(32, 56, 78, 0.08);
}

.brand-item-cta {
  margin-top: 2rem;
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}

.brand-item-cta:hover {
  background: #1a3044;
  border-color: #1a3044;
  color: var(--c-white);
  box-shadow: 0 10px 24px -10px rgba(32, 56, 78, 0.35);
}

/* Products Section — rounded top to match advantages */
.products {
  background: white;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 2;
}

/* Advantages Section */
.advantages {
  position: relative;
  margin-top: -40px;
  margin-bottom: -40px;
  padding-top: calc(6rem + 40px) !important;
  padding-bottom: calc(6rem + 40px) !important;
}

.advantages-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/1.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.advantages-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 43, 61, 0.78) 0%, rgba(24, 43, 61, 0.62) 100%);
  z-index: 1;
}

/* Advantages Header */
.advantages-header {
  text-align: left;
  margin-bottom: 4rem;
  gap: 4rem;
}

.advantages .section-heading {
  color: var(--c-white);
  margin: 0;
      max-width: 50%;
  line-height: 1.05;
  padding-bottom: 2rem;
}

.advantages-intro {
    margin: 0;
    max-width: 50%;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
}

/* Advantages Grid */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.adv-box {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.75rem;
  transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.adv-box:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.adv-box:hover {
  background: rgba(255, 255, 255, 0.04);
}

.adv-bg-num {
  position: absolute;
  top: -0.15em;
  right: 0.3rem;
  font-size: 7.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.adv-icon-wrap {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.adv-box:hover .adv-icon-wrap {
  background: rgba(172, 204, 229, 0.15);
  color: var(--c-white);
}

.adv-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.adv-box h4 {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1.5rem;
      margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.adv-box p {
  position: relative;
  z-index: 1;
      color: rgb(255 255 255 / 87%);  
      font-size: .8rem;
  line-height: 1.55;
}

/* Directions block inside about */
.directions-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(83, 132, 182, 0.16);
}

.directions-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 2rem;
}

.directions-block .product-features {
  margin-bottom: 0;
}

/* Logistics Section */
.logistics-section {
  padding: 5rem 0;
  background: white;
}
.logistics-heading {
  margin-bottom: 1.5rem;
}

.logistics-intro {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--c-dark);
  max-width: 880px;
  margin: 0 0 3rem;
  font-weight: 500;
}

.logistics-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21 / 10;
  width: 100%;
}

.logistics-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logistics-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(32, 56, 78, 0.55) 70%,
    rgba(32, 56, 78, 0.92) 100%
  );
}

.logistics-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem 3rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  z-index: 2;
}

.logistics-col h4 {
  color: var(--c-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.logistics-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .logistics-card {
    aspect-ratio: 4 / 5;
  }
  .logistics-gradient {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 30%,
      rgba(32, 56, 78, 0.7) 55%,
      rgba(32, 56, 78, 0.95) 100%
    );
  }
  .logistics-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 2rem 2rem;
  }
}

@media (max-width: 640px) {
  .logistics-card {
    aspect-ratio: 3 / 4;
  }
  .logistics-content {
    padding: 1.5rem;
  }
  .logistics-col h4 {
    font-size: 1rem;
  }
  .logistics-col p {
    font-size: 0.9rem;
  }
  .logistics-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

/* Site Footer */
.site-footer {
  position: relative;
  background: var(--c-dark);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  color: var(--c-white);
}

.site-footer__watermark {
  position: absolute;
  top: -40px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: url(../images/logo_bg.svg) no-repeat center / contain;
  opacity: 0.14;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 1rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.site-footer__col--brand {
  padding-right: 1rem;
}

.site-footer__col--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__address {
  margin-top: 1.75rem;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo .site-logo {
  height: 48px;
  width: auto;
}

.site-footer__logo .st-text {
  fill: #f8f8ed;
}

.site-footer__logo .st0 {
  fill: #f8f8ed;
}

.site-footer__logo .st1 {
  fill: #5280b4;
}

.site-footer__logo .st2 {
  fill: #accce3;
}

.site-footer__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--c-light-blue);
}

.site-footer__lead {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.site-footer__links--plain {
  margin-top: 1.85rem;
}

.site-footer__links--plain a {
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-footer__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-light-blue);
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: color 0.25s var(--ease-smooth);
}

.site-footer__links a:hover {
  color: var(--c-white);
}

.site-footer__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.site-footer__email {
  display: inline-block;
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0;
  transition: color 0.25s var(--ease-smooth);
}

.site-footer__email:hover {
  color: var(--c-light-blue);
}

.site-footer__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__copy {
  margin: 0;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .site-footer__watermark {
    width: 420px;
    height: 420px;
    left: -120px;
    opacity: 0.1;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    padding: 3.5rem 1.25rem 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .site-footer__watermark {
    width: 320px;
    height: 320px;
    opacity: 0.06;
  }
}

/* Responsive */
@media (max-width: 1200px) {

  .container,
  .header-container {
    width: 92%;
  }

  .stats-grid,
  .product-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }

  .stat-card:not(:first-child) {
    border-left: none;
  }

  .stat-card:nth-child(2n) {
    border-left: 1px solid rgba(32, 56, 78, 0.12);
  }

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

@media (max-width: 1024px) {
  .section-padding {
    padding: 5rem 0;
  }

  .about {
    padding: 0;
  }

  .stats-grid {
    margin-top: 3.5rem;
  }

  .products {
    border-radius: 32px 32px 0 0;
  }

  .advantages {
    margin-top: -32px;
    margin-bottom: -32px;
    padding-top: calc(5rem + 32px) !important;
    padding-bottom: calc(5rem + 32px) !important;
  }

  .products-header-wrap,
  .brands-header-wrap {
    padding: 3rem 0 2rem;
  }

}

@media (max-width: 768px) {

  .container:not(.site-footer__inner),
  .header-container {
    width: 100%;
    padding: 0 1.25rem;
  }

  .site-footer__inner {
    width: 100%;
    padding: 3.5rem 1.25rem 2rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  /* Sections rounded — softer on mobile */
  .about {
    padding: 0;
    border-radius: 0 0 24px 24px;
  }

  .about-heading-block {
    margin-bottom: 2.5rem;
  }

  .about-main-heading {
    max-width: none;
  }

  .about-heading-name {
    margin-bottom: 1.25rem;
  }

  .about-split .split-section__content {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .about-text {
    max-width: none;
  }

  .about-text > p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .directions-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .directions-eyebrow {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .stats-grid {
    margin-top: 2.5rem;
  }

  .products {
    border-radius: 24px 24px 0 0;
  }

  .advantages {
    margin-top: -24px;
    margin-bottom: -24px;
    padding-top: calc(3.5rem + 24px) !important;
    padding-bottom: calc(3.5rem + 24px) !important;
  }

  /* iOS Safari doesn't handle fixed background — fallback to scroll */
  .advantages-bg {
    background-attachment: scroll;
  }

  /* Stats — single column, compact rows */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-benefits {
    padding-top: 3rem;
  }

  .stat-card,
  .stat-card:nth-child(2n) {
    border-left: none !important;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.25rem;
    row-gap: 0.5rem;
    align-items: center;
    padding: 1.5rem 0;
  }

  .stat-card:not(:first-child) {
    border-top: 1px solid rgba(32, 56, 78, 0.12);
    padding-top: 1.5rem;
  }

  .stat-card .stat-number {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 3.5rem;
    letter-spacing: -2px;
    margin-bottom: 0;
  }

  .stat-card .stat-plus,
  .stat-card .stat-suffix {
    font-size: 1.5rem;
    margin-left: 0.25rem;
  }

  .stat-card .stat-label {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
    font-size: 0.75rem;
    letter-spacing: 1.4px;
    line-height: 1.3;
  }

  .stat-card .stat-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* Hero */
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
  }

  .lead-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .btn--outline {
    width: auto;
  }

  .btn:not(.btn--outline) {
    width: 100%;
    justify-content: center;
  }

  /* Header */
  .glass-header {
    padding: 18px 0 10px 0;
  }

  .site-logo {
    height: 42px;
  }

  /* Advantages grid */
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .advantages-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .products-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .products-header-content .section-heading,
  .brands-header .section-heading {
    max-width: none;
  }

  .advantages .section-heading {
    max-width: none;
  }

  .products-intro,
  .brands-intro,
  .advantages-intro,
  .logistics-intro {
    max-width: none;
  }

  .advantages-intro {
    font-size: 1rem;
  }

  .adv-bg-num {
    font-size: 6rem;
  }

  .adv-box {
    padding: 2rem 1.5rem;
  }

  /* Mobile Nav */
  .burger-menu {
    display: flex;
    position: relative;
    z-index: 1003;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    height: 100svh;
    margin: 0;
    padding: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4rem)) 1.5rem 2.5rem;
    box-sizing: border-box;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: circle(0% at calc(100% - 2rem) 2.75rem);
    -webkit-clip-path: circle(0% at calc(100% - 2rem) 2.75rem);
    transition:
      clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.4s ease,
      visibility 0.4s ease;
    overflow: hidden;
  }

  .main-nav::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -25%;
    width: min(90vw, 28rem);
    height: min(70vh, 24rem);
    background: radial-gradient(ellipse at center, rgba(83, 132, 182, 0.14) 0%, transparent 68%);
    pointer-events: none;
  }

  .main-nav::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: min(80vw, 22rem);
    height: min(50vh, 18rem);
    background: radial-gradient(ellipse at center, rgba(172, 204, 227, 0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  body.nav-open .main-nav {
    z-index: 1004;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: circle(150vmax at calc(100% - 2rem) 2.75rem);
    -webkit-clip-path: circle(150vmax at calc(100% - 2rem) 2.75rem);
  }

  .main-nav ul {
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0;
    width: 100%;
    max-width: 22rem;
  }

  .main-nav ul li {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
    border-bottom: 1px solid rgba(32, 56, 78, 0.08);
    transition:
      opacity 0.42s var(--ease-smooth),
      transform 0.42s var(--ease-smooth);
  }

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

  body.nav-open .main-nav ul li {
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .main-nav ul li:nth-child(1) {
    transition-delay: 0.08s;
  }

  body.nav-open .main-nav ul li:nth-child(2) {
    transition-delay: 0.13s;
  }

  body.nav-open .main-nav ul li:nth-child(3) {
    transition-delay: 0.18s;
  }

  body.nav-open .main-nav ul li:nth-child(4) {
    transition-delay: 0.23s;
  }

  body.nav-open .main-nav ul li:nth-child(5) {
    transition-delay: 0.28s;
  }

  .main-nav a {
    display: block;
    padding: 1.1rem 0;
    color: var(--c-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 5vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: color 0.25s ease, padding-left 0.3s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--c-blue);
    padding-left: 0.35rem;
  }

  .glass-header .main-nav a {
    color: var(--c-dark);
  }

  .glass-header .main-nav a::after {
    display: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .main-nav {
      clip-path: none;
      -webkit-clip-path: none;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    body.nav-open .main-nav {
      clip-path: none;
      -webkit-clip-path: none;
    }

    .main-nav ul li {
      transform: none;
      transition: opacity 0.2s ease;
    }

    body.nav-open .main-nav ul li {
      transition-delay: 0s !important;
    }
  }

  .glass-header.nav-active {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom-color: transparent;
    pointer-events: none;
  }

  .glass-header.nav-active.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .glass-header.nav-active .logo,
  .glass-header.nav-active .burger-menu {
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .glass-header {
    z-index: 1005;
  }

}

@media (max-width: 480px) {

  .container:not(.site-footer__inner),
  .header-container {
    padding: 0 1rem;
  }

  .site-footer__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-padding {
    padding: 2.75rem 0;
  }

  .about {
    padding: 0;
    border-radius: 0 0 20px 20px;
  }

  .about-heading-block {
    margin-bottom: 2rem;
  }

  .image-collage {
    gap: 6px;
  }

  .collage-tile--main {
    border-radius: 12px 0 0 0;
  }

  .collage-tile--top {
    border-radius: 0 12px 0 0;
  }

  .collage-tile--right {
    border-radius: 0 0 12px 0;
  }

  .collage-tile--bottom {
    border-radius: 0 0 0 12px;
  }

  .stats-grid {
    margin-top: 2rem;
  }

  .products {
    border-radius: 20px 20px 0 0;
  }

  .advantages {
    margin-top: -20px;
    margin-bottom: -20px;
    padding-top: calc(2.75rem + 20px) !important;
    padding-bottom: calc(2.75rem + 20px) !important;
  }

  .stat-card .stat-number {
    font-size: 3rem;
  }

  .stat-card .stat-plus,
  .stat-card .stat-suffix {
    font-size: 1.25rem;
  }

  .site-logo {
    height: 36px;
  }

  .glass-header {
    padding: 16px 0 8px 0;
  }

  .adv-box {
    padding: 1.75rem 1.25rem;
  }

}

@media (max-width: 1024px) {
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adv-box:nth-child(odd) {
    border-left: none;
  }

  .adv-box:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

}

@media (max-width: 640px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-box {
    border-left: none !important;
  }

  .adv-box:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 992px) {
  .split-section,
  .split-section--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-section__content,
  .split-section--reverse .split-section__content {
    order: 1;
    padding: 2.5rem var(--layout-gutter);
  }

  .split-section__media,
  .split-section--reverse .split-section__media {
    order: 2;
    min-height: clamp(280px, 52vw, 440px);
  }

  .split-section__media > img,
  .split-section--reverse .split-section__media > img {
    border-radius: 20px;
    margin: 0 var(--layout-gutter) 2.5rem;
    width: calc(100% - 2 * var(--layout-gutter));
    height: 100%;
  }

  .about-visual {
    padding: 0 0 2.5rem;
    min-height: auto;
  }

  .about-visual .image-collage {
    margin: 0 var(--layout-gutter);
    width: calc(100% - 2 * var(--layout-gutter));
    aspect-ratio: 4 / 3;
  }

  .collage-tile--top {
    border-radius: 0 18px 0 0;
  }

  .collage-tile--right {
    border-radius: 0 0 18px 0;
  }

  .product-item,
  .brand-item {
    padding: 2.5rem 0;
  }

  .product-item:last-child,
  .brand-item:last-child {
    padding-bottom: 2.5rem;
  }

  .product-item .split-section + .stats,
  .product-item .split-section + .product-benefits {
    margin-top: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .product-item-content h2 {
    margin-bottom: 1rem;
  }

  .brand-item-content h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: 1rem;
  }

  .product-item-content p:not(.product-item-lead) {
    font-size: 1rem;
  }

  .product-item-content .product-item-lead {
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
  }

  .brand-item-content p:has(strong) {
    font-size: clamp(0.975rem, 3.8vw, 1.125rem);
  }

  .brand-item-content p:not(:has(strong)) {
    font-size: clamp(0.875rem, 3.2vw, 0.975rem);
  }

  .product-features li {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .product-item-bg-num {
    top: -3rem;
  }

  .split-section__media > img,
  .split-section--reverse .split-section__media > img {
    border-radius: 16px;
    min-height: 240px;
  }

  .about-visual .image-collage {
    aspect-ratio: 1 / 1;
  }

  .image-collage {
    gap: 8px;
    aspect-ratio: 1 / 1;
  }

  .graphic-about-tl {
    width: min(90vw, 360px);
    height: 140px;
  }

  .product-item .split-section + .stats,
  .product-item .split-section + .product-benefits {
    padding-bottom: 2rem;
  }
}

.legal-page-body {
  background: var(--c-bg);
}

.legal-page-body .glass-header {
  background: var(--header-scrolled-bg);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(32, 56, 71, .10);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.legal-page-body .glass-header .site-logo .st0 {
  fill: #afcbe5;
}

.legal-page-body .glass-header .site-logo .st1 {
  fill: #5280b4;
}

.legal-page-body .glass-header .site-logo .st2 {
  fill: #22374e;
}

.legal-page-body .glass-header .site-logo .st-text {
  fill: #22374e;
}

.legal-page-body .glass-header nav a {
  color: var(--c-dark);
}

.legal-page-body .glass-header nav a:hover,
.legal-page-body .glass-header nav a.active {
  color: var(--c-blue);
}

.legal-page-body .glass-header .burger-menu span {
  background: var(--c-dark);
}

.legal-page {
  padding-top: 120px;
}

.legal-hero {
  padding-bottom: 2rem;
}

.legal-hero-inner {
  max-width: 760px;
}

.legal-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.legal-eyebrow-rule {
  width: 48px;
  height: 2px;
  background: var(--c-blue);
}

.legal-eyebrow-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
}

.legal-intro {
  margin-top: 1rem;
  max-width: 640px;
  color: rgba(32, 56, 78, 0.75);
  font-size: 1.1rem;
}

.legal-content {
  padding-top: 0;
}

.legal-sections {
  display: grid;
  gap: 3rem;
  max-width: 860px;
}

.legal-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--c-dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.legal-files {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.legal-file {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--c-white);
  border: 1px solid rgba(32, 56, 78, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  color: var(--c-dark);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.legal-file:hover {
  border-color: rgba(82, 128, 180, 0.35);
  box-shadow: 0 10px 28px rgba(32, 56, 78, 0.08);
  transform: translateY(-1px);
}

.legal-file-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(82, 128, 180, 0.1);
  color: var(--c-blue);
}

.legal-file-text {
  flex: 1;
  min-width: 0;
}

.legal-file-title {
  display: block;
  font-weight: 600;
  line-height: 1.35;
}

.legal-file-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: rgba(32, 56, 78, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-file-action {
  flex-shrink: 0;
  color: rgba(32, 56, 78, 0.35);
  transition: color 0.3s ease, transform 0.3s ease;
}

.legal-file:hover .legal-file-action {
  color: var(--c-blue);
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 96px;
  }

  .legal-sections {
    gap: 2.25rem;
  }

  .legal-file {
    padding: 1rem 1.1rem;
  }

  .legal-file-action {
    display: none;
  }
}