/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: "Aeonik Pro";
  src: url("https://www.tenable.com/lp/assets/fonts/AeonikPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik Pro";
  src: url("https://www.tenable.com/lp/assets/fonts/AeonikPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik Pro";
  src: url("https://www.tenable.com/lp/assets/fonts/AeonikPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik Pro";
  src: url("https://www.tenable.com/lp/assets/fonts/AeonikPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-black: #1e2426;
  --color-card-active: #2b2f31;
  --color-yellow: #e7ff00;
  --color-white: #ffffff;
  --color-text-light: #d9d9d9;
  --color-text-mid: #5b6062;
  --color-border: #d9d9d9;
  --font-main: "Aeonik Pro", sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background: var(--color-white);
  color: var(--color-black);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .container {
    max-width: 768px;
    padding: 0 32px;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .container {
    max-width: 530px;
    padding: 0 20px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.overflow-hidden { overflow: auto; }

/* ============================================================
   YELLOW HIGHLIGHT TEXT TECHNIQUE
   Inline span with yellow background — matches Figma highlight block
   ============================================================ */
.text-highlight {
  color: var(--color-black);
  display: inline;
  padding: 0 6px 0;
  line-height: inherit;
  position: relative;
}
.text-highlight span {
  position: relative;
  z-index: 2;
}
.text-highlight:after {
  content: '';
  background: var(--color-yellow);
  position: absolute;
  width: 100%;
  height: 57px;
  top: 8px;
  left: 0;
  z-index: 1;
}

/* Block highlight used for multi-line "hidden\nthreats" in CTA section */
.text-highlight-block {
  background: var(--color-yellow);
  color: var(--color-black);
  display: inline;
  padding: 6px 14px 14px;
  line-height: 1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.section-hero {
  background: var(--color-black);
  padding-bottom: 100px;
}

/* --- Nav --- */
.section-hero .header {
  padding: 16px 0;
  margin-bottom: 0;
}

.section-hero .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.section-hero .logo-wrapper {
  max-width: 158px;
  width: 100%;
}

.section-hero .logo-wrapper img {
  width: 100%;
  height: auto;
}

/* --- Hero content --- */
.hero-content {
  text-align: center;
  padding-top: 101px;
}

.hero-content .product-title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 56px;
  color: var(--color-white);
  margin: 0 auto 38px;
  max-width: 980px;
  text-align: center;
}

.hero-content .product-sub-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-light);
  margin: 0 auto 34px;
  max-width: 444px;
  text-align: center;
}

.hero-logo {
  max-width: 463px;
  margin: 0 auto 80px;
}

.hero-logo img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero-logo .mobile {
  display: none;
}
/* Mobile-only slider nav — hidden on desktop/tablet */
.hero-slider-nav { display: none; }

/* --- Product cards --- */
.product-cards {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  flex: 0 0 480px;
  background: var(--color-black);
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 40px;
}

.active-left-card .product-card:nth-child(1) {
  background: #2B2F31;
}
.active-left-card .product-card:nth-child(2) .card-text {
  margin-bottom: 0;
}

.active-right-card .product-card:nth-child(2) {
  background: #2B2F31;
}
.active-right-card .product-card:nth-child(1) .card-text {
  margin-bottom: 0;
}

.product-card.active {
  background: var(--color-card-active);
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-icon {
  width: 80px;
  margin-bottom: 80px;
}

.card-icon img {
  width: 100%;
  height: auto;
}

.card-title {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  margin: 0 0 16px;
  text-align: left;
}

.card-text {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-light);
  margin-bottom: 32px;
  text-align: left;
}

/* CTA wraps — only visible when card is active */
.pro-cta-wrap,
.expert-cta-wrap {
  gap: 10px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-card.active .pro-cta-wrap,
.product-card.active .expert-cta-wrap {
  display: flex;
}

/* Buy Now button (yellow) */
.btn-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--color-black);
  padding: 0 24px;
  transition: opacity 0.2s;
}

.btn-buy:hover {
  opacity: 0.88;
  text-decoration: none;
}

/* Try Now button (white-bordered) */
.btn-try {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--color-white);
  padding: 0 24px;
  transition: background 0.2s, color 0.2s;
}

.btn-try:hover {
  background: #E7FF00;
  border-color: #E7FF00;
  text-decoration: none;
  color: var(--color-black);
}
.product-title .hidden-desk {
  display: none;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .text-highlight{
    display: inline-block;
  }
  .text-highlight:has(.hidden-tab):after{
    top: 4px;
  }
  .section-hero {
    padding-bottom: 60px;
  }
  .section-hero .container {
    padding: 0 24px;
  }
  .hero-content {
    padding-top: 62px;
  }
  .product-title .hidden-tab {
    display: none;
  }
  .product-title .hidden-desk {
    display: inline;
  }
  .product-cards {
    max-width: 100%;
    justify-content: center;
  }

  .product-card {
    flex: 0 0 50%;
    padding: 32px;
  }

  .card-title {
    font-size: 32px;
  }
  .hero-logo{
    margin: 0 auto 58px;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .text-highlight:after {
    height: 50px;
  }
  .section-hero {
    padding-bottom: 60px;
  }

  .hero-content {
    padding-top: 62px;
  }

  .hero-content .product-title {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 36px;
  }

  .hero-content .product-sub-title {
    font-size: 20px;
    margin-bottom: 35px;
}

  .hero-logo {
    margin-bottom: 60px;
  }

  .hero-logo .desktop {
    display: none;
  }
  .hero-logo .mobile {
    display: block;
  }

  /* --- Hero card slider --- */
  .hero-card-slider {
    overflow: hidden;
    width: 100%;
  }

  .product-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 200%;
    max-width: unset;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: stretch;
  }

  .product-card {
    flex: 0 0 100%;
    width: 50%;
    max-width: 50%;
    padding: 32px 31px;
    background: var(--color-card-active);
  }

  .card-icon {
    margin-bottom: 60px;
  }

  .card-title {
    font-size: 32px;
  }

  .card-text {
    margin-bottom: 30px;
  }

  /* CTAs always row on mobile (Figma: side-by-side) */
  .pro-cta-wrap,
  .expert-cta-wrap {
    flex-direction: row;
  }

  /* Slider navigation */
  .hero-slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    height: 40px;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-white);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }

  .hero-slider-arrow--prev.is-disabled {
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-slider-arrow--next {
    background: var(--color-white);
    border-color: var(--color-black);
  }

  .hero-slider-arrow--next.is-disabled {
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 14.86px;
  }

  .hero-slider-dot {
    background: var(--color-white);
    border: none;
    border-radius: 0.619px;
    width: 7.429px;
    height: 7.429px;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
  }

  .hero-slider-dot.active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' viewBox='0 0 13 15' fill='none'%3E%3Cpath d='M6.47363 14.4932L0.530273 11.0244C0.51309 11.0143 0.500079 10.9936 0.5 10.9688L0.499999 4.03125C0.500113 4.00643 0.513091 3.98572 0.530272 3.97559L6.47363 0.507814C6.49015 0.498171 6.50985 0.498171 6.52637 0.507814L12.4697 3.97559C12.4869 3.9857 12.4999 4.0064 12.5 4.03125L12.5 10.9688L12.4912 11.002C12.4858 11.0115 12.4783 11.0193 12.4697 11.0244L6.52637 14.4932C6.51815 14.4979 6.50899 14.5 6.5 14.5L6.47363 14.4932Z' fill='%23E7FF00' stroke='%231E2426'/%3E%3C/svg%3E");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    width: 13px;
    height: 15px;
    transform: translateY(1px);
  }
}

/* ============================================================
   SHOW / HIDE TOGGLEABLE SECTIONS
   Defined here AND again at the bottom (after section styles)
   so cascade order correctly hides inactive panels
   ============================================================ */

/* ============================================================
   FEATURE CARD MODULE
   ============================================================ */
.feature-card-module {
  background: var(--color-white);
  padding: 120px 0 80px;
}

.feature-module-headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}

.feature-module-title-wrap {
  max-width: 1160px;
}

.feature-module-eyebrow {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-mid);
  margin: 0 0 24px;
}

.feature-module-title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  margin: 0;
}

.feature-card-row {
  display: flex;
  align-items: stretch;
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
  max-width: 1440px;
  margin: auto;
}

.feature-card {
  flex: 1;
  border-right: 0.5px solid var(--color-border);
  padding: 44px 39px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-white);
}

.feature-card:first-child {
  border-left: 0.5px solid var(--color-border);
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 88px;
  display: flex;
  align-items: center;
}

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

.feature-card-label {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  margin: 0;
}

/* Arrows and pagination — hidden on desktop, shown on tablet */
.feature-carousel-arrows { display: none; }
.feature-pagination { display: none; }

/* Tablet CSS */
@media (max-width: 1199px) {
  /* ---- Before Slick inits: keep the flex row intact so nothing breaks ---- */
  /* (No overflow:hidden here — that would clip the flex cards before JS runs) */

  /* ---- After Slick inits: switch to block so Slick owns the layout ---- */
  .feature-card-row.slick-initialized {
    display: block;
    /*overflow: hidden;  clips the track so next-card peek works */
  }
  .feature-card-row.slick-initialized .slick-list {
    overflow: visible; /* track overflows list → peek of next card */
  }
  /* Cards inside Slick slides must fill their slide, not 50% */
  .feature-card-row.slick-initialized .feature-card {
    width: 360px;
    max-width: none;
    height: 100%;
    min-height: 348.37px;
    padding: 39px 39px 38px;
  }
  .nes-ex .feature-card-row.slick-initialized .feature-card {
    width: 480px;
  }
  /* Slick slide wrapper div must also stretch to full height */
  .feature-card-row.slick-initialized .slick-slide > div {
    height: 100%;
    display: flex;
    margin-bottom: 80px;
  }

  /* Carousel arrows */
  .feature-carousel-arrows {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
  }
  .feature-arrow {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .feature-arrow path {
    fill: var(--Black, #1E2426);
  }
  .feature-arrow--prev {
    background: transparent;
    border: 1px solid var(--color-black);
  }
  .feature-arrow--next {
    background: transparent;
    border: 1px solid var(--color-black);
  }
  .feature-arrow:active {
    background: var(--Black, #1E2426);
  }
  .feature-arrow:active path {
    fill: var(--White, #FFF);
  }


  /* Pagination dots */
  .feature-card-row .slick-dots {
    display: flex;
    justify-content: center;
    gap: 14.86px;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -58px;
  }
  .feature-card-row .slick-dots li {
    display: block;
  }
  .feature-card-row .slick-dots button {
    max-width: 7.429px;
    max-height: 7.429px;
    width: 10px;
    height: 10px;
    border-radius: 0.619px;
    background: var(--color-black);
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    display: block;
    margin-left: 0px;
  }
  .feature-card-row .slick-dots .slick-active button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' viewBox='0 0 13 15' fill='none'%3E%3Cpath d='M6.47363 14.4932L0.530273 11.0244C0.51309 11.0143 0.500079 10.9936 0.5 10.9688L0.499999 4.03125C0.500113 4.00643 0.513091 3.98572 0.530272 3.97559L6.47363 0.507814C6.49015 0.498171 6.50985 0.498171 6.52637 0.507814L12.4697 3.97559C12.4869 3.9857 12.4999 4.0064 12.5 4.03125L12.5 10.9688L12.4912 11.002C12.4858 11.0115 12.4783 11.0193 12.4697 11.0244L6.52637 14.4932C6.51815 14.4979 6.50899 14.5 6.5 14.5L6.47363 14.4932Z' fill='%23E7FF00' stroke='%231E2426'/%3E%3C/svg%3E");
    background-color: transparent;
    position: relative;
    width: 13px;
    height: 16px;
    max-width: 14px;
    max-height: 15px;
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(1px);
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .feature-card-module {
    padding: 60px 0 40px;
    position: relative;
  }
  .feature-card-module .container {
    padding: 0 24px;
  }
  .feature-module-title {
    font-size: 48px;
  }
  .feature-module-title br {
    display: none;
  }

  .feature-module-eyebrow {
    font-size: 20px;
    margin: 0 0 33px;
  }

  .feature-module-headline {
    margin-bottom: 63px;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .feature-card-row.slick-initialized .feature-card {
    width: 390px;
    min-height: 316px;
  }
  .feature-card-label {
    font-size: 32px;
  }
  .feature-carousel-arrows {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    width: calc(100% - 48px);
    justify-content: space-between;
    margin: auto;
  }
}

/* ============================================================
   HEXA BACKGROUND SECTION
   ============================================================ */
.hexa-background {
  background-image: url("https://www.tenable.com/lp/campaigns/25/nessus-multiprdct/buy/images/redesign-lp/hexa-background-client.svg");
  background-size: 1440px auto;
  height: 375px;
}

.hexa-background-inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .hexa-background {
    background-position: bottom center;
    height: 444px;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767.98px) {
  .hexa-background {
    background-position: left top;
    height: 366px;
    background-size: 1772px auto;
    background-repeat: no-repeat;
    margin-top: 45px;
  }
}
/* ============================================================
   LOGO / CLIENT SECTION
   ============================================================ */
.logo-section {
  background: var(--color-black);
  padding: 80px 0 0;
}

.logo-section-text {
  margin-bottom: 80px;
}

.logo-section-title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  margin: 0 0 24px;
  text-align: left;
}

.logo-section-sub {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-light);
  margin: 0;
  text-align: left;
}

/* Full-width logo row with bordered cells */
.logo-row {
  display: flex;
  width: 100%;
  border-top: 0.5px solid #5b6062;
  max-width: 1440px;
  margin: auto;
}

.logo-cell {
  flex: 1 0 auto;
  min-width: 0;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  height: 130px;
  border-right: 0.5px solid #5b6062;
  border-bottom: 0.5px solid #5b6062;
}

.logo-cell:first-child {
  border-left: 0.5px solid #5b6062;
}

.logo-cell img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1440px) {
  .logo-cell:first-child {
    border-left: none;
  }
  .logo-cell:last-child {
    border-right: none;
  }
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .logo-section-title br {
  }

  .logo-row {
    flex-wrap: wrap;
  }

  .logo-cell {
    flex: 0 0 25%;
    min-width: 0;
    width: 25%;
    padding: 40px 20px;
    height: 130px;
  }

  .logo-cell:nth-child(4n+1) {
    border-left: none;
  }

  .logo-cell:nth-child(4n) {
    border-right: none;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .logo-section {
    padding: 112px 0 0;
  }

  .logo-section-text {
    padding: 0 12px;
    margin-bottom: 77px;
  }

  .logo-section-title {
    font-size: 56px;
  }

  .logo-section-sub {
    font-size: 20px;
  }

  /* 2-column grid — no horizontal scroll */
  .logo-row {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .logo-cell {
    flex: 0 0 50%;
    width: 50%;
    padding: 20px;
    height: 130px;
    border-left: none;
    border-right: 0.5px solid #5b6062;
  }

  /* Reset 4-col tablet border overrides (restores right border for 4n cells) */
  .logo-cell:nth-child(4n+1),
  .logo-cell:nth-child(4n) {
    border-left: none;
    border-right: 0.5px solid #5b6062;
  }

  /* Right column — drop right border; declared last so it wins over 4n reset above */
  .logo-cell:nth-child(2n) {
    border-right: none;
  }

  .logo-cell img {
    max-height: 50px;
  }
}

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.promo-banners {
  background: var(--color-black);
  padding-top: 80px;
}

.promo-banner {
  display: flex;
  align-items: stretch;
  min-height: 600px;
  max-width: 1440px;
  margin: auto;
}

.promo-banner--reverse {
  flex-direction: row-reverse;
}

.promo-banner-text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 80px 32px 80px 32px;
}

.promo-banner-text .text-highlight {
  margin-left: -6px;
  margin-right: 7px;
}

.promo-banner--reverse .promo-banner-text {
  padding: 80px 80px 80px 32px;
}

.promo-banner-text h2 {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 56px;
  color: var(--color-white);
  margin: 0;
}

.promo-banner-text p {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-light);
  margin: 0;
}

.promo-banner-text p strong {
  font-weight: 400;
  color: var(--color-white);
}

.btn-promo-buy {
  display: inline-flex;
  text-decoration: none;
  transform: translateY(-1px);
  position: relative;
}
.btn-promo-buy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  border: none;
  padding: 0 24px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.btn-promo-buy svg {
  display: flex;
  width: 46px;
  height: 46px;
  padding: 7px;
  justify-content: center;
  align-items: center;
  background: var(--Yellow, #E7FF00);
  margin-left: 6px;
}
.btn-promo-buy:hover span {
  background-color: #E7FF00;
  text-decoration: none;
  padding: 0 20px;
}
.btn-promo-buy:hover svg {
  display: none;
}
.btn-promo-buy:hover:after{
  content: '';
  display: inline-block;
  width: 64px;
  height: 64px;
  transform: translate(5px, -10px);
  background-image: url("data:image/svg+xml,%3Csvg width='55' height='64' viewBox='0 0 55 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.5303 16.1436V47.8555L27.5 63.709L0.469727 47.8555V16.1436L27.5 0.290039L54.5303 16.1436Z' fill='%23E7FF00' stroke='%231E2426' stroke-width='0.5'/%3E%3Cpath d='M44.6838 38.6028L34.2949 44.8361V43.3375L44.6838 37.1042L39.804 34.3413L40.72 32.739L47.145 36.3768L40.72 47.7246L39.804 47.2215L44.6838 38.6028Z' fill='%231E2426'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  border: unset;
  position: absolute;
  left: 97px;
}
.promo-banner-img {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}

.promo-banner-img picture,
.promo-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .promo-banner {
    flex-direction: column;
    min-height: auto;
    max-width: 768px;
  }

  .promo-banner--reverse {
    flex-direction: column;
  }

  .promo-banner-img {
    flex: 0 0 auto;
    order: -1;
    height: 750px;
    width: 100%;
  }

  .promo-banner-text {
    flex: 0 0 auto;
    padding: 120px 32px;
    gap: 32px;
  }

  .promo-banner-text h2 {
    padding-right: 60px;
  }

  .promo-banner .text-highlight:after {
    top: 5px;
  }
  .promo-banner--reverse .promo-banner-text {
    padding: 120px 32px;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .promo-banner-text {
    padding: 80px 24px;
    gap: 31px;
    max-width: 530px;
    margin: auto;
  }

  .promo-banner--reverse .promo-banner-text {
    padding: 48px 20px;
  }

  .promo-banner-text h2 {
    font-size: 40px;
    line-height: 40px;
    padding-right: 10px;
  }
  .nes-pro .promo-banner:nth-child(2) .promo-banner-text h2 {
    padding-right: 0;
  }
  .promo-banner-text p {
    font-size: 16px;
  }

  .promo-banner-img {
    height: auto;
    max-height: auto;
  }

  .promo-banner .text-highlight:after{
    height: 38px;
    top: 5px;
  }
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table {
  background: var(--color-white);
  padding: 160px 0 80px;
}

.table-headline {
  text-align: center;
  margin-bottom: 155px;
}

.table-headline .table-title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  margin: 0 0 24px;
  max-width: 748px;
  margin-left: auto;
  margin-right: auto;
}

.table-headline .table-desc {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-mid);
  margin: 0 auto;
  max-width: 679px;
}

.table-wrapper {
  max-width: 1376px;
  margin: 0 auto;
}

.table-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Each row is a 3-column grid: 430px | 1fr | 1fr */
.table-row {
  display: grid;
  grid-template-columns: 430px 1fr 1fr;
  width: 100%;
}

.table-cell {
  padding: 19px 32px;
  border: 0.5px solid var(--color-border);
  border-top: none;
  border-left: none;
  display: flex;
  align-items: center;
  background: var(--color-white);
  height: 88px;
}
.table-row--header .table-cell {
  height: 128px;
}
.table-row--footer .table-cell {
  height: 150px;
}
.table-cell:last-child {
  border-right: 0px solid var(--color-border);
}

.table-row:first-child .table-cell {
  border-top: none;
}

.table-cell--label {
  justify-content: flex-start;
}

.table-cell--label p {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
}

.table-cell--product {
  justify-content: center;
  border-top: 0.5px solid var(--color-border);
}

.table-product-name {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  text-align: center;
  margin: 0;
}

.table-cell--icon {
  justify-content: center;
}

.table-cell--icon img {
  width: 40px;
  height: 44px;
  flex-shrink: 0;
}

.table-row--price .table-cell--price-val p {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-mid);
  margin: 0;
}

.table-row--price .table-cell--price-val .nessus-pro-buy-vat,
.table-row--price .table-cell--price-val .nessus-expertz-buy-vat {
  margin-left: 4px;
}
.table-row--price .table-cell--price-val .nessus-pro-buy-vat small,
.table-row--price .table-cell--price-val .nessus-expertz-buy-vat small {
  font-size: 18px;
}

/* Table footer CTAs row */
.table-row--footer .table-cell--ctas {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 32px;
}

.table-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 100px;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--color-black);
  padding: 0 24px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.table-btn-buy:hover {
  background-color: #E7FF00;
  text-decoration: none;
  color: var(--color-black);
}

.table-btn-try {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 100px;
  color: #fff;
  background: var(--color-black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--color-black);
  padding: 0 24px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.table-btn-try:hover {
  background: #E7FF00;
  border-color: #E7FF00;
  color: var(--color-black);
  text-decoration: none;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .table-row {
    grid-template-columns: 340px 1fr 1fr;
  }
  .table-headline {
    margin-bottom: 157px;
  }
  .compare-table .container {
    padding: 0;
  }
  .table-row--header .table-cell {
    padding: 0;
  }
  .table-cell {
    padding: 20px 23px;
  }
  .table-cell.table-cell--price-val {
    flex-direction: column;
    align-items: flex-start;
  }
  .table-cell.table-cell--price-val .hidden {
    margin: 0;
  }

  .table-row .break br {
    display: none;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .compare-table {
    padding: 121px 0 60px;
  }

  .table-headline {
    margin-bottom: 60px;
    padding: 0 24px;
  }

  .table-headline .table-title {
    font-size: 48px;
    line-height: 48px;
  }

  .table-headline .table-desc {
    font-size: 20px;
  }

  /* 2-column layout: label spans full width, icons side by side below */
  .table-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Label takes its own full-width row */
  .table-cell--label {
    grid-column: 1 / -1;
    height: auto;
    min-height: 88px;
    border-right: 0;
  }

  /* Hide empty label cells in header and footer rows */
  .table-row--header .table-cell--label,
  .table-row--footer .table-cell--label {
    display: none;
  }

  .table-cell {
    padding: 16px 24px 16px 23px;
  }

  /* Header row: two 50% product name cells */
  .table-row--header .table-cell {
    height: 112px;
    justify-content: left;
    padding: 0 24px;
  }

  .table-product-name {
    font-size: 24px;
    text-align: left;
  }

  /* Label text — restore to full size (no longer cramped in a narrow column) */
  .table-cell--label p {
    font-size: 18px;
  }

  /* Footer CTA padding */
  .table-row--footer .table-cell--ctas {
    padding: 24px;
  }

  .table-btn-buy,
  .table-btn-try {
    font-size: 13px;
    padding: 0 12px;
  }

  .table-cell.table-cell--price-val{
    padding: 19px 24px 16px 23px;
  }
}

/* ============================================================
   CUSTOMER REVIEWS (SLIDER)
   Retain existing structure, update aesthetics
   ============================================================ */
.customer-reviews {
  background: var(--color-black);
  padding: 135px 0;
}

.customer-reviews .container {
  max-width: 1440px;
  width: 100%;
  padding: 0 31px;
  margin: 0 auto;
}

.customer-reviews h2 {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  text-align: left;
  text-transform: capitalize;
}
.customer-reviews .reviews-header {
  position: relative;
  margin: 0 0 56px;
}
.customer-reviews .reviews-header .carousel-arrow {
  background-color: transparent;
  border: 1px solid var(--White, #FFF);
  opacity: 0.3;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customer-reviews .reviews-header .carousel-arrow svg {
  display: block;
}
.customer-reviews .reviews-header .carousel-arrow svg path {
  fill: #fff;
}
.customer-reviews .reviews-header .carousel-arrow--prev {
  position: absolute;
  top: 20px;
  right: 48px;
}
.customer-reviews .reviews-header .carousel-arrow--next {
  position: absolute;
  top: 20px;
  right: 0;
}
@media (hover: hover) {
  .customer-reviews .reviews-header .carousel-arrow:hover {
    border: 1px solid var(--Black, #1E2426);
    background: var(--White, #FFF);
    opacity: 1;
  }
  .customer-reviews .reviews-header .carousel-arrow:hover path {
    fill: var(--Black, #1E2426);
  }
}
.customer-reviews .reviews-header .carousel-arrow:active {
  border: 1px solid var(--Black, #1E2426);
  background: var(--White, #FFF);
  opacity: 1;
}
.customer-reviews .reviews-header .carousel-arrow:active path {
  fill: var(--Black, #1E2426);
}
.customer-reviews .large-slider .slick-slide {
  border: none !important;
  border-radius: 0px !important;
}
.customer-reviews .large-slider .slick-slide img {
  min-width: 994px;
}
.customer-reviews .large-slider .slick-list {
  overflow: hidden !important;
}
.customer-reviews .large-slider .slick-list.draggable {
  max-width: unset !important;
  left: 0px;
  padding-bottom: 0;
}
.customer-reviews .large-slider .slick-list.draggable .slick-slide {
  margin: 0 0px;
  padding: 0 0px;
  left: 0;
  box-shadow: none !important;
}
.customer-reviews .small-slider .slick-list.draggable {
  max-width: unset !important;
  left: 0;
  top: 0;
}
.customer-reviews .small-slider .slick-list.draggable .slick-slide {
  margin: 0 0px;
  padding: 0 4px;
  left: 0;
  opacity: 1;
}
.customer-reviews .small-slider .slick-list.draggable .slick-track {
  left: -50%;
}
.customer-reviews .reviews-pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 65px;
  padding-right: 3px;
}
.customer-reviews .reviews-pagination button {
  width: 7.429px;
  height: 7.429px;
  border-radius: 0.619px;
  background: var(--White, #FFF);
  border: none;
  margin-left: 14.86px;
}
.customer-reviews .reviews-pagination button.active {
  background-color: #E7FF00;
  position: relative;
  width: 11px;
}
.customer-reviews .reviews-pagination button.active:after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' viewBox='0 0 13 15' fill='none'%3E%3Cpath d='M6.47363 14.4932L0.530273 11.0244C0.51309 11.0143 0.500079 10.9936 0.5 10.9688L0.499999 4.03125C0.500113 4.00643 0.513091 3.98572 0.530272 3.97559L6.47363 0.507814C6.49015 0.498171 6.50985 0.498171 6.52637 0.507814L12.4697 3.97559C12.4869 3.9857 12.4999 4.0064 12.5 4.03125L12.5 10.9688L12.4912 11.002C12.4858 11.0115 12.4783 11.0193 12.4697 11.0244L6.52637 14.4932C6.51815 14.4979 6.50899 14.5 6.5 14.5L6.47363 14.4932Z' fill='%23E7FF00' stroke='%231E2426'/%3E%3C/svg%3E");
  width: 12px;
  height: 14px;
  position: absolute;
  top: -3px;
  right: 0;
}
.slider-wrapper {
  position: relative;
}

.large-slider {
  max-width: 1014px;
  width: 100%;
  overflow: hidden;
  left: 0px;
}

.large-slider .slider-item {
  position: relative;
  cursor: pointer;
}

.large-slider .slider-item picture,
.large-slider .slider-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
}
.customer-reviews .large-slider .slick-dots{
  display: none !important;
}
.play-icon {
  width: 202px !important;
  height: 46px !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.play-icon-text {
  height: 46px;
  width: 152px;
  padding: 15px 0;
  background: var(--White, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}

.play-icon-svg {
  border: 0.5px solid var(--Black, #1E2426);
  background: var(--Yellow, #E7FF00);
  width: 46px;
  height: 46px;
  padding: 0px;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 8px;
  transform: translateX(-3px);
}

.play-icon-svg svg {
  width: 32px !important;
  height: 32px !important;
  margin-left: 0 !important;
}

.play-icon:hover {
  background: rgba(0,0,0,0.75);
}

.play-icon svg {
  width: 20px;
  height: 24px;
  margin-left: 4px;
}

.small-slider {
  display: flex;
  gap: 8px;
  margin-top: 0px;
  right: -4px;
  width: 100%;
  max-width: 382px;
}

.small-slider .slider-content {
  flex: 1;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.small-slider .slider-content:hover,
.small-slider .slider-content.active {
  opacity: 1;
}

.small-slider .slider-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .customer-reviews .container {
    max-width: 768px;
    padding: 0 24px;
  }
  .customer-reviews {
    padding: 140px 0;
  }
  .customer-reviews h2 {
    padding-right: 100px;
    line-height: 1;
  }
  .customer-reviews .reviews-header{
    margin: 0 0 62px;
  }
  .large-slider {
    max-width: 100%;
  }
  .small-slider{
    max-width: 131px;
    right: -4px;
  }
  .customer-reviews .small-slider .slick-list.draggable .slick-track{
    left: -100%;
  }
  .customer-reviews .large-slider .slick-slide img {
    min-width: 100%;
  }
  .customer-reviews .reviews-pagination{
    margin-top: 67px;
    padding-right: 0px;
  }
  .customer-reviews .reviews-header .carousel-arrow--prev,
  .customer-reviews .reviews-header .carousel-arrow--next{
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .customer-reviews {
    padding: 120px 0;
  }
  .customer-reviews h2 { 
    font-size: 48px;
    line-height: 100%;
    padding: 0;
  }
  .customer-reviews .slider-wrapper {
    max-width: 100%;
  }
  .small-slider{
    display: none;
  }
  .customer-reviews .reviews-header{
    position: static;
  }
  .customer-reviews .reviews-pagination {
    justify-content: center;
    margin-top: 48px;
  }
  .customer-reviews .container{
    position: relative;
    max-width: 530px;
    margin: auto;
  }
  .customer-reviews .reviews-header .carousel-arrow--prev {
    bottom: -17px;
    left: 24px;
  }
  .customer-reviews .reviews-header .carousel-arrow--next {
    bottom: -17px;
    right: 24px;
  }
}
/* ============================================================
   AWARD / G2 BADGES
   ============================================================ */
.award-img {
  background: var(--color-black);
  padding: 194px 0 172px;
}

.award-img .container {
  padding: 0 148px;
}

.award-img-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.award-img-badges {
  flex: 0 0 448px;
}

.award-img-badges picture,
.award-img-badges img {
  width: 100%;
  height: auto;
  display: block;
}

.award-img-copy {
  flex: 1;
  max-width: 560px;
}

.award-img-copy p {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  margin: 0;
  transform: translateY(-7px);
  padding-right: 13px;
}
.award-highlight {
  position: relative;
}
.award-highlight span {
  position: relative;
  z-index: 2;
  color: var(--Black, #1E2426);
}
.award-highlight:after {
  content: '';
  background: var(--color-yellow);
  position: absolute;
  width: 100%;
  height: 57px;
  top: 6px;
  left: 0;
}
.award-img-copy .br-tablet{
  display: none;
}
.award-img-copy p .br-mobile{
  display: none;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .award-img {
    padding: 105px 0 118px;
  }

  .award-img .container {
    padding: 0 24px;
  }

  .award-img-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 135px;
  }

  .award-img-badges {
    flex: none;
    width: 448px;
    max-width: 100%;
    margin: 0 auto;
  }

  .award-img-copy {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .award-img-copy p {
    transform: none;
    padding-right: 0;
    text-align: left;
  }
  .award-img-copy .br-tablet{
    display: block;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .award-img {
    padding: 77px 0 61px;
  }

  .award-img-inner {
    align-items: flex-start;
    gap: 64px;
  }

  .award-img-copy {
    text-align: left;
  }

  .award-img-copy p {
    font-size: 40px;
    padding: 0 10px;
    text-align: center;
  }

  .award-img-copy .br-tablet {
    display: none;
  }

  .award-highlight:after {
    height: 37px;
  }

  .award-img-badges {
    width: 100%;
    margin: 0;
  }

  .award-img-copy p .br-mobile {
    display: none;
  }
}

/* ============================================================
   SEE TENABLE IN ACTION
   ============================================================ */
.see-tenable-action {
  background: var(--color-white);
  padding: 123px 0 119px;
}

.see-tenable-action .see-tenable-logo {
  width: 97px;
  height: 96px;
  position: absolute;
  right: 0;
  top: -2px;
}

.see-tenable-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.see-tenable-headline {
  flex: 0 0 auto;
  max-width: 600px;
}

.see-tenable-title {
  font-family: var(--font-main);
  font-size: 128px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  margin: 0;
}
.see-tenable-title br {
  display: none;
}
.see-tenable-title .text-highlight-block {
  padding: 0;
  background-color: transparent;
  color: var(--color-black);
  position: relative;
}

.see-tenable-title .text-highlight-block span {
  position: relative;
  z-index: 2;
}

.see-tenable-title .text-highlight-block:after {
  content: '';
  background-color: var(--Yellow, #E7FF00);
  position: absolute;
  bottom: -3px;
  left: -19px;
  width: calc(100% + 36px);
  height: calc(100% - 16px);
  z-index: 0;
}

.see-tenable-right {
  flex: 0 0 382px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 2px;
}

.see-tenable-right p {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
  max-width: 313px;
}

.see-tenable-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.see-tenable-try {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  padding: 0 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex: 1 0 auto;
  border: 1px solid var(--color-black);
  background: transparent;
  color: var(--color-black);
}

.see-tenable-try:hover {
  background-color: #E7FF00;
  text-decoration: none;
  color: var(--color-black);
}

.see-tenable-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex: 1 0 auto;
  border: 1px solid var(--color-white);
  background: var(--color-black);
  color: var(--color-white);
}

.see-tenable-buy:hover {
  background: #E7FF00;
  border-color: #E7FF00;
  color: var(--color-black);
  text-decoration: none;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .see-tenable-action {
    padding: 64px 0 57px;
  }
  .see-tenable-action .container {
    padding: 0 23px;
  }
  .see-tenable-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .see-tenable-headline {
    max-width: 100%;
  }
  .see-tenable-right {
    flex: 0 0 auto;
    width: 100%;
  }
  .see-tenable-ctas {
    max-width: 382px;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .see-tenable-action {
    padding: 62px 0 59px;
  }

  .see-tenable-action .container {
    padding: 0 24px;
  }
  .see-tenable-action .see-tenable-logo {
    width: 40px;
    height: 40px;
  }
  .see-tenable-inner {
    gap: 11px;
  }

  .see-tenable-title {
    font-size: 64px;
  }

  .see-tenable-title br {
    display: block;
  }

  .see-tenable-right p {
    max-width: 100%;
    padding-right: 22px;
  }
  .see-tenable-title .text-highlight-block:after {
    bottom: -3px;
    left: -9px;
    width: calc(100% + 16px);
    height: calc(100% - 5px);
  }
  .see-tenable-title .text-highlight-block br {
    display: none;
  }
  .see-tenable-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
  }

  .see-tenable-ctas a {
    padding: 0 24px;
  }

  .see-tenable-logo {
    width: 40px;
    height: 40px;
  }

  .footer .footer-links .line:nth-child(2),
  .footer .footer-links .line:nth-child(4){
    display: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-black);
  padding: 31px 0 34px;
}

.footer .container {
  padding: 0 53.5px;
}

.footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer .footer-links a {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
}

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

.footer .footer-links .line {
  background: var(--ramps-b-50-disclaimer, #757575);
  width: 1px;
  height: 15px;
}

.footer .copyright {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #969696;
}

.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer .footer-social a {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s;
}

.footer .footer-social a:hover {
  opacity: 0.75;
}

.footer .footer-social svg {
  display: block;
  width: 32px;
  height: 32px;
}

/* Tablet CSS */
@media (max-width: 1199px) {
  .footer {
    padding: 32px 0;
  }

  .footer .container {
    padding: 0 32px;
  }

  .footer .footer-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }

  .footer .footer-links {
    justify-content: center;
  }

  .footer .footer-left{
    gap: 17px;
  }

  .footer .copyright {
    text-align: center;
  }
}

/* Mobile CSS */
@media (max-width: 767.98px) {
  .footer .container {
    padding: 0 32px;
    max-width: 390px;
  }

  .footer .footer-content {
    align-items: center;
  }

  .footer .footer-social {
    justify-content: center;
    width: 100%;
  }

  .footer .footer-left {
    width: 100%;
    gap: 16px;
    align-items: center;
  }

  .footer .footer-links {
    justify-content: center;
    gap: 8px;
  }

  .footer .footer-links a {
    font-size: 16px;
  }

  .footer .copyright {
    text-align: center;
  }
}

/* ============================================================
   TOGGLE VISIBILITY — placed last to override all section
   display values set earlier in this file
   ============================================================ */
.nes-pro,
.nes-ex {
  display: none;
}

/* Use specificity (2 classes) so this always beats single-class
   section rules like .see-tenable-inner { display:flex } */
.nes-pro.active,
.nes-ex.active {
  display: block;
}

/* Restore flex for the CTA "See Tenable" panels when active */
.see-tenable-inner.nes-pro.active,
.see-tenable-inner.nes-ex.active {
  display: flex;
}

