/* ============================================================
   AMS Retail Solutions — Main Stylesheet
   POS Solutions for Specialty Retail
   ============================================================ */

/* ------------------------------------------------------------
   0. Design Tokens (CSS Variables)
   ------------------------------------------------------------ */
:root {
  --primary: #1B2A4A;
  --primary-dark: #132039;
  --primary-light: #E9EDF4;
  --secondary: #6B7280;
  --accent: #E8712B;
  --accent-dark: #D05F1C;
  --bg: #FFFFFF;
  --surface: #F8F9FA;
  --text: #0D0D0D;
  --text-secondary: #4D545C;
  --text-muted: #6B7280;
  --border: #E2E6EC;
  --dark: #1A1D21;
  --dark-mid: #262A2E;
  --white: #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12);
  --font-body: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', Arial, ui-sans-serif, system-ui, sans-serif;
}

/* ------------------------------------------------------------
   1. Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18.4px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ------------------------------------------------------------
   2. Utility Classes
   ------------------------------------------------------------ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }
.text-center { text-align: center; }

.bg-primary { background: var(--primary); }
.bg-surface { background: var(--surface); }
.bg-dark { background: var(--dark); }
.bg-white { background: white; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mx-auto { margin: 0 auto; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ------------------------------------------------------------
   3. Container
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* ------------------------------------------------------------
   4. Grid System
   ------------------------------------------------------------ */
.grid-2 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-5 { display: grid; gap: 24px; grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-dark {
  background: #262A2E;
  color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.btn-dark:hover {
  background: #1A1D21;
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ------------------------------------------------------------
   6. Header & Navigation
   ------------------------------------------------------------ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

/* top:0 is required -- without it the fixed header falls back to its static
   position, which WebKit/iOS resolves to a growing offset as you scroll,
   leaving the bar floating mid-page. */
.header-fixed { position: fixed; top: 0; width: 100%; left: 0; }

.header-transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.header-transparent .logo-img {
  background: white;
  border-radius: 6px;
  padding: 4px 10px;
}

.header-transparent .desktop-nav > a,
.header-transparent .desktop-nav > .nav-item > a { color: white; }

.header-transparent .header-phone { color: rgba(255, 255, 255, 0.9); }
.header-transparent .header-phone svg { stroke: rgba(255, 255, 255, 0.9); }

.header-scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: var(--border) !important;
}

.header-scrolled .logo-img {
  background: none;
  padding: 0;
}

.header-scrolled .desktop-nav > a,
.header-scrolled .desktop-nav > .nav-item > a { color: var(--text) !important; }

.header-scrolled .header-phone { color: var(--text) !important; }
.header-scrolled .header-phone svg { stroke: var(--primary) !important; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) { .header-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .header-inner { padding: 0 32px; } }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 45px; width: auto; }

.desktop-nav { display: none; align-items: center; gap: 4px; }

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.desktop-nav a:hover { color: var(--primary); }
.desktop-nav a.active { color: var(--primary); font-weight: 600; }

.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item > a svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transition: all 0.2s;
}

.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; }

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary) !important;
}

.nav-dropdown a:hover { color: var(--primary) !important; }

.header-actions { display: none; align-items: center; gap: 16px; }

@media (min-width: 1024px) {
  .header-actions { display: flex; }
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

@media (min-width: 1200px) {
  .header-phone { display: flex; }
}

.header-phone svg { width: 18px; height: 18px; stroke: var(--primary); }

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  border: none;
}

@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--text); }
.header-transparent .mobile-toggle svg { stroke: white; }
.header-scrolled .mobile-toggle svg { stroke: var(--text) !important; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover { color: var(--primary); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ------------------------------------------------------------
   7. Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-brand { max-width: 280px; }
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo { height: 40px; }
.footer-heading { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }

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

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.4); }
.footer-bottom a:hover { color: white; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--accent); color: var(--dark); }
.footer-social svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------
   8. Sections
   ------------------------------------------------------------ */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

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

.section-header h2 { font-size: 2.25rem; margin-bottom: 16px; color: var(--text); }

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-label {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   9. Hero Sections
   ------------------------------------------------------------ */
.hero-dark {
  position: relative;
  background: var(--dark);
  color: white;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 18, 21, 0.72) 0%, rgba(20, 23, 26, 0.6) 45%, rgba(24, 27, 31, 0.48) 100%);
  z-index: 1;
}

.hero-dark-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(1.1);
  z-index: 0;
}

.hero-dark-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* matches the still-image hero treatment so the fallback poster reads identically */
  filter: saturate(0.75) brightness(1.1);
  z-index: 0;
}

.hero-dark .container { position: relative; z-index: 2; }

.hero-fullscreen { min-height: 100vh; display: flex; align-items: center; }

/* Home hero only: bias the cover-crop right-of-centre so the clerk and the card
   terminal survive the narrow portrait crop, and low so the counter and the hands
   at the terminal stay in frame when the top shelves get cropped on wide screens.
   Keep the scrim light so the footage reads; contrast lives on the text, not a
   wash over the whole frame. */
.hero-fullscreen .hero-dark-video,
.hero-fullscreen .hero-dark-bg {
  object-position: 56% 58%;
  filter: saturate(0.88) brightness(1.28);
}

/* Any first-fold hero that plays footage uses the lighter scrim so the
   video reads — contrast stays on the headline, not a wash over the frame. */
.hero-dark:has(.hero-dark-video)::before {
  background:
    linear-gradient(180deg, rgba(16, 18, 21, 0.32) 0%, transparent 26%),
    linear-gradient(100deg, rgba(16, 18, 21, 0.48) 0%, rgba(16, 18, 21, 0.22) 42%, rgba(16, 18, 21, 0.06) 100%);
}
.hero-dark:has(.hero-dark-video) .hero-dark-video,
.hero-dark:has(.hero-dark-video) .hero-dark-bg {
  filter: saturate(0.88) brightness(1.28);
}
.hero-dark:has(.hero-dark-video) .hero-content {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

/* The hero image is bright exactly where the ticker column sits, and the trust bar
   immediately below already carries the same four stats — so drop the overlay
   ticker on the home hero rather than fight it for contrast. */
.hero-fullscreen .hero-ticker { display: none; }
.hero-fullscreen .hero-with-ticker { grid-template-columns: 1fr; }

.hero-fullscreen::before {
  background:
    linear-gradient(180deg, rgba(16, 18, 21, 0.32) 0%, transparent 26%),
    linear-gradient(100deg, rgba(16, 18, 21, 0.48) 0%, rgba(16, 18, 21, 0.22) 42%, rgba(16, 18, 21, 0.06) 100%);
}

.hero-fullscreen .hero-content {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-fullscreen .hero-sub {
  color: rgba(255, 255, 255, 0.92);
}

.hero-content { max-width: 700px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #E8712B;
  margin-bottom: 24px;
  background: rgba(232, 113, 43, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(232, 113, 43, 0.25);
}

.hero-dark h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-accent {
  position: relative;
  display: inline-block;
  font-family: 'Plus Jakarta Sans', serif;
  font-style: italic;
  font-weight: 800;
  color: #FFFFFF;
}

.hero-accent::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 35%;
  background: var(--accent);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.85;
  transform: skewX(-3deg);
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }

@media (min-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
}

.hero-split-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Hero Ticker */
.hero-with-ticker { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }

@media (min-width: 1024px) {
  .hero-with-ticker { grid-template-columns: 1fr auto; gap: 64px; }
}

.hero-ticker {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 140px;
  display: none;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .hero-ticker { display: block; }
}

.hero-ticker::before,
.hero-ticker::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 2;
  pointer-events: none;
}

.hero-ticker::before { top: 0; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent); }
.hero-ticker::after { bottom: 0; background: linear-gradient(to top, rgba(255, 255, 255, 0.05), transparent); }

.hero-ticker-track {
  display: flex;
  flex-direction: column;
  animation: tickerScroll 16s linear infinite;
}

.hero-ticker-item { padding: 16px 0; text-align: right; flex-shrink: 0; }

.hero-ticker-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.hero-ticker-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes tickerScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Hero Stats — mobile only */
.hero-stats-mobile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 1024px) {
  .hero-stats-mobile { display: none; }
}

.hero-stat-mobile { text-align: center; }

.hero-stat-mobile-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
}

.hero-stat-mobile-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   10. Stat Bar
   ------------------------------------------------------------ */
.stat-bar { background: var(--dark-mid); padding: 32px 0; }

.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stat-bar-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-value { font-size: 2rem; font-weight: 800; color: #E8712B; line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

/* ------------------------------------------------------------
   11. Trust Bar
   ------------------------------------------------------------ */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-inner,
.trust-bar-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.trust-badge svg { width: 18px; height: 18px; stroke: #E8712B; }

/* ------------------------------------------------------------
   12. Cards
   ------------------------------------------------------------ */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 24px; height: 24px; stroke: var(--primary); }

.card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }

.card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* Service Card */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card-img { aspect-ratio: 16/10; overflow: hidden; }

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   12b. Bento Grid
   ------------------------------------------------------------ */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
  transition: background 0.3s;
}

.bento-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.52) 100%);
}

.bento-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.bento-card:hover > img { transform: scale(1.05); }
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.bento-card-content { position: relative; z-index: 2; }
.bento-card-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: white; }

.bento-card-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 10px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, gap 0.3s;
}

.bento-card:hover .bento-link { color: white; gap: 8px; }

.bento-featured .bento-card-content h3 { font-size: 1.4rem; }
.bento-featured .bento-card-content p { font-size: 0.95rem; max-width: 380px; }

@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(220px, auto); }
  .bento-featured { grid-column: 1 / 3; grid-row: 1 / 3; min-height: 100%; }
  .bento-card:nth-child(4) { grid-column: 1; }
  .bento-card:nth-child(5) { grid-column: 2 / 4; }

  /* Industries listing: column-major flow so the list reads straight DOWN each
     column instead of across rows. With 13 cards over 3 columns of 5, the five
     outdoor categories fill the left-hand column top to bottom. */
  .bento-grid-columns {
    grid-template-rows: repeat(5, minmax(220px, auto));
    grid-auto-flow: column;
  }
  .bento-grid-columns .bento-card:nth-child(4),
  .bento-grid-columns .bento-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 767px) {
  .bento-card { min-height: 200px; }
  .bento-featured .bento-card-content h3 { font-size: 1.2rem; }
  .bento-featured .bento-card-content p { font-size: 0.88rem; }
}

/* ------------------------------------------------------------
   12c. Testimonial Cards
   ------------------------------------------------------------ */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  text-align: center;
}

.testimonial-stars { display: flex; gap: 3px; justify-content: center; }
.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testimonial-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* 12d. Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-carousel-track .testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}
.testimonial-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.testimonial-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.testimonial-carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
.testimonial-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
  padding: 0;
}
.testimonial-carousel-nav:hover { background: white; box-shadow: var(--shadow-lg); }
.testimonial-carousel-nav.prev { left: 12px; }
.testimonial-carousel-nav.next { right: 12px; }
@media (max-width: 639px) {
  .testimonial-carousel-nav { display: none; }
  .testimonial-card { padding: 24px 20px; }
}

/* ------------------------------------------------------------
   13. Split Section
   ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }

@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-content { order: -1; }
}

.split-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-content h2 { font-size: 2rem; margin-bottom: 16px; }

.split-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-content .btn { margin-top: 8px; }

.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }

.feature-list li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 2px;
}

/* ------------------------------------------------------------
   14. Process Section
   ------------------------------------------------------------ */
.process-section { background: var(--dark); color: white; padding: 80px 0; }
.process-section .section-header h2 { color: white; }
.process-section .section-header p { color: rgba(255, 255, 255, 0.7); }
.process-section .section-label { background: rgba(255, 255, 255, 0.1); color: #E8712B; }

.process-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

.process-step { text-align: center; padding: 32px 24px; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #E8712B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E8712B;
  margin: 0 auto 20px;
}

.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

/* 14b. Mid-Page CTA Banner */
.cta-banner {
  background: var(--primary);
  padding: 48px 0;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.cta-banner .btn-primary {
  background: white;
  color: var(--primary);
  border-color: white;
}
.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}
.cta-banner .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-banner .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* ------------------------------------------------------------
   15. CTA Sections
   ------------------------------------------------------------ */
.cta-dark {
  background: var(--dark);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-dark::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 86, 50, 0.2), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 { font-size: 2.25rem; margin-bottom: 16px; }

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cta-form-grid { grid-template-columns: 1fr 1fr; }
}

.cta-form-content h2 { font-size: 2rem; margin-bottom: 16px; }

.cta-form-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   16. Forms
   ------------------------------------------------------------ */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: all 0.2s;
  color: var(--text);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

textarea.form-control { min-height: 120px; resize: vertical; }

.cta-dark .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.cta-dark .form-control::placeholder { color: rgba(255, 255, 255, 0.4); }

/* Windows Chrome renders <option> lists on a native white panel that inherits
   the select's text color — the white text of .cta-dark selects made options
   invisible. Force readable colors on the dropdown list itself. */
select.form-control { color-scheme: light; }
select.form-control option {
  color: #1a2a4a;
  background: #ffffff;
}

.cta-dark .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.15);
}

.cta-dark .form-group label { color: rgba(255, 255, 255, 0.7); }

.form-success {
  background: rgba(26, 86, 50, 0.08);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: var(--radius-md);
}

.form-success h3 { color: var(--accent); margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }

.cta-dark .form-success { background: rgba(26, 86, 50, 0.1); }
.cta-dark .form-success h3 { color: var(--accent); }
.cta-dark .form-success p { color: rgba(255, 255, 255, 0.7); }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ------------------------------------------------------------
   17. Contact Sidebar
   ------------------------------------------------------------ */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--primary); }

.contact-item a { color: var(--primary); font-weight: 500; }

/* Contact-card rows: label and value share one typeface and one rhythm,
   so every row reads the same instead of mixing heading/body fonts. */
.contact-card .contact-item { align-items: flex-start; margin-bottom: 20px; }
.contact-card .contact-item:last-child { margin-bottom: 0; }

.contact-card .contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card .contact-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--text);
}

.contact-card .contact-item p + p { margin-top: 2px; }
.contact-card .contact-item a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   18. FAQ Accordion
   ------------------------------------------------------------ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   19. Breadcrumbs
   ------------------------------------------------------------ */
.breadcrumb { background: var(--surface); padding: 16px 0; }

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumb-inner a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner svg { width: 14px; height: 14px; stroke: var(--text-muted); }
.breadcrumb-inner span { color: var(--text); font-weight: 500; }

/* ------------------------------------------------------------
   20. Modal (Quote Modal)
   ------------------------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.modal-close:hover { background: var(--border); }
.modal-close svg { width: 18px; height: 18px; stroke: var(--text-muted); }
.modal h2 { font-size: 1.5rem; margin-bottom: 8px; }
.modal > p { color: var(--text-secondary); margin-bottom: 24px; }

/* ------------------------------------------------------------
   21. Page Header (Inner Pages)
   ------------------------------------------------------------ */
.page-header {
  background: var(--dark);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 29, 33, 0.7), rgba(38, 42, 46, 0.6));
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(1.25);
  z-index: 0;
}

.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); max-width: 560px; }

/* ------------------------------------------------------------
   22. Service Detail
   ------------------------------------------------------------ */
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }

@media (min-width: 1024px) {
  .detail-grid { grid-template-columns: 2fr 1fr; }
}

.detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.detail-card h2 { font-size: 1.5rem; margin-bottom: 16px; }

.sidebar-cta {
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 96px;
}

.sidebar-cta h3 { font-size: 1.25rem; margin-bottom: 12px; }

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   23. Mobile Responsive Overrides
   ------------------------------------------------------------ */

/* Tablets & smaller */
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 64px 0; }
  .section-sm { padding: 36px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.75rem; }
  .hero-dark { padding: 120px 0 72px; }
  .hero-dark h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 1.05rem; }
  .page-header { padding: 80px 0 48px; }
  .page-header h1 { font-size: 2rem; }
  .site-footer { padding: 48px 0 0; }
  .process-section { padding: 56px 0; }
  .cta-dark { padding: 56px 0; }
  .cta-content h2 { font-size: 1.75rem; }
  .stat-value { font-size: 1.75rem; }
}

/* Small phones */
@media (max-width: 639px) {
  .card { padding: 24px 20px; }
  .detail-card { padding: 24px 20px; }
  .contact-card { padding: 20px; }
  .hero-dark h1 { font-size: 1.875rem; }
  .hero-dark { padding: 100px 0 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section-header h2 { font-size: 1.5rem; }
  .cta-content h2 { font-size: 1.5rem; }
  .modal { padding: 24px; }
  .stat-bar-grid { gap: 16px; }
  .stat-value { font-size: 1.5rem; }
  .stat-label { font-size: 0.75rem; }
}

/* Extra small */
@media (max-width: 479px) {
  .hero-dark { padding: 90px 0 48px; }
  .hero-dark h1 { font-size: 1.625rem; }
  .section { padding: 40px 0; }
  .btn-lg { padding: 14px 28px; }
  .page-header h1 { font-size: 1.625rem; }
  .page-header { padding: 72px 0 36px; }
}

/* Sub-Verticals Tags */
.sub-verticals .section-header { margin-bottom: 32px; }
.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.vertical-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.tag-type {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-light);
  color: var(--primary);
}

/* Wide Nav Dropdown (2-column) */
.nav-dropdown-wide {
  min-width: 480px;
  padding: 12px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  /* Column-major flow: the list reads straight down, outdoor categories
     stay together in the left column (matches the industries grid). */
  grid-template-rows: repeat(7, auto);
  grid-auto-flow: column;
  gap: 0;
}
.nav-dropdown-wide a {
  padding: 8px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
}
