/* SIA Matrixx — Landing Styles */

:root {
  --white: #ffffff;
  --navy: #1a365d;
  --navy-light: #2a4a7f;
  --navy-dark: #0f2440;
  --grey: #f2f4f7;
  --grey-mid: #e2e8f0;
  --dark: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-red: #e53e3e;
  --lime: #84cc16;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26, 54, 93, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0;
}

.section-title::after,
.brands__title::after,
.b2b-partners__title::after,
.logistics__title::after,
.about__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: #38bdf8;
  margin-top: 12px;
  margin-bottom: 16px;
}

.b2b-partners__header .b2b-partners__title::after,
.categories__header .section-title::after,
.contact__header .section-title::after,
.faq__inner > .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.brands__title::after {
  margin-bottom: 48px;
}

.section-title--light { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
}

.section-desc--light { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn--primary {
  background: var(--accent-red);
  color: var(--white);
}
.btn--primary:hover { background: #c53030; color: var(--white); transform: translateY(-1px); }

.btn--secondary {
  background: var(--accent);
  color: var(--white);
}
.btn--secondary:hover { background: var(--accent-hover); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo__img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--navy); }

.nav { display: flex; align-items: center; gap: 32px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.nav__link:hover { color: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background-color: var(--white);
  background-image:
    url('../images/decor/background-top.jpg'),
    url('../images/decor/background-bottom.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom;
  background-size: 110rem auto;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 20px;
}

.hero__text {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__car {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* About */
.about {
  position: relative;
  z-index: 2;
  padding: 150px 0;
  background-color: var(--navy);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/about-bg.jpg') center / cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.92) 0%,
    rgba(26, 54, 93, 0.82) 55%,
    rgba(15, 36, 64, 0.88) 100%
  );
  z-index: 1;
}

.about__decor {
  display: block;
  position: absolute;
  z-index: 3;
  width: max(100vw, 4185px);
  height: 78px;
  object-fit: fill;
  pointer-events: none;
}

.about__decor--top {
  top: -29px;
  left: 50%;
}

.about__corner {
  position: absolute;
  left: 48%;
  bottom: -29px;
  z-index: 3;
  display: block;
  width: 120em;
  max-width: none;
  height: 78px;
  object-fit: fill;
  pointer-events: none;
}

.about__inner {
  position: relative;
  z-index: 4;
  padding: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: start;
}

.about__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
}

.about__title::after {
  margin-bottom: 24px;
}

.about__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.about__col--right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.about__highlights {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
  padding-top: 8px;
}

.about__highlight {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
}

.about__highlight:first-child {
  padding-left: 0;
}

.about__highlight-key {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.about__highlight-val {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.about__highlight-divider {
  width: 1px;
  background: rgba(125, 211, 252, 0.65);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 48px;
}

/* Services — Volmet .about2 */
.services {
  position: relative;
  z-index: 1;
  padding: 80px 0 16em;
  background: url('../images/about-img.jpg') no-repeat center bottom -2em, rgb(235, 235, 235);
  background-size: auto 28em;
}

.services::before {
  content: '';
  position: absolute;
  right: 48%;
  bottom: -5px;
  width: 120em;
  height: 78px;
  background: url('../images/decor/decor-white-inside-bottom.svg') no-repeat right bottom;
  background-size: 100% auto;
  z-index: 2;
  pointer-events: none;
}

.services__inner {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 20px 8px;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  color: #0059a3;
  flex-shrink: 0;
  align-self: center;
}

.service-card__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #003366;
  line-height: 1.35;
  margin: 0 auto 24px;
  min-height: 60px;
  text-align: center;
  width: 100%;
}

.service-card__text {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  flex: 1;
  width: 100%;
  margin-bottom: 8px;
}

.service-card__accent {
  display: block;
  width: 64px;
  height: 4px;
  background: #38bdf8;
  margin: 20px auto 0;
  align-self: center;
}

/* Brands */
.brands {
  padding: 72px 0 80px;
  background: var(--white);
}

.brands__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 24px;
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 134px;
  padding: 11px 17px;
}

.brands__item img {
  max-width: 100%;
  max-height: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* B2B Partners */
.b2b-partners {
  padding: 80px 0 88px;
  background: var(--white);
}

.b2b-partners__header {
  text-align: center;
  margin-bottom: 48px;
}

.b2b-partners__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #000;
  margin-bottom: 0;
}

.b2b-partners__subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  color: #111827;
}

.b2b-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.b2b-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 54, 93, 0.1);
}

.b2b-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.b2b-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.2vw, 28px);
}

.b2b-card__title {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: #003399;
  margin-bottom: 14px;
}

.b2b-card__text {
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.55;
  color: #1a365d;
}

.b2b-card__text strong {
  font-weight: 700;
  color: #003399;
}

/* Categories */
.categories {
  padding: 72px 0 80px;
  background: var(--white);
}

.categories__header {
  text-align: center;
  margin-bottom: 48px;
}

.categories__header .section-title {
  color: #000;
  font-size: clamp(34px, 4.6vw, 46px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.categories__header .section-desc {
  margin: 0 auto;
  max-width: 620px;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 48px;
}

.category-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 20px;
  min-height: 0;
}

.category-card__content {
  order: 1;
  min-width: 0;
}

.category-card__media {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.category-card__media img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-card__title {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.category-card__text {
  font-size: 14px;
  line-height: 1.4;
  color: #8b8f98;
}

/* Why Partner */
.why {
  padding: 80px 0;
  background: rgb(235, 235, 235);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-4px); }

.why-card__img {
  height: 180px;
  overflow: hidden;
}

.why-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card__body { padding: 24px; }

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.why-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-red);
}

/* Slider */
.slider-section {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

.slider-section__inner { position: relative; z-index: 1; }

.slider { position: relative; }

.slider__track {
  position: relative;
  min-height: 416px;
}

.slider__slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.slider__slide.active { display: grid; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.slider__label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.slider__title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.slider__text {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  max-width: 440px;
}

.slider__dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition);
}

.slider__dot.active { background: var(--white); }

.slider__dot:hover { background: rgba(255,255,255,0.6); }

.slider__dot.active:hover { background: var(--white); }

.slider__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slider__visual img {
  max-height: 364px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.slider__more {
  margin-top: 32px;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* Logistics */
.logistics {
  padding: 96px 0;
  background: var(--white);
}

.logistics__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.logistics__title {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.logistics__title::after {
  margin-bottom: 28px;
}

.logistics__text {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-light);
  max-width: 34rem;
}

.logistics__note {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-light);
  max-width: 34rem;
}

.logistics__card {
  background: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
}

.logistics__row {
  display: grid;
  grid-template-columns: minmax(140px, 34%) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 40px);
  border-bottom: 1px solid #e8e8e8;
}

.logistics__row:last-child {
  border-bottom: none;
}

.logistics__row-title {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.logistics__row-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--text-light);
}

/* Contact */
.contact {
  padding: 80px 0;
  background: var(--grey);
}

.contact__header {
  text-align: center;
  margin-bottom: 48px;
}

.contact__details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.contact__item svg { color: var(--accent); flex-shrink: 0; }

.contact__form-wrap {
  position: relative;
}

/* Form */
.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__row .form__group { margin-bottom: 0; }

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__label .required { color: var(--accent-red); }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  transition: border-color var(--transition);
  background: var(--white);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form__input.error,
.form__select.error,
.form__textarea.error { border-color: var(--accent-red); }

.form__error {
  font-size: 12px;
  color: var(--accent-red);
  margin-top: 4px;
  min-height: 18px;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
}

.form__checkbox input { margin-top: 3px; flex-shrink: 0; }

.form__success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form__success.visible { display: block; }
.form__success svg { color: #22c55e; margin: 0 auto 16px; }
.form__success h3 { color: var(--navy); margin-bottom: 8px; }

/* FAQ */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.faq__list {
  margin-top: 40px;
  text-align: left;
}

.faq__item {
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.active { border-color: var(--accent); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq__question:hover { background: var(--grey); }

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq__item.active .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer__links a:hover { color: var(--white); }

.footer__contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* Legal pages */
.legal-page {
  padding: 120px 0 80px;
  background: var(--white);
}

.legal-page h1 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-page ul { padding-left: 24px; margin-bottom: 16px; }

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal__table th,
.legal__table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--grey-mid);
  font-size: 14px;
}

.legal__table th {
  background: var(--grey);
  font-weight: 600;
  color: var(--navy);
}

.legal-disclaimer {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-mid);
}

/* Detail / redirect pages */
.detail-page {
  padding: 100px 0 80px;
  background: var(--white);
}

.detail-page__hero {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.detail-page__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.detail-page h1 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.detail-page__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 32px;
}

.detail-page h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 14px;
}

.detail-page p,
.detail-page li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

.detail-page ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.detail-page__cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-mid);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.why__intro {
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    background-size: 90rem auto;
  }

  .hero__grid,
  .logistics__grid,
  .slider__slide.active { grid-template-columns: 1fr; }

  .categories__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .category-card {
    grid-template-columns: minmax(0, 1fr) auto;
    text-align: left;
  }

  .category-card__content {
    max-width: none;
    margin: 0;
  }

  .brands__grid { grid-template-columns: repeat(4, 1fr); }

  .services {
    background-size: auto 25em;
    padding-bottom: 20em;
  }

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

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    gap: 20px;
  }

  .nav__list.open { right: 0; }

  .nav__toggle { display: flex; }

  .service-card__title {
    min-height: auto;
    font-size: 18px;
  }

  .services__grid,
  .about__grid,
  .why__grid,
  .b2b-partners__grid { grid-template-columns: 1fr; }

  .services {
    background-size: auto 20em;
    padding-bottom: 15em;
  }

  .logistics__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brands__grid { grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }

  .categories {
    padding: 72px 0;
  }

  .categories__header {
    margin-bottom: 42px;
  }

  .categories__grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .category-card {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .category-card__content {
    order: 1;
    max-width: none;
    margin: 0;
  }

  .category-card__media {
    order: 2;
    justify-content: flex-start;
  }

  .category-card__media img {
    max-width: 100%;
  }

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

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

  .contact__details { flex-direction: column; align-items: center; gap: 16px; }

  .hero { padding: 120px 0 80px; }

  .about {
    padding: 72px 0;
  }

  .about__highlights {
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .about__highlight-divider {
    width: 72px;
    height: 1px;
    min-height: 1px;
    align-self: flex-start;
  }

  .about__highlight {
    padding: 0;
  }

}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
