/* =========================================================
   AMANEX — Site Styles
   ========================================================= */

:root {
  --red: #b91d1d;
  --red-dark: #9a1818;
  --cream: #fdfbf4;
  --cream-deep: #f5f2e8;
  --charcoal: #2f2f2f;
  --ink: #333333;
  --muted: #6b6b6b;
  --line: #d9d4c8;
  --white: #ffffff;
  --header-h: 88px;
  --container: 1240px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[data-aos] {
  pointer-events: auto;
}

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

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(185, 29, 29, 0.08), transparent 55%),
    var(--cream);
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader__logo {
  width: min(200px, 52vw);
  height: auto;
  animation: preloaderPulse 1.4s var(--ease) infinite;
}

.preloader__spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid rgba(47, 47, 47, 0.12);
  border-top-color: var(--red);
  animation: preloaderSpin 0.75s linear infinite;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.97);
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.35rem;
  border-radius: 3px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn--sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 244, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 0.35s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(253, 251, 244, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.1);
}

.site-header.is-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  transition: min-height 0.3s ease;
}

.site-header.is-scrolled .site-header__inner {
  min-height: calc(var(--header-h) - 14px);
}

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

.logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled .logo img {
  height: 42px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--red);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__chevron {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  padding: 0.4rem 0.2rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lang-switch svg {
  width: 16px;
  height: 16px;
}

.lang-switch__chevron {
  transition: transform 0.2s ease;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown.is-open .lang-switch__chevron {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47, 47, 47, 0.12);
  z-index: 120;
}

html[dir="rtl"] .lang-dropdown__menu {
  right: auto;
  left: 0;
}

.lang-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-dropdown__option:hover,
.lang-dropdown__option:focus-visible {
  background: var(--cream-deep);
  color: var(--red);
  outline: none;
}

.lang-dropdown__option.is-active {
  background: rgba(185, 29, 29, 0.08);
  color: var(--red);
}

.lang-dropdown__code {
  min-width: 1.4rem;
  font-weight: 600;
}

.lang-dropdown__name {
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-h));
  padding: 3.25rem 0 2.25rem;
  overflow: hidden;
  background-color: var(--cream);
  background-image: url("../Images/HeroBG.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
  min-height: 580px;
}

.hero__content {
  max-width: 560px;
  padding-bottom: 1rem;
  align-self: center;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.15rem;
}

.hero__title span {
  display: block;
  color: var(--red);
}

.hero__lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
}

.trust-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--charcoal);
  margin-top: 1px;
}

.trust-item__icon svg {
  width: 100%;
  height: 100%;
}

.trust-item__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s var(--ease) 0.12s both;
}

/* Hero person */
.hero__visual {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -0.15rem;
  animation: fadeIn 1s var(--ease) 0.15s both;
}

.hero__person {
  position: relative;
  z-index: 2;
  width: min(120%, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-right: -1rem;
}

.hero__person img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(47, 47, 47, 0.18));
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 560px;
  padding-bottom: 1rem;
  align-self: center;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero__person-placeholder {
  width: 100%;
  height: 85%;
  margin-top: auto;
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(47, 47, 47, 0.22);
  background: transparent;
  color: rgba(107, 107, 107, 0.75);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
}

/* ---------- Stats bar ---------- */

.stats-bar {
  position: relative;
  z-index: 5;
  margin-top: 0;
  background: var(--cream-deep);
  border-radius: 10px;
  padding: 1.35rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(47, 47, 47, 0.05);
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding-right: 0.5rem;
}

.stat:not(:last-child) {
  border-right: 1px solid rgba(185, 29, 29, 0.15);
}

.stat__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--red);
}

.stat__icon svg {
  width: 100%;
  height: 100%;
}

.stat__text {
  min-width: 0;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.1;
}

.stat__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.25;
  margin-top: 0.15rem;
}

.stat--location .stat__value {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Shared section helpers ---------- */

.section {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.15;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
  transition: gap 0.25s var(--ease);
}

.section-link svg {
  width: 16px;
  height: 16px;
}

.section-link:hover {
  gap: 0.7rem;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(47, 47, 47, 0.2);
  background: rgba(245, 242, 232, 0.55);
  color: rgba(107, 107, 107, 0.8);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.img-placeholder--tall {
  min-height: 280px;
}

/* ---------- Trust panel ---------- */

.trust-section {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  background: var(--white);
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem 1.1rem;
  background: var(--cream-deep);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}

.trust-card {
  min-width: 0;
  text-align: left;
}

.trust-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 0.85rem;
}

.trust-card__icon svg {
  width: 100%;
  height: 100%;
}

.trust-card__title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.trust-card__text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- Categories ---------- */

.categories-section {
  background: var(--cream);
  padding-top: 2.75rem;
  padding-bottom: 3.25rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(47, 47, 47, 0.1);
}

.category-card__media {
  aspect-ratio: 1 / 1.05;
  background: #f7f5ef;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 1.1rem;
  min-height: 96px;
}

.category-card__copy {
  min-width: 0;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.category-card__desc {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.category-card__btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  transition: background 0.25s var(--ease);
}

.category-card__btn svg {
  width: 15px;
  height: 15px;
}

.category-card:hover .category-card__btn {
  background: var(--red-dark);
}

/* ---------- Numbers + Why ---------- */

.highlight-section {
  background: var(--cream);
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.numbers-card {
  background: #0f241f;
  color: var(--white);
  border-radius: 14px;
  padding: 1.75rem 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.numbers-card__title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 0.55rem;
}

.numbers-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--red);
}

.numbers-card__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.number-item {
  padding-right: 0.75rem;
  min-width: 0;
}

.number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.number-item__icon {
  display: block;
  width: 26px;
  height: 26px;
  color: #8fb5a4;
  margin-bottom: 0.7rem;
}

.number-item__icon svg {
  width: 100%;
  height: 100%;
}

.number-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.number-item__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}

.why-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.05);
}

.why-card__content {
  padding: 1.75rem 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 0.55rem;
}

.why-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--red);
}

.why-list {
  display: grid;
  gap: 0.7rem;
}

.why-list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.4;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.95rem;
  height: 0.95rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.2 8.2 3 3 6.4-6.6' stroke='%23b91d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.why-card__media {
  position: relative;
  min-height: 100%;
}

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

.why-card__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

.why-card__media .img-placeholder {
  border: none;
  border-radius: 0;
  min-height: 100%;
}

/* ---------- Industries ---------- */

.industries-section {
  background: var(--white);
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-eyebrow--center {
  justify-content: center;
}

.section-eyebrow--center::before {
  width: 36px;
}

.section-eyebrow--center::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}

.section-title span {
  color: var(--red);
}

.section-lead {
  max-width: 42rem;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.85rem;
}

.industry-card {
  position: relative;
  display: block;
  aspect-ratio: 0.72;
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
  background: #1a1a1a;
}

.industry-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  min-height: 0;
}

.industry-card__bg::after {
  content: none;
}

.industry-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem 0.75rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  z-index: 1;
}

.industry-card__icon {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.industry-card__icon svg {
  width: 100%;
  height: 100%;
}

.industry-card__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.industry-card:hover {
  transform: translateY(-3px);
  transition: transform 0.3s var(--ease);
}

/* ---------- Brands ---------- */

.brands-section {
  background: var(--cream);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.brands-panel {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem 0.5rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.05);
  margin-top: 1.25rem;
}

.brand-item {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.brand-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}

.brand-item__placeholder,
.brand-item img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a7a7a;
  text-align: center;
}

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

/* ---------- Certify + Commitment ---------- */

.certify-section {
  background: #eef0ee;
  padding-top: 2rem;
  padding-bottom: 2.25rem;
}

.certify-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.certify-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.85rem 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 36, 31, 0.04);
  border: none;
}

.certify-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f241f;
  margin-bottom: 0.55rem;
  line-height: 1.15;
}

.certify-block__lead {
  margin: 0 0 1.5rem;
  max-width: 38rem;
  text-align: left;
  color: #3d534c;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cert-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0 0.45rem;
  position: relative;
  min-width: 0;
}

.cert-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8%;
  bottom: 18%;
  width: 1px;
  background: rgba(15, 36, 31, 0.12);
}

.cert-item__badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #0f241f;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f241f;
  background: transparent;
  line-height: 1.1;
  text-align: center;
  padding: 0.2rem;
  word-break: break-word;
}

.cert-item__badge--hex {
  border-radius: 10px;
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  border: none;
  background: #ffffff;
  box-shadow: inset 0 0 0 1.5px #0f241f;
}

.cert-item__badge--shield {
  border-radius: 8px 8px 12px 12px;
  width: 46px;
  height: 52px;
}

.cert-item__badge--cog {
  border-radius: 12px;
}

.cert-item__badge--triangle {
  clip-path: polygon(50% 6%, 94% 88%, 6% 88%);
  border: none;
  border-radius: 0;
  box-shadow: inset 0 0 0 1.5px #0f241f;
  padding-top: 0.85rem;
}

.cert-item__label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f241f;
  line-height: 1.25;
}

.commitment-card {
  position: relative;
  display: block;
  background: #0f241f;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  color: var(--white);
}

.commitment-card__content {
  padding: 1.85rem 1.25rem 1.85rem 1.65rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58%;
  min-height: 320px;
}

.commitment-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  padding-top: 0.65rem;
  position: relative;
  width: fit-content;
}

.commitment-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.commitment-list {
  display: grid;
  gap: 1.15rem;
}

.commitment-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.commitment-list__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.1rem;
}

.commitment-list__icon svg {
  width: 100%;
  height: 100%;
}

.commitment-list h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.commitment-list p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.commitment-card__media {
  position: absolute;
  inset: 0 0 0 38%;
  min-height: 100%;
  z-index: 1;
}

.commitment-card__media .img-placeholder {
  border: none;
  background: linear-gradient(135deg, #1a3a32, #0c1c18);
  color: rgba(255, 255, 255, 0.35);
  min-height: 100%;
}

.commitment-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f241f 0%, rgba(15, 36, 31, 0.72) 28%, rgba(15, 36, 31, 0.15) 58%, transparent 78%);
  z-index: 1;
  pointer-events: none;
}

.commitment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top;
}

/* ---------- Bottom stats ---------- */

.bottom-stats-section {
  background: var(--cream);
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

.bottom-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.05);
}

.bottom-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding-right: 0.5rem;
}

.bottom-stat:not(:last-child) {
  border-right: 1px solid rgba(185, 29, 29, 0.12);
}

.bottom-stat__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--red);
  border: 1.5px solid rgba(185, 29, 29, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 6px;
}

.bottom-stat__icon svg {
  width: 100%;
  height: 100%;
}

.bottom-stat__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.1;
}

.bottom-stat__value--sm {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bottom-stat__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.25;
}

/* ---------- Footer ---------- */

.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;
}

.site-footer {
  background:
    radial-gradient(ellipse 50% 60% at 8% 30%, rgba(255, 255, 255, 0.03), transparent 55%),
    #0a0d0c;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 0;
  font-size: 0.9rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.9fr)) 1.2fr;
  gap: 1.75rem 1.25rem;
  padding-bottom: 2.5rem;
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 1.1rem;
}

.footer-brand__logo img {
  height: 52px;
  width: auto;
}

.footer-brand__text {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 18rem;
  font-size: 0.86rem;
}

.footer-brand__feats {
  display: grid;
  gap: 0.55rem;
}

.footer-brand__feats li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand__feats span {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-brand__feats svg {
  width: 100%;
  height: 100%;
}

.footer-col {
  min-width: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  padding-left: 0;
  border-left: none;
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact__list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-contact__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact__list a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer-contact__list a:hover {
  color: var(--red);
}

.footer-contact__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.1rem;
}

.footer-contact__icon svg {
  width: 100%;
  height: 100%;
}

.footer-help {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-help:hover {
  border-color: var(--red);
  background: rgba(185, 29, 29, 0.12);
}

.footer-help__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--red);
}

.footer-help__icon svg {
  width: 100%;
  height: 100%;
}

.footer-help strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.footer-help span span,
.footer-help > span:last-child {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 36rem;
  flex-wrap: wrap;
}

.footer-newsletter__intro {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 14rem;
  max-width: 18rem;
}

.footer-newsletter__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-newsletter__icon svg {
  width: 20px;
  height: 20px;
}

.footer-newsletter__title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-newsletter__intro p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.footer-newsletter__form {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  flex: 1 1 20rem;
  max-width: 32rem;
}

.footer-newsletter__form input {
  flex: 1;
  min-width: 0;
  background: #151918;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.footer-newsletter__form input:focus {
  border-color: rgba(185, 29, 29, 0.6);
}

.footer-newsletter__form .btn {
  flex-shrink: 0;
}

.footer-social {
  flex-shrink: 0;
}

.footer-social__title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-social__links {
  display: flex;
  gap: 0.65rem;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #3d6b5c;
  color: #8fb5a4;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

.footer-social__link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(185, 29, 29, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.25rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.footer-bottom__mark {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-bottom__copy p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.footer-bottom__copy span {
  color: var(--red);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal a:not(:last-child)::after {
  content: "|";
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-certs__item {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  padding: 0.35rem 0.5rem;
}

.footer-art {
  width: 100%;
  background: #0a0d0c;
  line-height: 0;
  overflow: hidden;
}

.footer-art img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.65;
  mix-blend-mode: lighten;
  /* filter: sepia(1) saturate(4) hue-rotate(-65deg) brightness(0.95); */
}

/* ---------- Animations ---------- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .nav {
    gap: 1.1rem;
  }

  .nav__link {
    font-size: 0.8rem;
  }

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

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

  .stat:nth-child(3) {
    border-right: none;
  }

  .stat:nth-child(n + 4) {
    border-right: 1px solid rgba(185, 29, 29, 0.15);
  }

  .stat:last-child {
    border-right: none;
  }

  .trust-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

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

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

  .numbers-card {
    min-height: 0;
  }

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

  .brands-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 0.75rem;
  }

  .brand-item:nth-child(4)::after {
    display: none;
  }

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

  .cert-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 1.15rem;
  }

  .cert-item:nth-child(4)::after {
    display: none;
  }

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

  .bottom-stat:nth-child(3) {
    border-right: none;
  }

  .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:nth-child(2) {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 76px;
  }

  .header-actions {
    display: flex;
    order: 2;
    margin-left: auto;
    margin-right: 0.55rem;
    gap: 0.5rem;
  }

  html[dir="rtl"] .header-actions {
    margin-left: 0.55rem;
    margin-right: auto;
  }

  .header-actions__quote {
    display: none;
  }

  .nav-toggle {
    display: grid;
    order: 3;
    margin-left: 0;
    width: 44px;
    height: 44px;
    background: var(--red);
    border: none;
    border-radius: 6px;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    background: var(--white);
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(253, 251, 244, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), top 0.3s ease;
    z-index: 99;
  }

  .site-header.is-scrolled .nav {
    top: calc(var(--header-h) - 14px);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__link.is-active::after {
    display: none;
  }

  .hero {
    padding: 1.5rem 0 1.25rem;
    background-position: left center;
    background-size: cover;
    min-height: 0;
    overflow: hidden;
  }

  .hero > .container {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero__grid {
    position: relative;
    display: block;
    min-height: 540px;
    padding-bottom: 0;
    overflow: visible;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    max-width: none;
    width: 100%;
    padding-bottom: 0;
    align-self: stretch;
    min-height: 540px;
  }

  .hero__intro {
    order: 1;
    max-width: 56%;
    position: relative;
    z-index: 3;
  }

  .hero__lead {
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
  }

  .hero__actions {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 56%;
    width: 100%;
    gap: 0.7rem;
    margin: 0;
    position: relative;
    z-index: 3;
  }

  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hero__visual {
    position: absolute;
    right: -8%;
    top: 0;
    bottom: 0;
    height: auto;
    width: 62%;
    min-height: 0;
    margin: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    animation: none;
  }

  .hero__person {
    width: 100%;
    height: calc(100% - 2.85rem);
    margin: 0 auto auto 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero__person img {
    width: auto;
    max-width: 115%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 12px 20px rgba(47, 47, 47, 0.2));
  }

  .hero__trust {
    order: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    max-width: none;
    width: 100%;
    margin: auto 0 0;
    padding: 1rem 0.75rem;
    background: rgba(253, 251, 244, 0.97);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(47, 47, 47, 0.08);
    position: relative;
    z-index: 5;
  }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }

  .trust-item__icon {
    margin-top: 0;
    width: 24px;
    height: 24px;
  }

  .trust-item__label {
    font-size: 0.55rem;
    line-height: 1.15;
  }

  .trust-item__label br {
    display: none;
  }

  .stats-bar {
    margin-top: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(47, 47, 47, 0.08);
    position: relative;
    z-index: 4;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .why-card__media {
    min-height: 240px;
  }

  .why-card__media::before {
    width: 100%;
    height: 35%;
    inset: 0 0 auto 0;
    background: linear-gradient(180deg, #ffffff, transparent);
  }

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

  .commitment-card {
    min-height: 0;
  }

  .commitment-card__content {
    max-width: none;
    min-height: 0;
    padding: 1.65rem 1.35rem 1.35rem;
    background: rgba(15, 36, 31, 0.94);
  }

  .commitment-card__media {
    position: relative;
    inset: auto;
    min-height: 220px;
  }

  .commitment-card__media::before {
    background: linear-gradient(180deg, #0f241f 0%, rgba(15, 36, 31, 0.55) 35%, transparent 70%);
  }

  .cert-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .footer-col {
    padding-left: 0;
    border-left: none;
  }

  .footer-mid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter {
    width: 100%;
    flex: 1 1 auto;
  }

  .footer-newsletter__form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .logo img {
    height: 42px;
  }

  .hero {
    background-position: left center;
    padding-bottom: 1rem;
  }

  .hero__grid,
  .hero__content {
    min-height: 580px;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .hero__intro,
  .hero__actions {
    max-width: 52%;
  }

  .hero__visual {
    right: -12%;
    top: 0;
    bottom: 0;
    height: auto;
    width: 68%;
  }

  .hero__person {
    height: calc(100% - 2.65rem);
  }

  .hero__person img {
    max-width: 125%;
  }

  .hero__trust {
    gap: 0.35rem;
    padding: 0.85rem 0.55rem;
  }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }

  .trust-item__label {
    font-size: 0.5rem;
  }

  .trust-item__label br {
    display: none;
  }

  .trust-item__icon {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 1rem 1.15rem;
  }

  .stat {
    border-right: none !important;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(185, 29, 29, 0.12);
  }

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

  .stat__value {
    color: var(--red);
  }

  .trust-panel {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem 1rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .category-card__title {
    font-size: 0.82rem;
  }

  .category-card__desc {
    font-size: 0.7rem;
  }

  .category-card__body {
    padding: 0.75rem;
    min-height: 0;
    flex-wrap: wrap;
  }

  .numbers-card__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.75rem;
  }

  .number-item:nth-child(2) {
    border-right: none;
  }

  .number-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .number-item:nth-child(2n) {
    border-right: none;
  }

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

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

  .brand-item:nth-child(2n)::after {
    display: none;
  }

  .cert-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
  }

  .cert-item:nth-child(2n)::after {
    display: none;
  }

  .bottom-stats {
    grid-template-columns: 1fr;
  }

  .bottom-stat {
    border-right: none !important;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(185, 29, 29, 0.12);
  }

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

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

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-newsletter__intro {
    max-width: none;
    min-width: 0;
  }

  .footer-newsletter__form {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
  }

  .footer-newsletter__form input {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: none;
    height: 42px;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
    box-sizing: border-box;
  }

  .footer-newsletter__form .btn {
    flex: 0 0 auto;
    height: 42px;
    padding: 0.55rem 0.85rem;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .footer-newsletter__form .btn svg {
    width: 14px;
    height: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Contact page ---------- */

.contact-page {
  background: var(--cream);
}

.contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 4.5rem 0 9rem;
  background-color: #1a1a1a;
  background-image: url("../Images/ContactUsBg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 13, 0.62) 0%,
    rgba(10, 14, 13, 0.45) 55%,
    rgba(10, 14, 13, 0.32) 100%
  );
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero__content {
  max-width: 34rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.contact-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.contact-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-hero__title span {
  display: block;
  color: var(--red);
}

.contact-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 28rem;
}

.contact-panel-section {
  position: relative;
  z-index: 2;
  margin-top: -6.5rem;
  padding-bottom: 3.5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1.15fr;
  gap: 1.75rem;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 48px rgba(47, 47, 47, 0.12);
}

.contact-panel__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.35rem;
  padding-bottom: 0.55rem;
  position: relative;
  display: inline-block;
}

.contact-panel__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--red);
}

.contact-touch__list {
  display: grid;
  gap: 1.25rem;
}

.contact-touch__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-touch__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f241f;
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-touch__icon svg {
  width: 18px;
  height: 18px;
}

.contact-touch__list h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.contact-touch__list p,
.contact-touch__list a {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-touch__list a:hover {
  color: var(--red);
}

.contact-map {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-map__frame {
  flex: 1;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: #eceae3;
  border: 1px solid var(--line);
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.contact-map__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  align-self: flex-start;
  transition: gap 0.25s var(--ease);
}

.contact-map__link svg {
  width: 15px;
  height: 15px;
}

.contact-map__link:hover {
  gap: 0.65rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #ddd8cc;
  border-radius: 4px;
  background: #fafaf7;
  padding: 0.85rem 0.95rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #9a958a;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: rgba(185, 29, 29, 0.55);
  box-shadow: 0 0 0 3px rgba(185, 29, 29, 0.08);
  background: var(--white);
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.contact-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  background: var(--cream-deep);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
}

.contact-perk {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  min-width: 0;
  padding-right: 0.75rem;
}

.contact-perk:not(:last-child) {
  border-right: 1px solid rgba(47, 47, 47, 0.1);
}

.contact-perk__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #0f241f;
  color: #0f241f;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-perk__icon svg {
  width: 18px;
  height: 18px;
}

.contact-perk h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.contact-perk p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    grid-column: 1 / -1;
  }

  .contact-perks {
    grid-template-columns: 1fr 1fr;
  }

  .contact-perk:nth-child(2) {
    border-right: none;
  }

  .contact-perk:nth-child(n + 3) {
    border-right: 1px solid rgba(47, 47, 47, 0.1);
    padding-top: 1rem;
  }

  .contact-perk:last-child {
    border-right: none;
  }
}

@media (max-width: 960px) {
  .contact-hero {
    min-height: 360px;
    padding: 3.5rem 0 8rem;
    background-position: 70% center;
  }

  .contact-panel-section {
    margin-top: -5rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    background-position: 78% center;
    padding-bottom: 7rem;
  }

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

  .contact-perks {
    grid-template-columns: 1fr;
  }

  .contact-perk {
    border-right: none !important;
    padding-right: 0;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(47, 47, 47, 0.1);
  }

  .contact-perk:first-child {
    padding-top: 0;
  }

  .contact-perk:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ---------- About page ---------- */

.about-page {
  background: var(--cream);
}

.about-hero {
  position: relative;
  min-height: 520px;
  padding: 4.5rem 0 0;
  background-color: #121816;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 13, 0.82) 0%, rgba(10, 14, 13, 0.45) 48%, rgba(10, 14, 13, 0.25) 100%),
    url("../Images/ContactUsBg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.about-hero__inner {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  padding-bottom: 0;
}

.about-hero__content {
  max-width: 40rem;
  padding-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.about-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.about-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-hero__title span {
  display: block;
  color: var(--red);
}

.about-hero__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 32rem;
}

.about-hero__feats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: rgba(10, 20, 18, 0.88);
  border-radius: 10px 10px 0 0;
  padding: 1.25rem 1.35rem;
  margin-top: 1rem;
}

.about-hero__feats li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.about-hero__feat-icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.about-hero__feat-icon svg {
  width: 100%;
  height: 100%;
}

.about-story {
  background: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story__content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
  max-width: 34rem;
}

.about-story__content .section-title {
  margin-bottom: 1.15rem;
}

.about-story__btn {
  margin-top: 0.75rem;
  background: #0f241f;
  color: var(--white);
}

.about-story__btn:hover {
  background: #16352e;
}

.img-placeholder--story {
  min-height: 360px;
  border-radius: 14px;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.about-stats {
  background: #0f241f;
  padding: 1.75rem 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding-right: 0.75rem;
  color: var(--white);
}

.about-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat__icon {
  width: 28px;
  height: 28px;
  color: #8fb5a4;
  flex-shrink: 0;
}

.about-stat__icon svg {
  width: 100%;
  height: 100%;
}

.about-stat__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.about-stat__value--sm {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-stat__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.15rem;
  line-height: 1.25;
}

.about-mvv {
  background: var(--cream);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.about-mvv__item {
  padding-right: 1.5rem;
}

.about-mvv__item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.about-mvv__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eceae3;
  color: #0f241f;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.about-mvv__icon svg {
  width: 28px;
  height: 28px;
}

.about-mvv__item h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.about-mvv__item p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-mvv__item ul {
  display: grid;
  gap: 0.45rem;
}

.about-mvv__item li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-mvv__item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.about-why {
  background:
    linear-gradient(90deg, rgba(10, 18, 16, 0.94) 0%, rgba(10, 18, 16, 0.88) 55%, rgba(10, 18, 16, 0.55) 100%),
    #0f241f;
  color: var(--white);
  padding: 4rem 0;
}

.about-why__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.section-eyebrow--light {
  color: #f0a0a0;
}

.section-eyebrow--light::before {
  background: var(--red);
}

.about-why__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.about-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
}

.about-why__features article {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about-why__features span {
  width: 28px;
  height: 28px;
  color: #8fb5a4;
  flex-shrink: 0;
}

.about-why__features svg {
  width: 100%;
  height: 100%;
}

.about-why__features h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.about-why__features p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.img-placeholder--why {
  min-height: 360px;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
}

.about-why__media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.about-journey {
  background: var(--white);
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.journey-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
  margin-top: 2.5rem;
  counter-reset: none;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 10px;
  height: 3px;
  background: var(--red);
}

.journey-timeline li {
  position: relative;
  padding-top: 2rem;
  text-align: center;
}

.journey-timeline__dot {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  transform: translateX(-50%);
  z-index: 1;
}

.journey-timeline__year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}

.journey-timeline h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.journey-timeline p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 12rem;
  margin-inline: auto;
}

.about-partners {
  background: #0f241f;
  padding: 3.25rem 0;
  color: var(--white);
}

.about-partners__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.about-partners__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-certs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-certs__item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-brands__panel {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.about-brands__item {
  min-height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a7a7a;
  border-right: 1px solid #e8e4da;
}

.about-brands__item:nth-child(4n) {
  border-right: none;
}

.about-cta {
  position: relative;
  padding: 4.5rem 0;
  background-color: #1a1a1a;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 13, 0.88) 0%, rgba(10, 14, 13, 0.55) 100%),
    url("../Images/ContactUsBg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  max-width: 28rem;
}

.about-cta__title span {
  color: var(--red);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

@media (max-width: 1100px) {
  .about-hero__feats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.25rem;
  }

  .about-stat:nth-child(3) {
    border-right: none;
  }

  .journey-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2rem;
  }

  .journey-timeline::before {
    display: none;
  }

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

@media (max-width: 960px) {
  .about-story__grid,
  .about-why__grid,
  .about-mvv__grid {
    grid-template-columns: 1fr;
  }

  .about-mvv__item {
    padding-right: 0;
    border-right: none !important;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .about-mvv__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

  .about-brands__item:nth-child(2n) {
    border-right: none;
  }

  .about-brands__item:nth-child(4n) {
    border-right: 1px solid #e8e4da;
  }

  .about-brands__item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 0;
    padding-top: 3rem;
  }

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

  .about-stats__grid,
  .journey-timeline,
  .about-why__features,
  .about-certs__grid {
    grid-template-columns: 1fr;
  }

  .about-stat {
    border-right: none !important;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-stat:last-child {
    border-bottom: none;
  }

  .about-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Products page ---------- */

.products-page {
  background: var(--cream);
}

.products-hero {
  position: relative;
  min-height: 420px;
  padding: 4rem 0 3rem;
  background-color: #121816;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 13, 0.88) 0%, rgba(10, 14, 13, 0.55) 52%, rgba(10, 14, 13, 0.28) 100%),
    url("../Images/ContactUsBg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.products-hero__content {
  max-width: 40rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.products-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.products-hero__title span {
  display: block;
  color: var(--red);
}

.products-hero__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.products-hero__feats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.products-hero__feats li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--white);
}

.products-hero__feats li > span {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.products-hero__feats svg {
  width: 100%;
  height: 100%;
}

.products-hero__feats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.products-hero__feats div > span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
}

.products-catalog {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background: var(--cream);
}


.products-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.products-filters {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.05);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.products-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.products-filters__head h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.products-filters__clear {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
}

.products-filters__clear:hover {
  text-decoration: underline;
}

.filter-block {
  margin-bottom: 1.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.filter-block__title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}

.filter-cats {
  display: grid;
  gap: 0.45rem;
}

.filter-cats__link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--ink);
  padding: 0.35rem 0.4rem;
  border-radius: 6px;
}

.filter-cats__link:hover,
.filter-cats__link.is-active {
  background: rgba(15, 36, 31, 0.06);
  color: #0f241f;
}

.filter-cats__link em {
  margin-left: auto;
  font-style: normal;
  color: var(--muted);
  font-size: 0.78rem;
}

.filter-block select {
  width: 100%;
  border: 1px solid #ddd8cc;
  border-radius: 4px;
  background: #fafaf7;
  padding: 0.7rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink);
}

.products-filters__apply {
  width: 100%;
  justify-content: center;
  background: #0f241f;
  color: var(--white);
  margin-top: 0.25rem;
}

.products-filters__apply:hover {
  background: #16352e;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.products-toolbar__count {
  font-size: 0.92rem;
  color: var(--muted);
}

.products-toolbar__count strong {
  color: var(--charcoal);
}

.products-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.products-sort select {
  border: 1px solid #ddd8cc;
  border-radius: 4px;
  background: var(--white);
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.85rem;
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(47, 47, 47, 0.1);
}

.product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 3px;
}

.product-card__media {
  aspect-ratio: 1 / 1;
  height: auto;
  background: #f7f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__code {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.55rem;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.product-card__certs span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #5a5a5a;
  background: #f0eee6;
  border-radius: 3px;
  padding: 0.22rem 0.4rem;
}

.product-card__footer {
  margin-top: auto;
}

.product-card__actions {
  display: flex;
  gap: 0.5rem;
}

.product-card__details {
  flex: 1;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
}

.product-card__cart {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.product-card__cart:hover {
  background: var(--red-dark);
}

.product-card__cart svg {
  width: 18px;
  height: 18px;
}

.product-detail-back {
  margin-bottom: 1.15rem;
}

.product-detail-back a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f241f;
}

.product-detail-back a:hover {
  color: var(--red);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.06);
}

.product-detail__media {
  position: relative;
  background: #f7f5ef;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail__body {
  min-width: 0;
}

.product-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #0f241f;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.product-detail__title-ar {
  font-size: 0.95rem;
  color: #5a655f;
  margin-bottom: 0.85rem;
}

.product-detail__heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f241f;
  margin: 1.15rem 0 0.45rem;
}

.product-detail__specs {
  display: grid;
  gap: 0.4rem;
}

.product-detail__specs > div {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  gap: 0.5rem;
  font-size: 0.9rem;
}

.product-detail__specs dt {
  font-weight: 700;
  color: #0f241f;
}

.product-detail__specs dd {
  margin: 0;
  color: #3d4a45;
}

.product-detail__body > p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d4a45;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.catalog-empty {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.products-perks {
  background: var(--cream-deep);
  padding: 1.5rem 0 2.5rem;
}

.products-perks__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.15rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.04);
}

.products-perk {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  min-width: 0;
  padding-right: 0.75rem;
}

.products-perk:not(:last-child) {
  border-right: 1px solid rgba(47, 47, 47, 0.1);
}

.products-perk > span {
  width: 28px;
  height: 28px;
  color: #0f241f;
  flex-shrink: 0;
}

.products-perk svg {
  width: 100%;
  height: 100%;
}

.products-perk h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.products-perk p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .products-perks__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.15rem;
  }

  .products-perk:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 960px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-filters {
    position: static;
  }

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

@media (max-width: 640px) {
  .products-hero__feats,
  .products-perks__grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card__title {
    font-size: 0.85rem;
  }

  .product-card__details {
    font-size: 0.68rem;
    padding: 0.55rem 0.4rem;
  }

  .product-card__body {
    padding: 0.75rem;
  }

  .product-card__cart {
    width: 36px;
    height: 36px;
  }

  .product-detail__specs > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .products-perk {
    border-right: none !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(47, 47, 47, 0.1);
  }

  .products-perk:last-child {
    border-bottom: none;
  }
}

/* ---------- Resources page ---------- */

.resources-page {
  background: var(--cream);
}

.resources-hero {
  position: relative;
  min-height: 340px;
  padding: 4rem 0 3rem;
  background-color: #121816;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 13, 0.88) 0%, rgba(10, 14, 13, 0.55) 55%, rgba(10, 14, 13, 0.3) 100%),
    url("../Images/ContactUsBg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  color: var(--white);
}

.resources-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.resources-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 18ch;
}

.resources-hero__title span {
  display: block;
  color: var(--red);
}

.resources-hero__lead {
  margin-top: 1rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.resources-nav-section {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.resources-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.resources-jump a {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 31, 0.14);
  background: var(--white);
  color: #0f241f;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.resources-jump a:hover {
  background: #0f241f;
  border-color: #0f241f;
  color: var(--white);
}

.resources-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.resources-section--alt {
  background: var(--white);
}

.resources-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: center;
}

.resources-layout--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.resources-layout--reverse .resources-copy {
  order: 2;
}

.resources-copy .section-title {
  margin-bottom: 0.85rem;
}

.resources-copy > p,
.resources-intro {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 40rem;
}

.resources-list,
.resources-steps {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding-left: 1.1rem;
  color: #3d4a45;
  line-height: 1.5;
}

.resources-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.resources-media {
  border-radius: 16px;
  overflow: hidden;
  background: #f7f5ef;
  min-height: 280px;
}

.resources-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.resources-media--catalogue {
  background: #fff;
  box-shadow: 0 12px 32px rgba(47, 47, 47, 0.08);
}

.resources-media--catalogue a {
  display: block;
  height: 100%;
}

.resources-media--catalogue img {
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.35s var(--ease);
}

.resources-media--catalogue a:hover img {
  transform: scale(1.02);
}

.resources-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.resources-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.05);
}

.resources-section--alt .resources-card {
  background: var(--cream);
}

.resources-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f241f;
  margin-bottom: 0.45rem;
}

.resources-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.resources-card a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--red);
}

.resources-faqs {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.resources-faqs details {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: 0 8px 22px rgba(47, 47, 47, 0.04);
}

.resources-faqs summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: #0f241f;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 0.15rem;
}

.resources-faqs summary::-webkit-details-marker {
  display: none;
}

.resources-faqs summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-top: -0.2rem;
}

.resources-faqs details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.2rem;
}

.resources-faqs p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.55;
}

.resources-faqs a {
  color: var(--red);
  font-weight: 600;
}

.resources-download {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 28px rgba(47, 47, 47, 0.05);
}

.resources-file {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: var(--cream);
  max-width: 34rem;
}

.resources-file__thumb {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #fff;
}

.resources-file strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #0f241f;
  margin-bottom: 0.15rem;
}

.resources-file span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.resources-file .btn {
  margin-left: auto;
}

.resources-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 1100px) {
  .resources-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .resources-layout,
  .resources-layout--reverse {
    grid-template-columns: 1fr;
  }

  .resources-layout--reverse .resources-copy {
    order: 0;
  }
}

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

/* ---------- Floating WhatsApp ---------- */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease;
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.15rem;
    height: 3.15rem;
  }

  .whatsapp-float svg {
    width: 1.55rem;
    height: 1.55rem;
  }
}

/* =========================================================
   Arabic / RTL
   ========================================================= */

html[dir="rtl"] {
  --font-display: "Noto Sans Arabic", "Oswald", sans-serif;
  --font-body: "Noto Sans Arabic", "Manrope", "Segoe UI", sans-serif;
}

html[dir="rtl"] body {
  font-family: var(--font-body);
}

html[dir="rtl"] .btn svg,
html[dir="rtl"] .section-link svg,
html[dir="rtl"] .category-card__btn svg,
html[dir="rtl"] .contact-map__link svg,
html[dir="rtl"] .about-story__btn svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 1.25rem;
}

@media (max-width: 640px) {
  html[dir="rtl"] .whatsapp-float {
    left: 1rem;
    right: auto;
  }
}

html[dir="rtl"] .lang-switch {
  letter-spacing: 0;
}

html[dir="rtl"] .hero__title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .about-hero__title,
html[dir="rtl"] .contact-hero__title,
html[dir="rtl"] .products-hero__title,
html[dir="rtl"] .resources-hero__title {
  letter-spacing: 0;
}

html[dir="rtl"] .resources-layout--reverse {
  direction: rtl;
}

/* Mirror home hero background for Arabic */
html[dir="rtl"] .hero {
  background-image: none;
}

html[dir="rtl"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--cream);
  background-image: url("../Images/HeroBG.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  transform: scaleX(-1);
}

@media (max-width: 960px) {
  html[dir="rtl"] .hero::before {
    /* `auto` height left a strip under the header; use solid cream on phones
       so the shield stays hidden and the top edge is seamless. */
    background-image: none;
    transform: none;
    background-color: var(--cream);
  }

  html[dir="rtl"] .hero {
    background-color: var(--cream);
  }
}

@media (max-width: 640px) {
  html[dir="rtl"] .hero::before {
    background-image: none;
    transform: none;
    background-color: var(--cream);
  }
}

/* Arabic phone: person on the left + horizontally flipped */
@media (max-width: 960px) {
  html[dir="rtl"] .hero__intro,
  html[dir="rtl"] .hero__actions {
    margin-left: auto;
    margin-right: 0;
  }

  html[dir="rtl"] .hero__visual {
    right: auto;
    left: -8%;
    justify-content: flex-start;
  }

  html[dir="rtl"] .hero__person {
    margin: 0 0 auto auto;
    justify-content: flex-start;
  }

  html[dir="rtl"] .hero__person img {
    object-position: bottom left;
    transform: scaleX(-1);
  }
}

@media (max-width: 640px) {
  html[dir="rtl"] .hero__visual {
    left: -12%;
    right: auto;
  }
}
