/* ==========================================================================
   REPEL E-COMMERCE POWERHOUSE DESIGN SYSTEM
   Official Industrial Brand Identity: Metallic Chrome & Electric Cobalt Blue
   "BRUSH ON PROTECTION THAT LASTS"
   ========================================================================== */

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.2);
  --accent: #1d4ed8;
  --accent-light: #60a5fa;
  --accent-cyan: #2563eb;
  
  --dark-950: #02060d;
  --dark-900: #050c18;
  --dark-800: #0a172c;
  --dark-700: #102444;
  --dark-600: #1a3866;
  
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --chrome-100: #ffffff;
  --chrome-200: #e2e8f0;
  --chrome-300: #94a3b8;

  --badge-warning: #f59e0b;
  --badge-success: #2563eb;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.25);
  --shadow-glow: 0 4px 20px var(--primary-glow);
  --shadow-electric: 0 4px 14px rgba(37, 99, 235, 0.25);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative !important;
}

body {
  font-family: var(--font-body);
  color: #f8fafc;
  background-color: #050c18;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   TOP NOTIFICATION BAR & HEADER
   ========================================================================== */

.announcement-bar {
  background: linear-gradient(90deg, #050c18 0%, #0f2757 35%, #1e40af 50%, #1d4ed8 70%, #050c18 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 101;
  text-align: center;
}

.announcement-inner {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.announcement-center,
.announcement-left {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.78rem;
  color: #f0f9ff;
  white-space: normal;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.switcher-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #93c5fd;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.switcher-pill-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.domain-switcher-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal;
}

.domain-switcher-pill:hover,
.domain-switcher-pill.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #3b82f6;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}

.header-inner {
  width: min(96%, 1780px);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(14, 28, 56, 0.75) 0%, rgba(6, 14, 30, 0.9) 100%);
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-link:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.3) 0%, rgba(6, 20, 48, 0.95) 100%);
  border-color: #3b82f6;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.brand-badge {
  background: linear-gradient(135deg, #02060e, #0a172c);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  white-space: normal;
}

.brand-shield {
  font-size: 1.15rem;
  line-height: 1;
}

.brand-text-repel {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand-text-gel {
  color: #2563eb;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-titles {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  justify-content: center;
}

.brand-parent {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.01em;
  white-space: normal;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
  overflow: visible;
  display: block;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a,
.nav-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  color: #f1f5f9;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(16, 34, 68, 0.8) 0%, rgba(6, 16, 34, 0.9) 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  letter-spacing: 0.015em;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.nav-bubble-icon {
  font-size: 0.95rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.nav-links a:hover,
.nav-bubble:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35) 0%, rgba(30, 64, 175, 0.5) 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.nav-links a.active,
.nav-bubble.active {
  background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
}

.nav-links a:active,
.nav-bubble:active {
  transform: translateY(0);
}

/* ==========================================================================
   DEDICATED SUB-PAGE HEADER & HERO STYLES
   ========================================================================== */

.page-hero {
  position: relative;
  background: linear-gradient(135deg, #02060e 0%, #06142a 50%, #040a16 100%);
  color: #ffffff;
  padding: 60px 24px 50px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.25);
  text-align: center;
}

.page-hero-inner {
  width: min(96%, 1400px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 18px;
}

.breadcrumb-nav a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.6);
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff;
}

.page-hero-title .highlight {
  color: #3b82f6;
  text-shadow: none;
}

.page-hero-subtitle {
  font-size: 1.18rem;
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-phone {
  font-size: 0.88rem;
  font-weight: 800;
  color: #93c5fd;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 18, 40, 0.9) 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.45);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: normal;
  transition: all 0.22s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn-phone:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35) 0%, rgba(30, 64, 175, 0.6) 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.btn-cart {
  position: relative;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1.5px solid rgba(59, 130, 246, 0.5);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  white-space: normal;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-cart:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}

.cart-count {
  background: #3b82f6;
  color: #ffffff;
  font-size: 0.74rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 900;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #02060e 0%, #061224 40%, #091e3d 80%, #050d1a 100%);
  color: #ffffff;
  padding: 56px 24px 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(29, 78, 216, 0.04) 40%, transparent 70%);
  top: -150px;
  right: -80px;
  pointer-events: none;
}

.hero-inner {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
}

.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-pill-usa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.hero-pill-barrier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.6);
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.hero-pill-peace {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.5);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #ffffff;
  width: 100%;
  word-break: normal;
}

.hero-title .chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-title .gel-text {
  color: #2563eb;
  font-style: italic;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  color: #3b82f6;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 26px;
  width: 100%;
  max-width: 100%;
}

.hero-bullets-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 18, 36, 0.75);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  white-space: normal;
}

.chip-item:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

.chip-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.05rem;
  border: 1px solid rgba(59, 130, 246, 0.5);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: normal;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: #3b82f6;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

/* Hero Showcase Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-card {
  width: 100%;
  max-width: 500px;
  background: rgba(7, 16, 32, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 4px 20px rgba(37, 99, 235, 0.25);
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 310px;
  background: #030712;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.5s ease;
}

.hero-card:hover .hero-img-wrap img {
  transform: scale(1.03);
}

.hero-badge-float {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  background: rgba(3, 7, 18, 0.92);
  border: 1px solid #2563eb;
  color: #60a5fa;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  white-space: normal;
}

.hero-quick-order {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 99, 235, 0.25);
}

.quick-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-price span {
  font-size: 0.76rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: normal;
}

.quick-price strong {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: #3b82f6;
  line-height: 1;
}

.btn-quick-add {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.5);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  white-space: normal;
}

.btn-quick-add:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.5);
}

.btn-quick-add-alt {
  background: rgba(10, 20, 38, 0.85);
  color: #cbd5e1;
  border: 1px solid rgba(37, 99, 235, 0.35);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  white-space: normal;
}

.btn-quick-add-alt:hover {
  border-color: #3b82f6;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
   TRUST BAR / SOCIAL PROOF
   ========================================================================== */

.trust-bar {
  background: #040915;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  padding: 28px 24px;
}

.trust-inner {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.trust-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
  white-space: normal;
}

.trust-text p {
  font-size: 0.86rem;
  color: #94a3b8;
  white-space: normal;
  line-height: 1.4;
}

/* ==========================================================================
   TARGET PEST DETERRENCE (FROM FLYER)
   ========================================================================== */

.pests-section {
  background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.08) 0%, #030712 75%);
  padding: 85px 24px 75px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.pests-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pests-section .section-header .section-title {
  color: #ffffff;
}

.pests-section .section-header .section-desc {
  color: #94a3b8;
}

.pests-grid {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.pest-card {
  background: rgba(10, 22, 44, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pest-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(37, 99, 235, 0.35);
  background: rgba(14, 30, 60, 0.9);
}

.pest-badge-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, #091a38 30%, #030712 100%);
  border: 2.5px solid #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.pest-card:hover .pest-badge-circle {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.55);
}

.pest-icon {
  font-size: 2.1rem;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
}

.pest-slash {
  position: absolute;
  width: 88%;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.4);
}

.pest-slash::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pest-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: normal;
}

.pest-card:hover .pest-name {
  color: #3b82f6;
}

.pest-desc {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.45;
  white-space: normal;
}

/* ==========================================================================
   APPLICATION SECTORS (FROM FLYER)
   ========================================================================== */

.sectors-section {
  background: #050c19;
  padding: 85px 24px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.sectors-section .section-header .section-title {
  color: #ffffff;
}

.sectors-section .section-header .section-desc {
  color: #94a3b8;
}

.sectors-grid {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.sector-card {
  background: linear-gradient(180deg, rgba(14, 27, 52, 0.85) 0%, rgba(6, 14, 28, 0.95) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-top: 3px solid #2563eb;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  border-top: 3px solid #3b82f6;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(37, 99, 235, 0.3);
}

.sector-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sector-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.sector-badge h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin: 0;
  white-space: normal;
}

.sector-desc {
  font-size: 0.94rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 22px;
  white-space: normal;
}

.sector-checklist {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 0.88rem;
  color: #cbd5e1;
}

.sector-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: normal;
}

.sector-checklist li::before {
  content: "✓";
  color: #2563eb;
  font-weight: 900;
}

/* ==========================================================================
   PRODUCT CATALOG & VARIANT SELECTOR
   ========================================================================== */

.products-section {
  background: #030712;
  padding: 90px 24px;
  width: 100%;
}

.products-section > .section-header,
.products-grid {
  width: min(96%, 1780px);
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 50px;
}

.section-tag {
  color: #3b82f6;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 10px;
  white-space: normal;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 14px;
  width: 100%;
  white-space: normal;
}

.section-desc {
  font-size: 1.15rem;
  color: #94a3b8;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
  white-space: normal;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  width: 100%;
}

.product-card {
  background: linear-gradient(180deg, #0a172c 0%, #060e1d 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(37, 99, 235, 0.3);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  white-space: normal;
}

.product-badge.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
}

.product-badge.pro {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

.product-image-box {
  background: radial-gradient(circle at center, #0f2244 0%, #081224 100%);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 290px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.product-image-box img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.06);
}

.product-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-size {
  font-size: 0.8rem;
  font-weight: 800;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  white-space: normal;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 8px;
  white-space: normal;
}

.product-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.5;
  white-space: normal;
}

.product-specs {
  list-style: none;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-specs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  white-space: normal;
}

.product-specs li::before {
  content: "✓";
  color: #2563eb;
  font-weight: 800;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  white-space: normal;
}

.price-compare {
  font-size: 0.88rem;
  color: #64748b;
  text-decoration: line-through;
  margin-top: 4px;
  white-space: normal;
}

.btn-add-cart {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  white-space: normal;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* ==========================================================================
   COVERAGE CALCULATOR WIDGET
   ========================================================================== */

.calc-section {
  background: #050c18;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  color: #fff;
  padding: 85px 24px;
  margin: 0;
  position: relative;
}

.calc-inner {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.calc-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #ffffff;
  white-space: normal;
}

.calc-info p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 100%;
  line-height: 1.6;
  white-space: normal;
}

.calc-box {
  background: #0a162c;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.calc-form-group {
  margin-bottom: 20px;
}

.calc-form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #cbd5e1;
  margin-bottom: 8px;
  white-space: normal;
}

.calc-select, .calc-input {
  width: 100%;
  background: #050c18;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.calc-result {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 24px;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
}

.calc-result span {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: normal;
}

.calc-result strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #3b82f6;
  margin: 6px 0;
  white-space: normal;
}

/* ==========================================================================
   APPLICATION ZONES & HOW IT WORKS
   ========================================================================== */

.zones-section {
  background: #030712;
  padding: 90px 24px;
  width: 100%;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.zones-section > .section-header,
.zones-grid {
  width: min(96%, 1780px);
  margin-left: auto;
  margin-right: auto;
}

.zones-section .section-header .section-title {
  color: #ffffff;
}

.zones-section .section-header .section-desc {
  color: #94a3b8;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  width: 100%;
}

.zone-card {
  background: #081428;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
}

.zone-card:hover {
  background: #0c1e3b;
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.zone-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.zone-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  white-space: normal;
}

.zone-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.55;
  white-space: normal;
}

/* Base Section Component for Subpages */
.section {
  background: #050c18;
  color: #f8fafc;
  padding: 80px 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
}

.section-container {
  width: min(96%, 1780px);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 30px;
}

.section-header .section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: #3b82f6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-header .section-title,
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.section-header .section-subtitle,
.section-subtitle,
.section-desc {
  font-size: 1.12rem;
  color: #94a3b8 !important;
  line-height: 1.6;
  max-width: 1100px;
  margin-bottom: 14px;
  white-space: normal;
}

/* Technical Specifications Table Wrapper */
.specs-table-box {
  background: #0a162c;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  width: min(96%, 1780px);
  margin: 0 auto;
}

.specs-table-box table td {
  padding: 16px 24px;
}

.specs-table-box tr {
  border-bottom: 1px solid rgba(37, 99, 235, 0.15) !important;
}

.specs-table-box tr:last-child {
  border-bottom: none !important;
}

.specs-table-box td:first-child {
  font-weight: 700;
  color: #ffffff !important;
  width: 35%;
  background: #0e1e3a !important;
}

.specs-table-box td:last-child {
  color: #cbd5e1 !important;
  background: #081326 !important;
}

/* High-Contrast Specifications & Comparison Tables */
.specs-wrapper {
  background: #081224;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6);
  margin: 28px 0;
  -webkit-overflow-scrolling: touch;
}

.specs-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.94rem;
  text-align: left;
  background: #070e1c;
  color: #e2e8f0;
}

.specs-table thead tr {
  background: linear-gradient(135deg, #0e1e3b 0%, #152d58 100%);
}

.specs-table th {
  padding: 18px 22px;
  font-weight: 800;
  color: #ffffff !important;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(37, 99, 235, 0.45);
  border-right: 1px solid rgba(37, 99, 235, 0.2);
  background: #0d1b36;
  white-space: nowrap;
}

.specs-table th:last-child {
  border-right: none;
}

.specs-table th.col-highlight,
.specs-table th:nth-child(2) {
  color: #ffffff !important;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.4) 0%, rgba(29, 78, 216, 0.25) 100%) !important;
  border-bottom: 2px solid #2563eb !important;
  border-left: 1px solid rgba(59, 130, 246, 0.4);
  border-right: 1px solid rgba(59, 130, 246, 0.4);
}

.specs-table tbody tr {
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
  transition: background 0.15s ease;
}

.specs-table tbody tr:nth-child(even) {
  background: #070e1c;
}

.specs-table tbody tr:nth-child(odd) {
  background: #0a1528;
}

.specs-table tbody tr:hover {
  background: #112242;
}

.specs-table td {
  padding: 16px 22px;
  color: #cbd5e1 !important;
  font-size: 0.92rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
  border-right: 1px solid rgba(37, 99, 235, 0.12);
  vertical-align: middle;
}

.specs-table td:last-child {
  border-right: none;
}

.specs-table td:first-child {
  font-weight: 700;
  color: #ffffff !important;
  background: #0b182d !important;
  border-right: 1px solid rgba(37, 99, 235, 0.25);
}

.specs-table td.col-highlight,
.specs-table td:nth-child(2) {
  background: rgba(37, 99, 235, 0.12) !important;
  color: #93c5fd !important;
  font-weight: 700;
  border-left: 1px solid rgba(59, 130, 246, 0.25);
  border-right: 1px solid rgba(59, 130, 246, 0.25);
}

.specs-table tbody tr:hover td.col-highlight {
  background: rgba(37, 99, 235, 0.2) !important;
}

.specs-table .status-pass {
  display: inline-block;
  color: #22c55e !important;
  font-weight: 900;
  font-size: 1.05rem;
  margin-right: 6px;
}

.specs-table .status-fail {
  display: inline-block;
  color: #f87171 !important;
  font-weight: 900;
  font-size: 1.05rem;
  margin-right: 6px;
}

.specs-table .status-neutral {
  display: inline-block;
  color: #94a3b8 !important;
  font-weight: 700;
  margin-right: 6px;
}

/* ==========================================================================
   FAQ & WHOLESALE SECTIONS
   ========================================================================== */

.faq-section {
  background: #050c18;
  padding: 90px 24px;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.faq-section .section-header .section-title {
  color: #ffffff;
}

.faq-container {
  width: min(96%, 1780px);
  margin: 0 auto;
}

.faq-item {
  background: #0a162c;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: #3b82f6;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

.faq-question {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.12rem;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: normal;
}

.faq-answer {
  padding: 0 28px 22px;
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.65;
  display: none;
  white-space: normal;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: #60a5fa;
}

/* Wholesale Banner */
.wholesale-banner {
  background: linear-gradient(135deg, #091730, #040a14);
  border: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  width: min(96%, 1780px);
  margin: 60px auto 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wholesale-text {
  flex: 1;
}

.wholesale-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  white-space: normal;
}

.wholesale-text p {
  color: #94a3b8;
  max-width: 100%;
  font-size: 1.1rem;
  line-height: 1.6;
  white-space: normal;
}

.wholesale-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
}

.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  background: #081428;
  color: #fff;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.wholesale-form input:focus,
.wholesale-form select:focus,
.wholesale-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER & CHECKOUT MODAL
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 35px rgba(0,0,0,0.25);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-500);
  cursor: pointer;
}

.cart-shipping-meter {
  background: #091a38;
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  padding: 12px 24px;
  font-size: 0.85rem;
  color: #3b82f6;
  font-weight: 600;
}

.meter-bar {
  height: 6px;
  background: #050c18;
  border-radius: var(--radius-full);
  margin-top: 6px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  border-radius: var(--radius-full);
  transition: width 0.3s;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

.cart-items-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item-thumb {
  width: 70px;
  height: 70px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 6px;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}

.cart-qty-ctrls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.qty-val {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.btn-checkout-now {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-checkout-now:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.5);
}

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */

.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-modal-overlay.open {
  display: flex;
}

.checkout-modal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  position: relative;
}

.checkout-main {
  padding: 36px;
}

.checkout-sidebar {
  background: var(--gray-50);
  border-left: 1px solid var(--gray-200);
  padding: 36px 28px;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--gray-900);
}

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

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-field input, .form-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.payment-box {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 18px;
}

.gateway-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.gateway-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
}

.gateway-badge .authnet-tag {
  background: #0284c7;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.test-card-hint {
  font-size: 0.75rem;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  cursor: pointer;
}

.btn-complete-order {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-complete-order:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.5);
}

.modal-close-x {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray-400);
  cursor: pointer;
}

/* ==========================================================================
   ORDER CONFIRMATION SUCCESS VIEW
   ========================================================================== */

.order-success-card {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 74px;
  height: 74px;
  background: rgba(37, 99, 235, 0.15);
  border: 2px solid #2563eb;
  color: #3b82f6;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #02060f;
  color: #94a3b8;
  padding: 70px 24px 30px;
  border-top: 1px solid rgba(37, 99, 235, 0.25);
}

.footer-inner {
  width: min(96%, 1780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  white-space: normal;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: #94a3b8;
  white-space: normal;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #3b82f6;
}

.footer-bottom {
  width: min(96%, 1780px);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: normal;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-bubble {
    font-size: 0.82rem;
    padding: 6px 12px;
  }
  .pests-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 10px 14px;
    gap: 14px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .nav-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .nav-links {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-links li {
    width: 100% !important;
    display: flex !important;
  }
  .nav-bubble {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    padding: 8px 6px !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    min-height: 40px !important;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card {
    max-width: 550px;
    margin: 0 auto;
  }
  .calc-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wholesale-banner {
    flex-direction: column;
    padding: 40px 28px;
  }
  .wholesale-form {
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .site-header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .announcement-bar {
    padding: 6px 8px;
    font-size: 0.74rem;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .announcement-center,
  .announcement-left {
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    max-width: 100%;
  }
  .header-inner {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand actions"
      "nav   nav" !important;
    align-items: center !important;
    gap: 8px 10px !important;
    padding: 8px 10px 10px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .brand-logo {
    grid-area: brand !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .brand-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 4px 8px 4px 6px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .brand-badge {
    font-size: 1rem !important;
    padding: 4px 8px !important;
    gap: 5px !important;
    flex-shrink: 0 !important;
  }
  .brand-titles {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.15 !important;
  }
  .brand-parent {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    color: #ffffff !important;
  }
  .brand-sub {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: #93c5fd !important;
    white-space: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    display: block !important;
  }
  .header-actions {
    grid-area: actions !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }
  .btn-contact-header {
    font-size: 0.78rem !important;
    padding: 6px 10px !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }
  .btn-cart {
    font-size: 0.78rem !important;
    padding: 6px 10px !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }

  /* NO HORIZONTAL SCROLLING ON MENU */
  .nav-container {
    grid-area: nav !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 6px 0 0 0 !important;
    border-top: 1px solid rgba(37, 99, 235, 0.25) !important;
    box-sizing: border-box !important;
  }
  .nav-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    box-sizing: border-box !important;
  }
  .nav-links li {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
  }
  .nav-links a,
  .nav-bubble {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 7px 6px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #f1f5f9 !important;
    background: linear-gradient(180deg, rgba(16, 34, 68, 0.85) 0%, rgba(6, 16, 34, 0.95) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.35) !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    min-height: 38px !important;
  }
  .nav-links a:hover,
  .nav-bubble:hover {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.35) 0%, rgba(30, 64, 175, 0.5) 100%) !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
  }
  .nav-links a.active,
  .nav-bubble.active {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%) !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 12px rgba(29, 78, 216, 0.45) !important;
  }
  .nav-bubble-icon {
    font-size: 0.88rem !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
  }
  .nav-bubble span:not(.nav-bubble-icon) {
    display: inline-block !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .calc-inner, .checkout-modal {
    grid-template-columns: 1fr;
  }
  .pests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .zone-switcher-bar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .zone-switcher-pill {
    justify-content: center !important;
    text-align: center !important;
    padding: 8px 6px !important;
    font-size: 0.76rem !important;
    white-space: normal !important;
  }
}

@media (min-width: 601px) and (max-width: 840px) {
  .nav-links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hero-tag-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }
  .hero-pill-usa,
  .hero-pill-barrier,
  .hero-pill-peace {
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.76rem;
    padding: 5px 12px;
    line-height: 1.25;
    white-space: normal;
    text-align: left;
  }
  .page-hero {
    padding: 28px 12px 32px;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .page-hero-title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important;
    line-height: 1.25 !important;
    word-break: normal;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .page-hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    max-width: 100%;
  }
  .hero-section {
    padding: 28px 12px 40px;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .hero-title {
    font-size: clamp(1.45rem, 6vw, 1.95rem) !important;
    line-height: 1.2 !important;
    word-break: normal;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    max-width: 100%;
  }
  .hero-bullets-chips {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
  .chip-item {
    font-size: 0.82rem;
    padding: 9px 12px;
    gap: 8px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .hero-img-wrap {
    height: 220px;
  }
  .hero-badge-float {
    top: 12px;
    left: 12px;
    font-size: 0.68rem;
    padding: 4px 8px;
  }
  .pests-grid {
    grid-template-columns: 1fr;
  }
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .specs-table-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .specs-table-box table {
    width: 100% !important;
    table-layout: fixed !important;
  }
  .specs-table-box table td {
    padding: 9px 8px !important;
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
  }
  .specs-table-box td:first-child {
    width: 38% !important;
  }
  .specs-table-box td:last-child {
    width: 62% !important;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 6px 8px 8px;
    gap: 6px 8px;
  }
  .brand-badge {
    font-size: 0.92rem !important;
    padding: 4px 7px !important;
    gap: 4px !important;
  }
  .brand-shield {
    font-size: 0.9rem !important;
  }
  .brand-parent {
    font-size: 0.76rem !important;
  }
  .brand-sub {
    font-size: 0.6rem !important;
    line-height: 1.1 !important;
  }
  .header-actions {
    gap: 4px !important;
  }
  .btn-contact-header {
    font-size: 0.74rem !important;
    padding: 5px 8px !important;
    gap: 3px !important;
  }
  .btn-cart {
    font-size: 0.74rem !important;
    padding: 5px 8px !important;
    gap: 3px !important;
  }
  .nav-bubble {
    font-size: 0.72rem !important;
    padding: 6px 4px !important;
    gap: 4px !important;
    min-height: 36px !important;
  }
  .nav-bubble-icon {
    font-size: 0.82rem !important;
  }
}

/* ==========================================================================
   CONTACT HEADER BUTTON & CONTACT PAGE
   ========================================================================== */

.btn-contact-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(16, 34, 68, 0.8) 0%, rgba(6, 16, 34, 0.9) 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-contact-header:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35) 0%, rgba(30, 64, 175, 0.5) 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.btn-contact-header.active {
  background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: #0c1220;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 800;
}

.contact-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-card .contact-detail {
  font-weight: 800;
  font-size: 1.05rem;
  color: #93c5fd;
  margin-top: auto;
}

/* ==========================================================================
   DISTRIBUTOR PORTAL & BULK ORDERING
   ========================================================================== */

.distributor-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 36px 0 50px;
}

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

@media (max-width: 600px) {
  .distributor-tiers {
    grid-template-columns: 1fr;
  }
}

.distributor-card {
  background: linear-gradient(180deg, #0d172e 0%, #060e1d 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-top: 4px solid #2563eb;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.distributor-card:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  border-top-color: #3b82f6;
}

.distributor-card.featured {
  border-color: #3b82f6;
  border-top: 4px solid #60a5fa;
  background: linear-gradient(180deg, #102042 0%, #081226 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}

.distributor-badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.distributor-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
}

.distributor-vol {
  font-size: 0.85rem;
  color: #93c5fd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.distributor-price-box {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.distributor-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
}

.distributor-price-sub {
  font-size: 0.84rem;
  color: #94a3b8;
}

.distributor-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.distributor-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.distributor-features li span {
  color: #3b82f6;
  font-weight: 900;
}

/* Distributor Form */
.distributor-form-wrap {
  background: #081428;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .distributor-form-wrap {
    padding: 24px;
  }
}

.input-field, .select-field, .textarea-field {
  width: 100%;
  background: #040914;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.input-field:focus, .select-field:focus, .textarea-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

.field-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
  margin-bottom: 6px;
}

/* ==========================================================================
   APPLICATION ZONE DETAIL & VIDEO PLAYER
   ========================================================================== */

.zone-interactive-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.zone-interactive-card:hover {
  transform: translateY(-6px);
  border-color: #3b82f6 !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.zone-action-btn {
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 8px;
  color: #93c5fd;
  font-weight: 800;
  font-size: 0.86rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.zone-interactive-card:hover .zone-action-btn {
  background: #2563eb;
  color: #ffffff;
  border-color: #3b82f6;
}

/* Video Player Container */
.video-showcase-box {
  background: #060e1d;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 30px 0 45px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.video-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #02060e 0%, #07162e 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 12, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #93c5fd;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.video-play-button {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 5;
}

.video-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.8);
}

.video-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #ffffff;
  margin-left: 4px;
}

.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 14, 0.95) 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.video-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.video-progress-fill {
  height: 100%;
  width: 38%;
  background: #2563eb;
  border-radius: 3px;
}

/* Do's and Don'ts comparison grid */
.dos-donts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0;
}

@media (max-width: 768px) {
  .dos-donts-grid {
    grid-template-columns: 1fr;
  }
}

.card-dos {
  background: rgba(6, 24, 48, 0.6);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-top: 4px solid #2563eb;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.card-donts {
  background: rgba(30, 10, 16, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-top: 4px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.dos-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #93c5fd;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.donts-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f87171;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rules-list li strong {
  color: #ffffff;
}

/* Zone Switcher Bar */
.zone-switcher-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  margin: 40px 0 20px;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.zone-switcher-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a172e;
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: #cbd5e1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.zone-switcher-pill:hover,
.zone-switcher-pill.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #3b82f6;
}
