﻿@charset "utf-8";

/* =========================================================
   DESIGN TOKENS (brand color, spacing, radius, shadows)
   Single source of truth for theme + layout scales.
   ========================================================= */
:root {
  /* Brand */
  --brand-red: #e4002b;
  --brand-red-dark: #b80022;

  /* Legacy aliases (preserved for existing HTML) */
  --gs-red: var(--brand-red);
  --gs-red-dark: var(--brand-red-dark);
  --wg-red: var(--brand-red);
  --wg-red-dark: var(--brand-red-dark);

  /* Neutrals */
  --gs-text: #111318;
  --gs-muted: #6b7280;
  --gs-bg: #ffffff;
  --gs-surface: #f7f7f8;
  --gs-border: #e5e7eb;

  /* Accents / emphasis */
  --gs-danger: #d3122a;
  --gs-accent: #ffefe9;
  --gs-ring: 0 0 0 3px rgba(211, 18, 42, 0.2);

  /* Radius / elevation */
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);

  /* Spacing */
  --space-1: 0.375rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;

  /* Section padding (equal block/inline by default) */
  --section-pad-block: var(--space-6);
  --section-pad-inline: var(--space-4);

  /* Default fallbacks for Bootstrap card spacers (if Bootstrap not loaded) */
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
}

/* =========================================================
   GLOBAL BASE (html/body, containers, typography & links)
   ========================================================= */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--gs-bg);
  color: var(--gs-text);
  margin: 0;
  line-height: 1.45;
}

.container,
[data-container] {
  /* max-width: 1160px; */
  margin-inline: auto;
  /* padding-inline: 1rem; */
}

/* Section wrapper: equal padding block/inline */
.gs-section {
  padding-block: var(--section-pad-block);
  padding-inline: var(--section-pad-inline);
}

/* Typography & Links */
a {
  color: var(--brand-red);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--brand-red-dark);
  outline: none;
}

h1,
h2,
h3,
h4,
h5 {
  color: inherit;
  margin: 0 0 0.5rem 0;
}

.text-link {
  color: var(--brand-red);
}

.text-link:hover {
  color: var(--brand-red-dark);
  cursor: pointer;
}

.gs-kicker {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gs-red);
}

/* Utilities */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[id] {
  scroll-margin-top: 90px;
}

/* =========================================================
   BUTTONS (brand primary, secondary, outline, affordances)
   ========================================================= */
.btn {
  border-radius: 12px;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  user-select: none;
}

.btn-primary,
.btn-warning {
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  color: #fff;
}

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

.btn-primary:disabled,
.btn-primary.disabled {
  background: var(--brand-red);
  border-color: var(--brand-red);
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-secondary {
  background: #808080;
  border: 1px solid #808080;
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.btn-outline-danger {
  border: 1px solid #dc3545;
  color: #dc3545;
  background: transparent;
}

.btn-outline-danger:hover {
  background: #dc3545;
  color: #fff;
}

/* Brand outline (non-Bootstrap) */
.btn-outline {
  border: 2px solid var(--gs-red);
  background: transparent;
  color: var(--gs-red);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: var(--gs-red);
  color: #fff;
}

a.btn.btn-outline {
  border-radius: 0;
}

/* Micro-animation affordance (reduced-motion respected) */
@keyframes jiggle {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-2deg);
  }

  75% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0);
  }
}

.btn-jiggle:hover {
  animation: jiggle 0.3s ease-in-out;
}

.btn-jiggle:active {
  animation: none !important;
}

/* CTA sizing */
.gs-cta-wrap .btn {
  padding: 0.75rem 1.1rem;
  white-space: nowrap;
}

/* =========================================================
   NAVIGATION (subnav, header links, megamenu)
   ========================================================= */
.subnav {
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-block-end: 1px solid #e5e7eb;
  z-index: 1020;
}

.subnav .nav-link {
  font-weight: 600;
  color: #374151;
  padding: 0.75rem 1rem;
  border-block-end: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.subnav .nav-link:hover {
  color: var(--brand-red);
  border-block-end-color: var(--brand-red);
}

.subnav .nav-link:focus {
  box-shadow: var(--gs-ring);
}

/* Top header quick links */
.header-links {
  padding: 1rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-links>.col>a {
  color: #000;
  font-weight: 500;
}

.header-links>.col>a::after {
  content: '';
  display: block;
  height: 6px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms;
}

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

/* Megamenu (minimal overrides) */
#products-megamenu {
  left: -32px;
  background: #eee;
}

#products-megamenu .row .row .col-sm-3 {
  padding-inline: 10px !important;
}

.megamenu-list-item {
  display: block;
  padding: 5px 20px;
  color: #000 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

/* Fix: do not target arbitrary hovered children */
.megamenu-list:hover,
.megamenu-list-item:hover {
  color: #000;
  font-weight: 800;
}

.megamenu-header {
  background: #8f8f8f !important;
  color: #fff !important;
  margin-block: 20px 5px;
  text-transform: uppercase;
  padding: 5px 10px !important;
  text-align: left !important;
}

/* =========================================================
   HERO / THEME SECTIONS
   ========================================================= */
.gs-hero {
  padding-block-start: calc(var(--section-pad-block) + 0.5rem);
  padding-inline: var(--section-pad-inline);
  padding-block-end: var(--section-pad-block);
  overflow: visible;
}

.gs-hero-illus {
  min-height: 220px;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  border-radius: var(--radius);
}

.partner-pill .pill-wrapper {
  border-radius: var(--radius-pill);
}

.hero-figure {
  max-width: 480px;
}

/* Optional alternate hero theme */
.custom-hero {
  padding-block: 4rem;
  background: #1e2328;
  color: #f5f5f5;
  position: relative;
}

.custom-hero-accent {
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 100%;
  background: rgba(200, 0, 0, 0.2);
  transform: skewX(-15deg);
  pointer-events: none;
}

/* =========================================================
   CARDS & SURFACES (generic cards, wells, pricing)
   ========================================================= */
.card {
  /* border-radius: var(--radius); */
  box-shadow: var(--shadow);
  background: #fff;
}

/* Wells */
.p-well,
.card-well {
  position: relative;
  color: #666;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 35px 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.09);
  transition: box-shadow 0.4s;
}

.p-well:hover,
.card-well:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  text-decoration: none;
}

.highlight-well .p-well {
  background-image: linear-gradient(to bottom right, #fff, #fff, #fed3d3);
}

/* Pricing header accent (use CSS var fallbacks) */
.pricing.card {
  padding-block: var(--bs-card-spacer-y);
  padding-inline: var(--bs-card-spacer-x);
}

.pricing>.card-header {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
  font-weight: 700;
  font-size: 1rem;
}

/* =========================================================
   PRODUCT / TILE CARDS (DRY: shared tile styles)
   ========================================================= */
.card-tile,
.gs-product-card,
.fb-tile,
#wn-track .card.fb-tile {
  border: 1px solid var(--gs-border);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform, box-shadow;
}

.card-tile:hover,
.gs-product-card:hover,
.fb-tile:hover,
#wn-track .card.fb-tile:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Image containers inside tiles */
.card-tile .gs-img,
.gs-product-card .gs-img,
.fb-img {
  height: 90px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-tile .gs-img img,
.gs-product-card .gs-img img,
.fb-img img,
#wn-track .fb-img img {
  max-height: 70px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transition: transform 0.2s ease;
}

/* Specific product spec text */
.gs-product-card .gs-spec {
  font-size: 0.9rem;
  color: #495057;
}

/* Generic media frame (no stretch) */
.gs-media {
  background: #f8fafc;
  border-radius: var(--radius);
}

.gs-media-inner {
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-fit {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* =========================================================
   LISTS / ORDERED STEPS
   ========================================================= */
.list {
  counter-reset: step;
  list-style: none;
  padding-left: 40px;
}

.list li {
  counter-increment: step;
  position: relative;
  margin-block-end: 25px;
}

.list li::before {
  content: counter(step);
  position: absolute;
  left: -42px;
  top: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background: var(--brand-red);
  border-radius: 50%;
  box-shadow: 1px 1px 0 #999;
}

/* =========================================================
   ACCORDION (custom plus/minus indicators)
   ========================================================= */
.acc .accordion-item {
  border: none;
  box-shadow: 0 0 6px rgba(16, 16, 16, 0.21);
  margin-block-end: 25px;
  background: #fff;
}

.acc .accordion-button {
  font-weight: 600;
  font-size: 1rem;
}

.acc .accordion-button:focus,
.acc .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: #fff;
  color: #212529;
}

.acc .accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23e4002b" d="M468.3,212.7H305.2v-169c0-24.2-19.6-43.8-43.8-43.8c-24.2,0-43.8,19.6-43.8,43.8v169h-174C19.6,212.7,0,232.3,0,256.5c0,24.2,19.6,43.8,43.8,43.8h174v168c0,24.2,19.6,43.8,43.8,43.8c24.2,0,43.8-19.6,43.8-43.8v-168h163.1c24.2,0,43.8-19.6,43.8-43.8C512,232.3,492.5,212.7,468.3,212.7z"/></svg>');
  transition: 0.5s;
}

.acc .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23e4002b" d="M467.4,212.4H42.9c-24.2,0-43.7,19.6-43.7,43.7s19.6,43.7,43.7,43.7h424.5c24.2,0,43.7-19.6,43.7-43.7S491.5,212.4,467.4,212.4z"/></svg>');
}

/* =========================================================
   TABS
   ========================================================= */
.tabs a {
  color: #666 !important;
}

.tabs a.active,
.tabs a.active:hover {
  color: #fff !important;
  background: var(--brand-red);
}

.tabs a::after {
  content: '';
  display: block;
  height: 6px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform 250ms;
}

a .tablinks :hover {
  color: #666666 !important;
  text-decoration: none;
}

/* =========================================================
   TABLES & COMPARISON
   ========================================================= */
.table th {
  position: sticky;
  top: 0;
  background: #e4200b;
}

.table tbody th {
  white-space: nowrap;
}

.table td,
.table th {
  vertical-align: middle;
}

#compare-firewalls table thead th,
#compare-firewalls table th {
  background: #eee !important;
  color: #333 !important;
  border: 0;
  vertical-align: middle;
}

#compare-firewalls table thead tr.fw-semibold th {
  background: #cecece !important;
}

#compare-firewalls tbody tr.bg-light th {
  font-weight: 600;
}

#compare-firewalls tbody tr:hover td,
#compare-firewalls tbody tr:hover th {
  background: #f1f3f5 !important;
  color: #212529 !important;
}

.cmp-col-1 img,
.cmp-col-2 img,
.cmp-col-3 img {
  max-height: 70px;
}

.cmp-title a {
  text-decoration: none;
}

/* =========================================================
   HORIZONTAL SCROLLERS (rails, product tracks)
   ========================================================= */
.h-scroll {
  overflow-x: auto;
  gap: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block-end: 1.5rem;
  margin-block-end: -1rem;
}

.h-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 220px;
}

@media (min-width: 768px) {
  .h-item {
    width: 240px;
  }
}

/* Rail buttons */
#cmp-track {
  display: flex;
  gap: 1rem;
  overflow: auto;
  padding-block: 0.25rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#cmp-track::-webkit-scrollbar {
  display: none;
}

#cmp-track>.card {
  width: 260px;
}

#cmp-track>.card .card-body {
  display: flex;
  flex-direction: column;
  min-height: 292px;
}

#cmp-track .cmp-desc {
  min-height: 48px;
}

#cmp-track .cmp-pick {
  margin-top: auto;
}

#cmp-prev,
#cmp-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}

#cmp-prev:disabled,
#cmp-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* =========================================================
   BANNERS & BADGES
   ========================================================= */
.banner {
  font-size: 1.3rem;
  background: #000 url("https://cdn.blueally.com/guardsite/images/banners/2024/ebook_accessing_the_xdr_realm_enduser.jpg") no-repeat right/contain;
  padding: 2em;
}

.banner-margin {
  margin: 0 -11px;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  color: #fff;
  background: #6c757d;
}

.badge-new {
  background: #6c757d;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.675rem;
  padding: 0.35rem 0.55rem;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

/* Simple pill utilities */
.gs-pill,
.gs-pill-lite {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  align-self: baseline;
}

.gs-pill {
  background: #fff;
  color: #111;
  border: 1px solid var(--gs-border);
}

.gs-pill-lite {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================================================
   TRUST / LOGO BAND
   ========================================================= */
.gs-trustband {
  background: linear-gradient(135deg, #101216, #1b1f26);
  color: #e7eaee;
}

.gs-trustband .gs-card {
  background: #12161c;
  border: 1px solid #222733;
  border-radius: 14px;
}

.gs-logo-row {
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.gs-logo-box {
  width: 160px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.9;
  transition: filter 0.3s, opacity 0.3s, transform 0.2s;
}

.gs-logo:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

/* Counters (dark variant) */
.gs-counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gs-counter {
  border: 1px solid #222733;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  background: #141922;
}

.gs-counter .num {
  font-weight: 700;
  font-size: 1.6rem;
}

/* =========================================================
   FILTERS / SHOP ALL
   ========================================================= */
#firebox-shop-all .sticky-lg-top {
  max-height: calc(100vh - 100px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#firebox-shop-all .card,
#firebox-shop-all .fb-tile {
  border: 1px solid var(--gs-border);
  border-radius: 14px;
  background: #fff;
}

#firebox-shop-all .fb-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#firebox-shop-all .fb-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#firebox-shop-all .fb-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#firebox-shop-all .spec {
  font-size: 0.92rem;
  color: #495057;
  line-height: 1.35;
}

#firebox-shop-all .spec .kv {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
}

#firebox-shop-all .spec .kv strong {
  font-weight: 600;
}

#firebox-shop-all .badges {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: auto;
}

/* Equal height Firebox tiles */
.fb-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Consistent image container for Firebox tiles */
.fb-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-img img {
  display: block;
  margin-inline: auto;
  max-height: 160px;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  #firebox-shop-all .fb-img {
    height: 120px;
  }
}

/* =========================================================
   MISC LAYOUT & HELPERS
   ========================================================= */
.price-note {
  font-size: 0.8125rem;
}

.filter-help {
  font-size: 0.8rem;
  color: #6c757d;
}

.seg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.seg select {
  width: 100%;
}

.partner-badge,
.partner-pill {
  z-index: 10;
}

.badge-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #eee;
}

.pill-wrapper {
  max-width: 220px;
  border: 1px solid #ddd;
}

/* Media helpers */
.img-fluid-h {
  max-width: 100%;
  height: 150px;
}

.gs-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: var(--gs-surface);
  border-radius: 12px;
}

.gs-spec {
  color: var(--gs-muted);
  font-size: 0.95rem;
}

.bg-accent {
  background: var(--gs-accent);
}

.link-accent {
  color: var(--gs-danger);
  font-weight: 700;
}

.link-accent:focus {
  box-shadow: var(--gs-ring);
}

.big-text {
  font-size: 1.1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-header {
  padding: 10px;
  background: var(--brand-red);
  border-block-end: 3px solid #000;
  font-size: 14pt;
  color: #fff;
}

.footer-header h3,
.footer-body h3 {
  color: #fff;
}

.footer-body {
  padding: 15px 25px;
  background: #818181;
  color: #fff;
}

.footer-body a {
  color: #fff;
}

.footer-body a:hover {
  color: var(--brand-red);
}

/* =========================================================
   RESPONSIVE TWEAKS & OTHER
   ========================================================= */
.accordion-button {
  font-size: 1rem;
}

.accordion-body {
  font-size: 0.92rem;
}

.gs-seo {
  background: var(--gs-bg);
  border-block-start: 1px solid var(--gs-border);
}

/* Mobile hero size tweak */
@media (max-width: 576px) {
  .gs-hero .display-5 {
    font-size: 1.9rem;
  }
}

/* Anchor jump offset (tiny easing) */
:target::before {
  content: "";
  display: block;
  height: 10px;
  margin-block-start: 20px;
  visibility: hidden;
}



/* Vendor logo placement */
.vendorLogo-1 {
  width: 150px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
}

/* Relative section helper */
.sec-rel {
  position: relative;
}

/* PRODUCT GRID: single horizontal rail */
#product-grid-new.row {
  flex-wrap: nowrap !important;
}

#product-grid-new .col-12,
#product-grid-new .col-sm-6,
#product-grid-new .col-lg-4 {
  flex: 0 0 auto;
  width: 300px;
  max-width: 100%;
  scroll-snap-align: start;
}

#product-grid-new .fb-tile {
  height: 100%;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

#product-grid-new .fb-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#product-grid-new .fb-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 0.75rem;
  padding: 0.25rem;
  overflow: hidden;
}

#product-grid-new .fb-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tidy headings in grid */
#product-grid-new .fb-tile h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-block-end: 0.25rem;
}

/* Card image hover transform */
.card:hover img {
  transform: scale(1.05);
  transition: transform 0.2s ease;
  will-change: transform;
}

.hover-shadow:hover {
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.1) !important;
}

.bg-danger-subtle {
  background-color: #ffe5e5 !important;
}

/* Animated badge shimmer (respects reduced motion) */
.badge.just-released {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 50rem;
  color: #fff;
  background-size: 200% 100%;
  overflow: hidden;
  animation: shimmerMove 3s linear infinite;
}

@keyframes shimmerMove {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge.just-released {
    animation: none;
    background-position: 0 0;
  }
}

/* Ocean gradient badge */
.badge--ocean {
  background: linear-gradient(90deg, #0d6efd, #00c2ff, #0d6efd);
  box-shadow: 0 0.25rem 0.75rem rgba(13, 110, 253, 0.25);
}

.badge.just-released i {
  color: #ffe47a;
}

/* Small badges */
.badge-wifi,
.badge-poe,
.badge-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 50rem;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.2px;
}

.badge-wifi {
  background: linear-gradient(90deg, #0dcaf0, #39c0ed);
  box-shadow: 0 0.25rem 0.75rem rgba(13, 202, 240, 0.25);
}

.badge-poe {
  background: linear-gradient(90deg, #20c997, #2dd4bf);
  box-shadow: 0 0.25rem 0.75rem rgba(32, 201, 151, 0.25);
}

.badge-product {
  background: linear-gradient(90deg, #2e4472, #2b406b);
  box-shadow: 0 0.25rem 0.75rem rgba(32, 201, 151, 0.25);
}

.badge-new,
.badge-legacy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50rem;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.2px;
}

.badge-new {
  background: linear-gradient(90deg, #F32B0A, #B71F24);
}

.badge-legacy {
  background: linear-gradient(90deg, #2e4472, #2b406b);
}

.badges {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Keep vertical & horizontal alignment consistent */
.fb-tile h3,
.fb-tile .badges {
  line-height: 1;
}

/* WatchGuard gradient background helper */
.bg-watchguard-gradient {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-block-end: 3rem;
  background:
    radial-gradient(60rem 60rem at 120% -10%, rgba(228, 0, 43, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(228, 0, 43, 0.06), rgba(228, 0, 43, 0.03));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.bg-light {
  border-block-start: 1px solid #dee2e6 !important;
}

.tab-pane {
  border: none !important;
}

#bundles-licenses .card {
  background: #fff;
  color: #212529;
}

/* What's New rail */
.wn-viewport {
  position: relative;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #dee2e6;
  padding-inline: 2rem;
  margin-block-end: 2rem;
  overflow: visible;
}

#wn-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-block-end: 1.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#wn-track::-webkit-scrollbar {
  display: none;
}

#wn-track .card.fb-tile {
  width: 300px;
  min-width: 300px;
  max-width: 100%;
  flex-shrink: 0;
  border-radius: 1rem;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

#wn-track .card.fb-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#wn-track .fb-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 0.75rem;
  padding: 0.25rem;
  overflow: hidden;
}

#wn-track .fb-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#wn-track .badges {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: auto;
}

#wn-track h3.h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-block-end: 0.25rem;
}

#wn-track .btn-jiggle {
  animation: none;
}

#wn-track .btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
}

#wn-track .small.text-decoration-none {
  font-size: 0.92rem;
  color: #374151;
  margin-inline-start: 0.5rem;
}

#wn-prev,
#wn-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}

#wn-prev:disabled,
#wn-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Misc component styles */
.main-heading {
  display: block;
  text-align: center;
  background-color: #242c39;
  color: #fff;
  margin-block-start: -25px;
  margin-inline: -30px;
}

.p-card {
  border: 1px solid #242c39;
}

.card table {
  color: darkslategray;
}

.col-sm-3 {
  padding: 5px;
}

.p-card {
  position: relative;
  cursor: pointer;
  border: 1px solid #242c39;
  border-radius: 5px;
  padding: 25px 30px;
  margin-block-end: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.09);
}

/* Note: .p-card uses a Font Awesome glyph via pseudo-element.
   Ensure Font Awesome 5 Free is loaded and font-weight: 900 matches the icon weight (solid). */
.p-card:after {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--brand-red);
  content: '\f061';
}

.p-card p {
  font-size: 14px;
  color: #333333;
}

.card td {
  font-size: 9pt;
}

/* About section */
.about {
  padding-block: 10px;
  text-align: center;
}

.about p {
  font-size: 17px;
}

.btn-gra {
  background-color: gray;
  border-color: gray;
}

.main-products h3 a {
  color: black;
}

.main-products .btn-primary a {
  color: #fff;
}

.main-products .btn-primary {
  border-radius: 0;
  background-color: var(--brand-red);
  border: 0;
}

/* Custom list bullets */
.main-products ul {
  list-style: none;
  padding: 0;
}

.main-products ul li::before {
  content: "■ ";
  color: var(--brand-red);
  font-size: 17px;
  margin-inline-end: 8px;
}

/* Panda product specifics */
#pandaProducts h3 {
  text-align: center;
}

#pandaProducts .col-sm-3 {
  padding: 10px;
}

#pandaProducts ul.small,
#pandaProducts p.small {
  height: 80px;
}

#pandaProducts .btn a {
  color: #fff;
}

#pandaProducts img {
  height: 150px;
}

/* Button bar */
.btn-bar {
  border: 2px solid #696b78;
  background: #fff;
  color: #696b78;
  font-size: 1.3rem;
}

.btn-bar:hover {
  background-color: #696b78;
  color: #fff;
}

/* Flex helpers */
.flex-container {
  display: flex;
  flex-wrap: nowrap;
}

.flex-container>div {
  margin: 4px;
}

/* Nav pills */
.nav-pills .nav-link {
  width: 200px;
  padding: 15px;
  color: #7c7c7c;
  border-block-end: 1px solid #000;
  border-radius: 0;
  font-size: 1.3rem;
}

.nav-pills .nav-link.active {
  background-color: var(--brand-red);
}

.no-arrow .dropdown-toggle::after {
  display: none;
}

/* Resource card */
.resource-card {
  position: relative;
  cursor: pointer;
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 6px rgba(16, 16, 16, 0.102);
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
  height: 100%;
  background: #fff;
}

.resource-card:hover {
  transform: scale(1.05);
  transform-origin: center;
  box-shadow: 0 4px 15px rgba(16, 16, 16, 0.251);
}

.resource-card .card-container {
  padding: 25px;
  min-height: 100px;
}

.resource-card .image-block {
  min-height: 200px;
  background-size: cover;
  background-position: top;
  border-radius: 10px 10px 0 0;
  filter: brightness(90%);
}

/* hr */
.hr-gradient {
  background: linear-gradient(90deg, #B52026 0%, #DB1616 50%, #E8800F 100%);
  border: 0;
  opacity: 1;
  height: 3px;
  margin-bottom: 10px;
}

/* =========================================================
   GOVERNMENT & PUBLIC SERVICES PAGE
   ========================================================= */

/* Government color variables */
.gov-page {
  --gov-navy: #1e3a5f;
  --gov-slate: #475569;
  --gov-light-gray: #f8f9fa;
}

/* Hero section */
.hero-gov {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--gov-navy) 0%, #2d4a6b 50%, var(--gov-navy) 100%);
  color: #fff;
}

.hero-gov h1 {
  font-weight: 700;
  line-height: 1.2;
}

.hero-gov .lead {
  color: rgba(255, 255, 255, 0.85);
}

/* Alternating section backgrounds */
.section-gov-challenges {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-threats {
  background: #ffffff;
}

.section-solutions {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-visibility {
  background: #ffffff;
}

.section-modernize {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-pricing {
  background: #ffffff;
}

.section-facts {
  background: linear-gradient(135deg, var(--gov-navy) 0%, #2d4a6b 100%);
  color: #fff;
}

.section-testimonial {
  background: #f8f9fa;
}

.section-resources {
  background: #ffffff;
}

.section-final-cta {
  background: linear-gradient(135deg, #1b1b1b 0%, #2b2b2b 100%);
  color: #fff;
}

.section-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Text colors */
.text-navy {
  color: var(--gov-navy);
}

.text-slate {
  color: var(--gov-slate);
}

/* Threat cards */
.threat-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.threat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Pricing cards */
.pricing-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease;
  background: #fff;
}

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

/* Facts section stats */
.fact-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-red);
}

/* Testimonial blockquote */
.blockquote-gov {
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid var(--brand-red);
  padding-left: 1.5rem;
}

/* Resource cards - reusing existing style but ensuring consistency */
.gov-resource-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease;
  background: #fff;
}

.gov-resource-card:hover {
  transform: translateY(-2px);
}

/* Modernize section CTA wrapper */
.modernize-cta-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Contact form section enhancements */
.contact-info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-card .contact-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-card .contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* End of stylesheet */