/* ========================= PENTRA BRAND TOKENS ========================= */
:root {
  /* Brand Red */
  --primary-color:   #C00000;
  --primary-dark:    #A80000;
  --primary-light:   #E53935;

  /* Brand Navy */
  --secondary-color: #003A5D;
  --secondary-light: #1E5C84;

  /* Backgrounds */
  --background:      #0F1620;
  --dark-background: #0F1620;
  --dark-surface:    #1C212C;
  --surface-light:   #2E3441;
  --surface-dark:    #080C13;

  /* Text */
  --light-text:      #FFFFFF;
  --dark-text:       #D8DCE6;
  --muted-text:      #8A92A3;

  /* Cards & Borders */
  --card-bg:         #1C212C;
  --card-border:     rgba(255, 255, 255, 0.08);

  /* Header & Footer */
  --header-bg:       rgba(15, 22, 32, 0.92);
  --footer-bg:       #080C13;

  /* Navigation */
  --nav-text:        #D8DCE6;
  --nav-text-hover:  #C00000;

  /* Misc */
  --text-inverse:    #FFFFFF;
  --accent-color:    #1E5C84;
  --success-color:   #2A9D8F;
  --warning-color:   #F5B849;
  --error-color:     #C00000;

  /* Typography */
  --f-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
}
/* ========================= END PENTRA BRAND TOKENS ========================= */

/* ================= BASE STYLES ================= */
body {
  font-family: var(--f-body);
  background-color: var(--background);
  color: var(--light-text);
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--f-display);
  letter-spacing: -0.02em;
}

body.menu-open {
  overflow: hidden;
}

body.loaded * {
  animation-duration: 0.5s !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
td,
th,
a:not(.btn-primary):not(.btn-secondary):not(.btn-quote) {
  color: var(--light-text);
}
/* ================= END BASE STYLES ================= */

/* ================= ENHANCED HEADER STYLES ================= */
/* Scroll-aware header */
header {
  background-color: var(--header-bg) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  padding: 0;
  backdrop-filter: blur(20px);
  background-color: color-mix(
    in srgb,
    var(--header-bg) 95%,
    transparent
  ) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled nav {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Active navigation state */
.nav-link.active {
  color: var(--nav-text-hover) !important;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--nav-text-hover);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.2);
  }
}

/* Enhanced dropdown animations */
.dropdown-menu {
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Improved mobile menu transitions */
#mobile-menu {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
}

#mobile-menu:not(.hidden) {
  max-height: 100vh;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: mobileMenuSlide 0.3s ease-out;
}

@keyframes mobileMenuSlide {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced button states */
.btn-quote,
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-quote::after,
.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn-quote:active::after,
.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

/* Loading state for theme toggle */
#theme-toggle.loading,
#theme-toggle-mobile.loading {
  pointer-events: none;
  opacity: 0.7;
}

#theme-toggle.loading i,
#theme-toggle-mobile.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced focus states for accessibility */
.nav-link:focus-visible,
.btn-quote:focus-visible,
.btn-primary:focus-visible,
#theme-toggle:focus-visible,
#theme-toggle-mobile:focus-visible,
#mobile-menu-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Improved mobile menu backdrop */
#mobile-menu {
  background: color-mix(in srgb, var(--header-bg) 98%, transparent) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

/* Smooth logo transition */
header img {
  transition: transform 0.3s ease;
}

header:hover img {
  transform: scale(1.05);
}

/* Enhanced dropdown hover effects */
.dropdown-menu a {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}
/* ================= END ENHANCED HEADER STYLES ================= */

/* ================= UNIFIED CARD STYLING SYSTEM ================= */
.service-card,
.area-card,
.methodology-step,
.layer,
.scope-item,
.process-step,
.team-stat,
.value,
.cia-item,
.feature-card,
.pricing-card,
.testimonial-card,
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before,
.area-card::before,
.methodology-step::before,
.layer::before,
.scope-item::before,
.process-step::before,
.team-stat::before,
.value::before,
.cia-item::before,
.feature-card::before,
.pricing-card::before,
.testimonial-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.service-card:hover::before,
.area-card:hover::before,
.methodology-step:hover::before,
.layer:hover::before,
.scope-item:hover::before,
.process-step:hover::before,
.team-stat:hover::before,
.value:hover::before,
.cia-item:hover::before,
.feature-card:hover::before,
.pricing-card:hover::before,
.testimonial-card:hover::before,
.stat-card:hover::before {
  transform: scaleX(1);
}

.service-icon,
.area-icon,
.step-icon,
.value-icon,
.cia-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--primary-color) 30%, transparent);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon,
.area-card:hover .area-icon,
.methodology-step:hover .step-icon,
.value:hover .value-icon,
.cia-item:hover .cia-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.service-icon i,
.area-icon i,
.step-icon i,
.value-icon i,
.cia-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3,
.area-card h3,
.methodology-step h3,
.layer h3,
.scope-item h3,
.process-step h3,
.team-stat h3,
.value h3,
.cia-item h4,
.feature-card h3,
.pricing-card h3,
.testimonial-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--light-text);
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-card p,
.area-card p,
.methodology-step p,
.layer p,
.scope-item p,
.process-step p,
.team-stat p,
.value p,
.cia-item p,
.feature-card p,
.pricing-card p,
.testimonial-card p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:nth-child(1),
.area-card:nth-child(1),
.methodology-step:nth-child(1),
.process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2),
.area-card:nth-child(2),
.methodology-step:nth-child(2),
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3),
.area-card:nth-child(3),
.methodology-step:nth-child(3),
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4),
.area-card:nth-child(4),
.methodology-step:nth-child(4),
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}
/* ================= END UNIFIED CARD STYLING SYSTEM ================= */

/* ================= PENTRA HEADER BRAND ELEMENTS ================= */
.pentra-wordmark {
  display: block;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.1;
}

.pentra-byline {
  display: block;
  font-size: 0.65rem;
  color: var(--muted-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.btn-demo {
  background-color: var(--primary-color);
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  display: inline-block;
  text-decoration: none;
  font-family: var(--f-body);
}

.btn-demo:hover {
  background-color: var(--primary-dark);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}
/* ================= END PENTRA HEADER BRAND ELEMENTS ================= */

/* ================= TEXT & BUTTON STYLES ================= */
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-quote,
.btn-primary {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border: 2px solid;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 600;
  cursor: pointer;
}

.btn-quote::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-quote:hover::before,
.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-quote {
  border-color: var(--nav-text);
  color: var(--nav-text);
}

.btn-quote:hover {
  color: var(--nav-text);
}

.btn-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  color: var(--dark-background);
}

.btn-secondary {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}
/* ================= END TEXT & BUTTON STYLES ================= */

/* ================= NAVIGATION STYLES ================= */
.nav-link {
  color: var(--nav-text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  transform: translateY(-2px);
}

header nav ul li > a.nav-link:not(.dropdown-menu a),
header .nav-links > li > a.nav-link,
nav > div > ul > li > a.nav-link {
  color: var(--nav-text) !important;
}

header nav ul li > a.nav-link:hover:not(.dropdown-menu a),
header .nav-links > li > a.nav-link:hover,
nav > div > ul > li > a.nav-link:hover {
  color: var(--nav-text-hover) !important;
  transform: translateY(-2px);
}

header a[href="#about"].nav-link,
header a[href="#contact"].nav-link,
header a[href="#services"].nav-link,
header .text-gray-300.nav-link,
nav .text-gray-300.nav-link {
  color: var(--nav-text) !important;
}

header a[href="#about"].nav-link:hover,
header a[href="#contact"].nav-link:hover,
header a[href="#services"].nav-link:hover {
  color: var(--nav-text-hover) !important;
}

header a.btn-primary.nav-link {
  color: var(--primary-color) !important;
}
header a.btn-primary.nav-link:hover {
  color: var(--light-text) !important;
}
/* ================= END NAVIGATION STYLES ================= */

/* ================= DROPDOWN MENU IMPROVEMENTS ================= */
.dropdown-parent {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-surface) !important;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  min-width: 200px;
  max-width: 300px;
}

.dropdown-menu .dropdown-menu {
  top: -10px;
  left: 100%;
  margin-left: 2px;
}

.dropdown-menu .dropdown-parent:last-child .dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 2px;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 2px;
  white-space: wrap;
}

.dropdown-menu a:hover {
  background: rgba(192, 0, 0, 0.12);
  color: var(--primary-color) !important;
  padding-left: 18px;
}

.dropdown-parent > a svg {
  transition: transform 0.3s ease;
}
.dropdown-parent:hover > a svg {
  transform: rotate(180deg);
}
.mobile-arrow-rotated {
  transform: rotate(180deg) !important;
}
/* ================= END DROPDOWN MENU IMPROVEMENTS ================= */

/* ================= CARD & COMPONENT STYLES ================= */
.card {
  background-color: var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  color: var(--light-text);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--primary-color) 20%, transparent);
}


.glowing-border {
  border: 1px solid transparent;
  background: linear-gradient(var(--dark-surface), var(--dark-surface))
      padding-box,
    linear-gradient(45deg, var(--primary-color), var(--secondary-color))
      border-box;
  border-radius: 12px;
}
/* ================= END CARD & COMPONENT STYLES ================= */

/* ================= FOOTER STYLES ================= */
footer {
  background-color: var(--footer-bg) !important;
  color: var(--light-text);
}

footer a {
  color: var(--muted-text);
}
footer a:hover {
  color: var(--nav-text-hover);
}
/* ================= END FOOTER STYLES ================= */

/* ================= MOBILE MENU STYLES ================= */
@media (max-width: 767px) {
  /* Mobile menu text color */
  #mobile-menu .nav-link,
  #mobile-menu .mobile-link,
  #mobile-menu .dropdown-menu a,
  #mobile-menu .btn-quote {
    color: white !important;
  }

  /* Mobile dropdown menu styling */
  #mobile-menu .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 0;
    margin-top: 8px;
    border-radius: 8px;
    margin-left: 10px;
    margin-right: 10px;
  }

  #mobile-menu {
    overflow-x: visible !important;
  }

  /* Fixed: Center dropdown links properly */
  #mobile-menu .dropdown-menu a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 16px !important;
    color: var(--nav-text) !important;
    background: transparent !important;
    width: 100%;
  }

  /* Fixed: Center dropdown toggle buttons properly */
  #mobile-menu .dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    padding: 12px 16px !important;
    color: var(--nav-text) !important;
    background: transparent !important;
  }

  /* Fixed: Arrow spacing and visibility */
  #mobile-menu .dropdown-toggle svg {
    flex-shrink: 0;
    margin-left: 8px;
    width: 1rem;
    height: 1rem;
    color: var(--nav-text) !important;
    stroke: var(--nav-text) !important;
  }

  /* Hide theme toggle on mobile - only show one */
  #theme-toggle {
    display: none;
  }

  /* Show only mobile theme toggle */
  #theme-toggle-mobile {
    display: flex;
  }

  /* Mobile theme toggle icon color - KEEP ORIGINAL COLORS */
  #theme-toggle-mobile .fa-sun,
  #theme-toggle-mobile .fa-moon {
    color: #fbbf24 !important;
  }

  #theme-toggle-mobile:hover .fa-sun,
  #theme-toggle-mobile:hover .fa-moon {
    color: #f59e0b !important;
  }

  /* Mobile menu button (hamburger) color - MAKE IT WHITE */
  #mobile-menu-btn svg {
    color: white !important;
    stroke: white !important;
  }

  #mobile-menu-btn:hover svg {
    color: #f0f0f0 !important;
    stroke: #f0f0f0 !important;
  }

  /* Fix arrow visibility in mobile dropdown buttons */
  #mobile-security-services-btn svg,
  #mobile-platform-btn svg {
    color: white !important;
    stroke: white !important;
    margin-left: 8px;
  }

  /* Mobile menu background */
  #mobile-menu {
    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Hover effects for better UX */
  #mobile-menu .dropdown-menu a:hover,
  #mobile-menu .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--nav-text-hover) !important;
  }

  #mobile-menu .dropdown-toggle:hover svg {
    color: var(--nav-text-hover) !important;
    stroke: var(--nav-text-hover) !important;
  }
}

/* Desktop: hide mobile theme toggle */
@media (min-width: 768px) {
  #theme-toggle-mobile {
    display: none;
  }

  #theme-toggle {
    display: flex;
  }

  #theme-toggle .fa-sun,
  #theme-toggle .fa-moon {
    color: #fbbf24 !important;
  }

  #theme-toggle:hover .fa-sun,
  #theme-toggle:hover .fa-moon {
    color: #f59e0b !important;
  }

  #mobile-menu-btn svg {
    color: var(--nav-text) !important;
    stroke: var(--nav-text) !important;
  }
}
/* ================= END MOBILE MENU STYLES ================= */

/* ================= UTILITY CLASSES ================= */
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-muted {
  color: var(--muted-text) !important;
}
.text-light {
  color: var(--light-text) !important;
}
.text-dark {
  color: var(--dark-text) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-surface {
  background-color: var(--dark-surface) !important;
}
.bg-background {
  background-color: var(--background) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}
.border-secondary {
  border-color: var(--secondary-color) !important;
}
.border-muted {
  border-color: var(--card-border) !important;
}
/* ================= END UTILITY CLASSES ================= */

/* ================= ANIMATION CLASSES ================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ================= END ANIMATION CLASSES ================= */

/* ================= PERFORMANCE OPTIMIZATIONS ================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .nav-link,
  .dropdown-menu,
  #mobile-menu,
  .btn-quote,
  .btn-primary {
    transition-duration: 0.1ms !important;
    animation-duration: 0.1ms !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .dropdown-parent:hover .dropdown-menu {
    display: none !important;
  }

  .nav-link:hover {
    transform: none !important;
  }
}

/* Focus styles for better accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --card-border: #ffffff;
    --muted-text: #ffffff;
  }
}
/* ================= END ACCESSIBILITY ================= */

/* ================= HERO SECTION STYLES ================= */
#hero {
  background: linear-gradient(
    to bottom,
    var(--background),
    var(--dark-surface)
  ) !important;
  position: relative;
  overflow: hidden;
}

#hero.bg-gradient-to-b.from-gray-900.to-gray-800 {
  background: linear-gradient(
    to bottom,
    var(--dark-background),
    var(--dark-surface)
  ) !important;
}
/* ================= END HERO SECTION STYLES ================= */

/* ================= ADVERSARIES SECTION STYLES ================= */
.adversary-card {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 90%, var(--dark-background))
  );
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  color: var(--light-text);
}

.adversary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary-color) 10%, transparent),
    transparent
  );
  transition: left 0.7s;
}

.adversary-card:hover::before {
  left: 100%;
}

.adversary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--primary-color) 15%, transparent);
  border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.adversary-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: all 0.4s ease;
  color: white;
}

.adversary-card:hover .adversary-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px color-mix(in srgb, var(--primary-color) 50%, transparent);
}
/* ================= END ADVERSARIES SECTION STYLES ================= */

/* ================= GLOBAL AVAILABILITY SECTION STYLES ================= */
.diff-section-back {
  background: linear-gradient(135deg, var(--background), var(--surface-dark));
}
/* ================= END GLOBAL AVAILABILITY SECTION STYLES ================= */

/* ================= CYBERCRIME STATISTICS SECTION STYLES ================= */
#stats.stats-section {
  position: relative;
  overflow: hidden;
}

#stats.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      color-mix(in srgb, var(--secondary-color) 2%, transparent) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      color-mix(in srgb, var(--accent-color) 2%, transparent) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.stats-subtitle {
  font-size: 1.25rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Threat Statistics Styles */
.threat-statistics {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 98%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.stat-item.secondary {
  border-left-color: var(--secondary-color);
}
.stat-item.accent {
  border-left-color: var(--accent-color);
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary-color) 25%, transparent);
  box-shadow: 0 12px 25px
    color-mix(in srgb, var(--secondary-color) 8%, transparent);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-text);
}

.trend-up {
  color: var(--warning-color);
}

/* Attack Vectors Breakdown */
.stat-breakdown {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 98%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--secondary-color);
}

.breakdown-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.breakdown-header i {
  font-size: 1.5rem;
}

.breakdown-header h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
}

.attack-vectors {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vector {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--secondary-color) 4%, transparent);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--secondary-color) 8%, transparent);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.vector:hover {
  background: color-mix(in srgb, var(--secondary-color) 6%, transparent);
  transform: translateX(5px);
}

.vector-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.vector:hover .vector-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.vector-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vector-name {
  font-weight: 500;
  color: var(--light-text);
  min-width: 160px;
  font-size: 0.9375rem;
}

.vector-bar {
  flex: 1;
  height: 6px;
  background: color-mix(in srgb, var(--secondary-color) 50%, transparent);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.vector-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-in-out;
}

.vector-percentage {
  font-weight: 600;
  color: var(--secondary-color);
  min-width: 35px;
  text-align: right;
  font-size: 0.875rem;
}

/* Solution Card Styles */
.solution-card {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 98%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--secondary-color) 5%, transparent);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 4px solid var(--primary-color);
}

.solution-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.solution-title h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.solution-title p {
  color: var(--muted-text);
  margin: 0;
  font-size: 1rem;
}

.solution-description {
  color: var(--muted-text);
  line-height: 1.7;
  font-size: 1.0625rem;
  margin: 0;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--secondary-color) 4%, transparent);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--secondary-color) 8%, transparent);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature:hover {
  background: color-mix(in srgb, var(--secondary-color) 6%, transparent);
  transform: translateX(5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.feature-text strong {
  color: var(--light-text);
  font-weight: 600;
  font-size: 0.9375rem;
}

.feature-text span {
  color: var(--muted-text);
  font-size: 0.8125rem;
}

.solution-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.metric {
  text-align: center;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--secondary-color) 3%, transparent);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--secondary-color) 6%, transparent);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.metric:hover {
  background: color-mix(in srgb, var(--secondary-color) 5%, transparent);
  transform: translateY(-3px);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--muted-text);
  font-size: 0.875rem;
  font-weight: 500;
}
/* ================= END CYBERCRIME STATISTICS SECTION STYLES ================= */

/* ================= PT++ SECTION STYLES ================= */
.pt-plus-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.pt-plus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.pt-plus-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pt-plus-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pt-plus-subtitle {
  font-size: 1.25rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pt-plus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Features Grid */
.pt-plus-features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pt-plus-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 98%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pt-plus-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pt-plus-feature-card:hover::before {
  transform: scaleX(1);
}

.pt-plus-feature-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.pt-plus-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pt-plus-feature-card:hover .pt-plus-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.pt-plus-feature-content {
  flex: 1;
}

.pt-plus-feature-title {
  color: var(--light-text);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pt-plus-feature-description {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pt-plus-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pt-plus-tag {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
  padding: 0.4rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  transition: all 0.3s ease;
}

.pt-plus-feature-card:hover .pt-plus-tag {
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  transform: translateY(-1px);
}

/* Metrics Dashboard */
.pt-plus-metrics-dashboard {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 95%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pt-plus-metrics-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.pt-plus-dashboard-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pt-plus-dashboard-title {
  color: var(--light-text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pt-plus-dashboard-subtitle {
  color: var(--muted-text);
  font-size: 1rem;
}

.pt-plus-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pt-plus-metric-card {
  background: color-mix(in srgb, var(--secondary-color) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondary-color) 8%, transparent);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.pt-plus-metric-card:hover {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--secondary-color) 15%, transparent);
}

.pt-plus-metric-card.primary {
  border-left: 4px solid var(--primary-color);
}

.pt-plus-metric-card.secondary {
  border-left: 4px solid var(--secondary-color);
}

.pt-plus-metric-card.accent {
  border-left: 4px solid var(--accent-color);
}

.pt-plus-metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pt-plus-metric-label {
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.pt-plus-metric-progress {
  height: 6px;
  background: color-mix(in srgb, var(--card-border) 50%, transparent);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.pt-plus-progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 3px;
  transition: width 1.5s ease-in-out;
}

.pt-plus-metric-trend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-text);
}

.trend-up {
  color: var(--success-color);
}

.trend-success {
  color: var(--success-color);
}

/* CTA Section */
.pt-plus-cta {
  background: color-mix(in srgb, var(--secondary-color) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondary-color) 10%, transparent);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.pt-plus-cta-title {
  color: var(--light-text);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pt-plus-cta-description {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.pt-plus-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.pt-plus-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--secondary-color) 25%, transparent);
}
/* ================= END PT++ SECTION STYLES ================= */

/* ================= WHY US SECTION STYLES ================= */
#why-us {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background), var(--dark-surface));
  padding: 6rem 0;
  color: var(--light-text);
}

[data-theme="light"] #why-us {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: var(--light-text);
}

/* Floating shapes */
#why-us .floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: color-mix(in srgb, var(--primary-color) 8%, transparent);
}

[data-theme="light"] #why-us .floating-shape {
  background: color-mix(in srgb, var(--primary-color) 4%, transparent);
}

/* Specific floating shapes */
#why-us .floating-shape.w-64 {
  width: 16rem;
  height: 16rem;
  top: -8rem;
  left: -8rem;
  opacity: 0.3;
}
#why-us .floating-shape.w-96 {
  width: 24rem;
  height: 24rem;
  bottom: -12rem;
  right: -12rem;
  opacity: 0.2;
  animation-delay: 2s;
}
#why-us .floating-shape.w-80 {
  width: 20rem;
  height: 20rem;
  top: 50%;
  left: 25%;
  opacity: 0.15;
  animation-delay: 4s;
}

/* Container content */
#why-us .container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section header */
#why-us .text-center {
  text-align: center;
  margin-bottom: 4rem;
}

#why-us .text-center h2 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

#why-us .text-center p {
  font-size: 1.25rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features grid */
#why-us .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  #why-us .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #why-us .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature card */
#why-us .feature-card {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 95%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

#why-us .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary-color) 8%, transparent),
    transparent
  );
  transition: left 0.6s ease;
}

#why-us .feature-card:hover::before {
  left: 100%;
}

#why-us .feature-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
  box-shadow: 0 20px 40px
      color-mix(in srgb, var(--primary-color) 15%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

/* Feature icon */
#why-us .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 2rem;
  transition: all 0.3s ease;
}

#why-us .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

/* Feature title */
#why-us .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Feature description */
#why-us .feature-card p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Bottom info text */
#why-us .feature-card .text-sm {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  transition: all 0.3s ease;
}

#why-us .feature-card:hover .text-sm {
  background: color-mix(in srgb, var(--primary-color) 20%, transparent);
  transform: translateY(-2px);
}

/* Bottom icons */
#why-us .feature-card .text-sm i {
  font-size: 1rem;
  color: var(--primary-color);
}

/* Responsive header text */
@media (max-width: 768px) {
  #why-us .text-center h2 {
    font-size: 2.5rem;
  }

  #why-us .text-center p {
    font-size: 1.125rem;
  }

  #why-us .feature-card {
    padding: 1.5rem;
  }

  #why-us .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  #why-us .feature-card h3 {
    font-size: 1.375rem;
  }
}

/* Animation for reveal */
#why-us.reveal.visible .feature-card {
  animation: fadeInUp 0.6s ease-out;
}

#why-us.reveal.visible .feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
#why-us.reveal.visible .feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
#why-us.reveal.visible .feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
#why-us.reveal.visible .feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
#why-us.reveal.visible .feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
#why-us.reveal.visible .feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= END WHY US SECTION STYLES ================= */

/* ================= SERVICES SECTION STYLES ================= */
#services.services-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

#services.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 1.25rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 95%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary-color) 8%, transparent),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
  box-shadow: 0 20px 40px
      color-mix(in srgb, var(--primary-color) 15%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-features span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-text);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.service-features span:hover {
  transform: translateX(5px);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-top: auto;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--secondary-color) 25%, transparent);
}

/* Service categories */
.service-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-category {
  background: color-mix(in srgb, var(--primary-color) 8%, transparent);
  color: var(--primary-color);
  border: 1px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-category:hover,
.service-category.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--primary-color) 25%, transparent);
}

/* Service metrics */
.service-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-metric {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 98%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.service-metric:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--muted-text);
  font-weight: 500;
  font-size: 1rem;
}
/* ================= END SERVICES SECTION STYLES ================= */

/* ================= INDUSTRIES SECTION STYLES ================= */
#industries.industries-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--background), var(--surface-dark));
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.industries-header {
  text-align: center;
  margin-bottom: 4rem;
}

.industries-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.industries-subtitle {
  font-size: 1.25rem;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: linear-gradient(
    145deg,
    var(--card-bg),
    color-mix(in srgb, var(--card-bg) 95%, var(--background))
  );
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary-color) 8%, transparent),
    transparent
  );
  transition: left 0.6s ease;
}

.industry-card:hover::before {
  left: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
  box-shadow: 0 20px 40px
      color-mix(in srgb, var(--primary-color) 15%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-inverse);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.industry-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.industry-card p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.industry-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.industry-compliance span {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
  padding: 0.4rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-compliance span {
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  transform: translateY(-1px);
}
/* ================= END INDUSTRIES SECTION STYLES ================= */

/* ================= RESPONSIVE STYLES ================= */

/* ================= HERO SECTION SCREENS ================= */
@media (max-width: 768px) {
  #hero {
    padding: 4rem 0;
  }
}
/* ================= END HERO SECTION SCREENS ================= */

/* ================= ADVERSARIES SECTION SCREENS ================= */
@media (max-width: 768px) {
  .adversary-card {
    padding: 1.5rem;
  }

  .adversary-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
}
/* ================= END ADVERSARIES SECTION SCREENS ================= */

/* ================= CYBERCRIME STATISTICS SECTION SCREENS ================= */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-title {
    font-size: 2.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .stats-container {
    padding: 0 1rem;
  }

  .stats-title {
    font-size: 2rem;
  }

  .stats-subtitle {
    font-size: 1.125rem;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .solution-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .solution-metrics {
    grid-template-columns: 1fr;
  }

  .vector-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .vector-name {
    min-width: auto;
  }

  .vector-bar {
    width: 100%;
  }
}
/* ================= END CYBERCRIME STATISTICS SECTION SCREENS ================= */

/* ================= PT++ SECTION SCREENS ================= */
@media (max-width: 1024px) {
  .pt-plus-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pt-plus-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .pt-plus-container {
    padding: 0 1rem;
  }

  .pt-plus-title {
    font-size: 2rem;
  }

  .pt-plus-subtitle {
    font-size: 1.125rem;
  }

  .pt-plus-feature-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .pt-plus-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .pt-plus-metrics-dashboard {
    padding: 1.5rem;
  }

  .pt-plus-metric-card {
    padding: 1rem;
  }

  .pt-plus-metric-value {
    font-size: 2rem;
  }
}
/* ================= END PT++ SECTION SCREENS ================= */

/* ================= WHY US SECTION SCREENS ================= */
@media (max-width: 768px) {
  #why-us {
    padding: 4rem 0;
  }

  #why-us .text-center h2 {
    font-size: 2rem;
  }

  #why-us .text-center p {
    font-size: 1.125rem;
  }

  #why-us .feature-card {
    padding: 1.5rem;
  }

  #why-us .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  #why-us .feature-card h3 {
    font-size: 1.25rem;
  }
}
/* ================= END WHY US SECTION SCREENS ================= */

/* ================= SERVICES SECTION SCREENS ================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .services-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 0 1rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1.125rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .service-categories {
    gap: 0.5rem;
  }

  .service-category {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
/* ================= END SERVICES SECTION SCREENS ================= */

/* ================= INDUSTRIES SECTION SCREENS ================= */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .industries-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .industries-container {
    padding: 0 1rem;
  }

  .industries-title {
    font-size: 2rem;
  }

  .industries-subtitle {
    font-size: 1.125rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .industry-card h3 {
    font-size: 1.25rem;
  }
}
/* ================= END INDUSTRIES SECTION SCREENS ================= */

/* ===================================================================
   PENTRA COMPONENT LIBRARY
   Shared components used across all pages
   =================================================================== */

/* --- Section Badge --- */
.pentra-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 0, 0, 0.10);
  color: var(--primary-color);
  border: 1px solid rgba(192, 0, 0, 0.22);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.pentra-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  flex-shrink: 0;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-block .stat-value {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-block .stat-label {
  font-size: 0.8rem;
  color: var(--muted-text);
  letter-spacing: 0.02em;
}

/* --- CTA Button Pair --- */
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-pentra-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  font-family: var(--f-body);
}

.btn-pentra-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-pentra-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--dark-text);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  font-family: var(--f-body);
}

.btn-pentra-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

/* --- Comparison Table --- */
.pentra-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.pentra-comparison-table th {
  background: var(--card-bg);
  color: var(--light-text);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid var(--primary-color);
}

.pentra-comparison-table th.col-pentra {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.pentra-comparison-table td {
  padding: 14px 20px;
  color: var(--dark-text);
  border-bottom: 1px solid var(--card-border);
  vertical-align: top;
}

.pentra-comparison-table tr:last-child td {
  border-bottom: none;
}

.pentra-comparison-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.pentra-comparison-table td.col-pentra {
  color: var(--light-text);
  font-weight: 500;
}

/* --- Capability Card --- */
.capability-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.capability-card:hover {
  border-color: rgba(192, 0, 0, 0.35);
  transform: translateY(-3px);
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.capability-card:hover::before {
  transform: scaleX(1);
}

.capability-card .card-title {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 10px;
}

.capability-card .card-body {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.capability-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.capability-card .card-tag {
  background: rgba(192, 0, 0, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(192, 0, 0, 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
}

/* --- Before/After Table --- */
.before-after-table {
  width: 100%;
  border-collapse: collapse;
}

.before-after-table th {
  background: var(--card-bg);
  padding: 14px 20px;
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: left;
  border-bottom: 2px solid var(--card-border);
  color: var(--muted-text);
}

.before-after-table th:last-child {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.before-after-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--dark-text);
  border-bottom: 1px solid var(--card-border);
  vertical-align: top;
  line-height: 1.5;
}

.before-after-table tr:last-child td { border-bottom: none; }
.before-after-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.before-after-table td:last-child { color: var(--light-text); font-weight: 500; }

/* --- CTA Banner Section --- */
.cta-banner-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #002244 100%);
  border-top: 1px solid rgba(192, 0, 0, 0.25);
  border-bottom: 1px solid rgba(192, 0, 0, 0.25);
  padding: 64px 0;
  text-align: center;
}

.cta-banner-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #FFFFFF;
  margin-bottom: 14px;
}

.cta-banner-section p {
  color: #8A92A3;
  font-size: 1.0625rem;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--light-text);
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  gap: 16px;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.65;
  border-top: 1px solid var(--card-border);
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Step Process List --- */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
}

.step-row:last-child {
  border-bottom: none;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content .step-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 4px;
}

.step-content .step-body {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.55;
}

/* --- Flexible Deployment Block --- */
.flexible-deployment-block {
  background: var(--dark-surface);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 24px 0;
}

.flex-deploy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flex-deploy-text {
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 640px;
  margin: 0;
}

.flex-deploy-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.flex-deploy-link {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.flex-deploy-link:hover {
  opacity: 0.75;
}

.flex-deploy-divider {
  color: var(--card-border);
}

/* --- Footer Styles --- */
.footer-section {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--card-border);
}

.footer-tagline {
  color: var(--light-text);
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-text {
  color: var(--muted-text);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--card-border);
  padding: 20px 0;
}

.footer-copy {
  color: var(--muted-text);
  font-size: 0.8rem;
  margin: 0;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  background: rgba(192, 0, 0, 0.08);
  color: var(--muted-text);
  border: 1px solid rgba(192, 0, 0, 0.15);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
}

/* --- Mobile overrides for new nav --- */
@media (max-width: 767px) {
  #mobile-menu-btn svg {
    color: var(--nav-text) !important;
    stroke: var(--nav-text) !important;
  }

  #mobile-menu {
    background: var(--header-bg);
    border-top: 1px solid var(--card-border);
  }

  #mobile-menu .dropdown-menu a {
    text-align: center;
    justify-content: center;
  }
}

/* ===================================================================
   END PENTRA COMPONENT LIBRARY
   =================================================================== */
