/* EQUEST GEAR — Premium B2B Manufacturing Design System */
:root {
  --ink: #0a1219;
  --ink-soft: #15202b;
  --slate: #243447;
  --mist: #e6ecf1;
  --paper: #f5f7f9;
  --white: #ffffff;
  --teal: #b8895a;
  --teal-bright: #d4a574;
  --copper: #b8895a;
  --copper-light: #d4a574;
  --brand: #b8895a;
  --brand-dark: #8a6540;
  --success: #059669;
  --danger: #dc2626;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 50px rgba(10, 18, 25, 0.12);
  --shadow-sm: 0 8px 24px rgba(10, 18, 25, 0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --nav-h: 80px;
  --font-display: "Baloo Tamma 2", "Baloo Tamma", system-ui, sans-serif;
  --font-body: "Baloo Tamma 2", "Baloo Tamma", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.container-wide { width: min(100% - 2rem, 1400px); margin-inline: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.lead { font-size: 1.125rem; color: var(--muted); max-width: 42rem; }
.text-teal { color: var(--teal); }
.text-copper { color: var(--copper); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--teal-bright); }
.topbar-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ——— Navigation ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 247, 249, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.logo-img-footer {
  height: 52px;
  max-width: 220px;
  filter: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--brand-dark) 100%);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius);
}
.logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate);
  border-radius: var(--radius);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--teal); background: rgba(184, 137, 90, 0.1); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  z-index: 100;
}
.nav-links > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius);
}
.dropdown a:hover { background: var(--paper); color: var(--teal); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.85rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.search-toggle:hover,
.search-toggle[aria-expanded="true"] {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(184, 137, 90, 0.08);
}
.search-toggle svg { display: block; flex-shrink: 0; }
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 18, 25, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5.5rem 1rem 2rem;
}
.search-overlay[hidden] { display: none !important; }
.search-modal {
  width: min(640px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.search-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: var(--ink);
  color: white;
  font-family: var(--font-display);
}
.search-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.search-form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}
.search-form input {
  flex: 1;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
}
.search-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(184, 137, 90, 0.2);
}
.search-results {
  max-height: min(50vh, 420px);
  overflow-y: auto;
  padding: 0.5rem;
}
.search-result {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
}
.search-result:hover,
.search-result:focus {
  background: rgba(184, 137, 90, 0.1);
  outline: none;
}
.search-result strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.search-result span {
  font-size: 0.8rem;
  color: var(--muted);
}
.search-empty,
.search-hint {
  padding: 1rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .search-toggle-label { display: none; }
  .search-toggle { width: 40px; padding: 0; justify-content: center; }
}


.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: white;
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.btn-secondary:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: white;
}
.btn-copper {
  background: var(--copper);
  color: white;
}
.btn-copper:hover { background: var(--ink); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}
.hero-slider {
  display: block;
  padding: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--ink);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide-copy {
  display: flex;
  align-items: center;
  padding: 5rem 2rem 5rem max(2rem, calc((100vw - var(--max)) / 2));
  position: relative;
  z-index: 2;
  background:
    linear-gradient(115deg, rgba(10,18,25,0.98) 0%, rgba(10,18,25,0.92) 70%, rgba(10,18,25,0.35) 100%);
}
.hero-slide-copy-inner { max-width: 560px; }
.hero-slide-visual {
  position: relative;
  background:
    linear-gradient(160deg, #1a1510 0%, #0a1219 40%, #2a2118 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-slide-visual::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(184,137,90,0.25);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero-slide-visual img {
  width: min(88%, 520px);
  height: min(78%, 620px);
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
  transform: scale(0.96);
  transition: transform 0.9s var(--ease);
}
.hero-slide.is-active .hero-slide-visual img {
  transform: scale(1);
}
.hero-slide .eyebrow { color: var(--teal-bright); }
.hero-slide h1 { color: white; margin-bottom: 1rem; font-size: clamp(2rem, 4.2vw, 3.4rem); }
.hero-slide .lead { color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
.hero-controls {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--max)) / 2));
  bottom: 1.75rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10,18,25,0.55);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s;
}
.hero-nav-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.hero-dots {
  display: flex;
  gap: 0.4rem;
  padding: 0 0.35rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.is-active {
  background: var(--teal-bright);
  transform: scale(1.2);
}
.hero-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: var(--teal);
  z-index: 6;
  transition: width 0.1s linear;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10,18,25,0.92) 0%, rgba(10,18,25,0.55) 55%, rgba(184,137,90,0.35) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(212,165,116,0.22), transparent 50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 720px;
}
.hero h1 { color: white; margin-bottom: 1rem; }
.hero .lead { color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 2rem;
}
.hero-tags span {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

@media (max-width: 900px) {
  .hero-slide {
    grid-template-columns: 1fr;
  }
  .hero-slide-visual {
    min-height: 42vh;
    order: -1;
  }
  .hero-slide-copy {
    padding: 2rem 1.25rem 5.5rem;
    background: linear-gradient(180deg, rgba(10,18,25,0.2), rgba(10,18,25,0.98));
  }
  .hero-slide-visual img {
    width: min(70%, 340px);
    height: min(85%, 360px);
  }
}

.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(184,137,90,0.28), transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero .lead { color: rgba(255,255,255,0.7); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a:hover { color: var(--teal-bright); }
.breadcrumb .sep { opacity: 0.4; }

/* ——— Sections ——— */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark {
  background: var(--ink);
  color: white;
}
.section-dark h2, .section-dark h3 { color: white; }
.section-teal {
  background: linear-gradient(160deg, var(--teal) 0%, var(--brand-dark) 100%);
  color: white;
}
.section-teal h2, .section-teal h3 { color: white; }
.section-mist { background: var(--mist); }
.section-header {
  margin-bottom: 3rem;
  max-width: 640px;
}
.section-header.centered {
  margin-inline: auto;
  text-align: center;
}
.section-header.centered .lead { margin-inline: auto; }

/* ——— Feature grid ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.feature-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(184, 137, 90, 0.35);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(184, 137, 90, 0.12);
  color: var(--teal);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.9rem; color: var(--muted); }

/* ——— Product cards ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--ink-soft), var(--slate));
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card-img.has-photo {
  background: #fff;
}
.product-card-img.has-photo img {
  object-fit: contain;
  padding: 0.75rem;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-hero-media {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.product-hero-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.product-card-img .placeholder-visual {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, #15202b 0%, #2a2118 50%, #b8895a33 100%);
}
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-card-body p { font-size: 0.875rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  background: var(--paper);
  color: var(--slate);
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.tag-teal { background: rgba(184,137,90,0.14); color: var(--teal); }

.category-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.category-panel {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  color: white;
  background: var(--ink-soft);
}
.category-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,25,0.95) 0%, rgba(10,18,25,0.3) 60%, transparent);
  z-index: 1;
}
.category-panel.sports {
  background:
    linear-gradient(160deg, #0a1219 0%, #b8895a66 100%),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px);
}
.category-panel.cutsew {
  background:
    linear-gradient(160deg, #0a1219 0%, #b8895a55 100%),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px);
}
.category-panel-content { position: relative; z-index: 2; }
.category-panel h2 { color: white; margin-bottom: 0.75rem; }
.category-panel p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; max-width: 28rem; }

/* ——— Stats ——— */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--teal-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ——— Process steps ——— */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 1.75rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.875rem; color: var(--muted); }

/* ——— Pricing tables ——— */
.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-bottom: 2rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.pricing-table th,
.pricing-table td {
  padding: 0.9rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(184, 137, 90, 0.06); }
.pricing-table .price {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 1.05rem;
}
.pricing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.pricing-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card-head {
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  color: white;
}
.pricing-card-head h3 { color: white; font-size: 1.15rem; }
.pricing-card-head p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.25rem; }

/* ——— Specs ——— */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.spec-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.spec-block h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  color: var(--teal);
}
.spec-block ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--slate);
  padding-left: 1.1rem;
  position: relative;
}
.spec-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

/* ——— Forms ——— */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(184, 137, 90, 0.2);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ——— FAQ ——— */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-a p { color: var(--muted); font-size: 0.95rem; }

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink-soft), var(--teal));
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card-body { padding: 1.25rem; }
.blog-card-body .date { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card-body p { font-size: 0.875rem; color: var(--muted); }

/* ——— CTA band ——— */
.cta-band {
  padding: 4rem 0;
  background:
    linear-gradient(120deg, var(--ink) 0%, #3d2e1c 50%, var(--teal) 100%);
  color: white;
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; max-width: 36rem; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.contact-info-card {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; }
.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-row strong { display: block; font-size: 0.8rem; color: var(--teal-bright); margin-bottom: 0.2rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-row p, .contact-row a { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: var(--mist);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 1.25rem; max-width: 280px; }
.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-col a:hover { color: var(--teal-bright); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.social-links a,
.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  transition: background 0.25s var(--ease), border-color 0.25s, color 0.25s, transform 0.25s;
}
.social-links a svg,
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-links a:hover,
.social-icon:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
}
.social-facebook:hover { background: #1877F2; }
.social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-linkedin:hover { background: #0A66C2; }
.social-youtube:hover { background: #FF0000; }
.social-tiktok:hover { background: #010101; border-color: #25F4EE; }
.social-pinterest:hover { background: #E60023; }
.social-x:hover { background: #000; border-color: #fff; }
.social-threads:hover { background: #000; border-color: #fff; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: white;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
}
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ——— Floating widgets ——— */
.float-widgets {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
  border: none;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25D366; }
.float-msg { background: #0084FF; }
.float-chat { background: var(--teal); }
.float-email { background: var(--copper); }
.float-phone { background: var(--ink); }

.chat-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: min(340px, calc(100vw - 2rem));
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-panel-head {
  background: var(--ink);
  color: white;
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-panel-head strong { font-family: var(--font-display); }
.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
}
.chat-panel-body { padding: 1.15rem; font-size: 0.9rem; color: var(--muted); }
.chat-panel-body p { margin-bottom: 1rem; }
.chat-quick { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-quick a {
  padding: 0.65rem 0.85rem;
  background: var(--paper);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}
.chat-quick a:hover { background: rgba(184,137,90,0.12); color: var(--teal); }

/* ——— Two column layouts ——— */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-prose h2 { margin: 2rem 0 0.75rem; }
.content-prose h3 { margin: 1.5rem 0 0.5rem; }
.content-prose p { margin-bottom: 1rem; color: var(--slate); }
.content-prose ul { margin: 0 0 1rem 1.25rem; list-style: disc; }
.content-prose ul li { margin-bottom: 0.4rem; color: var(--slate); }

.visual-block {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, var(--ink) 0%, var(--slate) 40%, var(--teal) 100%);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.visual-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(184,137,90,0.3), transparent 50%);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

/* ——— Region flags strip ——— */
.markets-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.markets-strip span {
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal:not(.visible) {
  /* keep content visible even before scroll JS runs */
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ——— Utilities ——— */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-btn { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    align-items: stretch;
  }
  .nav-links.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }
  .nav-links.open li.open-sub .dropdown { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .category-split,
  .split-2,
  .contact-grid,
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .nav-cta .btn-outline { display: none; }
  .topbar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
