@charset "UTF-8";

/* Font Import - Gotham font (LOCAL FILES - No CDN dependency) */

/* Gotham Light (300) */
@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: 300;
  src: url(assets/fonts/gotham-light.woff2) format('woff2');
  font-display: swap;
}

/* Gotham Book (Regular - 400) */
@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: 400;
  src: url(assets/fonts/gotham-book.woff2) format('woff2');
  font-display: swap;
}

/* Gotham Medium (500) */
@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: 500;
  src: url(assets/fonts/gotham-medium.woff2) format('woff2');
  font-display: swap;
}

/* Gotham Bold (700) */
@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: 700;
  src: url(assets/fonts/gotham-bold.woff2) format('woff2');
  font-display: swap;
}

/* Gotham Black (800) */
@font-face {
  font-family: Gotham;
  font-style: normal;
  font-weight: 800;
  src: url(assets/fonts/gotham-black.woff2) format('woff2');
  font-display: swap;
}

/* SLDS CSS Variables */
:root {
  --slds-g-spacing-1: 0.25rem;
  --slds-g-spacing-2: 0.5rem;
  --slds-g-spacing-3: 0.75rem;
  --slds-g-spacing-4: 1rem;
  --slds-g-spacing-5: 1.5rem;
  --slds-g-spacing-6: 2rem;
  --slds-g-color-neutral-base-100: #fff;
  --slds-g-color-neutral-base-95: #f3f3f3;
  --slds-g-color-neutral-base-90: #e5e5e5;
  --slds-g-color-neutral-base-80: #c9c9c9;
  --slds-g-color-neutral-base-70: #aeaeae;
  --slds-g-color-neutral-base-60: #939393;
  --slds-g-color-neutral-base-50: #747474;
  --slds-g-color-neutral-base-40: #5c5c5c;
  --slds-g-color-neutral-base-30: #444;
  --slds-g-color-neutral-base-20: #2e2e2e;
  --slds-g-color-neutral-base-10: #181818;
  --slds-g-color-neutral-base-0: #000;
  --slds-g-shadow-1: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  --slds-g-shadow-2: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
  --slds-g-shadow-3: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  --slds-g-shadow-4: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  --slds-g-radius-border-2: 0.25rem;
  --slds-g-radius-border-3: 0.5rem;
}

/* Base reset */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: Gotham, sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Global scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #ffffff;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Global titles color */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0a0a0a;
}

/* Logo */
.logo {
  align-items: center;
  gap: 8px;
  color: #262626;
  font-weight: 800;
}
/* Logo */
.logo-mark img {
  width: 251px;
  height: 32.64px;
  display: block;
  opacity: 1;
}

/* Header & nav - Properly spaced with margins */
header {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 80px;
  padding: 0 60px;
  box-sizing: border-box;
}

.logo {
  flex-shrink: 0;
  margin-right: 40px;
}

nav {
  margin-left: auto;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  color: #44526b;
  width: auto;
  height: auto;
  margin: 0;
  margin-left: auto;
  padding: 0;
  padding-right: 0;
  opacity: 1;
  gap: 40px;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
}

nav li {
  list-style: none;
  flex-shrink: 0;
}

nav a {
  color: #44526b;
  font-weight: 600;
  font-size: 16px;
  width: auto;
  line-height: 120%;
  letter-spacing: 0px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

nav a:hover {
  color: #0078ff;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  position: relative;
  width: 40px;
  height: 40px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #44526b;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Right Slide-in Menu (Qualys.com style) */
.right-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.right-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.right-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 90%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.right-slide-menu.active {
  right: 0;
}

.right-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e8eef8;
}

.right-menu-logo img {
  width: 120px;
  height: auto;
}

.right-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #44526b;
  transition: color 0.2s;
}

.right-menu-close:hover {
  color: #0078ff;
}

.right-menu-search {
  position: relative;
  padding: 20px 24px;
  border-bottom: 1px solid #e8eef8;
}

.right-menu-search input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.right-menu-search input:focus {
  border-color: #0078ff;
}

.right-menu-search svg {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.right-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.right-menu-item {
  padding: 16px 24px;
  color: #44526b;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid #f5f5f5;
}

.right-menu-item:hover {
  background-color: #f8fafc;
  color: #0078ff;
}

/* Buttons */
.primary {
  width: 196px;
  height: 44px;
  gap: 10px;
  opacity: 1;
  border-radius: 9999px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: #ed2e26;
  font-weight: 350;
  font-style: Medium;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #ffffff;
  border: 0px;
  cursor: pointer;
}

/* Hero - Full width background with centered content */
.hero {
  background: url('./assets/images/Hero.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  width: 100%;
  height: 441px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
  opacity: 1;
}

/* Hero inner container - constrained to max-width like products-section-inner */
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  gap: 60px;
  opacity: 1;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  gap: 12px;
  flex-direction: column;
  flex: 0 1 auto;
  max-width: 514px;
}

.hero-image {
  flex: 0 1 auto;
  max-width: 665px;
}
.hero-content h1 {
  font-size: 2rem;
  margin: 0 0 8px;
  line-height: 1.3;
}
.hero-content h2 {
  font-size: 1.6rem;
  color: #0a0a0a;
  margin: 0 0 16px;
}
.hero-content p {
  margin: 0 0 18px;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.hero-img-placeholder {
  width: 665px;
  height: 392px;
  background: url('./assets/images/overlapHero.png') center/cover no-repeat;
  margin-top: 48px;
  /* margin-right:80px */
}
.hero-title {
  font-weight: 350;
  font-style: Medium;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #ffffff;
}
.hero-subtitle {
  height: 96px;
  opacity: 1;
  font-weight: 450;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #ffffff;
}
.hero-description {
  width: 514px;
  height: 95px;
  opacity: 1;
  font-weight: 325;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: justify;
}
.hero-description a {
  text-decoration: underline;
}

/* SECURITY PRODUCTS */
.products-section {
  display: block;
  background: #f8fafc;
  width: 100%;
  height: fit-content;
  padding: 40px 20px;
  margin: 0 auto;
}
.products-section-header {
  opacity: 1;
  font-family: Gotham, sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #1d2737;
  margin: 0 auto 16px;
  max-width: 1440px;
}
.products-section-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1440px;
  min-height: 608px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: start;
}
.sidebar {
  width: 288px;
  display: block;
  position: relative;
}

/* Sidebar Mobile Toggle */
.sidebar-mobile-toggle {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #44526b;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.sidebar-mobile-toggle:hover {
  border-color: #0078ff;
  color: #0078ff;
}

.sidebar-mobile-toggle svg {
  transition: transform 0.3s;
}

.sidebar-mobile-toggle.active svg {
  transform: rotate(180deg);
}

.sidebar-content {
  display: block;
}

.sidebar-search {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  height: 44px;
  padding-left: 4px;
  background: #ffffff;
  border-bottom: 1px solid #2e8bdf;
}

.sidebar-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 12px 4px;
  border: 0;
  border-radius: 0;
  margin: 0;
  background: transparent;
  font-size: 14px;
  box-sizing: border-box;
}

.sidebar-search img {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 1;
  transform: rotate(0deg);
  margin: 0;
  flex: 0 0 auto;
  margin-left: 4px;
}

.sidebar-search input:focus {
  outline: none;
  border-bottom-color: #2e8bdf;
}

.sidebar ul {
  padding: 12px 0 10px 0;
  margin: 0;
}

.sidebar li {
  padding: 15px 0;
  border-left: 4px solid transparent;
  cursor: pointer;
  color: #262626;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  padding-left: 16px;
}
.sidebar li:hover,
.sidebar li.active {
  border-left-color: #ef4444;
  background: #fff;
  color: #262626;
  padding-left: 6px;
  font-weight: 900;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.products-container {
  flex: 1;
}
.products-container h2 {
  text-align: center;
  margin: 0 0 24px;
  color: #1e293b;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  padding: 12px;
  height: 88px;
  box-shadow: none;
}
.product-card:hover {
  border-color: #e8eef8;
  box-shadow: none;
}
.product-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 5px;
}
.product-card {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .product-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.product-card .product-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 55px;
  overflow: hidden;
}
.product-code {
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-desc {
  color: #475569;
  font-size: 13px;
  line-height: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Panels section container */
.info-section.panels {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1440px;
  justify-content: center;
  margin: 30px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}
.panel-card {
  border: 1px solid #e8eef8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px 24px;
}
.ph-left {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.subhead {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 13px;
}
.panel-card:first-child {
  width: 35%;
  height: 630px;
}
.panel-card:last-child {
  width: 48%;
  height: 630px;
}
.panel-card > .tabs {
  margin: 0 24px 12px 24px;
  width: 448px;
  height: 36px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; /* rows: 1 */
  gap: 4px;
  padding: 2px;
}
.tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: #334155;
  font-weight: 600;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  height: 100%;
}
.tab.active {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  color: #0f172a;
}
.panel-list {
  list-style: none;
  margin: 0;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.panel-item {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  min-height: 64px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(11, 19, 36, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pi-title {
  font-weight: 600;
  color: #0f172a;
}
.pi-meta {
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}
.badge.new {
  background: #ffe6e6;
  color: #e11d48;
}
.badge.trend {
  background: #ffe4f0;
  color: #be185d;
}
.badge.tag {
  background: #e0e7ff;
  color: #1e3a8a;
}
.btn-ghost {
  display: inline-block;
  color: #1d4ed8;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 600;
}
.btn-ghost:hover {
  background: #e0e7ff;
}

/* Keep CTA inside panel and pinned to bottom */
.panel-cta {
  margin-top: auto;
  padding: 0 24px 16px 24px;
}

/* LEARN SECTION */
/* LEARN SECTION */
.learn-section {
  display: flex;
  margin-top: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 65px;
  margin-bottom: 65px;
  width: 100%;
  padding: 0 20px;
}
.learn-section-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.learn-title {
  display: flex;
  align-items: center;
  gap: 0px;
  width: 100%;
  height: 35.6572px;
  justify-content: space-between;
  font-weight: 500;
  font-style: medium;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #262626;
}
.learn-title-icon {
  width: 40px;
  height: 36px;
  margin-right: 0px;
  vertical-align: middle;
  flex-shrink: 0;
}
.learn-title a {
  font-weight: 500;
  font-style: medium;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
  color: #2e8bdf;
}
.learn-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
.learn-card h4 {
  margin: 0 0 6px;
  color: #262626;
}
.learn-card p {
  font-size: 16px;
  color: #44526b;
  text-align: start;
  padding: 25px 25px 8px 30px;
  font-weight: 400;
}
.learn-card .data {
  font-size: 12px;
  font-weight: 325;
}
.learn-icon-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Salesforce Lightning Design System Learn Cards */
.slds-card {
  background: var(--slds-g-color-neutral-base-100, #fff);
  border: 1px solid #e8eef8;
  border-radius: var(--slds-g-radius-border-3, 0.75rem);
  box-shadow: var(--slds-g-shadow-1, 0 2px 4px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  width: 368px;
  height: 380px;
}

.slds-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--slds-g-shadow-4, 0 8px 16px rgba(0, 0, 0, 0.15));
}

.videobox {
  position: relative;
  background: linear-gradient(98.84deg, #00419a 0%, #0b60b7 50.96%, #0982ff 100%);
  cursor: pointer;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: white;
}

.videoheader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}

.videoheader p {
  color: white;
  padding: 0px 1px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  backdrop-filter: blur(4px);
}

.videoheader .logo {
  width: 50px;
  height: auto;
}

.videotitle {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  height: 97%;
}

.videotitle .play {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.videotitle .play:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.videotitle p {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
  text-align: center;
  padding: 0px;
}

/* SLDS Padding Classes */
.slds-p-horizontal_xx-small {
  padding-left: var(--slds-g-spacing-2, 0.5rem);
  padding-right: var(--slds-g-spacing-2, 0.5rem);
  padding-top: var(--slds-g-spacing-4, 1rem);
  padding-bottom: 0;
}

.slds-p-horizontal_xx-small:last-child {
  padding-top: 0;
  padding-bottom: var(--slds-g-spacing-4, 1rem);
}

.heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--slds-g-color-neutral-base-10, #181818);
  margin: 0 0 var(--slds-g-spacing-2, 0.5rem) 0;
  line-height: 1.4;
}

.data {
  font-size: 14px;
  color: var(--slds-g-color-neutral-base-50, #747474);
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .videobox {
    height: 140px;
    padding: 12px;
  }

  .videotitle p {
    font-size: 16px;
  }

  .videotitle .play {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}

/* Learn CTA */
.learn-cta {
  display: flex;
  justify-content: center;
}
.products-section-inner .learn-cta {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 16px;
}
.learn-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  height: 52px;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #04366f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.learn-cta-btn img {
  width: 27px;
  height: 25px;
}
.learn-cta-btn:hover {
  filter: brightness(1.05);
}

/* Videos */
.videos {
  padding: 18px 0 36px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: 0.15s ease;
}
.video-card:hover {
  transform: translateY(-2px);
}
.thumb {
  height: 140px;
  border-radius: 12px;
  background: radial-gradient(120px 60px at 20% 20%, #1e293b, #0b1220);
  display: grid;
  place-items: center;
  color: #fff;
}
.play {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: 999px;
}
.vc-title {
  font-weight: 700;
  margin-top: 10px;
}
.vc-meta {
  color: var(--muted);
  font-size: 13px;
}
.cta-inline {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  position: relative;
  padding-top: 60px;
  font-family: Gotham, sans-serif;
}

/* Notch logo */
.footer-notch {
  position: relative;
  height: 60px;
  background: transparent;
}

.notch {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #f43f5e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 6px solid #0f172a;
}

.footer-container {
  display: flex;
  justify-content: center;
}

.footer-left {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
}

.footer-left h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.footer-left p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links {
  width: 50%;
  padding-left: 10%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}

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

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  color: #cbd5e1;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-divider {
  border-top: 1px solid #1e293b;
  margin: 0 100px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  padding: 20px 100px;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    padding: 20px 30px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-divider {
    margin: 0 30px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .products-section {
    padding: 30px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 16px;
  }
  .hero {
    flex-direction: column;
    padding: 40px 24px;
  }
  .products-section,
  .info-section {
    flex-direction: column;
    padding: 20px;
  }
  .info-section.panels {
    display: block;
  }
  .sidebar {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
}

/* Support Overlay (scoped) */
.overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  overflow-y: auto;
  padding: 40px 0;
}
.overlay.show {
  display: block;
}
.overlay .overlay-content {
  background: #fff;
  width: 702px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  border-radius: 0;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.overlay .overlay-header {
  background: #2e8bdf;
  color: #fff;
  padding: 10px 24px;
}
.overlay .overlay-header h2 {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 800;
}
.overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
}
.overlay .close-btn:hover {
  color: #e6edf5;
}
.overlay h2 {
  text-align: center;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 28px;
}

.overlay .overlay-content > .call-section {
  padding: 24px 32px 24px;
}
.overlay .support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  align-items: start;
  position: relative;
}
.overlay .support-card {
  background: #fff;
  min-width: 0;
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid #e6edf5;
  height: 100%;
}
.overlay .support-card:last-child {
  border-right: none;
}
.overlay .support-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.overlay .support-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: block;
}
.overlay .support-card h3 {
  color: #1e293b;
  font-size: 1rem;
  margin: 6px 0 8px;
  font-weight: 700;
}
.overlay .support-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  height: 50%;
}
.overlay .support-card button {
  border: 1px solid #0176d3;
  color: #0176d3;
  background: #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.92rem;
}
.overlay .support-card button:hover {
  background: #0b5cab;
  border-color: #0b5cab;
  color: #fff;
}
.overlay .call-section {
  padding-top: 22px;
  border-top: 1px solid #e6edf5;
}
.overlay .call-section h3 {
  text-align: center;
  color: #0f172a;
  margin: 0 0 16px;
  font-weight: 700;
}
.overlay .call-section .call-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.overlay .call-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  text-align: center;
}
.overlay .call-grid div {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .overlay .support-options {
    flex-direction: column;
  }
  .overlay .support-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
}

/* Qualys Footer - Complete Styling */
/* Top notch SVG */

.qfooter-top-container {
  height: 41px;
  overflow: hidden;
}

.qfooter-svg-fill {
  width: 100%;
  height: 45px;
  fill: #0b1324;
  display: block;
  background: #fff;
}

/* Main wrapper */
.qfooter-main-wrapper {
  background-color: #0b1324;
}

.q-wrapper-footer {
  width: 70%;
  margin: 0 auto;
  padding: 0 20px;
}

.q-container-footer {
  width: 100%;
}

/* Shield logo */
.qfooter-shield {
  text-align: center;
  margin-bottom: 40px;
}

.qfooter-shield-img {
  width: 75px;
  height: auto;
}

/* Content wrapper */
.qfooter-content-wrap {
  margin-bottom: 40px;
  border-top: 1px solid #1e293b;
}

.qfooter-content-container {
  display: flex;
  gap: 80px;
  align-items: start;
  padding-top: 40px;
}

/* Column 1 - Main content */

.qfooter-tagline {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  text-align: start;
}

.qfooter-intro-txt {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 1.25rem;
}

.qfooter-intro-txt__subtext {
  color: #94a3b8;
}

.text-gray-400 {
  color: #9ca3af;
}

/* Link columns */
.qfooter-col-2,
.qfooter-col-3,
.qfooter-col-4 {
  grid-column: auto;
}

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

.qfooter-links-list li {
  margin: 0 0 8px 0;
  width: 152px;
}

.qfooter-links-txt {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 12px;
}

.qfooter-links-a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.qfooter-links-a:hover {
  color: #fff;
}

/* Social media column */
.qfooter-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.qfooter-social-items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.qfooter-social-list {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.qfooter-social-follow {
  color: #fff;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  display: none;
}

.qfooter-social-follow-mobile {
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 1rem;
  display: block;
}

.qfooter-social-link {
  display: inline-block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.qfooter-social-link:hover {
  opacity: 1;
}

.qfooter-social-link img {
  display: block;
}

/* Copyright */
.qfooter-copyright {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  padding-bottom: 20px;
}

.qfooter-copyright-content {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
}

.qfooter-copyright-content a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.qfooter-copyright-content a:hover {
  color: #fff;
}

.nowrap {
  white-space: nowrap;
}

/* Responsive design */
@media (max-width: 1440px) {
  .qfooter-content-container {
    gap: 4px;
  }
  .slds-card {
    height: 380px;
  }
  .learn-title{
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .qfooter-content-container {
    flex-direction: column;
    gap: 3px;
  }

  .qfooter-social-items {
    align-items: center;
  }

  .qfooter-social-list {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .qfooter-main-wrapper {
    padding: 40px 0 30px;
  }

  .q-wrapper-footer {
    padding: 0 15px;
  }

  .qfooter-content-container {
    flex-direction: column;
    gap: 20px;
  }

  .qfooter-tagline {
    font-size: 1.25rem;
    text-align: center;
  }

  .qfooter-social {
    align-items: center;
  }

  .qfooter-social-items {
    align-items: center;
  }

  .qfooter-social-list {
    justify-content: center;
  }

  .qfooter-social-follow {
    display: none;
  }

  .qfooter-social-follow-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .qfooter-content-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .qfooter-col-1,
  .qfooter-col-2,
  .qfooter-col-3,
  .qfooter-col-4,
  .qfooter-col-5 {
    grid-column: 1;
  }

  .qfooter-social-list {
    justify-content: space-around;
  }
}

/* Utility classes */

.block {
  display: block;
}
.hidden {
  display: none;
}
.text-sm {
  font-size: 0.875rem;
}
.text-larger {
  font-size: 1.125rem;
}
.text-white {
  color: #fff;
}

.justify-around {
  justify-content: space-around;
}
.justify-end {
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .qfooter-social-follow {
    display: inline-block;
  }

  .qfooter-social-follow-mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\\:order-2 {
    order: 2;
  }
  .lg\\:order-3 {
    order: 3;
  }
  .lg\\:order-4 {
    order: 4;
  }
  .lg\\:order-5 {
    order: 5;
  }
  .lg\\:mt-10 {
    margin-top: 2.5rem;
  }
  .lg\\:justify-end {
    justify-content: flex-end;
  }
}

@media (min-width: 640px) {
  .sm\\:mt-0 {
    margin-top: 0;
  }
}

/* Hero Section Media Queries */
/* Extra Large screens (1920px and up) */
@media (min-width: 1920px) {
  header {
    max-width: 1440px;
  }

  .hero-inner {
    gap: 60px;
  }
  .hero-img-placeholder {
    width: 639px;
    height: 392px;
  }

  .hero-title {
    font-size: 30px;
  }
  .hero-content {
    max-width: 867px;
    gap: 12px;
    opacity: 1;
  }
  .hero-subtitle {
    height: auto;
    font-size: 40px;
  }
  .hero-description {
    width: 867px;
    height: auto;
    font-size: 16px;
  }
}

/* Medium-Large screens (1440px to 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .hero-inner {
    gap: 60px;
  }

  .hero-content {
    color: #000;
    gap: 12px;
    opacity: 1;
  }
  .hero-img-placeholder {
    width: 639px;
    height: 392px;
    background: url(./assets/images/Thumbnail.png) center / cover no-repeat;
    margin-top: 48px;
  }
  .products-section {
    padding: 40px 70px;
  }
  .panel-card:first-child {
    width: 40%;
  }
  .learn-section-inner {
    width: 88%;
  }
}

/* Large screens (1400px to 1920px) */
@media (min-width: 1440px) and (max-width: 1920px) {
  .hero {
    min-height: 441px;
  }

  .hero-inner {
    gap: 60px;
  }

  .hero-img-placeholder {
    width: 639px;
    height: 392px;
  }
  nav ul {
    margin-left: 75%;
  }
}

.product-icon {
  color: #b5d0e733; /* 20% color */
}

@media (min-width: 1600px)  {
  .hero-content {
    max-width: 761px;
  }
  .hero-title{
    font-size: 26px;
  }
  .hero-subtitle{
    height: 58px;
  }
  .hero-description{
    width: 761px;
    font-size: 16px;
    height: 58px;
  }

}

@media (min-width: 1440px) and (max-width: 1600px) {
  .hero-inner{
    padding: 0 30px;
  }
}

.product-icon {
  color: #b5d0e733; /* 20% color */
}

/* Screens 1440px and below - Break hero text */
@media (max-width: 1440px) {
  .hero-title br,
  .hero-subtitle br {
    display: none;
  }
  .product-code {
    font-size: 16px;
  }
  .product-desc {
    font-size: 13px;
  }
}

/* Large screens (1200px to 1439px) */
@media (max-width: 1439px) and (min-width: 992px) {
  .hero {
    min-height: 441px;
  }
  .hero-content{
    margin-left: 30px;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-img-placeholder {
    width: 639px;
    margin-top: 49px;
    height: 392px;
  }
  .products-section-inner {
    padding: 0%;
  }
  .slds-card {
    height: 430px;
  }
  .products-section {
    padding: 40px 50px;
  }
  nav ul {
    margin-left: 50%;
  }
  .product-code {
    font-size: 14px;
  }
  .product-desc {
    font-size: 11px;
  }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero {
    min-height: 441px;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-img-placeholder {
    width: 500px;
    margin-top: 49px;
    height: 320px;
  }
  .products-section-inner {
    padding: 0%;
  }
  .slds-card {
    height: 480px;
  }
}

/* Small-medium screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .hero {
    padding: 0px 60px;
    min-height: 400px;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-img-placeholder {
    width: 400px;
    height: 280px;
  }
  .hero-subtitle {
    width: 350px;
    font-size: 32px;
  }
  .hero-description {
    width: 350px;
    font-size: 15px;
  }
}

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
  .hero {
    padding: 30px 40px;
    height: auto;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }
  .hero-img-placeholder {
    width: 400px;
    height: 250px;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    width: 100%;
    height: auto;
    font-size: 28px;
  }
  .hero-description {
    width: 100%;
    height: auto;
    font-size: 14px;
    text-align: center;
  }
  .primary {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
}

/* Mobile screens (480px and below) */
@media (max-width: 480px) {
  .hero {
    padding: 20px;
    height: auto;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-img-placeholder {
    width: 280px;
    height: 180px;
  }
  .hero-title {
    font-size: 20px;
  }
  .hero-subtitle {
    font-size: 24px;
  }
  .hero-description {
    font-size: 13px;
  }
  .primary {
    width: 160px;
    height: 36px;
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* ============================================
   REDOC DOCUMENTATION VIEW STYLES
   ============================================ */

/* Documentation View Container */
.doc-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 99999;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.doc-view * {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #9ca3af #ffffff;
}

.doc-view *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.doc-view *::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 4px;
}

.doc-view *::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 4px;
}

.doc-view *::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Disable outer page when documentation is active */
html.doc-active,
body.doc-active {
  overflow: hidden !important;
  height: 100vh !important;
  width: 100vw !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.doc-active > *:not(#docView) {
  display: none !important;
  visibility: hidden !important;
}

body.doc-active #docView {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  overflow: auto !important;
  background: white !important;
}

/* Documentation Header */
.doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  color: #262626;
  padding: 0 20px;
  height: 80px;
  box-shadow: 0px 20px 16px -18px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1001;
  opacity: 1;
  overflow: visible;
  max-width: 100vw;
  box-sizing: border-box;
}

.doc-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.doc-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.qualys-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 12px;
  flex-shrink: 0;
}

.qualys-header-logo img {
  width: 251px;
  height: 32.64px;
  display: block;
  opacity: 1;
}

/* Product Selector */
.product-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0;
  height: 44px;
  color: #262626;
  width: 446px;
}

.product-label {
  height: 17px;
  font-family: Gotham, sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #6a778b;
  white-space: nowrap;
  opacity: 1;
}

.product-dropdown {
  position: relative;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #228cef;
  transition: all 0.3s ease;
  width: 334px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 1;
}

.product-dropdown span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: 14px;
  color: #333;
}

.product-dropdown:hover {
  background: #ffffff;
  border-color: #228cef;
}

.product-dropdown::after {
  content: '▾';
  font-size: 14px;
  flex-shrink: 0;
  color: #228cef;
}

.product-content {
  display: none;
  position: absolute;
  background: #ffffff;
  width: 377px;
  max-height: 392px; /* 8 items × 49px (39px height + 10px gap) */
  box-shadow: 0px 12px 23px 0px rgba(170, 177, 188, 0.2);
  border-radius: 8px;
  top: calc(100% + 8px);
  left: 0;
  overflow-y: auto;
  z-index: 1000;
  padding: 20px;
  gap: 8px;
  opacity: 1;
  scrollbar-width: thin; /* Firefox - show thin scrollbar */
  scrollbar-color: #9ca3af #f0f0f0; /* Firefox - thumb and track color */
}

.product-content::-webkit-scrollbar {
  width: 6px;
}

.product-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.product-content::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 3px;
}

.product-content::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

.product-content.show {
  display: block;
}

.product-content a {
  color: #262626;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Gotham';
  font-weight: 350;
  font-style: medium;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
  font-variant-numeric: lining-nums proportional-nums;
  transition: all 0.2s ease;
  width: 337px;
  height: 39px;
  gap: 10px;
  opacity: 1;
  border-radius: 4px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.product-content a:hover {
  background: #e8f4fd;
  color: #228cef;
}

.product-content a:last-child {
  margin-bottom: 0;
}

/* Version Selector */
.version-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding: 0 10px;
  height: 100%;
  min-width: 0;
  flex-shrink: 0;
  max-width: 250px;
}

.version-label {
  height: 17px;
  opacity: 1;
  font-family: Gotham, sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  font-variant-numeric: lining-nums proportional-nums;
  color: #262626;
  white-space: nowrap;
}

.version-dropdown {
  position: relative;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #228cef;
  transition: all 0.3s ease;
  width: 76px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 1;
}

.version-dropdown:hover {
  background: #ffffff;
  border-color: #228cef;
}

.version-dropdown span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: 13px;
  color: #333;
}

.version-dropdown::after {
  content: '▾';
  font-size: 14px;
  flex-shrink: 0;
  color: #228cef;
}

.version-content {
  display: none;
  position: absolute;
  background: #ffffff;
  width: 150px;
  max-height: 300px;
  box-shadow: 0px 12px 23px 0px rgba(170, 177, 188, 0.2);
  border-radius: 8px;
  top: calc(100% + 8px);
  left: 0;
  overflow-y: auto;
  z-index: 1000;
  padding: 12px;
  gap: 8px;
  opacity: 1;
  scrollbar-width: thin; /* Firefox - show thin scrollbar */
  scrollbar-color: #9ca3af #f0f0f0; /* Firefox - thumb and track color */
}

.version-content::-webkit-scrollbar {
  width: 6px;
}

.version-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.version-content::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 3px;
}

.version-content::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

.version-content.show {
  display: block;
}

.version-content a {
  color: #262626;
  padding: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: Gotham, sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  font-variant-numeric: lining-nums proportional-nums;
  transition: all 0.2s ease;
  width: 100%;
  min-height: 36px;
  gap: 10px;
  opacity: 1;
  border-radius: 4px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.version-content a:hover {
  background: #e8f4fd;
  color: #228cef;
}

.version-content a:last-child {
  margin-bottom: 0;
}

.version-content a:last-child {
  border-bottom: none;
}

/* Product Header Icon */
.product-header-icon {
  display: none;
}

.product-icon {
  border-radius: 4px 0 4px 4px;
  height: 36px;
  line-height: 32px;
  width: 54px;
  font-family: Gotham, sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 500;
}

.product-icon.vmdr {
  background: linear-gradient(135deg, #4096ff 0%, #1970d9 100%);
  width: 70px;
}
.product-icon.pa {
  background-color: #4fa047;
}
.product-icon.fim {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.product-icon.etm {
  background-color: #de1d0b;
}
.product-icon.cm {
  background-color: #de1d0b;
}
.product-icon.pm {
  background-color: #4fa047;
}
.product-icon.cv {
  background-color: #0b589a;
}
.product-icon.oca {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  width: 70px;
}
.product-icon.qf {
  background-color: #de1d0b;
}
.product-icon.tas {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  width: 70px;
}
.product-icon.was {
  background-color: #0b589a;
}
.product-icon.car {
  background-color: #0b589a;
}

/* Redoc Container */
#redoc-container {
  height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #9ca3af #ffffff;
  max-width: 100vw;
  box-sizing: border-box;
}

#redoc-container::-webkit-scrollbar {
  width: 8px;
}

#redoc-container::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 4px;
}

#redoc-container::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 4px;
}

#redoc-container::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

#redoc-container * {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #ffffff;
}

#redoc-container *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#redoc-container *::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 4px;
}

#redoc-container *::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 4px;
}

#redoc-container *::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Responsive Tables in Redoc - Only for markdown/description tables */
#redoc-container .redoc-markdown table,
#redoc-container div[style*='background-color:#e6f4ff'] table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin: 1em 0;
}

#redoc-container .redoc-markdown table thead,
#redoc-container div[style*='background-color:#e6f4ff'] table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}

#redoc-container .redoc-markdown table tbody,
#redoc-container div[style*='background-color:#e6f4ff'] table tbody {
  display: table;
  width: 100%;
  table-layout: fixed;
}

#redoc-container .redoc-markdown table th,
#redoc-container .redoc-markdown table td,
#redoc-container div[style*='background-color:#e6f4ff'] table th,
#redoc-container div[style*='background-color:#e6f4ff'] table td {
  padding: 8px 12px;
  text-align: left;
  border: 1px solid #e0e0e0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 100px;
}

#redoc-container .redoc-markdown table th,
#redoc-container div[style*='background-color:#e6f4ff'] table th {
  background-color: #f5f5f5;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Make table container scrollable */
#redoc-container div[style*='background-color:#e6f4ff'] {
  overflow-x: auto;
  max-width: 100%;
}

/* Ask AI Button */
.ask-ai-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4096ff 0%, #1970d9 100%);
  color: white;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(64, 150, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3000;
}

.ask-ai-btn img {
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.ask-ai-dropup {
  display: none;
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 3100;
  background: transparent;
}

.ask-ai-dropup-row {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(64, 150, 255, 0.13);
  padding: 10px 18px;
  align-items: center;
}

.ask-ai-dropup-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(64, 150, 255, 0.1);
  border: 1.5px solid #e5e7eb;
  cursor: pointer;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}

.ask-ai-dropup-icon:hover {
  box-shadow: 0 4px 16px #4096ff33;
  border: 2px solid #4096ff;
  transform: translateY(-3px) scale(1.08);
}

.ask-ai-dropup-icon img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

/* Assistance modal (platform selection) */
#assistanceModal {
  position: fixed;
  inset: 0;
  z-index: 4000;
}

#assistanceModal .slds-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.75);
  z-index: 0;
}

#assistanceModal .slds-modal {
  position: relative;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1;
  pointer-events: none;
}

#assistanceModal .mainModalContainer {
  width: 650px;
  pointer-events: auto;
}

#assistanceModal .slds-modal__content {
  background: #fff;
  box-shadow: 0 18px 55px rgba(2, 8, 23, 0.35);
  padding: 28px 32px;
  color: #334155;
}

#assistanceModal .pillData {
  border-radius: 12px;
  border: 1px solid #64748b;
  margin: 0;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: #64748b;
  background: #fff;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  #assistanceModal .pillsContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  #assistanceModal .pillsContainer {
    grid-template-columns: 1fr;
  }
}

#assistanceModal .pillData:hover,
#assistanceModal .pillData.selected {
  border-color: #1A77CC;
  color: #1A77CC;
}

#assistanceModal .pillsContainer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 18px;
}

#assistanceModal .modalHeading {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}

#assistanceModal .modalContent {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

#assistanceModal .modalFooter {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

#assistanceModal .buttonContainer {
  width: auto;
  display: flex;
  gap: 12px;
}

#assistanceModal .platformContainer {
  width: auto;
  display: flex;
  justify-content: flex-end;
}

#assistanceModal .modalBtn {
  width: 130px;
  border: 1px solid #1A77CC;
  justify-content: center;
  font-size: 14px;
  position: static;
  padding: 10px 16px;
  background: #fff;
  color: #1A77CC;
  cursor: pointer;
}

#assistanceModal .continueBtn {
  opacity: 1;
  color: #fff;
  border: 1px solid #cbd5e1;
  background-color: #cbd5e1;
}

#assistanceModal .continueBtnEnabled {
  opacity: 1;
  color: #fff;
  background-color: #1A77CC;
  border-color: #1A77CC;
}

#assistanceModal .modalFooterContent {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
  margin-top: 16px;
}

#assistanceModal a,
#assistanceModal a:visited {
  color: #1A77CC;
  text-decoration: none;
  font-size: 14px;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES
   Similar to footer.css approach
   ============================================ */

/* Header Responsive Styles */
/* Comprehensive breakpoints for all zoom levels (50% to 150%) */

/* 67% zoom on 1920x1200 = ~2865px effective width */
@media (min-width: 2400px) {
  header {
    padding: 0 60px;
  }

  .logo-mark img {
    width: 251px;
  }

  nav ul {
    gap: 40px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 75% zoom on 1920x1200 = ~2560px effective width */
@media (min-width: 2000px) and (max-width: 2399px) {

  .logo-mark img {
    width: 251px;
  }

  nav ul {
    gap: 38px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 80% zoom on 1920x1200 = ~2400px effective width */
@media (min-width: 1800px) and (max-width: 1999px) {

  nav ul {
    gap: 36px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 90% zoom on 1920x1200 = ~2133px effective width */
@media (min-width: 1600px) and (max-width: 1799px) {

  nav ul {
    gap: 34px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 100% zoom on 1920x1200 = 1920px effective width */
@media (min-width: 1440px) and (max-width: 1599px) {
  header {
    padding: 0 80px;
  }


  nav ul {
    gap: 32px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }

  .hero {
    padding: 40px 40px;
  }
}

/* 110% zoom on 1920x1200 = ~1745px effective width */
@media (min-width: 1280px) and (max-width: 1439px) {

  nav ul {
    gap: 28px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 125% zoom on 1920x1200 = ~1536px effective width */
@media (min-width: 1150px) and (max-width: 1279px) {

  nav ul {
    gap: 24px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 133% zoom or smaller screens */
@media (min-width: 1050px) and (max-width: 1149px) {

  nav ul {
    gap: 22px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

/* 150% zoom or smaller screens */
@media (min-width: 993px) and (max-width: 1049px) {
  header {
    padding: 0 15px;
  }


  nav ul {
    gap: 20px;
    margin-left: auto;
    padding-right: 0;
  }

  nav a {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {

  nav ul {
    gap: 24px;
  }

  nav a {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  header {
    height: 70px;
    padding: 0 30px;
  }

  .logo-mark img {
    height: auto;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    margin: 0;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    align-items: flex-start;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid #e8eef8;
  }

  nav a {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }

  nav a:hover {
    background: #f8fafc;
  }
}

@media (max-width: 768px) {
  header {
    height: 60px;
    padding: 0 20px;
  }


  nav {
    top: 60px;
    height: calc(100vh - 60px);
    width: 260px;
  }

  nav a {
    font-size: 14px;
    padding: 14px 20px;
  }
}

@media (max-width: 640px) {
  header {
    height: 60px;
    padding: 0 15px;
  }


  nav {
    width: 240px;
  }

  nav a {
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  header {
    height: 56px;
    padding: 0 12px;
  }


  nav {
    width: 100%;
    right: -100%;
    top: 56px;
    height: calc(100vh - 56px);
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* Products Section Responsive */
@media (max-width: 1200px) {
  .products-section {
    padding: 30px 40px;
  }

  .products-section-inner {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .products-section {
    padding: 30px 30px;
  }

  .products-section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
    max-width: 100%;
  }

  .sidebar input {
    width: 100%;
  }

  /* Show mobile toggle on tablets and below */
  .sidebar-mobile-toggle {
    display: flex;
  }

  .sidebar-content {
    display: none;
    animation: slideDown 0.3s ease;
  }

  .sidebar-content.active {
    display: block;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Right menu adjustments */
  .right-slide-menu {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 20px;
  }

  .products-section-header {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sidebar li {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
  }

  /* Right menu full width on mobile */
  .right-slide-menu {
    width: 320px;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 20px 15px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sidebar ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 15px 10px;
  }

  .products-section-header {
    font-size: 18px;
  }

  .product-card {
    padding: 10px;
    height: auto;
  }

  /* Right menu full width on small mobile */
  .right-slide-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* Learn Section Responsive */
@media (max-width: 1440px) {
  .learn-section-inner {
    width: 90%;
  }

  .learn-grid {
    gap: 20px;
  }

  .slds-card {
    width: 100%;
    height: auto;
    min-height: 360px;
  }
}

@media (max-width: 1200px) {
  .learn-section-inner {
    width: 95%;
  }

  .learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .slds-card {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .learn-section {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 40px;
  }

  .learn-title {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 12px;
  }

  .learn-icon-container {
    width: 100%;
  }

  .learn-title a {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .learn-section {
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 30px;
  }

  .learn-section-inner {
    width: 100%;
    padding: 0 20px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .learn-title {
    font-size: 18px;
  }

  .learn-title-icon {
    width: 32px;
    height: 32px;
  }

  .slds-card {
    max-width: 100%;
  }

  .videobox {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .learn-section-inner {
    padding: 0 15px;
  }

  .learn-title {
    font-size: 16px;
  }

  .learn-cta-btn {
    width: 200px;
    height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .learn-section {
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 20px;
  }

  .learn-section-inner {
    padding: 0 10px;
  }

  .learn-title {
    font-size: 14px;
  }

  .learn-icon-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .learn-cta-btn {
    width: 100%;
    max-width: 280px;
  }

  .videobox {
    height: 180px;
  }

  .videotitle p {
    font-size: 16px;
  }
}

/* Support Overlay Responsive */
@media (max-width: 992px) {
  .overlay .overlay-content {
    width: 90%;
    max-width: 600px;
  }

  .overlay .support-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .overlay .support-card {
    border-right: none;
    border-bottom: 1px solid #e6edf5;
    padding: 16px;
  }

  .overlay .support-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .overlay {
    padding: 20px 0;
  }

  .overlay .overlay-content {
    width: 95%;
  }

  .overlay .overlay-header h2 {
    font-size: 1.1rem;
  }

  .overlay .overlay-content > .support-options {
    padding: 20px 24px 0;
  }

  .overlay .overlay-content > .call-section {
    padding: 20px 24px 20px;
  }

  .overlay .call-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .overlay .overlay-content > .support-options,
  .overlay .overlay-content > .call-section {
    padding: 15px 20px;
  }

  .overlay .support-card {
    padding: 12px;
  }

  .overlay .support-card h3 {
    font-size: 0.9rem;
  }

  .overlay .support-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .overlay .overlay-header {
    padding: 8px 16px;
  }

  .overlay .overlay-header h2 {
    font-size: 1rem;
  }

  .overlay .overlay-content > .support-options,
  .overlay .overlay-content > .call-section {
    padding: 12px 16px;
  }

  .overlay .support-card button {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}

/* Documentation View Responsive */
@media (max-width: 1200px) {
  .doc-header {
    padding: 0 15px;
  }

  .doc-header-left {
    gap: 16px;
  }

  .qualys-header-logo img {
    width: 200px;
    height: auto;
  }

  .product-selector {
    width: 380px;
  }

  .product-dropdown {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .doc-header {
    flex-wrap: wrap;
    height: auto;
    padding: 15px;
  }

  .doc-header-left {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .qualys-header-logo {
    order: 1;
  }

  .product-selector {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .version-selector {
    order: 2;
  }

  .doc-header-right {
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .doc-header {
    padding: 12px;
  }

  .qualys-header-logo img {
    width: 180px;
  }

  .product-selector {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 6px;
  }

  .product-dropdown {
    width: 100%;
  }

  .product-content {
    width: 100%;
  }

  .version-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 100%;
  }

  .version-dropdown {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .doc-header {
    padding: 10px;
  }

  .qualys-header-logo img {
    width: 160px;
  }

  .product-label,
  .version-label {
    font-size: 12px;
  }

  .product-dropdown,
  .version-dropdown {
    height: 40px;
    padding: 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .doc-header {
    padding: 8px;
  }

  .qualys-header-logo img {
    width: 140px;
  }

  .doc-header-left {
    gap: 10px;
  }

  .product-selector,
  .version-selector {
    gap: 4px;
  }

  .product-dropdown,
  .version-dropdown {
    height: 36px;
    padding: 8px;
  }
}

/* Panel Cards Responsive */
@media (max-width: 1200px) {
  .info-section.panels {
    flex-direction: column;
    gap: 20px;
  }

  .panel-card:first-child,
  .panel-card:last-child {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .panel-card > .tabs {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .panel-head {
    padding: 20px 20px 12px 20px;
  }

  .panel-list {
    padding: 0 20px 20px 20px;
  }

  .panel-cta {
    padding: 0 20px 12px 20px;
  }

  .panel-card > .tabs {
    margin: 0 20px 12px 20px;
  }
}

@media (max-width: 640px) {
  .panel-head {
    padding: 16px;
  }

  .panel-head h3 {
    font-size: 1.1rem;
  }

  .panel-list {
    padding: 0 16px 16px 16px;
    gap: 10px;
  }

  .panel-item {
    padding: 12px;
    min-height: 56px;
  }

  .pi-title {
    font-size: 14px;
  }

  .pi-meta {
    font-size: 12px;
  }

  .panel-cta {
    padding: 0 16px 12px 16px;
  }

  .panel-card > .tabs {
    margin: 0 16px 12px 16px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .panel-head {
    padding: 12px;
  }

  .panel-head h3 {
    font-size: 1rem;
  }

  .subhead {
    font-size: 12px;
  }

  .panel-list {
    padding: 0 12px 12px 12px;
  }

  .panel-item {
    padding: 10px;
  }

  .panel-cta {
    padding: 0 12px 10px 12px;
  }

  .btn-ghost {
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* Button Responsive */
@media (max-width: 768px) {
  .primary {
    width: 180px;
    height: 40px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .primary {
    width: 160px;
    height: 36px;
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Ask AI Button Responsive */
@media (max-width: 768px) {
  .ask-ai-btn {
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
  }

  .ask-ai-btn img {
    width: 28px;
    height: 28px;
  }

  .ask-ai-dropup {
    bottom: 88px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .ask-ai-btn {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .ask-ai-btn img {
    width: 24px;
    height: 24px;
  }

  .ask-ai-dropup {
    bottom: 76px;
    right: 20px;
  }

  .ask-ai-dropup-row {
    padding: 8px 14px;
    gap: 10px;
  }

  .ask-ai-dropup-icon {
    width: 36px;
    height: 36px;
  }

  .ask-ai-dropup-icon img {
    width: 24px;
    height: 24px;
  }
}

/* Additional utility responsive classes */
@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }

  .flex-col-mobile {
    flex-direction: column;
  }

  .w-full-mobile {
    width: 100%;
  }
}

/* Ensure proper spacing on all screen sizes */
@media (max-width: 1440px) {
  main {
    padding: 0;
  }
}

@media (max-width: 992px) {
  section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
