:root {
    --brand-dark: #113285;
    --brand-blue: #1E50C5;
    --cta-orange: #F37021;
    --cta-orange-hover: #D95D12;
    --brand-gradient: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
    --font-heading-name: 'Sora';
    --font-body-name: 'Inter';
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --letter-spacing-heading: -0.02em;
    --letter-spacing-body: 0px;

    --space-base: 8px;
    --radius-small: 8px;
    --radius-large: 16px;
    --border-width: 1px;

    --shadow-color: 17 50 133;
    --shadow-offset-x: 0px;
    --shadow-offset-y: 0px;
    --shadow-blur: 20px;
    --shadow-spread: 0px;
    --shadow-opacity: 0.4;
    --shadow-custom: 0px 10px 28px rgba(20, 60, 175, 0.1);
    --shadow-custom-hover: 0px 16px 38px rgba(20, 60, 175, 0.18);

    --bg-primary: #ffffff;
    --bg-surface: #f6f8ff;
    --bg-elevated: #ffffff;
    --accent-primary: var(--brand-blue);
    --accent-secondary: var(--brand-dark);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-subtle: #d8e2ff;
    --success: #10B981;
    --cta-gradient: var(--brand-gradient);
  }


/*
 * New Frame Styles
 * Generated by UXMagic Copilot
 * 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout & Grid
 * 4. Components
 * 5. Utilities
 * 6. Responsive Design
 */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

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


html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}


body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}


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


/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}


p {
  margin: 0 0 1rem 0;
}


a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}


a:hover {
  color: #0056b3;
  text-decoration: underline;
}


/* ==========================================================================
   3. Layout & Grid
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}


.col {
  flex: 1;
  padding: 0 0.5rem;
}


/* ==========================================================================
   4. Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #007bff;
  color: white;
}


.btn:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
}


.card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.2s ease;
}


.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   5. Utilities
   ========================================================================== */

.text-center { text-align: center; }

.text-left { text-align: left; }

.text-right { text-align: right; }


.mb-1 { margin-bottom: 0.25rem; }

.mb-2 { margin-bottom: 0.5rem; }

.mb-3 { margin-bottom: 1rem; }

.mb-4 { margin-bottom: 1.5rem; }


.d-none { display: none; }

.d-block { display: block; }

.d-flex { display: flex; }


/* ==========================================================================
   6. Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .row {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {

  .container {
    padding: 0 0.5rem;
  }

  
  h1 { font-size: 1.75rem; }

  h2 { font-size: 1.5rem; }

  h3 { font-size: 1.25rem; }


}


/* ==========================================================================
   7. Project Specific Styles
   ========================================================================== */

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


body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: var(--letter-spacing-heading)
}


.gold-gradient-text {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}


.gold-gradient-bg {
  background: var(--cta-gradient)
}


.glass-card {
  background: rgba(28, 35, 51, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-large)
}


.glass-card-subtle {
  background: rgba(28, 35, 51, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(31, 41, 55, 0.8);
  border-radius: var(--radius-large)
}


.section-overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 12px
}


.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-heading);
  color: var(--text-primary);
  line-height: 1.15
}


.cta-primary {
  background: var(--cta-gradient);
  color: #0A0D14;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-small);
  padding: 16px 32px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap
}


.cta-primary:hover {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  filter: brightness(1.08);
  transform: translateY(-1px)
}


.cta-secondary {
  background: transparent;
  color: var(--accent-primary);
  font-weight: 700;
  font-family: var(--font-body);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-small);
  padding: 16px 32px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap
}


.cta-secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.2)
}


.section-pad {
  padding: 120px 0
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}


#hero {
  min-height: 100vh;
  background-color: var(--bg-primary);
  background-image: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%), repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}


.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%
}


.hero-h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: var(--letter-spacing-heading)
}


.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px
}


.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px
}


.trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap
}


.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid var(--border-subtle)
}


.trust-item:first-child {
  padding-left: 0
}


.trust-item:last-child {
  border-right: none
}


.trust-icon {
  width: 20px;
  height: 20px;
  background: var(--cta-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0
}


.trust-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap
}


.hero-map-card {
  background: rgba(28, 35, 51, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 32px;
  position: relative
}


.world-map-container {
  position: relative;
  width: 100%;
  height: 280px;
  margin-bottom: 24px
}


.world-map-svg,
.world-map-image {
  width: 100%;
  height: 100%
}

.world-map-image {
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none
}


.pulse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-primary)
}


.pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse-ring 2s ease-out infinite
}


@keyframes pulse-ring {
  0% {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.8
}

100% {
  transform: translate(-50%, -50%) scale(3.5);
  opacity: 0
}


}


.map-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}


.map-chip {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-secondary);
  white-space: nowrap
}


#industries {
  background: var(--bg-surface)
}


.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px
}


.industry-card {
  background: rgba(28, 35, 51, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-large);
  padding: 32px 24px;
  transition: all 0.3s ease;
  cursor: default
}


.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12), inset 0 0 20px rgba(201, 168, 76, 0.04)
}


.industry-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  line-height: 1
}

.industry-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain
}


.industry-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: var(--letter-spacing-heading)
}


.industry-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5
}


#products {
  background: var(--bg-surface)
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px
}


.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all 0.3s ease
}


.product-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3)
}


.product-img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}


.product-img-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.8);
  text-align: center;
  z-index: 1;
  padding: 0 16px;
  letter-spacing: var(--letter-spacing-heading)
}


.product-card-body {
  padding: 24px
}


.product-cat-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: var(--letter-spacing-heading)
}


.product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px
}


.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between
}


.product-badge {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-secondary);
  letter-spacing: 0.04em
}


.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px
}


.product-link:hover {
  color: var(--accent-secondary)
}


#why-us {
  background: var(--bg-primary)
}


.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}


.why-left {
  position: relative;
  padding-left: 28px
}


.why-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cta-gradient);
  border-radius: 4px
}


.feature-row {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  align-items: flex-start
}


.feature-row:last-child {
  margin-bottom: 0
}


.feature-check {
  width: 28px;
  height: 28px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px
}


.feature-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: var(--letter-spacing-heading)
}


.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6
}


.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}


.stat-card {
  background: rgba(28, 35, 51, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-large);
  padding: 28px 24px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease
}


.stat-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1)
}


.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: var(--letter-spacing-heading)
}


.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4
}


#export-map {
  background: var(--bg-primary);
  text-align: center
}


.map-svg-container {
  max-width: 1100px;
  margin: 56px auto 40px;
  position: relative
}

.global-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
  pointer-events: none;
  user-select: none
}

.global-map-effects {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}


.region-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-primary);
  transform: translate(-50%, -50%);
  cursor: pointer
}


.region-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse-ring 2.5s ease-out infinite
}


.region-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px
}


.region-chip {
  background: rgba(28, 35, 51, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap
}


.region-chip:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--accent-secondary)
}


.map-trust-line {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0.8
}


#distributor {
  background: var(--bg-surface)
}


.distributor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative
}


.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px
}


.process-step:last-child {
  padding-bottom: 0
}


.process-step::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed rgba(201, 168, 76, 0.3)
}


.process-step:last-child::after {
  display: none
}


.step-num {
  width: 40px;
  height: 40px;
  background: var(--cta-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0A0D14;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}


.step-content {
  
}


.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: var(--letter-spacing-heading)
}


.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6
}


.tier-card {
  background: rgba(28, 35, 51, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-large);
  overflow: hidden
}


.tier-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15)
}


.tier-header-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: var(--letter-spacing-heading)
}


.tier-row {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.6);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: background 0.2s
}


.tier-row:hover {
  background: rgba(201, 168, 76, 0.04)
}


.tier-row.gold-tier {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.2)
}


.tier-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  min-width: 80px;
  letter-spacing: var(--letter-spacing-heading)
}


.tier-moq {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 90px
}


.tier-benefits {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1
}


.tier-benefit-chip {
  background: rgba(28, 35, 51, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-secondary);
  white-space: nowrap
}


.tier-footer {
  padding: 24px 28px
}


#rfq {
  background: var(--bg-primary);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 65%)
}


.rfq-form-card {
  max-width: 720px;
  margin: 56px auto 0;
  background: rgba(28, 35, 51, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 48px
}


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}


.form-group.full-width {
  grid-column: 1 / -1
}


.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  font-family: var(--font-body)
}


.form-input, .form-select, .form-textarea {
  background: #1C2333;
  border: 1px solid #2D3748;
  border-radius: var(--radius-small);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none
}


.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(156, 163, 175, 0.5)
}


.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2)
}


.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer
}


.form-select option {
  background: #1C2333;
  color: var(--text-primary)
}


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


.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}


.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer
}


.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
  flex-shrink: 0
}


.checkbox-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  cursor: pointer
}


.submit-btn {
  width: 100%;
  background: var(--cta-gradient);
  color: #0A0D14;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-small);
  padding: 18px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px
}


.submit-btn:hover {
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.5);
  filter: brightness(1.08)
}


.form-trust-signals {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center
}
@media (max-width: 1279px) {

  .section-pad {
  padding: 80px 0
}


.container {
  padding: 0 32px
}


.hero-inner {
  padding: 80px 32px;
  gap: 48px
}


.hero-h1 {
  font-size: 42px
}


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


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


.why-inner {
  gap: 48px
}


.distributor-inner {
  gap: 48px
}


.rfq-form-card {
  padding: 36px
}




}
@media (max-width: 767px) {

  .section-pad {
  padding: 60px 0
}


.container {
  padding: 0 20px
}


.hero-inner {
  grid-template-columns: 1fr;
  padding: 80px 20px 60px;
  gap: 40px
}


.hero-h1 {
  font-size: 34px
}


.hero-sub {
  font-size: 16px
}


.hero-ctas {
  flex-direction: column
}


.hero-ctas .cta-primary, .hero-ctas .cta-secondary {
  width: 100%;
  justify-content: center;
  min-height: 48px
}


.trust-bar {
  gap: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px
}


.trust-item {
  border-right: none;
  padding: 0
}


.industries-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}


.industry-card {
  padding: 20px 16px
}


.industry-icon {
  width: 44px;
  height: 44px;
  font-size: 36px;
  margin-bottom: 12px
}


.industry-name {
  font-size: 14px
}


.products-grid {
  grid-template-columns: 1fr
}


.why-inner {
  grid-template-columns: 1fr;
  gap: 48px
}


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


.stat-number {
  font-size: 32px
}


.distributor-inner {
  grid-template-columns: 1fr;
  gap: 48px
}


.rfq-form-card {
  padding: 24px 20px;
  margin: 40px 20px 0
}


.form-grid {
  grid-template-columns: 1fr
}


.checkbox-grid {
  grid-template-columns: 1fr
}


.region-chips {
  gap: 8px
}


.region-chip {
  font-size: 12px;
  padding: 8px 14px
}


.map-chips {
  gap: 6px
}


.map-chip {
  font-size: 11px;
  padding: 5px 10px
}




}

/* WordPress shell integration */
.future-divine-page { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); }
.future-divine-page a { color: inherit; }
.future-divine-page .container { max-width: 1280px; }
.future-divine-page .fd-map-compact { min-height: 260px; }
.future-divine-page .form-message { margin-top: 16px; color: var(--success); font-size: 14px; text-align: center; }

.site-header {
  background: rgba(10, 13, 20, 0.92);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 76px;
}

.site-brand,
.site-brand__text {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-brand {
  gap: 12px;
}

.site-brand__logo img {
  height: 38px;
  width: auto;
}

.nav-menu,
.nav-menu__primary,
.nav-links {
  align-items: center;
}

.nav-links,
.nav-list {
  gap: 28px;
}

.nav-links a,
.nav-links .menu-item > a,
.nav-link {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  min-height: auto;
  padding: 10px 0;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .menu-item > a:hover,
.nav-links .menu-item > a:focus-visible,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--accent-secondary);
  text-decoration: none;
}

.nav-toggle span:not(.sr-only) {
  background: var(--text-primary);
}

.site-footer {
  background: var(--bg-primary);
}

/* Future Divine WordPress inner pages */
.fd-inner-page {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
}

.fd-inner-page a {
  color: inherit;
}

.fd-inner-page .container {
  max-width: 1280px;
}

.fd-inner-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.18), transparent 260px),
    linear-gradient(135deg, #0A0D14 0%, #111827 52%, #0A0D14 100%);
}

.fd-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.fd-inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 56px;
  align-items: center;
}

.fd-inner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 18px;
}

.fd-inner-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text-primary);
}

.fd-inner-lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.fd-inner-visual {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-large);
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    radial-gradient(circle at 70% 20%, rgba(232, 201, 122, 0.22), transparent 150px),
    linear-gradient(145deg, rgba(28, 35, 51, 0.88), rgba(10, 13, 20, 0.96));
  box-shadow: var(--shadow-custom);
  overflow: hidden;
}

.fd-inner-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.14);
}

.fd-inner-visual strong {
  position: absolute;
  left: 32px;
  bottom: 58px;
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.9;
  color: var(--accent-secondary);
}

.fd-inner-visual span {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fd-inner-section {
  padding: 88px 0;
  background: var(--bg-primary);
}

.fd-inner-section--surface {
  background: var(--bg-surface);
}

.fd-inner-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.fd-inner-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fd-inner-heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.fd-inner-heading p {
  margin: 16px 0 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.fd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

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

.fd-panel,
.fd-card {
  border-radius: var(--radius-large);
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(28, 35, 51, 0.72);
  box-shadow: var(--shadow-custom);
}

.fd-card {
  padding: 28px;
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fd-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.36);
  box-shadow: var(--shadow-custom-hover);
}

.fd-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--accent-secondary);
  font-size: 24px;
  font-weight: 800;
}

.fd-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.fd-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.72;
}

.fd-card-meta {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fd-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.fd-list {
  display: grid;
  gap: 18px;
}

.fd-list-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius-large);
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(28, 35, 51, 0.52);
}

.fd-list-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--cta-gradient);
  color: var(--bg-primary);
  font-weight: 900;
}

.fd-list-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--text-primary);
}

.fd-list-item p {
  margin: 0;
  color: var(--text-secondary);
}

.fd-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fd-stat {
  padding: 24px;
  text-align: center;
  border-radius: var(--radius-large);
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(28, 35, 51, 0.6);
}

.fd-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
  color: var(--accent-secondary);
}

.fd-stat span {
  display: block;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
}

.fd-map-panel {
  padding: 28px;
  overflow: hidden;
}

.fd-map-panel svg {
  width: 100%;
  height: auto;
  display: block;
}

.fd-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 201, 122, 0.24), transparent 220px),
    linear-gradient(135deg, #111827, #0A0D14);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: var(--shadow-custom);
}

.fd-cta-band h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: var(--text-primary);
}

.fd-cta-band p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.fd-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px;
}

.fd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fd-form-field.full {
  grid-column: 1 / -1;
}

.fd-form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
}

.fd-form-field input,
.fd-form-field textarea,
.fd-form-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-small);
  background: rgba(10, 13, 20, 0.72);
  color: var(--text-primary);
  font-family: var(--font-body);
  padding: 12px 14px;
}

.fd-form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.fd-contact-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.fd-contact-card-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.fd-contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 6px 18px;
  align-items: center;
  min-height: auto;
  padding: 24px;
}

.fd-contact-card .fd-card-icon {
  grid-row: 1 / span 2;
  margin: 0;
}

.fd-contact-card h3 {
  margin: 0;
}

.fd-contact-card p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.fd-contact-card p,
.fd-contact-card a {
  line-height: 1.55;
}

.fd-contact-layout .fd-form-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

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

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

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

@media (max-width: 767px) {
  .fd-inner-hero {
    padding: 72px 0 56px;
  }

  .fd-inner-visual {
    min-height: 220px;
  }

  .fd-inner-section {
    padding: 60px 0;
  }

  .fd-card-grid,
  .fd-card-grid--2,
  .fd-card-grid--4,
  .fd-form-grid,
  .fd-stat-grid {
    grid-template-columns: 1fr;
  }

  .fd-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .fd-form-card {
    padding: 24px;
  }

  .fd-contact-card {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 20px;
  }

  .fd-contact-card .fd-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

/* Future Divine product archive and single product pages */
.future-divine-product {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
}

.future-divine-product .catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 48px;
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 168, 76, 0.18), transparent 280px),
    linear-gradient(135deg, #0A0D14 0%, #111827 54%, #0A0D14 100%);
}

.future-divine-product .catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.future-divine-product .catalog-hero > .container {
  position: relative;
  z-index: 1;
}

.future-divine-product .breadcrumbs {
  color: var(--accent-primary);
  font-family: var(--font-body);
  letter-spacing: 0.14em;
}

.future-divine-product .breadcrumbs a {
  color: var(--accent-secondary);
}

.future-divine-product .catalog-hero h1,
.future-divine-product .product-single__hero-copy h1,
.future-divine-product .section-heading h2,
.future-divine-product .catalog-category-card h3,
.future-divine-product .product-card h3,
.future-divine-product .product-single__cta h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.future-divine-product .catalog-hero h1,
.future-divine-product .product-single__hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.future-divine-product .catalog-hero p,
.future-divine-product .product-single__hero-copy p,
.future-divine-product .section-heading p,
.future-divine-product .product-single__body,
.future-divine-product .product-single__term-group p,
.future-divine-product .product-single__cta p {
  color: var(--text-secondary);
}

.future-divine-product .catalog-search input,
.future-divine-product .catalog-select select {
  background: rgba(10, 13, 20, 0.72);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.future-divine-product .catalog-search input::placeholder {
  color: rgba(244, 244, 245, 0.48);
}

.future-divine-product .text-link,
.future-divine-product .product-link {
  color: var(--accent-secondary);
}

.future-divine-product .catalog-page,
.future-divine-product .section {
  background: var(--bg-primary);
}

.future-divine-product .catalog-layout {
  grid-template-columns: minmax(13rem, 14.5rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 2.4vw, 2rem);
}

.future-divine-product .catalog-main {
  min-width: 0;
}

.future-divine-product .catalog-filter-panel,
.future-divine-product .catalog-recent,
.future-divine-product .surface-panel,
.future-divine-product .product-card {
  background: rgba(28, 35, 51, 0.62);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-custom);
  color: var(--text-primary);
}

.future-divine-product .catalog-filter-panel {
  padding: clamp(1.1rem, 1.8vw, 1.35rem);
}

.future-divine-product .catalog-filter-panel__header {
  align-items: center;
  gap: 0.75rem;
}

.future-divine-product .catalog-filter-panel__header h2 {
  color: var(--accent-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.future-divine-product .catalog-filter-panel__header .text-link {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.future-divine-product .catalog-filter-panel__header .text-link::after {
  content: none;
}

.future-divine-product .catalog-filter-panel__header,
.future-divine-product .catalog-filter-group + .catalog-filter-group,
.future-divine-product .product-single__term-group + .product-single__term-group {
  border-color: rgba(201, 168, 76, 0.16);
}

.future-divine-product .catalog-filter-panel h2,
.future-divine-product .catalog-filter-group h3,
.future-divine-product .catalog-recent h3,
.future-divine-product .product-single__term-group h3,
.future-divine-product .product-card__eyebrow {
  color: var(--accent-primary);
  font-family: var(--font-body);
}

.future-divine-product .catalog-check,
.future-divine-product .catalog-product__meta,
.future-divine-product .mini-product-card p {
  color: var(--text-secondary);
}

.future-divine-product .catalog-check {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.38;
}

.future-divine-product .catalog-check input {
  accent-color: var(--accent-primary);
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 0 0;
}

.future-divine-product .catalog-check span {
  min-width: 0;
}

.future-divine-product .catalog-category-card {
  border: 1px solid rgba(201, 168, 76, 0.16);
  box-shadow: var(--shadow-custom);
}

.future-divine-product .catalog-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.future-divine-product .product-card--catalog {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.future-divine-product .product-card--catalog .product-card__media {
  height: 200px;
  min-height: 0;
}

.future-divine-product .product-card--catalog .product-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 24px;
}

.future-divine-product .product-card--catalog .product-card__eyebrow {
  margin: 0;
}

.future-divine-product .product-card--catalog h3 {
  font-size: 17px;
  line-height: 1.25;
}

.future-divine-product .product-card--catalog .catalog-product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  line-height: 1.4;
}

.future-divine-product .catalog-category-card__media--lab,
.future-divine-product .catalog-category-card__media--emerald,
.future-divine-product .product-card__media--block,
.future-divine-product .product-card__media--injector,
.future-divine-product .product-card__media--cabinet,
.future-divine-product .product-card__media--vial,
.future-divine-product .product-card__media--scanner,
.future-divine-product .product-card__media--grid,
.future-divine-product .product-single__image--placeholder {
  background:
    radial-gradient(circle at 70% 20%, rgba(232, 201, 122, 0.2), transparent 150px),
    linear-gradient(145deg, #1C2333, #0A0D14);
}

.future-divine-product .product-card__badge {
  background: var(--cta-gradient);
  color: var(--bg-primary);
}

.future-divine-product .button,
.future-divine-product .button--dark,
.future-divine-product .button:visited {
  background: var(--cta-gradient);
  border: 0;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 800;
}

.future-divine-product .button--light {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.34);
  color: var(--accent-secondary);
}

.future-divine-product .catalog-pagination {
  justify-content: flex-start;
  margin: 0 0 28px;
}

.future-divine-product .catalog-pagination + .catalog-product-grid {
  margin-top: 8px;
}

.future-divine-product .catalog-product-grid + .catalog-pagination {
  margin-top: 34px;
  justify-content: center;
}

.future-divine-product .catalog-pagination__item,
.future-divine-product .catalog-pagination__arrow {
  background: rgba(28, 35, 51, 0.72);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--text-primary);
}

.future-divine-product .catalog-pagination__item.is-active,
.future-divine-product .catalog-pagination__item.current {
  background: var(--cta-gradient);
  border-color: transparent;
  color: var(--bg-primary);
}

.future-divine-product .catalog-procurement__band {
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 201, 122, 0.22), transparent 220px),
    linear-gradient(135deg, #111827, #0A0D14);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-custom);
}

.future-divine-product .catalog-procurement__metric {
  border-color: rgba(201, 168, 76, 0.16);
  background: rgba(10, 13, 20, 0.54);
}

.future-divine-product .catalog-procurement__metric strong,
.future-divine-product .eyebrow {
  color: var(--accent-secondary);
}

.future-divine-product .product-single-hero .product-single__hero-copy h1 {
  color: #ffffff !important;
}

.future-divine-product .product-single-hero .product-single__hero-copy > p:not(.eyebrow),
.future-divine-product .product-single-hero .product-single__meta-row .trust-item {
  color: rgba(255, 255, 255, 0.74);
}

.future-divine-product .product-single-hero .product-single__hero-copy .eyebrow {
  color: var(--accent-secondary);
}

.future-divine-product .product-single__content,
.future-divine-product .product-single__taxonomy,
.future-divine-product .product-single__cta {
  background: #ffffff;
  border: 1px solid rgba(10, 13, 20, 0.08);
  box-shadow: 0 20px 48px rgba(10, 13, 20, 0.12);
  color: #111827;
}

.future-divine-product .product-single__content .section-heading h2,
.future-divine-product .product-single__taxonomy .section-heading h2,
.future-divine-product .product-single__cta h2 {
  color: #0A0D14;
}

.future-divine-product .product-single__body,
.future-divine-product .product-single__body p,
.future-divine-product .product-single__body li,
.future-divine-product .product-single__body td,
.future-divine-product .product-single__term-group p,
.future-divine-product .product-single__cta p {
  color: #111827 !important;
}

.future-divine-product .product-single__body span,
.future-divine-product .product-single__body strong,
.future-divine-product .product-single__body em,
.future-divine-product .product-single__body figcaption {
  color: inherit !important;
}

.future-divine-product .product-single__body h1,
.future-divine-product .product-single__body h2,
.future-divine-product .product-single__body h3,
.future-divine-product .product-single__body h4,
.future-divine-product .product-single__body h5,
.future-divine-product .product-single__body h6 {
  color: #0A0D14;
  font-family: var(--font-heading);
}

.future-divine-product .product-single__body a {
  color: #8A6A18;
}

.future-divine-product .product-single__body table {
  border-color: rgba(10, 13, 20, 0.12);
  color: #111827;
}

.future-divine-product .product-single__body th {
  background: #1C2333;
  color: #ffffff !important;
}

.future-divine-product .product-single__body td {
  background: #ffffff;
  border-color: rgba(10, 13, 20, 0.12);
  color: #111827 !important;
}

.future-divine-product .product-single__term-group h3,
.future-divine-product .product-single__cta .eyebrow {
  color: var(--accent-primary);
}

/* White and blue theme overrides */
body {
  background: #ffffff;
  color: #0f172a;
}

.site-header {
  background: rgba(20, 60, 175, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-brand,
.site-brand__text,
.site-brand--footer,
.nav-links a,
.nav-links .menu-item > a,
.nav-link {
  color: #ffffff;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .menu-item > a:hover,
.nav-links .menu-item > a:focus-visible,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: #dbe6ff;
}

.nav-toggle span:not(.sr-only) {
  background: #ffffff;
}

.site-footer {
  background: #143caf;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid h3,
.footer-brand .site-brand,
.footer-bottom p {
  color: #ffffff;
}

.footer-grid p,
.footer-grid a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-signup input {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.34);
  color: #0f172a;
}

.footer-socials a {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.future-divine-page,
.fd-inner-page,
.future-divine-product,
#industries,
#why-us,
#rfq,
.fd-inner-section,
.future-divine-product .catalog-page,
.future-divine-product .section {
  background: #ffffff;
  color: #0f172a;
}

#products,
#distributor,
.fd-inner-section--surface {
  background: #f6f8ff !important;
}

#hero,
.fd-inner-hero,
.future-divine-product .catalog-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.18), transparent 280px),
    linear-gradient(135deg, #143caf 0%, #2454c2 56%, #143caf 100%);
}

#hero::before,
.fd-inner-hero::before,
.future-divine-product .catalog-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
}

#hero .section-overline,
#hero .hero-h1,
#hero .hero-sub,
.fd-inner-hero .fd-inner-kicker,
.fd-inner-hero .fd-inner-title,
.fd-inner-hero .fd-inner-lead,
.future-divine-product .catalog-hero .breadcrumbs,
.future-divine-product .catalog-hero .breadcrumbs a,
.future-divine-product .catalog-hero h1,
.future-divine-product .catalog-hero p,
.future-divine-product .product-single-hero .product-single__hero-copy h1,
.future-divine-product .product-single-hero .product-single__hero-copy > p:not(.eyebrow),
.future-divine-product .product-single-hero .product-single__meta-row .trust-item {
  color: #ffffff !important;
}

#hero .section-overline,
.fd-inner-hero .fd-inner-kicker,
.future-divine-product .catalog-hero .breadcrumbs,
.future-divine-product .catalog-hero .eyebrow {
  color: #dbe6ff !important;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff, #dbe6ff);
  -webkit-background-clip: text;
  background-clip: text;
}

#products .section-heading,
#distributor .section-heading,
#export-map .section-heading,
#rfq .section-heading,
.fd-inner-heading h2,
.future-divine-product .section-heading h2,
.future-divine-product .product-card h3,
.future-divine-product .catalog-category-card h3 {
  color: #0f172a;
}

.section-overline,
.fd-inner-kicker,
.product-link,
.text-link,
.future-divine-product .text-link,
.future-divine-product .product-link,
.future-divine-product .catalog-filter-panel h2,
.future-divine-product .catalog-filter-group h3,
.future-divine-product .catalog-recent h3,
.future-divine-product .product-card__eyebrow,
.future-divine-product .catalog-procurement__metric strong,
.future-divine-product .eyebrow {
  color: #143caf;
}

.hero-map-card,
.industry-card,
.product-card,
.why-feature,
.why-stat,
.distributor-card,
.tier-row,
.rfq-form-card,
.fd-panel,
.fd-card,
.fd-list-item,
.fd-stat,
.fd-map-panel,
.future-divine-product .catalog-filter-panel,
.future-divine-product .catalog-recent,
.future-divine-product .surface-panel,
.future-divine-product .product-card,
.future-divine-product .catalog-category-card,
.future-divine-product .catalog-procurement__metric {
  background: #ffffff;
  border-color: rgba(20, 60, 175, 0.16);
  box-shadow: 0 16px 36px rgba(20, 60, 175, 0.1);
  color: #0f172a;
}

.hero-map-card,
.fd-inner-hero .fd-inner-visual,
.future-divine-product .product-single__media {
  background:
    radial-gradient(circle at 75% 20%, rgba(20, 60, 175, 0.14), transparent 160px),
    linear-gradient(145deg, #ffffff, #eef3ff);
}

.product-img-placeholder,
.catalog-category-card__media,
.future-divine-product .catalog-category-card__media--lab,
.future-divine-product .catalog-category-card__media--emerald,
.future-divine-product .product-card__media--block,
.future-divine-product .product-card__media--injector,
.future-divine-product .product-card__media--cabinet,
.future-divine-product .product-card__media--vial,
.future-divine-product .product-card__media--scanner,
.future-divine-product .product-card__media--grid,
.future-divine-product .product-single__image--placeholder {
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 255, 255, 0.34), transparent 150px),
    linear-gradient(135deg, #143caf, #315fd0) !important;
}

.product-img-label,
.catalog-category-card__overlay h3,
.catalog-category-card__overlay p {
  color: #ffffff;
}

.industry-name,
.product-cat-name,
.fd-card h3,
.fd-list-item h3,
.future-divine-product .catalog-filter-panel__header h2 {
  color: #0f172a;
}

.industry-desc,
.product-desc,
.fd-card p,
.fd-list-item p,
.fd-stat span,
.future-divine-product .catalog-check,
.future-divine-product .catalog-product__meta,
.future-divine-product .mini-product-card p,
.future-divine-product .section-heading p {
  color: #475569;
}

.cta-primary,
.submit-btn,
.button,
.future-divine-product .button,
.future-divine-product .button--dark,
.future-divine-product .button:visited,
.future-divine-product .catalog-pagination__item.is-active,
.future-divine-product .catalog-pagination__item.current,
.fd-list-number,
.product-card__badge,
.product-badge,
.gold-gradient-bg {
  background: linear-gradient(135deg, #143caf, #315fd0);
  border-color: transparent;
  color: #ffffff;
}

.cta-secondary,
.future-divine-product .button--light,
.future-divine-product .catalog-pagination__item,
.future-divine-product .catalog-pagination__arrow {
  background: #ffffff;
  border-color: rgba(20, 60, 175, 0.22);
  color: #143caf;
}

.form-input,
.form-select,
.form-textarea,
.fd-form-field input,
.fd-form-field textarea,
.fd-form-field select,
.future-divine-product .catalog-search input,
.future-divine-product .catalog-select select {
  background: #ffffff;
  border-color: rgba(20, 60, 175, 0.22);
  color: #0f172a;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.fd-form-field input:focus,
.fd-form-field textarea:focus,
.fd-form-field select:focus {
  border-color: #143caf;
  box-shadow: 0 0 0 3px rgba(20, 60, 175, 0.14);
}

.future-divine-product .product-single__body th {
  background: #143caf;
}

/* Front page readability fixes after white/blue theme switch */
#hero .cta-primary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

#hero .cta-primary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

#hero .cta-secondary {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  color: #0f172a;
}

#hero .trust-bar {
  gap: 0.75rem 0;
}

#hero .trust-item {
  border-color: rgba(255, 255, 255, 0.3);
}

#hero .trust-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

#hero .trust-text {
  color: rgba(255, 255, 255, 0.86);
}

#why-us .feature-check {
  background: #eef3ff;
  border-color: rgba(20, 60, 175, 0.2);
  color: #143caf;
}

#why-us .stats-grid .stat-card {
  background: #ffffff;
  border: 1px solid rgba(20, 60, 175, 0.16);
  border-bottom: 3px solid #143caf;
  box-shadow: 0 16px 36px rgba(20, 60, 175, 0.1);
}

#why-us .stat-number {
  background: none;
  color: #143caf;
  -webkit-text-fill-color: currentColor;
}

#why-us .stat-label {
  color: #475569;
}

#export-map .map-svg-container {
  background: #f6f8ff;
  border-radius: 18px;
}

#export-map .region-chip {
  background: #eef3ff;
  border: 1px solid rgba(20, 60, 175, 0.18);
  color: #143caf;
  box-shadow: none;
}

#export-map .region-chip:hover {
  background: #dbe6ff;
  border-color: rgba(20, 60, 175, 0.28);
  color: #0f2f8e;
}

#export-map .map-trust-line {
  color: #475569;
}

#distributor .tier-card {
  background: #ffffff;
  border: 1px solid rgba(20, 60, 175, 0.16);
  box-shadow: 0 16px 36px rgba(20, 60, 175, 0.1);
}

#distributor .tier-header {
  background: #eef3ff;
  border-bottom: 1px solid rgba(20, 60, 175, 0.14);
}

#distributor .tier-header-label,
#distributor .tier-name {
  color: #0f172a;
  -webkit-text-fill-color: currentColor;
  background: none;
}

#distributor .tier-moq,
#distributor .tier-header p {
  color: #475569 !important;
}

#distributor .tier-row {
  background: #ffffff;
  border-bottom: 1px solid rgba(20, 60, 175, 0.12);
}

#distributor .tier-row.gold-tier {
  background: #f6f8ff;
  border-color: rgba(20, 60, 175, 0.16);
}

#distributor .tier-benefit-chip {
  background: #eef3ff;
  border: 1px solid rgba(20, 60, 175, 0.18);
  color: #143caf;
}

#distributor .tier-footer {
  background: #f6f8ff;
  border-top: 1px solid rgba(20, 60, 175, 0.12);
}

#distributor .tier-footer .cta-primary {
  color: #ffffff;
}

.future-divine-product .catalog-trending > .section-heading h2,
.future-divine-product .catalog-products__heading h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.future-divine-product .catalog-hero,
.future-divine-product .catalog-procurement__band {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.18), transparent 280px),
    linear-gradient(135deg, #143caf 0%, #2454c2 56%, #143caf 100%) !important;
}

.future-divine-product .catalog-hero .breadcrumbs,
.future-divine-product .catalog-hero .breadcrumbs a,
.future-divine-product .catalog-hero h1,
.future-divine-product .catalog-hero p,
.future-divine-product .catalog-hero .text-link,
.future-divine-product .catalog-hero .text-link:visited,
.future-divine-product .catalog-procurement__copy .eyebrow,
.future-divine-product .catalog-procurement__copy h2,
.future-divine-product .catalog-procurement__copy p {
  color: #ffffff !important;
}

.future-divine-product .catalog-hero .text-link::after {
  color: #ffffff;
}

.future-divine-product .catalog-search input {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  color: #0f172a;
}

.future-divine-product .catalog-search input::placeholder {
  color: #64748b;
}

.future-divine-product .catalog-procurement__metric {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.42);
}

.future-divine-product .catalog-procurement__metric strong {
  color: #143caf !important;
}

.future-divine-product .catalog-procurement__metric span {
  color: #0f172a;
}

.future-divine-product .catalog-procurement__band .button {
  background: #ffffff;
  color: #143caf;
}

.future-divine-product .catalog-procurement__band .button--light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.pharmship-form-embed :where(form) {
  margin: 0;
}

.pharmship-form-embed :where(p) {
  margin: 0 0 18px;
}

.pharmship-form-embed :where(label) {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.pharmship-form-embed :where(input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), select, textarea) {
  width: 100%;
  border: 1px solid rgba(20, 60, 175, 0.2);
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  padding: 14px 16px;
}

.pharmship-form-embed :where(textarea) {
  min-height: 150px;
  resize: vertical;
}

.pharmship-form-embed :where(input::placeholder, textarea::placeholder) {
  color: #94a3b8;
}

.pharmship-form-embed :where(input[type="checkbox"], input[type="radio"]) {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #143caf;
}

.pharmship-form-embed :where(input[type="submit"], button[type="submit"], .wpforms-submit) {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 10px;
  background: var(--cta-orange);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 24px;
}

/* Emergency brand palette refresh */
.site-header,
.site-footer,
.footer-cta,
.fd-cta-band,
.inner-cta,
#hero,
.future-divine-product .catalog-hero,
.future-divine-product .catalog-procurement__band {
  background: var(--brand-gradient) !important;
}

.gold-gradient-text,
.gold-gradient-bg,
.product-img-placeholder,
.future-divine-product .catalog-pagination__item.is-active,
.future-divine-product .catalog-pagination__item.current,
.fd-list-number,
.product-card__badge,
.product-badge {
  background: var(--brand-gradient) !important;
}

.cta-primary,
.submit-btn,
.button:not(.button--ghost):not(.button--light),
.future-divine-product .button:not(.button--ghost):not(.button--light),
.future-divine-product .button--dark,
.future-divine-product .button:visited,
.pharmship-form-embed :where(input[type="submit"], button[type="submit"], .wpforms-submit),
#hero .cta-primary,
#distributor .tier-footer .cta-primary {
  background: var(--cta-orange) !important;
  border-color: var(--cta-orange) !important;
  color: #ffffff !important;
}

.cta-primary:hover,
.cta-primary:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible,
.button:not(.button--ghost):not(.button--light):hover,
.button:not(.button--ghost):not(.button--light):focus-visible,
.future-divine-product .button:not(.button--ghost):not(.button--light):hover,
.future-divine-product .button:not(.button--ghost):not(.button--light):focus-visible,
.pharmship-form-embed :where(input[type="submit"], button[type="submit"], .wpforms-submit):hover,
#hero .cta-primary:hover,
#hero .cta-primary:focus-visible {
  background: var(--cta-orange-hover) !important;
  border-color: var(--cta-orange-hover) !important;
  color: #ffffff !important;
}

a,
.section-overline,
.eyebrow,
.future-divine-product .catalog-procurement__metric strong,
#why-us .feature-check,
#why-us .stat-number,
#export-map .region-chip,
#distributor .tier-benefit-chip {
  color: var(--brand-blue);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.fd-form-field input:focus,
.fd-form-field textarea:focus,
.fd-form-field select:focus,
.pharmship-form-embed :where(input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), select, textarea):focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30, 80, 197, 0.14);
}

.pharmship-form-embed :where(.wpcf7-not-valid-tip, .wpforms-error) {
  color: #b91c1c;
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.pharmship-form-embed :where(.wpcf7-response-output, .wpforms-confirmation-container-full) {
  border-radius: 10px;
  font-family: var(--font-body);
  margin: 18px 0 0;
  padding: 14px 16px;
}

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

@media (max-width: 1100px) {
  .future-divine-product .catalog-layout {
    grid-template-columns: 1fr;
  }

  .future-divine-product .catalog-sidebar {
    order: -1;
  }

  .future-divine-product .catalog-filter-panel__header {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .future-divine-product .catalog-hero {
    padding: 64px 0 42px;
  }

  .future-divine-product .catalog-product-grid,
  .future-divine-product .catalog-trending__grid {
    grid-template-columns: 1fr;
  }

  .future-divine-product .product-card--catalog .product-card__media {
    height: clamp(170px, 52vw, 220px);
  }

  .future-divine-product .product-card--catalog .product-card__body {
    padding: 20px;
  }

  .future-divine-product .catalog-filter-panel__header h2 {
    font-size: 0.86rem;
  }

  .future-divine-product .catalog-trending > .section-heading h2,
  .future-divine-product .catalog-products__heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .future-divine-product .catalog-pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ── Mobile nav: always hidden until toggled ───────────────────────── */
@media (max-width: 900px) {
  .nav-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgb(17, 50, 133) !important;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 200;
  }
  .nav-menu.is-open,
  .nav-menu[data-open=true] {
    display: flex !important;
  }
}
