/* ========================================
   Voltaris Trading — Base & Hero
   ======================================== */

:root {
  --gold: #c9a84c;
  --gold-hover: #d4b45a;
  --gold-soft: rgba(201, 168, 76, 0.85);
  --ink: #0b1220;
  --navy: #1b2538;
  --text-muted: #6b7280;
  --surface: #f5f6f8;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.78);
  --glass: rgba(18, 24, 38, 0.55);
  --glass-border: rgba(255, 255, 255, 0.18);
  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

/* ---------- Page loader (full styles; critical CSS is also inlined in <head>) ---------- */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(201, 168, 76, 0.12), transparent 60%),
    #0b162c;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

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

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: 1.5rem;
  text-align: center;
}

.page-loader__logo {
  height: clamp(48px, 8vw, 64px);
  width: auto;
  animation: loader-logo 1.4s ease-in-out infinite;
}

.page-loader__bar {
  width: min(180px, 46vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.page-loader__bar > span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #e4c878);
  animation: loader-bar 1.1s ease-in-out infinite;
}

.page-loader__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@keyframes loader-logo {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}

body.is-loading {
  overflow: hidden;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  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--primary {
  background: var(--gold);
  color: #1a1408;
}

.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 22, 0.72) 0%,
    rgba(8, 12, 22, 0.28) 70%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.site-header.is-scrolled .nav__link {
  color: rgba(27, 37, 56, 0.78);
}

.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link.is-active {
  color: var(--navy);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.75rem);
}

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}

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

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

.nav__indicator {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--gold);
  transform: translate3d(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s var(--ease),
    width 0.4s var(--ease),
    opacity 0.25s ease;
  will-change: transform, width;
}

.nav__indicator.is-ready {
  opacity: 1;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__panel--left {
  background-position: 40% center;
}

.hero__panel--right {
  background-position: 55% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 18, 36, 0.62) 0%,
      rgba(12, 16, 28, 0.48) 48%,
      rgba(12, 16, 28, 0.48) 52%,
      rgba(10, 14, 24, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 12, 22, 0.45) 0%,
      transparent 28%,
      transparent 72%,
      rgba(8, 12, 22, 0.55) 100%
    );
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Floating product tags */

.hero__tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.tag {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 16, 28, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  animation: tag-float 6s ease-in-out infinite;
}

.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.55);
}

.tag:nth-child(2) { animation-delay: -1.2s; }
.tag:nth-child(3) { animation-delay: -2.4s; }
.tag:nth-child(4) { animation-delay: -3.1s; }
.tag:nth-child(5) { animation-delay: -0.8s; }
.tag:nth-child(6) { animation-delay: -1.9s; }
.tag:nth-child(7) { animation-delay: -2.8s; }
.tag:nth-child(8) { animation-delay: -3.6s; }

@keyframes tag-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero card */

.hero__content {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100% - 2.5rem));
  padding: calc(var(--header-h) + 1rem) 0 4.5rem;
}

.hero-card {
  text-align: center;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: card-in 0.9s var(--ease) both;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-card__logo {
  height: 48px;
  width: auto;
  margin: 0 auto 1.35rem;
}

.hero-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-card__line {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold-soft);
}

.hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.hero-card__title span {
  color: var(--gold);
}

.hero-card__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.hero-card__meta {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 1.75rem;
}

.hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

/* Scroll hint */

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint__mouse {
  display: block;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
}

.scroll-hint__wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--white);
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ---------- Shared section bits ---------- */

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

.section-eyebrow__line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-soft);
}

.section-eyebrow--center {
  justify-content: center;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.about {
  background: var(--surface);
  color: var(--navy);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.about__badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.about__badge span {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.about__title span {
  color: var(--gold);
}

.about__text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.about__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.85rem;
}

.about__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #eceef2;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
}

.about__features svg {
  color: var(--gold);
  flex-shrink: 0;
}

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

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.products {
  background: var(--white);
  color: var(--navy);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.products__inner {
  max-width: var(--container);
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  min-height: 480px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 28%,
    rgba(27, 37, 56, 0.25) 48%,
    rgba(27, 37, 56, 0.72) 72%,
    rgba(15, 23, 42, 0.92) 100%
  );
}

.product-card__body {
  position: relative;
  z-index: 2;
  margin: 1rem;
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(27, 37, 56, 0.55) 0%,
    rgba(15, 23, 42, 0.82) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-card__badge {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.product-card__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin-bottom: 1.25rem;
}

.product-card__list li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.product-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.product-card .btn {
  align-self: flex-start;
}

/* ---------- Why Choose ---------- */

.why {
  position: relative;
  background: #0b162c;
  color: var(--white);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.why__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

.section-header--dark .section-header__title {
  color: var(--white);
}

.section-header--dark .section-header__text {
  color: rgba(148, 163, 184, 0.95);
}

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

.why-card {
  background: rgba(22, 34, 58, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.why-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.why-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.95);
}

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

.industries {
  background: var(--white);
  color: var(--navy);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.industries__inner {
  max-width: var(--container);
  margin: 0 auto;
}

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

.industry-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.45rem 1.3rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.industry-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: #eef0f4;
  color: #64748b;
}

.industry-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.industry-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.text-gold {
  color: var(--gold);
}

/* ---------- Global Sourcing ---------- */

.sourcing {
  position: relative;
  color: var(--white);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
}

.sourcing__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.sourcing__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.82) 0%, rgba(8, 14, 28, 0.72) 50%, rgba(8, 14, 28, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 14, 28, 0.55), rgba(8, 14, 28, 0.35));
}

.sourcing__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.sourcing__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.sourcing-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(12, 20, 38, 0.45);
  backdrop-filter: blur(6px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.sourcing-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}

.sourcing-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.sourcing-card__label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Process ---------- */

.process {
  background: var(--white);
  color: var(--navy);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.process__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.process__steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(201, 168, 76, 0.2);
}

.process__steps::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 8%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.45);
  transition: width 1.4s var(--ease);
}

.process__steps.is-inview::after {
  width: 84%;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
  transition-delay: calc(var(--i) * 0.12s);
}

.process__steps.is-inview .process-step {
  opacity: 1;
  transform: translateY(0);
}

.process-step__num {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-hover), var(--gold));
  color: #1a1408;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow:
    0 0 0 6px var(--white),
    0 8px 18px rgba(201, 168, 76, 0.28);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.process-step__num::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.process__steps.is-inview .process-step__num::before {
  animation: process-ring 2.4s var(--ease) calc(var(--i) * 0.12s + 0.35s) both;
}

.process-step:hover .process-step__num {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 0 0 6px var(--white),
    0 14px 28px rgba(201, 168, 76, 0.4);
}

.process-step:hover .process-step__num::before {
  opacity: 1;
  transform: scale(1);
  animation: none;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.process-step:hover .process-step__title {
  color: var(--gold);
}

.process-step__text {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.process-step:hover .process-step__text {
  color: #4b5563;
}

@keyframes process-ring {
  0% {
    opacity: 0;
    transform: scale(0.65);
  }
  40% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process__steps::after,
  .process-step,
  .process-step__num,
  .process-step__num::before {
    transition: none !important;
    animation: none !important;
  }

  .process-step {
    opacity: 1;
    transform: none;
  }

  .process__steps::after {
    width: 84%;
  }
}

/* ---------- Testimonials ---------- */

.testimonials {
  position: relative;
  background: #0b162c;
  color: var(--white);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

.testimonials::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.testimonials__slider {
  position: relative;
}

.testimonial-card {
  display: none;
  padding: 2rem 2.1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(22, 34, 58, 0.72);
}

.testimonial-card.is-active {
  display: block;
  animation: card-in 0.45s var(--ease);
}

.testimonial-card__stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #1a1408;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.testimonial-card__author small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.84rem;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials__dot.is-active,
.testimonials__dot:hover {
  background: var(--gold);
  transform: scale(1.15);
}

/* ---------- Credentials ---------- */

.credentials {
  background: var(--white);
  color: var(--navy);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.credentials__inner {
  max-width: var(--container);
  margin: 0 auto;
}

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

.credential-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.credential-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.credential-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.22);
}

.credential-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.credential-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

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

.contact {
  background: var(--surface);
  color: var(--navy);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-card__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  padding: 2rem 1.5rem;
  background:
    linear-gradient(180deg, #eef1f5 0%, #e6eaf0 100%);
}

.contact-card__pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--gold);
  color: #1a1408;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.35);
}

.contact-card__map-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-card__map-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  padding: 1.75rem 1.75rem 1.9rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: inherit;
}

.contact-detail__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.contact-detail small {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

a.contact-detail:hover small {
  color: var(--gold);
}

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

.site-footer {
  background: #0b162c;
  color: rgba(255, 255, 255, 0.86);
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem) 0;
}

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.3fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  padding-bottom: 2.75rem;
}

.site-footer__logo img {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(148, 163, 184, 0.95);
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
}

.site-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
  background: var(--gold);
  color: #1a1408;
  transform: translateY(-2px);
}

.site-footer__col h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.site-footer__col ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.site-footer__col a {
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--gold);
}

.site-footer__col--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
}

.site-footer__col--contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold);
}

.site-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.15rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.86rem;
}

.site-footer__legal {
  display: flex;
  gap: 1.25rem;
}

.site-footer__legal a {
  color: rgba(148, 163, 184, 0.9);
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--gold);
}

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s var(--ease), background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-hover);
}

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

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

  .nav__link {
    font-size: 0.82rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.38rem 0.75rem;
  }
}

@media (max-width: 960px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about__media {
    max-width: 520px;
    margin: 0 auto;
  }

  .about__media img {
    aspect-ratio: 5 / 4;
  }

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

  .product-card {
    min-height: 420px;
  }

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

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

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

  .process__steps::before {
    display: none;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(10, 14, 24, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-header.is-scrolled .nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(15, 23, 42, 0.08);
  }

  .site-header.is-scrolled .nav__link {
    color: var(--navy);
    border-bottom-color: rgba(15, 23, 42, 0.06);
  }

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

  .nav__link {
    padding: 0.9rem 0.25rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .nav__indicator {
    display: none;
  }

  .nav__link.is-active {
    color: var(--gold);
  }

  .hero__tags {
    display: none;
  }

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

  .hero__panel--right {
    display: none;
  }

  .hero__bg::after {
    display: none;
  }

  .hero__content {
    width: min(560px, calc(100% - 1.5rem));
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 1.75rem 1.15rem;
    border-radius: 16px;
  }

  .hero-card__logo {
    height: 40px;
  }

  .hero-card__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-card__actions .btn {
    width: 100%;
  }

  .about__stats {
    gap: 0.7rem;
  }

  .stat-card {
    padding: 1rem;
  }

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

  .product-card__top {
    flex-wrap: wrap;
  }

  .why__grid,
  .industries__grid {
    grid-template-columns: 1fr;
  }

  .sourcing__grid,
  .process__steps,
  .credentials__grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ========================================
   Products Page
   ======================================== */

.page-products {
  background: var(--surface);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
}

.btn--navy:hover {
  background: #243247;
  transform: translateY(-1px);
}

.catalog-hero {
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(201, 168, 76, 0.12), transparent 55%),
    linear-gradient(160deg, #0b162c 0%, #132038 55%, #1a2740 100%);
  color: var(--white);
}

.catalog-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.catalog-hero .section-eyebrow {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.catalog-hero .section-eyebrow__line {
  background: var(--gold);
}

.catalog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.catalog-hero__title span {
  color: var(--gold);
}

.catalog-hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.catalog-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.catalog-pill svg {
  color: var(--gold);
  flex-shrink: 0;
}

.catalog-hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.catalog-hero__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.catalog-hero__img--warehouse {
  object-position: center center;
}

.catalog-hero__img--tech {
  object-position: 40% center;
}

.catalog {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--surface);
}

.catalog__inner {
  max-width: var(--container);
  margin: 0 auto;
}

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

.catalog__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.catalog__count {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.catalog-filters__icon {
  color: var(--text-muted);
  margin-right: 0.15rem;
}

.catalog-filter {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 37, 56, 0.14);
  background: var(--white);
  color: rgba(27, 37, 56, 0.78);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.catalog-filter:hover {
  border-color: rgba(27, 37, 56, 0.28);
  color: var(--navy);
}

.catalog-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.25rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.catalog-card--electronics {
  border-top-color: var(--navy);
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

.catalog-card--electronics .catalog-card__icon {
  background: rgba(27, 37, 56, 0.08);
  color: var(--navy);
}

.catalog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.catalog-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  flex-grow: 0;
}

.catalog-card__list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.catalog-card__list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.88rem;
  color: rgba(27, 37, 56, 0.82);
  line-height: 1.45;
}

.catalog-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.catalog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
  margin-top: auto;
}

.catalog-card__tags span {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #eef1f5;
  color: rgba(27, 37, 56, 0.72);
  font-size: 0.75rem;
  font-weight: 500;
}

.catalog-card__btn {
  width: 100%;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.catalog-cta {
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 168, 76, 0.14), transparent 55%),
    linear-gradient(180deg, #0f1b31 0%, #0b162c 100%);
  text-align: center;
  color: var(--white);
}

.catalog-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.catalog-cta .section-eyebrow {
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.catalog-cta .section-eyebrow__line {
  background: var(--gold);
}

.catalog-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.catalog-cta__text {
  color: var(--white-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.catalog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

@media (max-width: 1100px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .catalog-hero__inner {
    grid-template-columns: 1fr;
  }

  .catalog-hero__media {
    max-width: 720px;
  }

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

@media (max-width: 640px) {
  .catalog-hero {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .catalog-hero__media {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: none;
  }

  .catalog-hero__img {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .catalog__toolbar {
    align-items: flex-start;
  }

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

  .catalog-cta__actions {
    flex-direction: column;
  }

  .catalog-cta__actions .btn {
    width: 100%;
  }
}

/* ========================================
   Scroll reveal system
   ======================================== */

.reveals-ready [data-reveal]:not(.is-revealed) {
  --reveal-delay: 0ms;
  opacity: 0;
  transition:
    opacity 0.75s var(--ease) var(--reveal-delay),
    transform 0.75s var(--ease) var(--reveal-delay);
  will-change: opacity, transform;
}

.reveals-ready [data-reveal="up"]:not(.is-revealed) {
  transform: translate3d(0, 28px, 0);
}

.reveals-ready [data-reveal="left"]:not(.is-revealed) {
  transform: translate3d(-36px, 0, 0);
}

.reveals-ready [data-reveal="right"]:not(.is-revealed) {
  transform: translate3d(36px, 0, 0);
}

.reveals-ready [data-reveal="scale"]:not(.is-revealed) {
  transform: scale(0.96);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.75s var(--ease) var(--reveal-delay, 0ms),
    transform 0.75s var(--ease) var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveals-ready [data-reveal]:not(.is-revealed),
  [data-reveal].is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav__indicator {
    transition: none !important;
  }

  .page-loader__logo,
  .page-loader__bar > span {
    animation: none !important;
  }

  .page-loader__logo {
    opacity: 1;
  }

  .tag,
  .hero-card,
  .scroll-hint__wheel {
    animation: none !important;
  }
}
