@charset "utf-8";

/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1. GLOBAL VARIABLES
   2. BRAND TOKENS
   3. BASE & TYPOGRAPHY
   4. LAYOUT & UTILITIES
   5. BUTTONS & INPUTS
   6. NAVIGATION & TABS
   7. CARDS & WELLS
   8. COMPONENTS: ACCORDION
   9. COMPONENTS: STATISTICS
   10. FOOTER
   11. BRAND OVERRIDES: PRISMA
   ========================================================================== */

/* ==========================================================================
   1. GLOBAL VARIABLES
   ========================================================================== */

:root {
  --font-base: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: Merriweather, Georgia, serif;
  --font-accent: Decimal, Arial, "Helvetica Neue", Helvetica, sans-serif;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.08);
  --: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
  --shadow-card-hover: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
  --neutral-900: #0b0f14;
  --neutral-800: #111827;
  --neutral-700: #1f2937;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-0: #ffffff;
  --color-text-primary: #212529;
  --color-text-secondary: #666666;
  --color-border: #ddd;
  --color-black: #000000;
  --brand-primary: #f9622d;
  --brand-primary-hover: #fb7652;
  --brand-accent: #f9622d;
  --brand-accent-soft: rgba(249, 98, 45, 0.15);
  --brand-bg-dark: #f9622d;
  --brand-bg-darker: #e85420;
  --brand-bg-soft: #f5f7fa;
  --brand-gradient-hero: linear-gradient(135deg, #f9622d 0%, #e85420 100%);
  --brand-gradient-card: linear-gradient(87.64deg, #22262d 44.23%, #263445 101.25%);
  --brand-gradient-stat: linear-gradient(87.64deg, #22262d 44.23%, #263445 101.25%);
}

/* ==========================================================================
   2. BRAND TOKENS
   ========================================================================== */

body[data-brand="prisma"] {
  --brand-primary: #00c4cc;
  --brand-primary-hover: #00a8b0;
  --brand-accent: #5ad7ff;
  --brand-accent-soft: rgba(0, 196, 204, 0.15);
  --brand-bg-dark: #0b1c2d;
  --brand-bg-darker: #071523;
  --brand-bg-soft: #f5fbfd;
  --brand-gradient-hero: linear-gradient(135deg, #000000 0%, #0a1929 50%, #0d2942 100%);
  --brand-gradient-card: linear-gradient(135deg, #0b1c2d 0%, #102a43 100%);
  --brand-gradient-stat: linear-gradient(87.64deg, #0b1c2d 44.23%, #102a43 101.25%);
}

body[data-brand="unit42"] {
  --brand-primary: #d64420;
  --brand-primary-hover: #e6613d;
  --brand-accent: #ff7a52;
  --brand-accent-soft: rgba(214, 68, 32, 0.15);
  --brand-bg-dark: #141414;
  --brand-bg-darker: #0a0a0a;
  --brand-bg-soft: #f5f5f5;
  --unit42-gray-dark: #141414;
  --unit42-gray-medium: #424242;
  --brand-gradient-hero: linear-gradient(135deg, #000000 0%, #141414 50%, #242424 100%);
  --brand-gradient-card: linear-gradient(135deg, #141414 0%, #242424 100%);
  --brand-gradient-stat: linear-gradient(87.64deg, #141414 44.23%, #242424 101.25%);
}

body[data-brand="network"] {
  --brand-primary: #ffcb06;
  --brand-primary-hover: #e6b800;
  --brand-accent: #ffd633;
  --brand-accent-soft: rgba(255, 203, 6, 0.15);
  --brand-bg-dark: #333333;
  --brand-bg-darker: #222222;
  --brand-bg-soft: #f7f7f8;
  --brand-gradient-hero: linear-gradient(135deg, #000000 0%, #0a1929 50%, #0d2942 100%);
  --brand-gradient-card: linear-gradient(135deg, #0b1c2d 0%, #102a43 100%);
  --brand-gradient-stat: linear-gradient(87.64deg, #0b1c2d 44.23%, #102a43 101.25%);
}

body[data-brand="cortex"] {
  --brand-primary: #00cc66;
  --brand-primary-hover: #00b359;
  --brand-accent: #33ff99;
  --brand-accent-soft: rgba(0, 204, 102, 0.15);
  --brand-bg-dark: #0b1c2d;
  --brand-bg-darker: #071523;
  --brand-bg-soft: #f0fdf6;
  --brand-gradient-hero: linear-gradient(135deg, #000000 0%, #0a1929 50%, #0d2942 100%);
  --brand-gradient-card: linear-gradient(135deg, #0b1c2d 0%, #102a43 100%);
  --brand-gradient-stat: linear-gradient(87.64deg, #0b1c2d 44.23%, #102a43 101.25%);
}

body[data-brand="palo"] {
  --brand-primary: #f76a43;
  --brand-primary-hover: #e55a33;
  --brand-accent: #ff8a66;
  --brand-accent-soft: rgba(247, 106, 67, 0.15);
  --brand-bg-dark: #0b1c2d;
  --brand-bg-darker: #071523;
  --brand-bg-soft: #f5f7fa;
  --brand-gradient-hero: linear-gradient(135deg, #000000 0%, #0a1929 50%, #0d2942 100%);
  --brand-gradient-card: linear-gradient(135deg, #0b1c2d 0%, #102a43 100%);
  --brand-gradient-stat: linear-gradient(87.64deg, #0b1c2d 44.23%, #102a43 101.25%);
}

/* ==========================================================================
   3. BASE & TYPOGRAPHY
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

a:link,
a:visited,
a:active,

.row-header {
  color: var(--brand-primary);
}

.platform-link {
  color: var(--brand-primary);
}

.stat-number {
  color: var(--brand-primary-hover);
  font-weight: 700 !important;
  line-height: 1.2;
  font-size: 4rem;
  margin-bottom: .5rem !important;
}

.stat-card {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f2f6 100%);
  border-top: 3px solid var(--brand-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.threat-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* No hover effect — these cards have no links */

.threat-stat-card .stat-number {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.75rem !important;
}

.threat-stat-card .stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  flex: 1;
}

.threat-stat-card .stat-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

a:hover {
  color: var(--brand-primary-hover);
}

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

.btn-outline-primary {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 50px;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
}

.btn-outline-primary:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--neutral-0);
}

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff !important;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
}

.btn-primary:not(.btn-sm)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5em;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  color: #ffffff !important;
}

.btn-outline-light {
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#hero .btn-outline-light {
  color: white;
  border-color: var(--brand-primary);
  background-color: transparent;
}

#hero .btn-primary {
  color: #333;
}

#hero .btn-outline-light:hover,
#hero .btn-outline-light:focus {
  background-color: var(--brand-primary);
  color: #ffffff !important;
  border-color: var(--brand-primary);
}

.btn-outline-dark {
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  color: #333333;
  border-color: var(--brand-primary);
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--brand-primary);
  color: #333333;
  border-color: var(--brand-primary);
}

#product-nav {
  background: #ffffff;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

#product-nav .nav {
  gap: 2rem;
  border-bottom: none;
}

#product-nav .nav-link {
  position: relative;
  color: var(--neutral-700);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  padding: 0 0.5rem;
  background-color: transparent;
  text-decoration: none;
}

#product-nav .nav-link:hover,
#product-nav .nav-link:active,
#product-nav .nav-link:focus {
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-pills .nav-link {
  color: var(--neutral-700);
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
  background-color: var(--brand-primary);
  color: var(--neutral-0);
}

.visual-bg {
  background: linear-gradient(180deg, var(--brand-bg-soft) 0%, #edf0f5 100%);
}

.hero-section {
  background: linear-gradient(135deg, #000000 0%, #0a1929 50%, #0d2942 100%);
  color: #ffffff;
}


.footer-body .btn-outline-primary {
  border-color: var(--neutral-0);
  color: var(--neutral-0);
  background: transparent;
  font-weight: 600;
}

.footer-body .btn-outline-primary:hover {
  background-color: var(--neutral-0);
  border-color: var(--neutral-0);
  color: var(--neutral-800);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card>.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-card>.card-body>p:last-child,
.feature-card>.card-body>.btn:last-child,
.feature-card>.card-body>.btn-link:last-child {
  margin-top: auto;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card img,
.feature-card img {
  width: 100%;
  object-fit: contain;
}

.feature-card.dark-card {
  background: var(--brand-gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-section {
  background: linear-gradient(135deg, #0b1c2d 0%, #102a43 100%);
  color: #ffffff;
}

.dark-section::before,
.dark-section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.dark-section-alt {
  background: linear-gradient(180deg, #0b0f14 0%, #131a24 100%);
  color: #ffffff;
}

.black-section-alt {
  background-color: #000000;
  color: #ffffff;
}

.text-white,
.white-text {
  color: var(--neutral-0);
}

.text-on-dark {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-on-dark-muted {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-on-dark-subtle {
  color: rgba(255, 255, 255, 0.95) !important;
}

.text-on-dark-soft {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================================================
   4. LAYOUT & UTILITIES
   ========================================================================== */

.header {
  padding-top: var(--space-sm);
}

.sec-rel {
  position: relative;
}

.svg,
.main-prod-img {
  max-height: 100px;
  margin: auto;
}

.img-container img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.icon {
  height: 100px;
  margin-bottom: var(--space-lg);
}

.vendorLogo-1 {
  width: 181px;
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0;
}

.background-logo {
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.background-logo.bottom-right {
  background-position: right bottom;
}

.background-logo.auto {
  background-size: auto;
}

.col-header,
.table th {
  background-color: var(--brand-primary);
}

.col-header {
  border: 1px solid var(--brand-primary);
}

.container-login {
  width: 1140px;
  margin: 2% auto;
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
}

/* Structure Classes (No Visuals) */
.hero-eyebrow {
  letter-spacing: 1px;
  color: var(--brand-primary);
}

.lifecycle-eyebrow {
  letter-spacing: 1.5px;
  color: var(--brand-primary);
}

.lifecycle-image {
  max-width: 800px;
  opacity: 0.9;
}

.integration-label {
  letter-spacing: 0.5px;
}

/* Solutions carousel: arrows outside cards */
#solutionsCarousel {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}

#solutionsCarousel .feature-card img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}

#solutionsCarousel .carousel-inner {
  width: 95%;
  margin: 0 auto;
}

#solutionsCarousel .carousel-control-prev,
#solutionsCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-primary);
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

#solutionsCarousel .carousel-control-prev:hover,
#solutionsCarousel .carousel-control-next:hover {
  background: var(--brand-primary-hover);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

#solutionsCarousel .carousel-control-prev {
  left: -24px;
}

#solutionsCarousel .carousel-control-next {
  right: -24px;
}

#solutionsCarousel .carousel-control-prev-icon,
#solutionsCarousel .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

#solutionsCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--neutral-400);
  border: none;
  opacity: 1;
}

#solutionsCarousel .carousel-indicators button.active {
  background-color: var(--brand-primary);
}

/* Hardware tabs: pill-style */
#hardwareTabs {
  border: none;
  background: var(--neutral-100);
  border-radius: 12px;
  padding: 6px;
  gap: 4px;
}

#hardwareTabs .nav-link {
  border: none;
  border-radius: 8px;
  color: var(--neutral-600);
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

#hardwareTabs .nav-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--neutral-800);
}

#hardwareTabs .nav-link.active {
  background: var(--brand-primary);
  color: var(--neutral-0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Sticky CTA: right edge vertical */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--brand-primary);
  color: var(--neutral-0);
  padding: 1rem 0.65rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, padding 0.2s ease;
}

.floating-cta:hover {
  background: var(--brand-primary-hover);
  color: var(--neutral-0);
  padding: 1rem 0.85rem;
}

.capability-badge {
  border-radius: 20px;
  display: inline-block;
  padding: 0.5rem 1rem;
}

.capability-badge-text {
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* ==========================================================================
   5. BUTTONS & INPUTS
   ========================================================================== */

.btn-primary,
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.panel-primary>.panel-heading,
.progress-bar {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);

}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary,
.btn-warning:hover {
  background-color: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}

.btn-warning {
  color: var(--neutral-0);
}

.btn-outline {
  border: 2px solid var(--brand-primary);
  background: transparent;
  color: var(--brand-primary) !important;
}

.btn-outline:hover {
  background-color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  color: var(--neutral-0) !important;
}

.btn-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-primary);
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.btn-link:hover {
  color: var(--brand-primary-hover);
  text-decoration: underline;
  background: transparent;
}

.btn-search-top,
.btn-search-footer {
  background-color: var(--neutral-700);
  border-color: var(--neutral-700);
  color: var(--neutral-0);
  transition: all 0.3s ease;
}

.btn-search-top:hover,
.btn-search-top:focus,
.btn-search-top:active,
.btn-search-footer:hover,
.btn-search-footer:focus,
.btn-search-footer:active {
  background-color: var(--neutral-800);
  border-color: var(--neutral-800);
  color: var(--neutral-0);
}

/* ==========================================================================
   6. NAVIGATION & TABS
   ========================================================================== */

.header-links {
  padding: 1rem;
  font-size: 1.2rem;
  box-shadow: var(--);
}

.header-links>.col>a {
  color: var(--color-black);
  font-weight: 500;
}

.header-links>.col>a::after {
  content: '';
  display: block;
  height: 6px;
  background: var(--brand-primary);
  transform: scale(0, 1);
  transition: transform ease-in-out 250ms;
}

.header-links>.col>a:hover::after {
  transform: scale(1, 1);
}

.tabs a {
  color: var(--color-text-secondary) !important;
}

.tabs a.active,
.tabs a.active:hover {
  color: var(--neutral-0) !important;
  background: no-repeat 92% center var(--brand-primary);
}

.tab button.active {
  background-color: var(--brand-primary);
}

a .tablinks:hover {
  color: var(--color-text-secondary) !important;
  text-decoration: none;
}

.pagination-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
}

.pagination-simple .page-link-simple {
  color: var(--neutral-600);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pagination-simple .page-link-simple:hover:not(.disabled) {
  color: var(--brand-primary);
  gap: 12px;
}

.pagination-simple .page-link-simple.disabled {
  color: var(--neutral-300);
  cursor: not-allowed;
}

.pagination-simple .page-info {
  color: var(--neutral-600);
  font-size: 0.95em;
}

.pagination-simple .separator {
  color: var(--neutral-300);
  user-select: none;
}

/* ==========================================================================
   7. CARDS & WELLS
   ========================================================================== */

.card {
  height: 100%;
  margin-bottom: 0.5em;
  flex: 1 1 auto;
  padding: 1em;
  color: var(--bs-card-color, var(--color-text-primary));
  border: 2px solid var(--brand-primary);
}

.card.h-100.border-1 {
  transition: none !important;
}

.card.h-100.border-1:hover {
  box-shadow: none !important;
}

.pricing.card {
  padding: -var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

.pricing>.card-header {
  color: var(--neutral-0);
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  font-weight: 700;
  font-size: 16px;
}

.card-wrapper {
  background: var(--brand-gradient-stat);
  box-shadow: var(--shadow-md);
  padding: 58px 45px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  color: var(--brand-primary);
}

.p-well {
  width: 100%;
  min-height: 100%;
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin: 15px 0;
  background: linear-gradient(rgba(11, 28, 45, 0.95), rgba(11, 28, 45, 0.95));
  border: 2px solid var(--neutral-0);

}

.p-well p {
  margin-bottom: 0;
}

.image-p {
  background-color: var(--neutral-0);
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 30px;
}

.text-container h3 {
  padding-top: 0;
}

/* ==========================================================================
   8. COMPONENTS: ACCORDION
   ========================================================================== */

#accordion .panel-body {
  border: 1px solid var(--color-border);
}

.acc .accordion-item {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--);
  margin-bottom: 25px;
}

.acc h2.accordion-header {
  padding: 0;
  border: 0;
}

.acc h2.accordion-header .accordion-button {
  font-weight: 600;
}

.acc .accordion-body {
  border: 0;
}

.acc .accordion-button:focus,
.acc .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.acc .accordion-button:not(.collapsed) {
  color: var(--color-text-primary);
  background-color: var(--neutral-0);
}

.acc .accordion-button::after,
.acc .accordion-button:not(.collapsed)::after {
  background-color: var(--brand-primary);
  transition: all 0.5s;
}

.acc .accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23000000" d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg>');
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg>') no-repeat center;
}

.acc .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23000000" d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg>');
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg>') no-repeat center;
}

/* ==========================================================================
   9. COMPONENTS: STATISTICS
   ========================================================================== */

.number {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 75px;
  line-height: 120%;
  text-transform: capitalize;
  color: var(--neutral-0);
}

.number+p {
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 22px;
  line-height: 109%;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.number sup {
  position: relative;
  font-size: 50%;
  font-weight: normal;
  line-height: 0;
  vertical-align: baseline;
  top: -0.7em;
}

.stats-eyebrow {
  width: 97px;
  height: 8px;
  margin-bottom: 46px;
  background-color: var(--brand-primary);
}

.gray-tri {
  width: 80%;
  height: 60%;
  position: absolute;
  top: auto;
  bottom: 45px;
  z-index: 0;
  margin: 0;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50px;
  background-position: bottom left;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .number {
    font-size: 56px;
  }

  .number+p {
    font-size: 18px;
  }
}


/* ==========================================================================
   10. FOOTER
   ========================================================================== */

#footer {
  background-color: var(--neutral-800);
  padding: var(--space-lg) 0;
  text-align: center;
}

#footer p,
#footer a {
  color: var(--neutral-300);
}

#footer p {
  margin-bottom: 0;
}

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

#footer a:hover {
  color: var(--neutral-0);
}

.footer-header {
  padding: var(--space-lg) var(--space-md);
  background-color: var(--brand-bg-dark);
  border-bottom: 3px solid var(--color-black);
  font-size: 14pt;
  color: var(--neutral-0);
  margin-top: -22px;
}

.footer-header h3 {
  text-align: center;
  color: var(--neutral-0);
  font-weight: 600;
  margin-bottom: 0;
}

.footer-body {
  padding: var(--space-2xl) var(--space-lg);
  background-color: var(--neutral-600);
  color: var(--neutral-0);
}

.footer-body h3 {
  color: var(--neutral-0);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-body li {
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.footer-body a {
  color: var(--neutral-0);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-body a:hover {
  color: var(--neutral-300);
}

.footer-body .icons a {
  color: var(--neutral-0);
  margin: 0 var(--space-xs);
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-body .icons a:hover {
  color: var(--neutral-300);
  transform: translateY(-2px);
}

.btn-outline-footer {
  border-color: var(--neutral-0);
  color: var(--neutral-0);
}

.btn-outline-footer:hover {
  background-color: var(--neutral-0);
  border-color: var(--neutral-0);
  color: #333333;
}

/* ==========================================================================
   11. BRAND OVERRIDES: NETWORK
   ========================================================================== */

body[data-brand="network"] .breadcrumb a,
body[data-brand="network"] .breadcrumb-item a,
body[data-brand="network"] nav[aria-label="breadcrumb"] a {
  color: var(--neutral-600);
}

body[data-brand="network"] .breadcrumb a:hover,
body[data-brand="network"] .breadcrumb-item a:hover,
body[data-brand="network"] nav[aria-label="breadcrumb"] a:hover {
  color: var(--neutral-700);
}

body[data-brand="network"] .btn-primary {
  color: var(--neutral-700) !important;
}

body[data-brand="network"] .btn-primary:hover,
body[data-brand="network"] .btn-primary:focus,
body[data-brand="network"] .btn-primary:active {
  color: var(--neutral-700) !important;
}

body[data-brand="network"] .btn-outline-primary {
  color: var(--neutral-700);
  border-color: var(--brand-primary);
}

body[data-brand="network"] .btn-outline-primary:hover,
body[data-brand="network"] .btn-outline-primary:focus,
body[data-brand="network"] .btn-outline-primary:active {
  color: var(--neutral-700) !important;
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

body[data-brand="network"] .btn-link {
  color: var(--neutral-600) !important;
}

body[data-brand="network"] .btn-link:hover {
  color: var(--neutral-700);
}

body[data-brand="network"] .dark-section .btn-link,
body[data-brand="network"] .dark-section-alt .btn-link,
body[data-brand="network"] .hero-section .btn-link,
body[data-brand="network"] .footer-body .btn-link,
body[data-brand="network"] [class*="dark"] .btn-link {
  color: var(--neutral-0);
}

body[data-brand="network"] .dark-section .btn-link:hover,
body[data-brand="network"] .dark-section-alt .btn-link:hover,
body[data-brand="network"] .hero-section .btn-link:hover,
body[data-brand="network"] .footer-body .btn-link:hover,
body[data-brand="network"] [class*="dark"] .btn-link:hover {
  color: var(--neutral-100);
}

body[data-brand="network"] .col-header,
body[data-brand="network"] .table th {
  background-color: #333333;
}

/* ==========================================================================
   12. PAGE-SPECIFIC: HERO BACKGROUNDS
   ========================================================================== */

.hero-mdr {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/unit-42_mdr-L2_web_desktop_1920x1080-v2.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-5gsecurity {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/hero-5gsecurity.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-electric-utilities {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.8) 100%),
    url('https://cdn.blueally.com/paloguard/images/hero-electric-utilities.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-manufacturing {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.8) 100%),
    url('https://cdn.blueally.com/paloguard/images/hero-manufacturing.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-ot-security {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.8) 100%),
    url('https://cdn.blueally.com/paloguard/images/herootsecuritysolution.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-financial-services {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.8) 100%),
    url('https://cdn.blueally.com/paloguard/images/herobannerfinancialservices.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-healthcare {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.8) 100%),
    url('https://cdn.blueally.com/paloguard/images/herohealthcare.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-public-sector {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.8) 100%),
    url('https://cdn.blueally.com/paloguard/images/hero-efficiency-efforts-in-ps.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   CORTEX HERO BACKGROUNDS
   ========================================================================== */

.hero-cortex {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/cortex/cortex-banner01.png') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-cortex-xpanse {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/hero-banner-1920x1080.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-cortex-xsoar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/03_1920x1080.webp') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-cortex-xdr {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/product-tour.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-cortex-xsiam {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 25, 41, 0.8) 50%, rgba(13, 41, 66, 0.7) 100%),
    url('https://cdn.blueally.com/paloguard/images/xsiam-hero-bg.webp') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   CORTEX BRAND ENHANCEMENTS
   ========================================================================== */

body[data-brand="cortex"] .btn-primary {
  box-shadow: 0 4px 16px rgba(0, 204, 102, 0.4);
}

body[data-brand="cortex"] .btn-primary:hover,
body[data-brand="cortex"] .btn-primary:focus {
  box-shadow: 0 4px 20px rgba(0, 204, 102, 0.55);
}

/* ==========================================================================
   13. DARK VARIANT CARDS & SECTIONS
   ========================================================================== */

.feature-card-dark {
  background: var(--brand-gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-dark:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.feature-card-dark>.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-card-dark>.card-body>.btn {
  margin-top: auto;
  align-self: flex-start;
}

.dark-section-overlay {
  background: linear-gradient(rgba(11, 28, 45, 0.95), rgba(11, 28, 45, 0.95)),
    url('https://cdn.blueally.com/paloguard/images/contactlistbga.jpg') center/cover no-repeat;
  color: #ffffff;
}

/* ==========================================================================
   14. PRISMA BRAND ENHANCEMENTS
   ========================================================================== */

body[data-brand="prisma"] .btn-primary {
  box-shadow: 0 4px 16px rgba(0, 196, 204, 0.4);
}

body[data-brand="prisma"] .btn-primary:hover,
body[data-brand="prisma"] .btn-primary:focus {
  box-shadow: 0 4px 20px rgba(0, 196, 204, 0.55);
}

/* ==========================================================================
   15. PRODUCT PAGE UTILITIES
   ========================================================================== */

.tab-pane {
  overflow-x: hidden;
}

.spec-summary {
  border-collapse: collapse;
  width: 100%;
}

.spec-summary th {
  background-color: var(--brand-primary);
  color: var(--neutral-0);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.spec-summary td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-700);
}

.spec-summary tr:last-child td {
  border-bottom: none;
}

.spec-summary .spec-label {
  font-weight: 600;
  color: var(--neutral-900);
}

.category-card {
  border-left: 4px solid var(--brand-primary);
  background: var(--neutral-0);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.model-grid-card {
  background: var(--neutral-0);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
  height: 100%;
}

.model-grid-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.model-grid-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.model-grid-card .model-name {
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.model-grid-card .model-spec {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 0.25rem;
}

.partner-logo {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   16. PRICING CARDS
   ========================================================================== */

.pricing-card {
  background: var(--neutral-0);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

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

.pricing-card-header {
  padding: 2rem 2rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-card-header .pricing-sub {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0;
}

.pricing-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card-body .pricing-includes-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--neutral-400);
  margin-bottom: 0.5rem;
}

.pricing-card-body .pricing-includes {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1.5rem;
}

.pricing-card-body .pricing-best-for {
  background: var(--neutral-100);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card-body .pricing-best-for .best-for-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--neutral-500);
  margin-bottom: 0.25rem;
}

.pricing-card-body .pricing-best-for p {
  color: var(--neutral-700);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-card-body .btn {
  width: 100%;
}

/* Popular / highlighted variant */
.pricing-card-popular {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card-popular .pricing-card-header {
  background: var(--neutral-900);
  border-bottom-color: var(--neutral-900);
}

.pricing-card-popular .pricing-card-header .pricing-sub {
  color: var(--brand-primary);
}

.pricing-card-popular .pricing-card-header h3 {
  color: var(--neutral-0);
}

.pricing-badge {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: var(--brand-primary);
  color: var(--neutral-900);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.pricing-card-popular .pricing-card-body .pricing-best-for {
  background: var(--brand-accent-soft);
}

@media (max-width: 991.98px) {
  .pricing-card-popular {
    transform: scale(1);
  }

  .pricing-card-popular:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================================================
   17. EOL PAGE: THROUGHPUT BARS
   ========================================================================== */

.throughput-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  height: 36px;
  overflow: hidden;
}

.throughput-fill {
  height: 100%;
  border-radius: var(--radius-sm);
  background: var(--brand-primary);
  width: 100%;
}

.throughput-fill-legacy {
  background: var(--neutral-600);
  width: 19%;
}

/* ==========================================================================
   18. HOMEPAGE: BEST SELLER SECTION
   ========================================================================== */

.bestseller-section {
  background: var(--neutral-100);
  border-top: 3px solid var(--brand-primary);
}

.bestseller-eyebrow {
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  font-size: 0.85rem;
}

.bestseller-img {
  max-height: 320px;
  object-fit: contain;
}

.bestseller-feature {
  padding: 1rem;
  background: var(--neutral-0);
  border-radius: var(--radius-md);
  height: 100%;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bestseller-feature:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.bestseller-feature>p:last-child {
  margin-top: auto;
}

/* ==========================================================================
   19. HOMEPAGE: EOL UPGRADE CENTER
   ========================================================================== */

.eol-table {
  border-collapse: separate;
  border-spacing: 0;
}

.eol-table thead th {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.eol-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.eol-table tbody tr:last-child td {
  border-bottom: none;
}

.eol-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

.eol-badge::before {
  content: "\26A0";
  font-size: 0.9rem;
}

.eol-gain {
  display: inline-block;
  background: rgba(0, 204, 102, 0.15);
  color: #00cc66;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

/* ==========================================================================
   20. PA-400 SERIES PAGE COMPONENTS
   ========================================================================== */

.buying-guide-card {
  background: var(--neutral-0);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buying-guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.buying-guide-card .guide-models {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--neutral-0);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.deployment-tag {
  display: inline-block;
  background: rgba(0, 196, 204, 0.1);
  color: var(--neutral-700);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin: 0.25rem;
  border: 1px solid rgba(0, 196, 204, 0.25);
}

.series-crosslink {
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ==========================================================================
   21. PA-1400 SERIES: COMPARISON TABLE
   ========================================================================== */

.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead th {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-table thead th.comparison-highlight {
  background-color: rgba(0, 196, 204, 0.12);
  color: var(--brand-primary);
}

.comparison-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.comparison-table tbody td.comparison-highlight {
  background-color: rgba(0, 196, 204, 0.06);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   22. VIDEO AND VIDEO MODAL
   ========================================================================== */

/* --- Video Wrapper --- */
.product-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.product-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   23. PILLS AND TABS
   ========================================================================== */

.tab {
  overflow: hidden;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 10px;
  margin: 2px;
  transition: 0.3s;
  font-size: 20px;
  display: block;
  width: 100%;
  border-radius: 50px;
  border: 1px solid #030709;
  color: #030709;
}

.tab button:hover {
  background-color: #00C0E8;
  border: 1px solid #00C0E8;
}

.tab button.active {
  background-color: #00C0E8;
  border: 1px solid #00C0E8;
  font-weight: 600;
}

.tabcontent {
  display: none;
  padding: 12px;
  border-top: none;
}

.tabs-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tabs-sidebar {
  flex-direction: column;
  width: 310px;
}

.tabs-sidebar .nav-link {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  color: #7C7C7C;
  border-left: 5px solid #ddd;
  border-radius: 0;
  margin-bottom: 10px;
  background: transparent;
  cursor: pointer;
}

.tabs-sidebar .nav-link:hover {
  border-left-color: #00C0E8;
  color: #0096B5;
  font-weight: 600;
  background: transparent;
}

.tabs-sidebar .nav-link.active {
  border-left-color: #00C0E8;
  color: #0096B5;
  font-weight: 600;
  background: transparent;
}

.tab-content {
  flex: 1;
}

.tab-pane {
  width: 100%;
  border: none;
  padding: 25px;
}

/* MOBILE (FORCE STACK + SCROLL) */
@media (max-width: 767px) {

  .tabs-layout {
    flex-direction: column;
  }

  .tabs-sidebar {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  .tabs-sidebar .nav-link {
    flex: 0 0 auto;
    border-left: none;
    border-bottom: 3px solid #ddd;
    margin-right: 10px;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
  }

  .tabs-sidebar .nav-link.active {
    border-bottom-color: #00C0E8;
  }

  .tabs-sidebar::-webkit-scrollbar {
    display: none;
  }
}