/* ============================================================
   Enterprise VPN LP page styles
   ============================================================ */

/* Work Sans font-face — @font-face inside @scope is not reliably registered by browsers */
@font-face {
  font-family: "Worksans";
  src: url("../fonts/WorkSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Worksans";
  src: url("../fonts/WorkSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* CSS custom properties (declared globally — @scope can't set :root vars) */
:root {
  --midnight-blue: #0e2b8f;
  --orange-red: #ff5206;
  --bluish-white: #f1f3f8;
}

/* Hard reset body margin + prevent x-overflow */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ============================================================
   Scoped styles — only apply inside .wf-lp wrapper
   ============================================================ */
@scope (.wf-pricing) {

  /* ---- Pricing section — remove large bottom padding on tablet/mobile ---- */
  @media screen and (max-width: 991px) {
    .price-section._3-highlight.pricing-lp {
      padding-bottom: 0 !important;
    }
  }

  @media screen and (max-width: 767px) {
    .price-section._3-highlight.pricing-lp {
      padding-bottom: 0 !important;
    }
  }

  @media screen and (max-width: 479px) {
    .price-section._3-highlight.pricing-lp {
      padding-bottom: 0 !important;
    }
  }

  /* Apply body-landing base typography to scope root */
  :scope {
    color: #0e2b8f;
    font-family: Worksans, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
  }

  /* ---- Inline styles from source head ---- */

  .faq-item-blog {
    overflow: hidden;
    margin-top: 25px;
    padding-bottom: 0;
    border-top: 1px solid rgba(14, 43, 143, 0.25);
    border-bottom: 1px solid rgba(14, 43, 143, 0.25);
    text-align: left;
  }

  .faq-title-blog {
    font-size: 18px;
    line-height: 29px;
    font-weight: 500;
  }

  .plan-price-original {
    position: relative;
    display: inline-block;
  }

  .plan-price-original::before,
  .plan-price-original::after {
    content: '';
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
  }

  .plan-price-original::before {
    border-bottom: 2px solid #ff5206;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
  }

  /* slider dots: polygon shape, blue/orange */
  .w-slider-dot {
    background: #0e2b8f !important;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 74% 95%, 25% 95%, 0 59%, 8% 25%);
    width: 30px !important;
    height: 30px !important;
  }

  .w-slider-dot.w-active {
    background: #ff5206 !important;
  }

  /* Pricing tooltip — show desc paragraph on click */
  .feature-desc-22 {
    display: none;
    font-size: 14px;
    line-height: 20px;
    color: #0e2b8f;
    padding-top: 6px;
  }

  .feature-desc-22.visible {
    display: block;
  }

  /* G2 gauge section — hide the Lottie animations gracefully */
  .gauge_circle-3 {
    width: 100%;
    height: 100%;
  }

  /* ---- features-section-4 feature grid lines ---- */
  .line {
    height: 1px;
    background-color: rgba(14, 43, 143, 0.15);
    margin: 0;
  }

  .line.hide {
    display: none;
  }

  .line.h {
    display: none;
  }

  .line.m {
    display: none;
  }

  /* ---- No fixed nav on this page — no offset needed ---- */
  .sticky-nav-area-2 {
    padding-top: 0;
  }

  /* ---- Remove extra top padding from hero row ---- */
  .hero-platform.comparison.w-row {
    padding-top: 0;
  }

  /* ---- CTA section inherits parent background ---- */
  .div-block-69.cta-section {
    background-color: transparent;
  }

  /* ---- Sticky nav — always visible ---- */
  .sticky-navigation-landing {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .sticky-navigation-landing_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* ---- Footer ---- */
  .footer-section-2 {
    background-color: #0e2b8f;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-legal-holder-landing {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
  }

  .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
  }

  .footer-link:hover {
    color: #fff;
  }

  .soc-med-holder {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .soc-med-link {
    display: inline-block;
  }

  .soc-med-icon {
    width: 28px;
    height: 28px;
    filter: brightness(10);
    opacity: 0.7;
  }

  .soc-med-icon:hover {
    opacity: 1;
  }

  .image-6 {
    height: 48px;
    width: auto;
  }

  .footer-padding {
    height: 0;
  }

  /* ---- Cookie notice (hidden by default in this migration) ---- */
  .landing-cookies-section-2 {
    display: none;
  }

  /* ---- Testimonials v3 ---- */
  .container-testimonial {
    padding: 60px 5%;
    background-color: #f1f3f8;
  }

  .container-testimonial-section {
    max-width: 1280px;
    margin: 0 auto;
  }

  .testimonial-wrapper.testimonial-v3 {
    display: flex;
    gap: 32px;
  }

  .split-content.testimonial-v3.left,
  .split-content.testimonial-v3.right---brix {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .top-content.testimonial-v3 {
    margin-bottom: 8px;
  }

  .top-content.testimonial-v3 .tag {
    display: inline-block;
    background-color: #0e2b8f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  /* tag white = white bg + primary text */
  .top-content.testimonial-v3 .tag.white {
    background-color: #fff;
    background-image: none;
    color: #0e2b8f;
  }

  .top-content.testimonial-v3 .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #0e2b8f;
    margin: 0 0 12px;
  }

  .top-content.testimonial-v3 > p {
    font-size: 16px;
    color: #0e2b8f;
    margin: 0;
  }

  .card-testimonial.testimonial-v3 {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(14, 43, 143, 0.08);
  }

  /* Logo + stars sit side by side (inline), content block below */
  .card-testimonial.testimonial-v3 > .image-testimonial {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
  }

  .card-testimonial.testimonial-v3 .card-content-v3 {
    margin-top: 16px;
  }

  .image-testimonial.company-logo-testimonial {
    height: 32px;
    width: auto;
    object-fit: contain;
    object-position: left center;
  }

  .image-testimonial.company-logo-testimonial.capterra-logo {
    height: 28px;
  }

  .image-testimonial.company-logo-testimonial.g2 {
    height: 36px;
  }

  .image-testimonial.company-logo-testimonial.peerspot {
    height: 28px;
  }

  .card-content-v3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .heading-small-2 {
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    color: #0e2b8f;
    margin: 0;
  }

  .paragraph-testimonial.testimonial-v3 {
    font-size: 14px;
    line-height: 22px;
    color: #0e2b8f;
    margin: 0;
    opacity: 0.8;
  }

  .testimonial-position {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .title.avatar-name-v1---brix {
    font-size: 14px;
    font-weight: 600;
    color: #0e2b8f;
    margin: 0;
  }

  .cta-link-wrapper.cta-testimonial {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }

  .secondary-cta.basic {
    font-size: 14px;
    font-weight: 600;
    color: #ff5206;
    text-decoration: none;
  }

  .secondary-cta.basic:hover {
    color: #0e2b8f;
  }

  .arrow-icon {
    width: 16px;
    height: 16px;
  }

  /* ---- G2 Dashboard: SVG gauge replacement for Lottie ---- */
  .gauge_circle-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .gauge-svg {
    width: 100%;
    height: 100%;
  }

  /* Hide empty Lottie divs */
  .gauge_circle-3 {
    display: none;
  }

  /* ---- What You Get section ---- */
  .features-section-4 {
    background-color: #f1f3f8;
  }

  /* Hide the plain .line inside bottom spacer divs at desktop —
     those lines are only meant for the 991px 2-column layout    */
  @media screen and (min-width: 992px) {
    .features-grid-2 > .feature-div.bottom > .line:not(.hide):not(.h):not(.m) {
      display: none;
    }
  }

  /* ---- Page wrapper / global styles section ---- */
  .page-wrapper-2 {
    /* contains the global-styles embed and main wrapper */
  }

  .global-styles {
    display: none;
  }

  .main-wrapper {
    overflow: clip;
  }

  /* ---- HowToStart HR line — span from center of step 1 to center of step 4 ---- */
  .feature_component_steps .feature_component_hr {
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
  }

  /* ---- Spacing CTA ---- */
  .div-block-69.spacing-cta {
    margin-top: 40px;
  }

  @media (max-width: 991px) {
    .testimonial-wrapper.testimonial-v3 {
      flex-direction: column;
    }

    .dashboard-grid {
      grid-template-columns: 1fr 1fr;
    }

    .features-grid-2 {
      grid-template-columns: 1fr 1fr;
    }

    .image-91 {
      width: 140px;
    }
  }

  @media (max-width: 767px) {
    .dashboard-grid {
      grid-template-columns: 1fr;
    }

    .features-grid-2 {
      grid-template-columns: 1fr 1fr;
    }

    .feature-div {
      border-right: none;
      border-bottom: 1px solid rgba(14, 43, 143, 0.1);
    }

    .div-block-6 {
      flex-direction: column;
    }

    .image-91 {
      width: 100%;
    }

    .testimonial-wrapper.testimonial-v3 {
      flex-direction: column;
    }

    .h-feature {
      font-size: 28px;
    }
  }

  @media (max-width: 479px) {
    .features-grid-2 {
      grid-template-columns: 1fr;
    }

    .dashboard-module {
      padding: 20px;
    }
  }
}
