﻿:root {
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: #d0d7e2;
  --brand: #0f67ff;
  --brand-strong: #0849ba;
  --success: #12b76a;
  --footer: #0b1220;
  --footer-muted: #a3b0c2;
  --hero-gradient:
    radial-gradient(circle at 10% 10%, rgba(15, 103, 255, 0.16), transparent 42%),
    radial-gradient(circle at 90% 15%, rgba(16, 185, 129, 0.12), transparent 40%),
    radial-gradient(circle at 55% 80%, rgba(255, 158, 27, 0.12), transparent 45%);
  --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.12);
  --radius: 14px;
  --transition: 0.25s ease;
  --font-main: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(180deg, #f5f9ff 0%, #f8fbff 35%, #ffffff 100%);
  color: var(--ink-soft);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

p {
  margin: 0 0 0.72rem;
}

p:last-child {
  margin-bottom: 0;
}

h3 {
  margin: 0 0 0.62rem;
  line-height: 1.3;
}

header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  width: min(1420px, 95%);
  margin: 0 auto;
}

.page-breadcrumbs {
  width: min(1420px, 95%);
  margin: 1.45rem auto 1rem;
}

.page-breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.55rem 1.2rem;
  border: 1px solid #dbe5f3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  font-size: 0.86rem;
  color: #667085;
}

.page-breadcrumbs a {
  color: #0f67ff;
  font-weight: 700;
}

.page-breadcrumb-current {
  color: #344054;
  font-weight: 700;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0f67ff, #3985ff);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 103, 255, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-2px);
}

.scroll-top-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 26px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0.18rem 0.2rem;
  border-radius: 12px;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.16));
}

.logo span {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.45rem;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-item {
  position: relative;
  padding: 0.8rem 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-link:hover,
.nav-item.is-open > .nav-link {
  color: var(--brand);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(760px, 80vw);
  padding: 1.5rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.nav-item:hover .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu .menu-heading {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mega-menu li + li {
  margin-top: 0.55rem;
}

.mega-menu a {
  display: block;
  margin-left: -0.45rem;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink);
}

.mega-menu a:hover {
  background: #eef4ff;
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7.5rem 1rem 6rem;
  background: var(--hero-gradient), var(--surface-alt);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f67ff, #3985ff);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 103, 255, 0.32);
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #0a54d0, #2f74dc);
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 4.8rem 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.vpn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.5rem;
}

.vpn-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 250px;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #dbe4ef;
  background:
    linear-gradient(120deg, rgba(15, 103, 255, 0.08), rgba(255, 255, 255, 0) 35%),
    #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.vpn-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 103, 255, 0.15);
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition);
}

.vpn-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vpn-card:hover::before {
  opacity: 1;
}

.vpn-card h3 {
  font-family: var(--font-head);
  font-size: 1.42rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.vpn-card p {
  margin-bottom: 1.6rem;
  color: var(--muted);
  flex-grow: 1;
}

.vpn-card-link {
  font-weight: 700;
  color: var(--brand);
}

.vpn-card-link:hover {
  color: var(--brand-strong);
}

.detail-header {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 4.3rem 0;
  background-color: #0d3f8f;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.detail-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 40, 97, 0.45);
  pointer-events: none;
}

.detail-header > .container {
  position: relative;
  z-index: 1;
}

.detail-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.05rem, 4vw, 3rem);
  margin-bottom: 0.65rem;
}

.detail-header p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  margin-top: 1.5rem;
  min-width: min(360px, 92vw);
}

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2.6rem;
}

.content-block {
  margin-bottom: 1.4rem;
  padding: 1.7rem;
  border-radius: var(--radius);
  border: 1px solid #dce4ef;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.content-block h2 {
  font-family: var(--font-head);
  font-size: 1.48rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.content-block h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
}

.feature-list li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.25rem;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}

.sidebar-sticky {
  position: sticky;
  top: 110px;
}

.rating-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff5d0;
  color: #9f6700;
  font-weight: 700;
  font-size: 0.8rem;
}

footer {
  margin-top: 2rem;
  padding: 3.3rem 0 1.5rem;
  background: linear-gradient(170deg, #070d19 0%, #0b1220 100%);
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
  margin-bottom: 2rem;
}

.footer-col .menu-heading {
  margin-bottom: 0.9rem;
  font-family: var(--font-head);
}

.footer-col li + li {
  margin-top: 0.4rem;
}

.footer-col a {
  color: var(--footer-muted);
}

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

.footer-content-home {
  grid-template-columns: minmax(220px, 1.2fr) repeat(5, minmax(165px, 1fr));
  align-items: start;
}

.footer-subtitle {
  margin: 0.9rem 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #8ea2bf;
}

.footer-col ul + .footer-subtitle {
  margin-top: 1rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 7.2rem 0 5.2rem;
  background-image: url("../images/headers/background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.7rem;
  align-items: stretch;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 103, 255, 0.11);
  color: #0f56d9;
  font-weight: 700;
  font-size: 0.82rem;
}

.home-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.home-hero p {
  color: #475467;
  max-width: 760px;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.home-btn-ghost {
  background: #ffffff;
  color: #0f56d9;
  border: 1px solid rgba(15, 103, 255, 0.28);
  box-shadow: 0 8px 20px rgba(15, 103, 255, 0.16);
}

.home-btn-ghost:hover {
  color: #ffffff;
  border-color: transparent;
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.home-metrics li {
  padding: 0.9rem 0.95rem;
  border: 1px solid #dae5f4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.home-metrics strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.home-metrics span {
  display: block;
  color: #667085;
  font-size: 0.84rem;
}

.home-panel {
  padding: 1.5rem 1.45rem;
  border-radius: 18px;
  border: 1px solid #dbe5f3;
  background:
    linear-gradient(145deg, rgba(15, 103, 255, 0.1), rgba(255, 255, 255, 0) 45%),
    #ffffff;
  box-shadow: var(--shadow-md);
}

.home-panel h2 {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.home-panel ul {
  margin-bottom: 1rem;
}

.home-panel li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 1.2rem;
  color: #475467;
}

.home-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0f67ff;
}

.home-fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1rem;
}

.home-fact-card {
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid #dce5f3;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.home-fact-card h3 {
  font-family: var(--font-head);
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.home-provider-section {
  background:
    radial-gradient(circle at 86% 22%, rgba(15, 103, 255, 0.12), transparent 40%),
    radial-gradient(circle at 16% 84%, rgba(16, 185, 129, 0.1), transparent 35%),
    #f7fbff;
}

.home-provider-intro {
  max-width: 920px;
  margin: -1.5rem auto 2rem;
  text-align: center;
  color: #475467;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.provider-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid #d8e3f2;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.provider-card h3 {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 1.22rem;
  margin-bottom: 0.62rem;
}

.provider-logo {
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 11px;
  border: 1px solid #d8e3f2;
  background:
    linear-gradient(145deg, rgba(15, 103, 255, 0.11), rgba(255, 255, 255, 0)),
    #f7faff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.provider-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.provider-card p {
  color: #667085;
  font-size: 0.92rem;
  margin-bottom: 0.95rem;
  flex-grow: 1;
}

.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.provider-actions a {
  flex: 1 1 108px;
  text-align: center;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f56d9;
  border: 1px solid #b8cef7;
  background: #edf4ff;
}

.provider-actions a:hover {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(90deg, #0f67ff, #3985ff);
}

.provider-review {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f67ff;
}

.provider-review:hover {
  color: #0849ba;
}

.provider-footnote {
  margin-top: 1.4rem;
  color: #667085;
  font-size: 0.9rem;
  text-align: center;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.home-faq-card {
  padding: 1.15rem 1.1rem;
  border: 1px solid #dce5f3;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.home-faq-card h3 {
  font-family: var(--font-head);
  color: var(--ink);
  margin-bottom: 0.62rem;
  font-size: 1.02rem;
}

@media (max-width: 980px) {
  header {
    top: 0;
    width: 100%;
  }

  .page-breadcrumbs {
    width: 100%;
    margin: 0;
  }

  .page-breadcrumbs .container {
    padding: 0.55rem 1.4rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    background: #f8fbff;
  }

  .navbar {
    position: relative;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.4rem;
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 34px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: -1.4rem;
    right: -1.4rem;
    z-index: 1100;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex-direction: column;
    gap: 0;
    padding: 1.25rem 1.5rem 2.5rem;
    background: #ffffff;
    transform: translateX(101%);
    transition: transform var(--transition);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-item {
    border-bottom: 1px solid #edf1f6;
    padding: 0;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.35rem;
  }

  .mega-menu,
  .nav-item:hover .mega-menu,
  .nav-item.is-open .mega-menu {
    position: static;
    width: 100% !important;
    max-width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    pointer-events: auto;
    overflow: hidden;
    border: none;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr !important;
    gap: 0.95rem 0;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .nav-item.is-open .mega-menu {
    max-height: 1200px;
    padding: 0.35rem 0.75rem 1rem;
  }

  .mega-menu .menu-heading {
    margin-bottom: 0.55rem;
  }

  .mega-menu a {
    margin-left: 0;
    padding: 0.35rem 0.2rem;
  }

  .detail-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sidebar-sticky {
    position: static;
  }

  .home-hero {
    padding: 5.4rem 0 4rem;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content-home {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.15rem;
  }

  .page-breadcrumbs .container {
    padding: 0.55rem 1.15rem;
  }

  .hero {
    padding: 5.8rem 0.9rem 4.5rem;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .home-metrics {
    grid-template-columns: 1fr;
  }

  .provider-actions a {
    flex-basis: 100%;
  }

  .footer-content-home {
    grid-template-columns: 1fr;
  }
}
