/* ===================== VARIABLES ===================== */
:root {
  --navy-deep: oklch(0.18 0.10 264);
  --navy: oklch(0.28 0.13 264);
  --gold: oklch(0.82 0.17 85);
  --gold-bright: oklch(0.88 0.18 88);
  --background: #ffffff;
  --foreground: oklch(0.18 0.04 260);
  --card: #ffffff;
  --border: oklch(0.92 0.01 260);
  --muted: oklch(0.96 0.01 250);
  --muted-fg: oklch(0.45 0.03 260);
  --primary-fg: oklch(0.98 0.01 90);
  --accent-fg: oklch(0.18 0.10 264);
  --radius: 1rem;
  --grad-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  --grad-hero: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, oklch(0.32 0.14 260) 100%);
  --shadow-card: 0 10px 30px -10px rgba(30,45,107,0.12);
  --shadow-gold: 0 10px 30px -10px rgba(212,165,32,0.45);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Lenis smooth scroll (active only once JS initializes it) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

/* ===================== UTILITIES ===================== */
.text-gold { color: var(--gold); }
.bg-gold { background: var(--grad-gold); }
.bg-hero { background: var(--grad-hero); }
.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--foreground);
  margin-top: 0.5rem;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: var(--grad-gold);
  color: var(--accent-fg);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.2s, transform 0.2s;
}
.btn-gold:hover { opacity: 0.9; transform: scale(1.04); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ===================== SCROLL REVEAL ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
/* Fallback for browsers without backdrop-filter support */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header { background: rgba(255, 255, 255, 0.92); }
  .site-header.scrolled { background: #fff; }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }
.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-wrap img { height: 2.5rem; width: 2.5rem; }
.logo-name { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--foreground); }
.logo-sub { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg); display: none; }
@media (min-width: 640px) { .logo-wrap img { height: 2.75rem; width: 2.75rem; } .logo-name { font-size: 1.125rem; } .logo-sub { display: block; } }
.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--muted); color: var(--foreground); }
.nav-link.active { background: var(--navy-deep); color: var(--primary-fg); }
.nav-cta { margin-left: 0.5rem; padding: 0.6rem 1.25rem; border-radius: 9999px; background: var(--grad-gold); color: var(--accent-fg); font-size: 0.875rem; font-weight: 700; box-shadow: var(--shadow-gold); transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.9; }
.menu-btn { display: flex; align-items: center; padding: 0.5rem; color: var(--foreground); }
@media (min-width: 768px) { .menu-btn { display: none; } }
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { padding: 1rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  transition: background 0.2s;
}
.nav-mobile-link:hover { background: var(--muted); }
.nav-mobile-link.active { background: var(--navy-deep); color: var(--primary-fg); }
.nav-mobile-cta { display: block; margin-top: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 9999px; background: var(--grad-gold); color: var(--accent-fg); text-align: center; font-size: 0.875rem; font-weight: 700; box-shadow: var(--shadow-gold); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--grad-hero); color: var(--primary-fg); }
.footer-grid { display: grid; gap: 2.5rem; padding-block: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { margin-top: 1.25rem; max-width: 28rem; font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.footer-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-links a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.footer-contact-list li { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact-list svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; padding-block: 1.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; } }

/* ===================== PAGE HERO ===================== */
.page-hero { background: var(--grad-hero); padding-block: 5rem; color: var(--primary-fg); }
.page-hero .kicker { font-size: 0.8rem; }
.page-hero h1 { margin-top: 0.75rem; font-size: clamp(2.5rem, 6vw, 3.75rem); font-weight: 800; max-width: 40rem; }
.page-hero p { margin-top: 1.25rem; max-width: 36rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); }

/* ===================== HERO SLIDER ===================== */
.hero-slider {
  position: relative;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--primary-fg);
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.2s ease-out, transform 7s ease-out;
}
.hero-slide-bg.active { opacity: 1; transform: scale(1); }
/* Left gradient — provides text legibility without a heavy box */
.hero-grad-lr {
  display: block;
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(8,15,42,0.92) 0%, rgba(8,15,42,0.65) 38%, rgba(8,15,42,0.15) 62%, transparent 78%);
  pointer-events: none;
}
.hero-grad-bt { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-block: 5rem;
  padding-inline: 1.5rem;
  will-change: transform;
}
@media (min-width: 1024px) { .hero-content { padding-inline: 2.5rem; } }

/* Slide counter — editorial "01 / 05" */
.slide-counter-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.slide-num-cur {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.slide-num-sep {
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.slide-num-tot {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

.hero-text-wrap {
  position: relative;
  max-width: 42rem;
  min-height: 17rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  margin-left: 0;
}
.hero-slide-text {
  position: absolute;
  top: 0; left: 0;
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.hero-slide-text.active { position: relative; opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-slide-text.before { opacity: 0; transform: translateX(-56px); pointer-events: none; }
.hero-slide-text.after  { opacity: 0; transform: translateX(56px);  pointer-events: none; }

/* Minimal gold-rule kicker */
.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.slide-kicker span {
  display: block;
  width: 2.75rem;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 9999px;
}

.slide-title {
  margin-top: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.slide-desc {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Product image layer — hidden, slides carry their own images */
.hero-product-layer { display: none !important; }
.hero-product-item {
  position: absolute;
  right: 4rem;
  top: 50%;
  width: 18rem;
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
@media (min-width: 1280px) { .hero-product-item { width: 24rem; right: 6rem; } }
.hero-product-item.active  { opacity: 1;  transform: translate(0, -50%) scale(1); pointer-events: auto; }
.hero-product-item.before  { opacity: 0;  transform: translate(-100px, -50%) scale(0.95); pointer-events: none; }
.hero-product-item.after   { opacity: 0;  transform: translate(100px, -50%) scale(0.95); pointer-events: none; }
.hero-product-item.large .product-img { width: 24rem; height: 24rem; }
@media (min-width: 1280px) { .hero-product-item.large .product-img { width: 28rem; height: 28rem; } }
.product-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,32,0.25) 0%, transparent 70%);
  filter: blur(40px);
  transform: scale(1.1);
}
.product-img {
  position: relative;
  width: 18rem;
  height: 18rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(200,160,60,0.5));
}
@media (min-width: 1280px) { .product-img { width: 24rem; height: 24rem; } }

/* Controls */
.hero-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: none;
  padding: 0.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(10,16,38,0.55);
  color: white;
  transition: background 0.2s;
}
@media (min-width: 768px) { .hero-btn { display: flex; } }
.hero-btn:hover { background: rgba(0,0,0,0.6); }
.hero-btn-prev { left: 0.75rem; }
.hero-btn-next { right: 0.75rem; }
.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; }
.hero-dot {
  height: 6px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  width: 1.25rem;
}
.hero-dot.active { width: 2.5rem; background: var(--gold); }

/* ===================== FEATURES SECTION ===================== */
.features-section { background: var(--muted); padding-block: 4rem; }
@media (min-width: 768px) { .features-section { padding-block: 6rem; } }
.features-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(212,165,32,0.15);
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-8px); border-color: rgba(212,165,32,0.4); box-shadow: 0 24px 60px -12px rgba(0,0,0,0.12); }
.card::before {
  content: '';
  position: absolute;
  inset-inline: 0; top: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  position: relative;
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-fg);
  box-shadow: var(--shadow-gold);
}
.card h3 { margin-top: 1.5rem; font-size: 1.2rem; font-weight: 700; color: var(--foreground); }
.card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-fg); }
.card-arrow { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 700; color: var(--gold); opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.card:hover .card-arrow { opacity: 1; transform: translateX(4px); }

/* ===================== PARALLAX SECTION ===================== */
.parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  will-change: transform;
}
.parallax-bg img { width: 100%; height: 100%; object-fit: cover; }
.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.parallax-content { position: relative; }

/* ===================== PRODUCT CARDS (home) ===================== */
.products-grid-home { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .products-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid-home { grid-template-columns: repeat(4, 1fr); } }
.product-card-home {
  display: flex; flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.product-card-home:hover { transform: translateY(-8px); border-color: rgba(212,165,32,0.3); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15); }
.product-card-home .img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--muted); }
.product-card-home img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card-home:hover img { transform: scale(1.1); }
.product-card-home .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,21,53,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.product-card-home:hover .img-overlay { opacity: 1; }
.product-card-home .img-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: var(--grad-gold);
  color: var(--accent-fg);
  font-size: 0.7rem; font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.product-card-home .card-body { flex: 1; padding: 1.25rem; }
.product-card-home .gold-bar { height: 2px; width: 2rem; border-radius: 9999px; background: var(--grad-gold); margin-bottom: 0.75rem; transition: width 0.3s; }
.product-card-home:hover .gold-bar { width: 3.5rem; }
.product-card-home .cat { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.product-card-home .name { margin-top: 0.25rem; font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--foreground); transition: color 0.3s; }
.product-card-home:hover .name { color: var(--gold); }

/* ===================== PRODUCTS PAGE ===================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem; font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.filter-btn:hover { border-color: rgba(212,165,32,0.5); }
.filter-btn.active { border-color: transparent; background: var(--grad-gold); color: var(--accent-fg); box-shadow: var(--shadow-gold); transform: scale(1.05); }
.products-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(212,165,32,0.3); box-shadow: 0 24px 60px -12px rgba(0,0,0,0.15); }
.product-card .img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--muted); }
.product-card img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; transition: transform 0.5s; }
.product-card:hover img { transform: scale(1.04); }
.product-card .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,21,53,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1rem; }
.product-card:hover .img-overlay { opacity: 1; }
.product-card .img-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.75rem; border-radius: 9999px; background: var(--grad-gold); color: var(--accent-fg); font-size: 0.7rem; font-weight: 700; box-shadow: var(--shadow-gold); }
.product-card .cat-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; border-radius: 9999px; border: 1px solid rgba(212,165,32,0.4); background: rgba(0,0,0,0.4); color: var(--gold); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; backdrop-filter: blur(6px); }
.product-card .card-body { flex: 1; padding: 1.5rem; }
.product-card .gold-bar { height: 2px; width: 2rem; border-radius: 9999px; background: var(--grad-gold); margin-bottom: 0.75rem; transition: width 0.3s; }
.product-card:hover .gold-bar { width: 4rem; }
.product-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--foreground); transition: color 0.3s; }
.product-card:hover h3 { color: var(--gold); }
.product-card .desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }
.product-card .specs { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }
.product-card .spec-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: rgba(30,35,64,0.8); }
.product-card .spec-icon { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

/* ===================== ABOUT PAGE ===================== */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(212,165,32,0.15);
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(212,165,32,0.4); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1); }
.stat-card::before { content: ''; position: absolute; inset-inline: 0; top: 0; height: 2px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.stat-card:hover::before { transform: scaleX(1); }
.stat-icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: var(--grad-gold); color: var(--accent-fg); box-shadow: var(--shadow-gold); }
.stat-num { margin-top: 1rem; font-family: 'Montserrat', sans-serif; font-size: 1.875rem; font-weight: 800; color: var(--foreground); }
.stat-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-fg); }
.mv-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .mv-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-grid { margin-top: 2rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px)  { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-pill {
  display: flex; align-items: center; gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem; font-weight: 600; color: var(--foreground);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.industry-pill:hover { transform: translateY(-2px); border-color: rgba(212,165,32,0.4); box-shadow: 0 8px 30px -8px rgba(0,0,0,0.1); }
.industry-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad-gold); flex-shrink: 0; transition: transform 0.2s; }
.industry-pill:hover .dot { transform: scale(1.5); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  position: relative; overflow: hidden;
  display: flex; gap: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212,165,32,0.15);
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(212,165,32,0.4); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1); }
.info-card::before { content: ''; position: absolute; inset-inline: 0; top: 0; height: 2px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.info-card:hover::before { transform: scaleX(1); }
.info-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: var(--grad-gold); color: var(--accent-fg); box-shadow: var(--shadow-gold); }
.info-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.info-lines { margin-top: 0.25rem; display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.contact-form {
  border-radius: var(--radius);
  border: 1px solid rgba(212,165,32,0.15);
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}
.form-gold-bar { height: 2px; width: 2.5rem; border-radius: 9999px; background: var(--grad-gold); margin-bottom: 1rem; }
.contact-form h2 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.contact-form .sub { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-fg); }
.form-grid { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-fg); margin-bottom: 0.375rem; }
.field input, .field textarea {
  width: 100%; border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem; font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--foreground);
}
.field input:focus, .field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(212,165,32,0.12);
}
.field textarea { resize: vertical; }
.field-full { grid-column: 1 / -1; }
.form-submit { margin-top: 1.5rem; }
