@charset "utf-8";

/* ================================================================
   STYLES.CSS - Main Stylesheet
   ================================================================
   Table of Contents:
   1.  CSS Variables
   2.  Global Typography
   3.  Links & Icons
   4.  Buttons
   5.  Navigation
   6.  Hero Sections
   7.  Page Sections & Layout
   8.  Cards
   9.  Features, Lists & Forms
   10. Tables
   11. Tabs & Pricing
   12. Page-Specific: Capabilities & Glassmorphism
   13. Related Product Cards
   14. Footer
   15. Utility Classes
   16. Responsive Design
   ================================================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
  --sophos-dark-blue: #001A47;
  --sophos-blue: #2006F7;
  --sophos-purple-dark: #10037C;
  --sophos-cyber-blue: #00EDFF;
  --sophos-white: #EBF6FF;
  --sophos-base-white: #FFFFFF;
  --sophos-base-mid-light: #BBCFDE;
  --sophos-base-mid: #6A889B;
  --sophos-base-dark: #223E4C;
  --card-border: #BBCFDE;
  --sophos-alert-red: #EA0022;
  --sophos-alert-orange: #F29400;
  --sophos-alert-yellow: #F8E300;
  --sophos-alert-lime: #AAFF00;
  --sophos-alert-green: #00EF0B;
  --shadow-soft: 0 4px 24px rgba(0, 26, 71, 0.06);
  --shadow-medium: 0 8px 32px rgba(0, 26, 71, 0.08);
}

/* ============================================
   2. GLOBAL TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  color: var(--sophos-dark-blue);
  margin-bottom: 16px;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.6875rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

p,
.lead,
.hero-intro {
  line-height: 1.5;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--sophos-base-dark);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 720px;
  margin-bottom: 20px;
}

.hero-intro {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}

small,
.small-text {
  font-size: 0.875rem;
  font-weight: 400;
}

.text-dark-custom {
  color: #333333 !important;
}

/* ============================================
   3. LINKS & ICONS
   ============================================ */
a {
  color: var(--sophos-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a.redText:hover {
  color: var(--sophos-purple-dark);
  text-decoration: underline;
}

a.redText {
  color: var(--sophos-alert-red);
}

i,
li i {
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease;
}

li i {
  margin-right: 0.5rem;
}

a i.fa-arrow-right {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

a:hover i.fa-arrow-right {
  transform: translateX(3px);
}

/* ============================================
   4. BUTTONS
   ============================================ */

/* --- Shared --- */
.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-outline-secondary,
.btn-link {
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-secondary:hover {
  text-decoration: none;
}

/* --- Primary --- */
.btn-primary {
  background-color: var(--sophos-blue);
  border-color: var(--sophos-blue);
  color: var(--sophos-base-white);
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active {
  background-color: var(--sophos-purple-dark);
  border-color: var(--sophos-purple-dark);
  color: var(--sophos-base-white);
}

.btn-primary::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: var(--sophos-blue);
  border-color: var(--sophos-blue);
  opacity: 0.5;
}

/* --- Outline Primary --- */
.btn-outline-primary {
  color: var(--sophos-blue);
  border: 2px solid var(--sophos-blue);
  background-color: transparent;
  font-weight: 600;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
  background-color: var(--sophos-blue);
  border-color: var(--sophos-blue);
  color: var(--sophos-base-white);
}

/* --- Secondary --- */
.btn-secondary {
  color: var(--sophos-blue);
  background: transparent;
  border: none;
  font-weight: 400;
  padding: 0.5rem 0;
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--sophos-purple-dark);
  background: transparent;
}

/* --- Outline Secondary --- */
.btn-outline-secondary {
  color: var(--sophos-dark-blue);
  border: 2px solid var(--sophos-base-mid-light);
  background: transparent;
  font-weight: 600;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: var(--sophos-dark-blue);
  border-color: var(--sophos-blue);
  background: transparent;
}

/* --- Outline White --- */
.btn-outline-white {
  color: var(--sophos-base-white);
  border: 2px solid var(--sophos-base-white);
  background: transparent;
  font-weight: 600;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  color: var(--sophos-dark-blue);
  border-color: var(--sophos-base-white);
  background: var(--sophos-base-white);
}

/* --- Outline Light --- */
.btn-outline-light {
  color: var(--sophos-base-mid-light);
  border: 2px solid var(--sophos-base-mid-light);
  background: transparent;
  font-weight: 600;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--sophos-dark-blue);
  border-color: var(--sophos-base-mid-light);
  background: var(--sophos-base-mid-light);
}

/* --- Outline Dark --- */
.btn-outline-dark {
  color: var(--sophos-dark-blue);
  border: 2px solid var(--sophos-dark-blue);
  background: transparent;
  font-weight: 600;
}

.btn-outline-dark::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn-outline-dark:hover::after {
  transform: translateX(3px);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: var(--sophos-base-white);
  border-color: var(--sophos-dark-blue);
  background: var(--sophos-dark-blue);
}

/* --- Link --- */
.btn-link {
  color: var(--sophos-blue);
  background: transparent;
  border: none;
  font-weight: 400;
  padding: 0.375rem 0.75rem;
}

.btn-link:hover,
.btn-link:focus {
  color: var(--sophos-purple-dark);
  text-decoration: none;
}

/* --- Warning (Pricing) --- */
.btn-warning {
  color: var(--sophos-base-white);
  background: var(--sophos-blue);
  border-color: var(--sophos-blue);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
  color: var(--sophos-base-white);
  background-color: var(--sophos-purple-dark);
  border-color: var(--sophos-purple-dark);
}

/* --- Large --- */
.btn-lg {
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.d-flex.align-items-start a.dropdown-toggle::after {
  display: none !important;
}

.header {
  padding-top: 10px;
}

/* --- Products Nav --- */
.products-nav {
  background: #f8f9fa;
  border-bottom: 2px solid var(--sophos-blue);
  padding: 15px 0;
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.products-nav .nav-list a {
  display: block;
  padding: 8px 20px;
  color: var(--sophos-blue);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.products-nav .nav-list a:hover {
  background: var(--sophos-blue);
  color: var(--sophos-base-white);
}

/* --- Product Nav Tabs (Pills) --- */
.product-nav-tabs .nav-pills .nav-link {
  color: var(--sophos-dark-blue);
  background-color: var(--sophos-white);
  border-radius: 20px;
  padding: 10px 20px;
  margin-right: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-nav-tabs .nav-pills .nav-link:hover {
  background-color: var(--sophos-base-mid-light);
}

.product-nav-tabs .nav-pills .nav-link.active {
  background-color: var(--sophos-blue);
  color: var(--sophos-base-white);
}

/* ============================================
   6. HERO SECTIONS
   ============================================ */

/* --- Shared Hero Base --- */
.product-hero,
.product-hero-variant-1,
.product-hero-variant-2,
.product-hero-variant-3 {
  padding: 80px 0;
  position: relative;
  background-color: var(--sophos-dark-blue);
  color: var(--sophos-base-white);
}

/* --- Variant Background Patterns --- */
.product-hero-variant-1 {
  background-image: linear-gradient(135deg, transparent 0%, transparent 45%, rgba(32, 6, 247, 0.05) 45%, rgba(32, 6, 247, 0.05) 55%, transparent 55%, transparent 100%);
  background-size: 200px 200px;
}

.product-hero-variant-2 {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(32, 6, 247, 0.15) 80px, rgba(32, 6, 247, 0.15) 100px), repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(32, 6, 247, 0.08) 80px, rgba(32, 6, 247, 0.08) 100px);
}

.product-hero-variant-3 {
  background-image: linear-gradient(45deg, transparent 48%, rgba(32, 6, 247, 0.12) 48%, rgba(32, 6, 247, 0.12) 52%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(32, 6, 247, 0.12) 48%, rgba(32, 6, 247, 0.12) 52%, transparent 52%);
  background-size: 120px 120px;
}

/* --- Hero Text & Element Overrides --- */
[class*="product-hero"] h1,
[class*="product-hero"] h2,
[class*="product-hero"] h3,
[class*="product-hero"] p {
  color: var(--sophos-base-white);
}

[class*="product-hero"] .vendorLogo-1 {
  filter: brightness(0) invert(1);
}

[class*="product-hero"] .btn-outline-primary {
  color: var(--sophos-base-white);
  border-color: var(--sophos-base-white);
}

[class*="product-hero"] .btn-outline-primary:hover {
  background-color: var(--sophos-base-white);
  color: var(--sophos-dark-blue);
  border-color: var(--sophos-base-white);
}

/* --- Hero Lite --- */
.product-hero-lite {
  text-align: center;
  padding: 60px 0 40px;
}

.product-hero-lite h2 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.product-hero-lite h3 {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--sophos-base-mid);
  margin-bottom: 40px;
}

/* --- Hero Enhancements (Email Monitoring) --- */
.hero-geo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, #0077c8 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-title-large {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-intro-large {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* --- 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;
}

/* ============================================
   7. PAGE SECTIONS & LAYOUT
   ============================================ */
.product-section-light,
.product-section-medium {
  padding: 80px 0;
  background-color: var(--sophos-white);
}

.product-section-white {
  padding: 80px 0;
  background-color: var(--sophos-base-white);
}

.product-section-dark {
  padding: 80px 0;
  background-color: var(--sophos-dark-blue);
  color: var(--sophos-base-white);
}

.product-section-dark h2,
.product-section-dark h3,
.product-section-dark h4,
.product-section-dark p {
  color: var(--sophos-base-white);
}

.product-section-dark a {
  color: var(--sophos-cyber-blue);
}

.product-section-dark a:hover {
  color: var(--sophos-base-white);
  text-decoration: underline;
}

/* --- Container --- */
.product-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-container h2+h3,
.product-container h2+p {
  margin-top: 24px;
}

.product-container .row {
  row-gap: 24px;
}

.container-fluid>.row:nth-of-type(1) {
  margin-bottom: 40px;
}

/* --- Section Headers --- */
.section-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--sophos-base-dark);
  line-height: 1.6;
  margin: 8px auto 32px;
  max-width: 75ch;
  text-align: center;
}

/* --- Overlapping Sections --- */
.section-overlap {
  position: relative;
  margin-bottom: -60px;
}

.section-overlap-top {
  padding-top: 80px !important;
}

.image-overlap {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(30px);
}

/* ============================================
   8. CARDS
   ============================================ */

/* --- Base Card --- */
.card {
  background: var(--sophos-base-white);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}

/* --- Product Card --- */
.product-card {
  background: var(--sophos-base-white);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

a .product-card:hover,
.product-card.clickable:hover {
  border-color: var(--sophos-blue);
}

.product-card>a {
  margin-top: auto;
  align-self: flex-start;
  text-align: left;
}

.product-card h3 {
  margin-bottom: 16px;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.product-card p {
  margin-bottom: 12px;
  color: var(--sophos-base-dark);
}

.product-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* --- Product Card: Capability Header --- */
.product-capability-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}

.product-capability-header span {
  margin-bottom: 12px;
}

.product-capability-header i {
  font-size: 2rem;
  color: var(--sophos-blue);
  flex-shrink: 0;
}

/* --- Center-Aligned Cards --- */
.card-section-center .product-card,
article.product-card.text-center {
  text-align: center;
  align-items: center;
}

.card-section-center .product-card h3,
article.product-card.text-center h3 {
  text-align: center;
  justify-content: center;
}

.card-section-center .product-card p,
article.product-card.text-center p {
  margin: 0 auto 12px;
}

.card-section-center .product-card>a,
article.product-card.text-center>a {
  align-self: center;
  text-align: center;
}

.card-section-center .product-capability-header,
article.product-card.text-center .product-capability-header {
  align-items: center;
  text-align: center;
}

/* --- Cards in Dark Sections --- */
.product-section-dark .product-card {
  background: var(--sophos-base-white);
  color: var(--sophos-base-dark);
}

.product-section-dark .product-card h3,
.product-section-dark .product-card h4 {
  color: var(--sophos-dark-blue);
}

.product-section-dark .product-card a {
  color: var(--sophos-blue);
  font-weight: 600;
}

.product-section-dark .product-card a:hover {
  color: var(--sophos-purple-dark);
  text-decoration: none;
}

/* --- Download Card --- */
.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--sophos-base-white);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.download-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
  border-color: var(--sophos-blue);
  text-decoration: none;
}

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sophos-white) 0%, var(--sophos-base-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.download-icon i {
  font-size: 2.5rem;
  color: var(--sophos-blue);
  transition: all 0.3s ease;
}

.download-card:hover .download-icon {
  background: linear-gradient(135deg, var(--sophos-blue) 0%, var(--sophos-purple-dark) 100%);
}

.download-card:hover .download-icon i {
  color: var(--sophos-base-white);
  transform: scale(1.1);
}

.download-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sophos-blue);
  transition: all 0.3s ease;
}

.download-card:hover .download-cta {
  color: var(--sophos-purple-dark);
}

.download-card:hover .download-cta i {
  transform: translateX(4px);
}

/* --- Comparison Card --- */
.comparison-card {
  background: var(--sophos-white);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.comparison-card img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  background: var(--sophos-base-white);
  padding: 15px;
  max-width: 100%;
}

.comparison-card .card-content {
  flex-grow: 1;
}

.comparison-card .btn {
  margin-top: auto;
}

/* --- Icon Badges --- */
.icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-badge i {
  color: var(--sophos-base-white);
  font-size: 36px;
}

.icon-purple {
  background: linear-gradient(135deg, #B529F7 0%, #8E1FD1 100%);
  box-shadow: 0 8px 24px rgba(181, 41, 247, 0.4);
}

.icon-blue {
  background: linear-gradient(135deg, var(--sophos-cyber-blue) 0%, #00BCDD 100%);
  box-shadow: 0 4px 16px rgba(0, 237, 255, 0.4);
}

.icon-green {
  background: linear-gradient(135deg, #00F2B3 0%, #00D9A0 100%);
  box-shadow: 0 4px 16px rgba(0, 242, 179, 0.3);
}

.icon-dark-blue {
  background: linear-gradient(135deg, var(--sophos-dark-blue) 0%, var(--sophos-purple-dark) 100%);
  box-shadow: 0 8px 24px rgba(0, 26, 71, 0.35);
}

/* --- Modern Card --- */
.card-modern {
  text-align: center;
  padding: 40px 30px;
  background: var(--sophos-base-white);
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-modern:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

/* ============================================
   9. FEATURES, LISTS & FORMS
   ============================================ */

/* --- Use Cases --- */
.use-case-item {
  text-align: center;
  padding: 24px;
  border-radius: 8px;
  height: 100%;
}

.use-case-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.use-case-item p {
  margin-bottom: 0;
  color: var(--sophos-base-mid);
}

.product-section-dark .use-case-item h3,
.product-section-dark .use-case-item p {
  color: var(--sophos-base-white);
}

/* --- Feature Items --- */
.product-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

/* --- Benefits & Resources Lists --- */
.product-benefits-list,
.product-resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-benefits-list li {
  padding: 20px 0;
  line-height: 1.6;
}

.product-benefits-list strong {
  font-weight: 600;
}

.product-benefits-list-white li,
.product-benefits-list-white strong {
  color: var(--sophos-base-white);
}

.product-resources-list a {
  color: var(--sophos-blue);
  font-weight: 400;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.product-resources-list a:hover {
  color: var(--sophos-purple-dark);
  text-decoration: underline;
}

.product-resources-list i {
  margin-right: 0.75rem;
  color: inherit;
  font-size: 1.25rem;
}

/* --- Font Awesome Icon Lists --- */
.product-fa-icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 30px;
}

.product-fa-icon-list li,
.product-fa-icon-list-white li {
  padding: 20px 0;
  line-height: 1.6;
}

.product-fa-icon-list strong {
  font-weight: 600;
}

.product-fa-icon-list-white li,
.product-fa-icon-list-white strong {
  color: var(--sophos-base-white);
}

/* --- HubSpot Forms --- */
.hubspot-form-card {
  background: linear-gradient(135deg, var(--sophos-base-white) 0%, #F8FBFF 100%);
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 48px rgba(32, 6, 247, 0.12);
}

.hs-form-field {
  margin-bottom: 16px;
}

.hs-form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sophos-dark-blue);
}

.hs-form input,
.hs-form textarea,
.hs-form select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--sophos-base-dark);
  background: var(--sophos-base-white);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.hs-form input:focus,
.hs-form textarea:focus,
.hs-form select:focus {
  outline: none;
  border-color: var(--sophos-blue);
}

.hs-form .hs-button {
  background: var(--sophos-blue);
  border: 1px solid var(--sophos-blue);
  color: var(--sophos-base-white);
  font-weight: 600;
  border-radius: 6px;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hs-form .hs-button:hover {
  background: var(--sophos-purple-dark);
  border-color: var(--sophos-purple-dark);
}

.hs-form .hs-error-msg {
  color: var(--sophos-alert-red);
  font-size: 0.875rem;
}

/* ============================================
   10. TABLES
   ============================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.table {
  width: 100%;
  margin-bottom: 0;
  background: var(--sophos-base-white);
  border-collapse: collapse;
  font-size: 1rem;
  color: var(--sophos-base-dark);
}

.table th,
.table td {
  padding: 16px;
  vertical-align: middle;
  border: 1px solid var(--card-border);
  line-height: 1.5;
}

.table thead th,
.table tbody tr th {
  background: var(--sophos-dark-blue);
  color: var(--sophos-base-white);
  font-weight: 600;
  text-align: left;
  border-color: var(--sophos-purple-dark);
}

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

.table .fa-check {
  color: var(--sophos-alert-green);
  font-size: 1.25rem;
}

.table-hover tbody tr:hover td {
  background-color: var(--sophos-white);
}

.table-striped tbody tr:nth-of-type(odd) td {
  background-color: rgba(235, 246, 255, 0.3);
}

.table-sm th,
.table-sm td {
  padding: 12px;
  font-size: 0.875rem;
}

/* ============================================
   11. TABS & PRICING
   ============================================ */

/* --- Tabs --- */
.tabs a {
  color: #666 !important;
}

.tabs a.active,
.tabs a.active:hover {
  color: var(--sophos-base-white) !important;
  background: no-repeat 92% center var(--sophos-blue);
}

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

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

.pricing>.card-header {
  color: var(--sophos-base-white);
  background-color: var(--sophos-dark-blue);
  border-color: var(--sophos-dark-blue);
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   12. PAGE-SPECIFIC: CAPABILITIES & GLASSMORPHISM
   ============================================ */

/* --- Capabilities Section --- */
.capabilities-dark {
  background: var(--sophos-dark-blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.capability-list {
  position: relative;
}

.capability-line {
  position: absolute;
  left: 35px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 119, 200, 0.4) 0%, rgba(0, 119, 200, 0.1) 100%);
}

.capability-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 90px;
}

.capability-item:last-child {
  margin-bottom: 0;
}

.capability-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 72px;
  z-index: 1;
}

.capability-title {
  font-size: 1.35rem;
  color: var(--sophos-base-white);
  font-weight: 600;
  margin-bottom: 8px;
}

.capability-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* --- Glassmorphism --- */
.glass-container {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glass-image {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 119, 200, 0.4);
}

.glass-image img {
  width: 100%;
  height: auto;
  display: block;
}

.glass-label {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================
   13. RELATED PRODUCT CARDS
   ============================================ */
.related-card-header {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.related-card-header i {
  font-size: 3.5rem;
  color: var(--sophos-cyber-blue);
}

.related-card-header span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

.related-card-header-workspace {
  background: linear-gradient(135deg, var(--sophos-dark-blue) 0%, var(--sophos-purple-dark) 100%);
}

.related-card-header-browser {
  background: linear-gradient(135deg, var(--sophos-dark-blue) 0%, #003355 100%);
}

.related-card-header-dns {
  background: linear-gradient(135deg, var(--sophos-purple-dark) 0%, var(--sophos-dark-blue) 100%);
}

.related-card-header-ztna {
  background: linear-gradient(135deg, #002244 0%, var(--sophos-dark-blue) 100%);
}

.related-card-header-email {
  background: linear-gradient(135deg, #1a3a5c 0%, var(--sophos-purple-dark) 100%);
}

.related-card-header-mdr {
  background: linear-gradient(135deg, var(--sophos-dark-blue) 0%, #1a2a4a 100%);
}

.related-card-header-endpoint {
  background: linear-gradient(135deg, #003355 0%, var(--sophos-dark-blue) 100%);
}

.related-card-header-firewall {
  background: linear-gradient(135deg, var(--sophos-purple-dark) 0%, #002244 100%);
}

/* ============================================
   14. FOOTER
   ============================================ */
.site-footer {
  background-color: var(--sophos-dark-blue);
  color: var(--sophos-base-white);
  max-width: 1320px;
  margin: 0 auto;
}

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

/* --- Footer CTA --- */
.footer-cta {
  background: linear-gradient(135deg, var(--sophos-blue) 0%, var(--sophos-purple-dark) 100%);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--sophos-base-white);
}

.footer-cta-text {
  color: var(--sophos-base-white);
}

/* --- Footer Phone --- */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--sophos-dark-blue);
  background: var(--sophos-cyber-blue);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 237, 255, 0.6), 0 0 60px rgba(0, 237, 255, 0.2);
  animation: phone-glow 2.5s ease-in-out infinite alternate;
  font-size: 1.5rem;
  padding: 12px 24px;
}

@keyframes phone-glow {
  from {
    box-shadow: 0 0 30px rgba(0, 237, 255, 0.6), 0 0 60px rgba(0, 237, 255, 0.2);
  }

  to {
    box-shadow: 0 0 40px rgba(0, 237, 255, 0.8), 0 0 80px rgba(0, 237, 255, 0.3);
  }
}

.footer-phone:hover {
  background: var(--sophos-cyber-blue);
  color: var(--sophos-dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 237, 255, 0.85), 0 0 100px rgba(0, 237, 255, 0.4);
  text-decoration: none;
  animation: none;
}

/* --- Footer Main --- */
.footer-main {
  padding: 64px 0 48px;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--sophos-base-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--sophos-base-white);
  opacity: 0.8;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--sophos-cyber-blue);
  padding-left: 4px;
}

/* --- Footer Contact --- */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0.9;
}

.footer-contact-item i {
  color: var(--sophos-cyber-blue);
}

.footer-contact-item a {
  color: var(--sophos-base-white);
  opacity: 0.8;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* --- Footer Social --- */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sophos-base-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--sophos-cyber-blue);
  color: var(--sophos-dark-blue);
  transform: translateY(-2px);
}

/* --- Footer Copyright --- */
.footer-copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  opacity: 0.8;
  font-size: 0.875rem;
  margin: 0;
  color: var(--sophos-base-white);
}

.footer-copyright a {
  color: var(--sophos-base-white);
  text-decoration: underline;
}

.footer-copyright a:hover {
  color: var(--sophos-cyber-blue);
}

/* ============================================
   15. UTILITY CLASSES
   ============================================ */

/* --- Vendor Logos --- */
.vendorLogo-1 {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 185px;
  z-index: 10;
}

/* ============================================
   16. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Sections */
  .product-hero,
  .product-section-light,
  .product-section-white,
  .product-section-medium,
  .product-section-dark {
    padding: 64px 0;
  }

  .product-container,
  .footer-container {
    padding: 0 24px;
  }

  /* Footer */
  .site-footer {
    margin-top: 64px;
  }

  .footer-cta {
    padding: 32px 0;
    text-align: center;
  }

  .footer-phone {
    margin-top: 16px;
  }

  .footer-social {
    justify-content: flex-end;
  }

  /* Hero & Cards */
  .hero-title-large {
    font-size: 2.5rem;
  }

  .card-modern {
    padding: 30px 20px;
  }

  /* Capabilities */
  .capability-item {
    padding-left: 80px;
  }

  .capability-icon {
    width: 60px;
    height: 60px;
  }

  .capability-line {
    left: 29px;
  }
}

@media (max-width: 767px) {

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  /* Sections */
  .product-hero,
  .product-section-light,
  .product-section-white,
  .product-section-medium,
  .product-section-dark {
    padding: 48px 0;
  }

  .product-container,
  .footer-container {
    padding: 0 20px;
  }

  /* Tables */
  .table th,
  .table td {
    padding: 12px 8px;
    font-size: 0.875rem;
  }


}