:root {
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --primary: #4e56f4;
  --primary-dark: #3438cc;
  --primary-deep: #25299f;
  --primary-soft: #eef0ff;
  --primary-soft-strong: #dee1ff;
  --ink: #10172f;
  --ink-soft: #202946;
  --muted: #5e6785;
  --line: #e3e7f6;
  --surface: #ffffff;
  --surface-soft: #f7f8ff;
  --navy: #08152d;
  --navy-light: #102143;
  --success: #29c879;
  --green: #18ad69;
  --amber: #f5a800;
  --purple: #9a55f7;

  --container: 1180px;
  --header-height: 78px;
  --network-info-height: 54px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow-soft: 0 18px 50px rgba(26, 38, 90, 0.09);
  --shadow-main: 0 32px 90px rgba(31, 45, 109, 0.16);
  --shadow-primary: 0 15px 36px rgba(78, 86, 244, 0.26);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--network-info-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-synthesis: none;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-sans);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.custom-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
  color: currentColor;
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.45vw, 44px);
  font-weight: 800;
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

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

:focus-visible {
  outline: 3px solid rgba(78, 86, 244, 0.46);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 44px), 820px);
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.section-compact {
  padding: 58px 0 62px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary-deep);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease, color 180ms ease;
}

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

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.btn:hover .icon-download {
  transform: translateY(2px);
}

.btn:hover .icon-forward {
  transform: translateX(3px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 18px 44px rgba(78, 86, 244, 0.34);
}

.btn-large {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 15px;
}

.btn-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.62);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.eyebrow-light {
  color: #8f9cff;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay,
.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 170ms;
}

.reveal-delay-3 {
  transition-delay: 250ms;
}

/* Header */
.site-header {
  position: fixed;
  inset: var(--network-info-height) 0 auto;
  z-index: 200;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(222, 226, 244, 0.9);
  box-shadow: 0 10px 35px rgba(26, 38, 90, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--primary);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(78, 86, 244, 0.23);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #18223f;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: 22px;
}

.btn-header {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
}

/* Visitor network information */
.network-info-bar {
  position: fixed;
  z-index: 220;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--network-info-height);
  display: flex;
  align-items: center;
  color: #fff;
  background: #171717;
  box-shadow: 0 10px 30px rgba(16, 23, 47, 0.1);
}

.network-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.network-info-grid p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  text-align: center;
  white-space: nowrap;
}

.network-info-grid strong {
  color: #fff;
  font-weight: 800;
}

.network-info-grid strong.is-loading {
  color: rgba(255, 255, 255, 0.64);
}

/* Locations page */
.locations-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--network-info-height) + 82px) 0 96px;
  background: #f8f9ff;
}

.locations-hero-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.locations-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 64px;
}

.locations-hero-copy {
  position: relative;
  z-index: 2;
}

.locations-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #7380a0;
  font-size: 12px;
  font-weight: 650;
}

.locations-breadcrumb a:hover {
  color: var(--primary);
}

.locations-hero-copy .eyebrow {
  margin-bottom: 18px;
}

.locations-hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: 56px;
}

.locations-hero-description {
  max-width: 680px;
  margin-bottom: 32px;
  color: #596582;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
}

.locations-hero-actions {
  display: flex;
  align-items: center;
}

.locations-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.locations-hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  color: #65708c;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(31, 45, 109, 0.06);
}

.locations-hero-highlights .custom-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--primary);
  stroke-width: 2;
}

.locations-hero-highlights strong {
  color: var(--ink);
  font-weight: 800;
}

.locations-hero-visual {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
}

.locations-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  filter: drop-shadow(0 28px 60px rgba(31, 75, 169, 0.12));
}

.locations-page .server-section {
  padding-top: 100px;
}

.top-locations-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background: #fff;
}

.top-locations-heading,
.country-directory-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.top-locations-heading .eyebrow,
.country-directory-heading .eyebrow {
  margin-bottom: 14px;
}

.top-locations-heading h2,
.country-directory-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.3vw, 54px);
}

.top-locations-heading > p:last-child,
.country-directory-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: #65708c;
}

.top-locations-map {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  overflow: hidden;
  padding: 28px;
  background: #f7f9ff;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(31, 45, 109, 0.1);
}

.top-locations-map-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.top-locations-grid {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.top-location-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(78, 86, 244, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(31, 45, 109, 0.13);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.top-location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 86, 244, 0.38);
  box-shadow: 0 26px 52px rgba(31, 45, 109, 0.17);
}

.top-location-card-large {
  min-height: 150px;
}

.top-location-card-small {
  min-height: 128px;
  margin-top: 42px;
}

.top-location-card-1 {
  grid-column: 1 / 7;
}

.top-location-card-2 {
  grid-column: 7 / 13;
}

.top-location-card-3 {
  grid-column: 1 / 5;
}

.top-location-card-4 {
  grid-column: 5 / 9;
}

.top-location-card-5 {
  grid-column: 9 / 13;
}

.top-location-flag {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 6px;
  background: #fff;
  border: 6px solid #eef1ff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(31, 45, 109, 0.12);
}

.top-location-card-large .top-location-flag {
  width: 86px;
  height: 86px;
}

.top-location-flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.top-location-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top-location-copy strong {
  margin-bottom: 6px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.25;
}

.top-location-card-small .top-location-copy strong {
  font-size: 17px;
}

.top-location-copy small {
  color: #7b849e;
  font-size: 12px;
  font-weight: 600;
}

.top-location-servers b {
  color: var(--primary);
  font-weight: 800;
}

.top-location-copy > b {
  margin-top: 8px;
  padding: 7px 10px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.country-directory-section {
  padding: 112px 0 120px;
  background: #f5f7ff;
}

.country-directory-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 1040px);
  margin: 0 auto 18px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(31, 45, 109, 0.08);
}

.country-directory-search {
  width: 240px;
  flex: 0 0 auto;
}

.country-directory-search input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8f9ff;
  border: 1px solid rgba(78, 86, 244, 0.16);
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.country-directory-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(78, 86, 244, 0.1);
}

.country-directory-filters {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.country-directory-filters button {
  min-height: 36px;
  padding: 0 12px;
  color: #606b88;
  background: #f7f8ff;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.country-directory-filters button.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .country-directory-filters button:hover:not(.is-active) {
    color: var(--primary);
    background: #f0f2ff;
    border-color: rgba(78, 86, 244, 0.28);
  }
}

.country-directory-status {
  margin: 0 0 18px;
  color: #6f7893;
  font-size: 12px;
  text-align: right;
}

.country-directory-status strong {
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.country-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.country-directory-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(78, 86, 244, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 45, 109, 0.06);
  scroll-margin-top: calc(var(--header-height) + var(--network-info-height) + 24px);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.country-directory-card:hover,
.country-directory-card:target {
  transform: translateY(-2px);
  border-color: rgba(78, 86, 244, 0.42);
  box-shadow: 0 16px 36px rgba(31, 45, 109, 0.11);
}

.country-directory-flag {
  width: 50px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 45, 109, 0.1);
  border-radius: 7px;
}

.country-directory-flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.country-directory-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.country-directory-copy strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.country-directory-copy small {
  color: #8991a8;
  font-size: 10px;
  font-weight: 600;
}

.country-directory-empty {
  margin: 26px 0 0;
  padding: 24px;
  color: #65708c;
  background: #fff;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 18px;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--network-info-height) + 54px) 0 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(105, 116, 255, 0.16), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fbfcff 72%, #f5f7ff 100%);
}

.hero::before {
  position: absolute;
  top: 90px;
  left: -170px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(78, 86, 244, 0.08), transparent 68%);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  padding-top: 4px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 8px 14px 8px 9px;
  color: #4f5978;
  background: rgba(242, 244, 252, 0.92);
  border: 1px solid rgba(224, 228, 243, 0.84);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.trust-pill-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #2fc978;
  background: #e8fbf0;
  border-radius: 50%;
}

.trust-pill-icon svg {
  width: 15px;
  height: 15px;
}

.hero h1 {
  max-width: 620px;
  font-size: 56px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  max-width: 575px;
  margin-bottom: 30px;
  color: #57617f;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.hero-proof p {
  margin: 0;
  color: #6c7590;
  font-size: 12px;
  line-height: 1.55;
}

.hero-proof p strong {
  color: #3e4968;
  font-weight: 700;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  color: #fff;
  background: #1d2a49;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.proof-avatars svg {
  width: 15px;
  height: 15px;
}

.proof-avatars span:first-child {
  margin-left: 0;
  background: var(--primary);
}

.proof-avatars span:nth-child(2) {
  background: #19a86c;
}

.proof-avatars span:nth-child(3) {
  background: #7255d9;
}

.proof-avatars span:nth-child(4) {
  color: #744500;
  background: #ffd88e;
}

.hero-map {
  position: absolute;
  z-index: 1;
  top: 126px;
  right: -30px;
  width: min(71vw, 870px);
  opacity: 0.82;
  pointer-events: none;
}

.hero-map svg {
  width: 100%;
}

.map-pin,
.map-shield {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 58px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 20px rgba(78, 86, 244, 0.16));
}

.map-pin svg,
.map-shield svg {
  width: 100%;
  height: 100%;
}

.pin-one {
  top: 300px;
  right: 81px;
  color: #9a5cf7;
}

.pin-two {
  top: 500px;
  right: 112px;
  color: #3d9aff;
}

.map-shield {
  top: 355px;
  right: 484px;
  width: 54px;
  height: 54px;
  color: #27c876;
  background: rgba(220, 250, 234, 0.8);
  border-radius: 50%;
}

.map-shield svg {
  width: 29px;
  height: 29px;
}

.hero-wave {
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: -72px;
  left: 20%;
  height: 210px;
  background: linear-gradient(115deg, rgba(230, 234, 255, 0.68), rgba(245, 247, 255, 0.95));
  border-radius: 50% 50% 0 0 / 46% 58% 0 0;
  transform: rotate(-5deg);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 961px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 44px;
  }

  .hero-visual {
    width: 100%;
    max-width: 500px;
    min-height: 570px;
    justify-self: end;
  }

  .hero-visual .hero-phone {
    position: absolute;
    transform: scale(0.86) rotate(0.3deg);
    transform-origin: center;
  }

  .hero-visual .phone-glow {
    width: 380px;
    height: 380px;
  }
}

.phone-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(79, 88, 245, 0.24), rgba(79, 88, 245, 0.04) 55%, transparent 72%);
  border-radius: 50%;
  filter: blur(8px);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  background: #07090d;
  border: 2px solid #161a22;
  border-radius: 47px;
  box-shadow: 0 42px 90px rgba(15, 24, 70, 0.24), inset 0 0 0 2px #6f747e;
}

.phone-shell::before {
  position: absolute;
  z-index: 20;
  top: 86px;
  left: -4px;
  width: 4px;
  height: 78px;
  background: #545b66;
  border-radius: 3px 0 0 3px;
  content: "";
}

.phone-shell::after {
  position: absolute;
  z-index: 20;
  top: 110px;
  right: -4px;
  width: 4px;
  height: 105px;
  background: #545b66;
  border-radius: 0 3px 3px 0;
  content: "";
}

.hero-phone {
  z-index: 3;
  width: 326px;
  height: 646px;
  padding: 8px;
  transform: rotate(0.3deg);
}

.hero-phone > *:not(.phone-home) {
  position: relative;
  z-index: 2;
}

.hero-phone::before {
  box-shadow: none;
}

.phone-topbar {
  height: 43px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  color: #0d1020;
  background: #fff;
  border-radius: 39px 39px 0 0;
  font-size: 11px;
  font-weight: 800;
}

.dynamic-island {
  width: 82px;
  height: 25px;
  background: #050609;
  border-radius: 999px;
}

.phone-signals {
  display: inline-flex;
  justify-content: flex-end;
  gap: 3px;
}

.phone-signals i {
  width: 4px;
  height: 9px;
  background: #10131b;
  border-radius: 3px;
}

.phone-signals i:nth-child(1) {
  height: 5px;
  margin-top: 4px;
}

.phone-signals i:nth-child(2) {
  height: 7px;
  margin-top: 2px;
}

.phone-app {
  min-height: 579px;
  padding: 12px 22px 28px;
  background: linear-gradient(180deg, #fff 0%, #fcfcff 55%, #f7f8fd 100%);
}

.app-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 28px;
}

.app-nav button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.app-nav button:last-child {
  justify-self: end;
}

.app-nav button svg {
  width: 19px;
  height: 19px;
}

.app-nav img {
  width: 27px;
  height: 27px;
  border-radius: 7px;
}

.connection-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 3px;
  color: #171e36;
  font-size: 15px;
}

.connection-status strong {
  color: #198d5b;
}

.connection-status.is-off strong {
  color: #8790aa;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(41, 200, 121, 0.1);
}

.connection-status.is-off .status-dot {
  background: #aab1c4;
  box-shadow: none;
}

.connection-status + p {
  margin-bottom: 21px;
  text-align: center;
  font-size: 11px;
}

.power-control {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  padding: 0;
  color: var(--primary);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.power-ripple {
  position: absolute;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 50%;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.ripple-one {
  inset: 0;
  background: rgba(78, 86, 244, 0.055);
}

.ripple-two {
  inset: 22px;
  background: rgba(78, 86, 244, 0.08);
}

.power-core {
  position: relative;
  z-index: 3;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 9px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(78, 86, 244, 0.28), inset 0 0 0 1px rgba(78, 86, 244, 0.08);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.power-core svg {
  width: 43px;
  height: 43px;
}

.power-control:not(.is-on) {
  color: #8c94aa;
}

.power-control:not(.is-on) .power-core {
  border-color: #d4d8e4;
  box-shadow: 0 8px 24px rgba(70, 80, 110, 0.12);
}

.power-control:not(.is-on) .power-ripple {
  background: rgba(130, 139, 164, 0.05);
  border-color: rgba(130, 139, 164, 0.12);
}

.server-card,
.ip-card {
  display: flex;
  align-items: center;
  color: #1c2440;
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(26, 39, 85, 0.07);
}

.server-card {
  min-height: 61px;
  padding: 11px 13px;
}

.server-card > div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-left: 10px;
}

.server-card strong,
.ip-card strong {
  font-size: 11px;
}

.server-card small,
.ip-card small {
  color: #778099;
  font-size: 9px;
}

.server-card > svg {
  width: 17px;
  height: 17px;
  color: #727b95;
}

.flag {
  position: relative;
  width: 27px;
  height: 20px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e8ebf5;
  border: 1px solid rgba(20, 28, 54, 0.08);
  border-radius: 50%;
}

.flag-us {
  background: repeating-linear-gradient(180deg, #e53e4f 0 2px, #fff 2px 4px);
}

.flag-us::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 53%;
  background: #2454a6;
  content: "";
}

.flag-uk {
  background: linear-gradient(32deg, transparent 42%, #fff 42% 50%, #d91f3d 50% 55%, #fff 55% 63%, transparent 63%),
    linear-gradient(-32deg, transparent 42%, #fff 42% 50%, #d91f3d 50% 55%, #fff 55% 63%, transparent 63%), #234a9c;
}

.flag-de {
  background: linear-gradient(#191919 0 33%, #dc2b36 33% 66%, #f0c829 66%);
}

.flag-ca {
  background: linear-gradient(90deg, #d82d3d 0 25%, #fff 25% 75%, #d82d3d 75%);
}

.flag-au {
  background: #214b9b;
}

.flag-au::before {
  position: absolute;
  top: 7px;
  right: 5px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: -6px -4px #fff, -7px 5px #fff;
  content: "";
}

.flag-jp {
  background: #fff;
}

.flag-jp::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  background: #d92e48;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

.ip-card {
  justify-content: space-between;
  margin-top: 16px;
  padding: 12px 14px;
}

.ip-card div {
  display: flex;
  flex-direction: column;
}

.ip-card svg {
  width: 19px;
  height: 19px;
  color: #7a83a0;
}

.phone-home {
  position: absolute;
  z-index: 10;
  right: 50%;
  bottom: 8px;
  width: 105px;
  height: 4px;
  background: #13151b;
  border-radius: 999px;
  transform: translateX(50%);
}

/* Feature strip */
.feature-strip {
  position: relative;
  z-index: 8;
  background: #fff;
}

.strip-heading {
  text-align: center;
}

.strip-heading h2 {
  margin-bottom: 42px;
  font-size: clamp(25px, 2.45vw, 32px);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 2px 24px;
  border-right: 1px solid var(--line);
}

.mini-feature:first-child {
  padding-left: 0;
}

.mini-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.mini-feature h3 {
  margin: 1px 0 8px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.mini-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.mini-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.mini-icon svg {
  width: 25px;
  height: 25px;
}

.icon-blue {
  color: var(--primary);
  background: #edf0ff;
}

.icon-green {
  color: var(--green);
  background: #e7faef;
}

.icon-amber {
  color: var(--amber);
  background: #fff4d9;
}

.icon-purple {
  color: var(--purple);
  background: #f5eaff;
}

/* Devices dark section */
.devices-section {
  position: relative;
  padding: 90px 0 0;
  color: #fff;
  background: #030e2c;
  overflow: hidden;
}

.devices-section::before {
  position: absolute;
  top: 48px;
  right: 19%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 40% 40%, rgba(73, 91, 164, 0.28), transparent 66%);
  border: 1px solid rgba(108, 126, 194, 0.08);
  border-radius: 50%;
  content: "";
}

.devices-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-left {
  bottom: 100px;
  left: -160px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(68, 83, 166, 0.18), transparent 70%);
}

.orb-right {
  top: 70px;
  right: -110px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(49, 73, 143, 0.22), transparent 70%);
}

.devices-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: 38px;
  min-height: 510px;
}

.devices-copy {
  padding: 20px 0 92px;
}

.devices-copy h2,
.devices-copy h3 {
  color: #fff;
}

.devices-copy h2 {
  margin-bottom: 20px;
}

.devices-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 26px;
  color: #c2cae0;
  font-size: 15px;
}

.platform-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
}

.platform-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9deed;
  font-size: 12px;
}

.platform-list svg {
  width: 23px;
  height: 23px;
  color: #a7b0c9;
}

.device-stage {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 72px;
}

.devices-vpn-image {
  width: min(100%, 680px);
  height: auto;
  display: block;
  object-fit: cover;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.laptop {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1.65;
  padding: 11px;
  background: #07080c;
  border: 2px solid #676c76;
  border-radius: 14px 14px 5px 5px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.37);
}

.laptop-screen::after {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #343842;
  border-radius: 50%;
  transform: translateX(-50%);
  content: "";
}

.laptop-base {
  position: relative;
  width: 110%;
  height: 16px;
  margin-left: -5%;
  background: linear-gradient(180deg, #c6c9ce 0%, #70747c 48%, #3b3f47 100%);
  border-radius: 2px 2px 14px 14px;
}

.laptop-base::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 115px;
  height: 5px;
  background: #444851;
  border-radius: 0 0 8px 8px;
  transform: translateX(-50%);
  content: "";
}

.desktop-app {
  height: 100%;
  display: grid;
  grid-template-columns: 24% 39% 37%;
  overflow: hidden;
  color: #f6f7fb;
  background: #111720;
  border-radius: 4px;
}

.desktop-app aside {
  padding: 18px 12px;
  background: #141a23;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.desktop-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  font-size: 9px;
  font-weight: 750;
}

.desktop-brand img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.desktop-app aside a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  padding: 8px 9px;
  color: #8f98aa;
  border-radius: 5px;
  font-size: 8px;
}

.desktop-app aside a span {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.desktop-app aside a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.desktop-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 50% 55%, rgba(31, 197, 109, 0.17), transparent 47%), #10161e;
}

.desktop-status {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #bdc5d4;
  font-size: 9px;
}

.desktop-status i {
  width: 5px;
  height: 5px;
  background: #21c874;
  border-radius: 50%;
}

.desktop-status strong {
  color: #38d98a;
}

.desktop-power {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  margin-top: 25px;
  color: #fff;
  background: #1dc66f;
  border: 14px solid rgba(33, 200, 116, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(33, 200, 116, 0.07), 0 0 38px rgba(33, 200, 116, 0.28);
}

.desktop-power svg {
  width: 30px;
  height: 30px;
}

.desktop-locations {
  padding: 20px 18px;
  background: #141a23;
}

.desktop-locations > p {
  margin-bottom: 16px;
  color: #8791a5;
  font-size: 9px;
}

.desktop-locations > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.desktop-locations .flag {
  width: 20px;
  height: 15px;
}

.desktop-locations b {
  display: flex;
  flex-direction: column;
  color: #edf0f6;
  font-size: 8px;
  line-height: 1.35;
}

.desktop-locations small {
  color: #788398;
  font-size: 6px;
  font-weight: 500;
}

.desktop-locations em {
  color: #9ea8bb;
  font-size: 6px;
  font-style: normal;
}

.mini-phone {
  position: absolute;
  z-index: 4;
  bottom: 35px;
  left: -12px;
  width: 126px;
  height: 252px;
  padding: 5px;
  border-radius: 25px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px #6f747e;
}

.mini-phone .phone-topbar {
  height: 24px;
  padding-inline: 8px;
  border-radius: 20px 20px 0 0;
  font-size: 5px;
}

.mini-phone .dynamic-island {
  width: 35px;
  height: 10px;
}

.mini-phone-content {
  height: calc(100% - 24px);
  padding: 27px 10px 10px;
  background: #10161e;
}

.mini-phone-content .desktop-status {
  justify-content: center;
  font-size: 5px;
}

.mini-power {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 28px auto 36px;
  color: #fff;
  background: #1ec76f;
  border: 10px solid rgba(31, 200, 113, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(31, 200, 113, 0.06);
}

.mini-power svg {
  width: 20px;
  height: 20px;
}

.mini-server {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px;
  background: #191f28;
  border-radius: 5px;
}

.mini-server .flag {
  width: 15px;
  height: 11px;
}

.mini-server b {
  font-size: 5px;
}

.stats-card {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: -55px;
  padding: 27px 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(230, 233, 245, 0.9);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(13, 23, 53, 0.16);
}

.stats-card > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 4px 22px;
  border-right: 1px solid var(--line);
}

.stats-card > div:first-child {
  padding-left: 0;
}

.stats-card > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.stat-icon {
  grid-row: 1 / 3;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stats-card b {
  align-self: end;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.stats-card small {
  align-self: start;
  color: #707a96;
  font-size: 12px;
}

/* Benefits */
.benefits-section {
  background: #fff;
}

.section-heading {
  margin-bottom: 50px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 6px;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered > p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 22px;
}

.benefit-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.benefit-card-large {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.benefit-card-large::before {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(78, 86, 244, 0.28), transparent 68%);
  border-radius: 50%;
  content: "";
}

.benefit-copy {
  position: relative;
  z-index: 3;
  max-width: 58%;
}

.benefit-card-large h3 {
  color: #fff;
  font-size: 25px;
}

.benefit-card-large p {
  color: #c4cbde;
  font-size: 15px;
}

.number-chip {
  width: 38px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.benefit-card-large .number-chip {
  color: #cbd0ff;
  background: rgba(100, 111, 245, 0.2);
}

.benefit-card-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #f6f7ff 0%, #fff 76%);
  border-color: #dce1fb;
  box-shadow: 0 24px 58px rgba(42, 53, 126, 0.12);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card-protocols {
  background: linear-gradient(180deg, #f8f4ff 0%, #fff 76%);
  border-color: #e6dcfb;
  box-shadow: 0 24px 58px rgba(76, 52, 142, 0.12);
}

.benefit-card-visual > .number-chip {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  margin: 0;
  color: #3942d8;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(53, 61, 157, 0.14);
  backdrop-filter: blur(12px);
}

.benefit-card-protocols > .number-chip {
  color: #7743d8;
}

.benefit-card-art {
  position: relative;
  height: 190px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #f2f3ff;
}

.benefit-card-art::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(246, 247, 255, 0), #f6f7ff);
  content: "";
}

.benefit-card-protocols .benefit-card-art::after {
  background: linear-gradient(180deg, rgba(248, 244, 255, 0), #f8f4ff);
}

.benefit-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.025);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.benefit-card-protocols .benefit-card-art img {
  object-position: 49% 52%;
}

.benefit-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 8px 28px 28px;
}

.benefit-kicker {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.benefit-card-protocols .benefit-kicker {
  color: #804fd5;
}

.benefit-card-content h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.benefit-card-content > p:not(.benefit-kicker) {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.benefit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.benefit-meta span {
  padding: 6px 9px;
  color: #4e5681;
  background: rgba(238, 240, 255, 0.88);
  border: 1px solid #e1e4fb;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-card-protocols .benefit-meta span {
  color: #604d82;
  background: rgba(245, 239, 255, 0.9);
  border-color: #eadffa;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card-visual:hover {
    border-color: #cbd2fb;
    box-shadow: 0 30px 70px rgba(42, 53, 126, 0.17);
    transform: translateY(-6px);
  }

  .benefit-card-protocols:hover {
    border-color: #dacaf6;
    box-shadow: 0 30px 70px rgba(76, 52, 142, 0.17);
  }

  .benefit-card-visual:hover .benefit-card-art img {
    transform: scale(1.075);
  }
}

.benefit-card > p {
  margin-bottom: 0;
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 21px;
  color: #d4d9e9;
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #56dc9a;
  border-radius: 50%;
  content: "";
}

.connection-visual {
  position: absolute;
  right: -25px;
  bottom: -22px;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
}

.connection-visual > div {
  position: relative;
  z-index: 3;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(78, 86, 244, 0.55);
}

.connection-visual svg {
  width: 42px;
  height: 42px;
}

.connection-ring {
  position: absolute;
  border: 1px solid rgba(143, 154, 255, 0.22);
  border-radius: 50%;
}

.ring-a {
  inset: 22px;
  background: rgba(78, 86, 244, 0.08);
}

.ring-b {
  inset: 0;
}

/* Server locations showcase */
.server-section {
  position: relative;
  padding-block: 82px;
  overflow: hidden;
  background: #f8f9ff;
}

.server-network-backdrop {
  position: absolute;
  top: 110px;
  left: 50%;
  width: max(100%, 1440px);
  max-width: none;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  transform: translateX(-50%);
}

.server-showcase {
  position: relative;
  z-index: 2;
}

.server-showcase-heading {
  display: grid;
  grid-template-columns: minmax(245px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: 38px;
  margin-bottom: 42px;
}

.server-count-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(42, 53, 126, 0.14);
}

.server-count-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-strong);
  border-radius: 50%;
}

.server-count-icon svg {
  width: 34px;
  height: 34px;
}

.server-count-copy {
  display: grid;
  gap: 3px;
}

.server-count-copy strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.server-count-copy strong b {
  color: var(--primary);
  font-size: 42px;
  font-weight: 800;
}

.server-count-copy > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.server-showcase-copy h2 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(36px, 4.35vw, 56px);
  line-height: 1.08;
}

.server-showcase-copy h2 em {
  color: var(--primary);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(78, 86, 244, 0.42);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.server-showcase-copy > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.server-regions {
  display: grid;
  grid-template-areas:
    "america europe"
    "asia europe";
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 22px;
}

.server-locations-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.server-locations-cta .btn {
  min-width: 220px;
}

.server-locations-cta .custom-icon {
  width: 20px;
  height: 20px;
}

#region-america {
  grid-area: america;
}

#region-asia-oceania {
  grid-area: asia;
}

#region-europe {
  grid-area: europe;
}

.server-region-card {
  min-width: 0;
  min-height: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 222, 245, 0.9);
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(33, 47, 105, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.server-region-card-featured {
  min-height: 0;
}

.server-region-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.server-region-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(78, 86, 244, 0.26);
}

.server-region-icon svg {
  width: 24px;
  height: 24px;
}

.server-region-header h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 20px;
  white-space: nowrap;
}

.server-region-rule {
  height: 1px;
  flex: 1;
  background: rgba(78, 86, 244, 0.24);
}

.server-location-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.server-location-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 4px 1px;
  text-align: center;
  border-radius: 12px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.server-location-flag {
  width: 40px;
  height: 27px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 24, 47, 0.09);
  border-radius: 5px;
  box-shadow: 0 6px 14px rgba(31, 42, 90, 0.12);
}

.server-location-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.server-location-item strong {
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.server-location-grid-featured {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.server-region-visual {
  height: 126px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--primary-soft);
  border: 1px solid #e1e4fb;
  border-radius: 18px;
}

.server-region-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.server-region-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-top: auto;
  padding: 22px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-strong);
  border-radius: 20px;
}

.server-region-action > div {
  display: grid;
  gap: 5px;
}

.server-region-action > div span {
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.server-region-action > div strong {
  max-width: 280px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .server-location-item:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 760;
  white-space: nowrap;
}

.text-link svg {
  width: 23px;
  height: 23px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Use cases */
.use-case-section {
  background: #fff;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.use-case-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.use-case-card:hover {
  border-color: #ccd2f5;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.use-case-art {
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
}

.use-case-art svg {
  width: 75px;
  height: 75px;
}

.art-wifi {
  color: var(--primary);
  background: #eef0ff;
}

.art-stream {
  color: #9b55f3;
  background: #f7edff;
}

.art-game {
  color: #13aa65;
  background: #e9fbf1;
}

.art-travel {
  color: #e59700;
  background: #fff4db;
}

.use-case-card h3 {
  font-size: 20px;
}

.use-case-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* How it works */
.how-section {
  overflow: hidden;
  background: var(--surface-soft);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 90px;
}

.how-phone-wrap {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.how-phone-wrap::before {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(78, 86, 244, 0.18), transparent 70%);
  border-radius: 50%;
  content: "";
}

.how-phone {
  width: 300px;
  height: 592px;
  padding: 7px;
}

.how-phone .phone-topbar {
  height: 39px;
}

.how-phone-screen {
  height: calc(100% - 39px);
  padding: 42px 24px 30px;
  text-align: center;
  background: #fff;
}

.how-phone-screen > img {
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  border-radius: 15px;
  box-shadow: 0 13px 32px rgba(78, 86, 244, 0.24);
}

.how-phone-screen h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.how-phone-screen > p {
  margin-bottom: 38px;
  font-size: 12px;
}

.how-power {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  margin: 0 auto 52px;
  color: var(--primary);
  background: #fff;
  border: 10px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(78, 86, 244, 0.07), 0 0 0 38px rgba(78, 86, 244, 0.035), 0 18px 40px rgba(78, 86, 244, 0.2);
}

.how-power svg {
  width: 48px;
  height: 48px;
}

.how-location {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.how-location b {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.how-location small {
  color: #8991a6;
  font-size: 9px;
  font-weight: 500;
}

.how-location > span:last-child {
  color: #707996;
  font-size: 20px;
}

.how-copy h2 {
  max-width: 610px;
}

.steps-list {
  display: grid;
  gap: 22px;
  margin: 36px 0 34px;
}

.steps-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
}

.steps-list article > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.steps-list h3 {
  margin: 1px 0 4px;
  font-size: 18px;
}

.steps-list p {
  margin: 0;
  font-size: 14px;
}

/* Testimonials */
.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: #fff;
  font-family: "Plus Jakarta Sans", var(--font-sans);
}

.testimonial-section::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  left: 50%;
  background: radial-gradient(circle, rgba(78, 86, 244, 0.08), transparent 70%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.review-heading {
  position: relative;
  max-width: 1040px;
  margin: 0 auto 42px;
  text-align: center;
}

.review-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.25vw, 52px);
  line-height: 1.08;
}

.review-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: #69738f;
  font-size: 16px;
}

.review-carousel {
  position: relative;
  padding: 0 4px 38px;
}

.review-carousel-viewport {
  overflow: hidden;
  padding: 8px 0 12px;
  touch-action: pan-y;
}

.review-carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 460ms cubic-bezier(0.22, 0.72, 0.22, 1);
  will-change: transform;
}

.review-card {
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex: 0 0 calc((100% - 44px) / 3);
  flex-direction: column;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(26, 38, 90, 0.08);
  text-align: left;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars img {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  flex: 1;
  margin: 0 0 22px;
  color: #2d374f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #253250;
  background: #eaf7ed;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.review-avatar-blue {
  background: #eef0ff;
}

.review-avatar-gold {
  background: #fff7d9;
}

.review-avatar-purple {
  background: #f2eaff;
}

.review-avatar-cyan {
  background: #e5f9fc;
}

.review-avatar-green {
  background: #e5faef;
}

.review-author {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.review-author strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-author small {
  color: #7b859f;
  font-size: 11px;
}

.review-play-store {
  width: 102px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
}

.review-carousel-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  padding: 0;
  place-items: center;
  color: #6d7893;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(26, 38, 90, 0.12);
  cursor: pointer;
  transform: translateY(-75%);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.review-carousel-control:hover {
  color: var(--primary);
  border-color: var(--primary-soft-strong);
  transform: translateY(-75%) scale(1.05);
}

.review-carousel-control img {
  width: 22px;
  height: 22px;
  opacity: 0.82;
}

.review-carousel-prev {
  left: -64px;
}

.review-carousel-next {
  right: -64px;
}

.review-carousel-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #dde2f7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.review-carousel-dot.is-active {
  width: 26px;
  background: var(--primary);
  border-radius: 999px;
}

.review-source-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.review-source-row span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #63708c;
}

.review-source-row .custom-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.review-source-row strong {
  overflow: hidden;
  color: #495672;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* FAQ */
.faq-section {
  background: var(--surface-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 72px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  max-width: 440px;
}

.support-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.support-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.support-card > span svg {
  width: 21px;
  height: 21px;
}

.support-card strong {
  font-size: 14px;
}

.support-card p {
  margin: 3px 0 0;
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item.is-open {
  border-color: #cdd3f8;
  box-shadow: var(--shadow-soft);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.faq-toggle-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--primary);
  transition: color 180ms ease, transform 180ms ease;
}

.faq-item button:hover .faq-toggle-icon {
  color: var(--primary-dark);
}

.faq-item button[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
}

/* Final CTA + footer */
.final-cta-section {
  padding: 88px 0 42px;
  background: #fff;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 352px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 220px minmax(165px, 0.55fr);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 26px 62px;
  background: #f5f7ff url("../assets/images/final-cta-world-map.png") center / cover no-repeat;
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(31, 45, 109, 0.08);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  padding-left: 4px;
}

.final-cta h2 {
  max-width: 520px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.final-cta h2 span {
  color: var(--primary);
}

.final-cta p {
  max-width: 485px;
  margin: 0;
  color: #596582;
  font-size: 14px;
  line-height: 1.65;
}

.final-cta-device {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-width: 0;
}

.final-cta-device img {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 195px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 22px rgba(17, 28, 68, 0.13));
}

.final-cta-stores {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.final-cta-store {
  width: 166px;
  display: block;
  border-radius: 9px;
  transition: transform 180ms ease, filter 180ms ease;
}

.final-cta-store img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.final-cta-store[href]:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(17, 28, 68, 0.16));
}

.site-footer {
  padding: 0 0 30px;
  color: var(--ink);
  background: #fff;
}

.footer-panel {
  padding: 50px 58px 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(78, 86, 244, 0.08), transparent 34%),
    linear-gradient(145deg, #fbfcff 0%, #f7f9ff 100%);
  border: 1px solid rgba(78, 86, 244, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(31, 45, 109, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(115px, 0.72fr));
  gap: 42px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
}

.footer-logo strong {
  color: var(--primary);
  font-weight: 800;
}

.footer-brand > p {
  max-width: 320px;
  margin: 18px 0 22px;
  color: #66708d;
  font-size: 13px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #132044;
  background: #fff;
  border: 1px solid rgba(78, 86, 244, 0.08);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(31, 45, 109, 0.08);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-social-icon:hover {
  color: var(--primary);
  border-color: rgba(78, 86, 244, 0.24);
  box-shadow: 0 10px 24px rgba(78, 86, 244, 0.14);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin: 2px 0 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-column a {
  color: #66708d;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-divider {
  height: 1px;
  margin-top: 42px;
  background: rgba(78, 86, 244, 0.11);
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  color: #727c98;
  font-size: 12px;
}

.footer-bottom a {
  color: var(--primary-dark);
  font-weight: 700;
}

.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-language {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 128px;
  color: #53607f;
}

.footer-language-globe {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--primary);
}

.footer-language select {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3px 24px 3px 0;
  color: #53607f;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-size: 12.5px;
  font-weight: 600;
}

.footer-language-chevron {
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
  color: #53607f;
  pointer-events: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Visual sitemap page */
.sitemap-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--network-info-height) + 76px) 0 88px;
  background:
    radial-gradient(circle at 82% 42%, rgba(78, 86, 244, 0.12), transparent 31%),
    linear-gradient(145deg, #fbfcff 0%, #f3f5ff 100%);
}

.sitemap-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.sitemap-hero-copy h1 {
  max-width: 650px;
  font-size: 56px;
}

.sitemap-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: #5c6784;
  font-size: 17px;
  line-height: 1.75;
}

.sitemap-hero-visual {
  width: min(100%, 500px);
  margin-left: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(78, 86, 244, 0.12);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(31, 45, 109, 0.14);
}

.sitemap-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.sitemap-directory-section {
  background: var(--surface-soft);
}

.sitemap-directory-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.sitemap-directory-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin-inline: auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sitemap-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(26, 38, 90, 0.07);
}

.sitemap-card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  bottom: -82px;
  background: rgba(78, 86, 244, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sitemap-card-wide {
  grid-column: 1 / -1;
}

.sitemap-card-number {
  width: 48px;
  height: 34px;
  display: grid;
  margin-bottom: 22px;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.sitemap-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.sitemap-card > p {
  max-width: 580px;
  margin-bottom: 24px;
}

.sitemap-link-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sitemap-link-list a,
.sitemap-language-grid a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #4b5775;
  background: #f8f9ff;
  border: 1px solid rgba(78, 86, 244, 0.1);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.sitemap-link-list a:hover,
.sitemap-language-grid a:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-color: var(--primary-soft-strong);
  transform: translateY(-2px);
}

.sitemap-language-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sitemap-store-link {
  width: 210px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(17, 28, 68, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sitemap-store-link:hover {
  box-shadow: 0 16px 34px rgba(17, 28, 68, 0.19);
  transform: translateY(-2px);
}

.sitemap-store-link img {
  width: 100%;
  height: auto;
}

.sitemap-footer-main {
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(130px, 0.72fr));
}

/* Legal and 404 pages */
.legal-hero {
  padding: calc(var(--header-height) + 90px) 0 55px;
  background: var(--surface-soft);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 10px;
  font-size: 46px;
}

.legal-content {
  padding: 70px 0 100px;
}

.legal-content article h2 {
  margin-top: 45px;
  font-size: 25px;
}

.legal-content article p,
.legal-content article li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content article ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  list-style: disc;
}

.legal-content article a {
  color: var(--primary-dark);
  font-weight: 700;
}

.notice {
  padding: 20px;
  color: #5d4c22;
  background: #fff7df;
  border: 1px solid #f3df9c;
  border-radius: 14px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
  background: var(--surface-soft);
}

.error-page > div {
  max-width: 620px;
}

.error-page .brand {
  justify-content: center;
  margin-bottom: 36px;
}

.error-code {
  color: var(--primary);
  font-size: 92px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.error-page h1 {
  margin: 18px 0 8px;
  font-size: 38px;
}

.error-page p {
  margin-bottom: 28px;
}

.error-help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 24px;
}

.error-help-links a {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-download-bar {
  display: none;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 23px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 24px;
  }

  .hero-phone {
    width: 305px;
    height: 606px;
  }

  .phone-app {
    min-height: 539px;
  }

  .power-control {
    width: 170px;
    height: 170px;
  }

  .power-core {
    width: 105px;
    height: 105px;
  }

  .devices-grid {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .mini-phone {
    left: 0;
  }

  .stats-card {
    padding-inline: 22px;
  }

  .stats-card > div {
    padding-inline: 13px;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
  }

  .server-location-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .server-location-grid-featured {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
    --network-info-height: 0px;
  }

  .network-info-bar {
    display: none;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--network-info-height));
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - var(--header-height));
    padding: 18px 22px 28px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(26, 38, 90, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.btn) {
    padding: 13px 6px;
    color: var(--ink-soft);
    border-bottom: 1px solid #eef0f7;
    font-weight: 700;
  }

  .mobile-nav .btn {
    margin-top: 12px;
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero h1,
  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-map {
    top: 430px;
    right: 50%;
    width: 900px;
    transform: translateX(50%);
  }

  .map-pin,
  .map-shield {
    display: none;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-wave {
    left: -20%;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .mini-feature:nth-child(2) {
    border-right: 0;
  }

  .mini-feature:nth-child(3) {
    padding-left: 0;
  }

  .devices-section {
    padding-top: 70px;
  }

  .devices-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .devices-copy {
    max-width: 690px;
    margin-inline: auto;
    padding-bottom: 20px;
  }

  .devices-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .platform-list {
    justify-content: center;
  }

  .device-stage {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .devices-vpn-image {
    width: min(100%, 660px);
  }

  .mini-phone {
    left: 2%;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .stats-card > div:nth-child(2) {
    border-right: 0;
  }

  .stats-card > div:nth-child(3),
  .stats-card > div:nth-child(4) {
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

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

  .benefit-card-large {
    grid-column: 1 / -1;
  }

  .how-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .server-showcase-heading {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 28px;
  }

  .server-count-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 22px;
  }

  .server-count-icon {
    width: 56px;
    height: 56px;
  }

  .server-count-copy strong {
    font-size: 18px;
  }

  .server-count-copy strong b {
    font-size: 36px;
  }

  .server-region-card {
    padding: 22px;
  }

  .server-location-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .server-location-grid-featured {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .how-grid {
    gap: 45px;
  }

  .how-phone-wrap {
    min-height: 560px;
  }

  .how-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .review-carousel-prev {
    left: -18px;
  }

  .review-carousel-next {
    right: -18px;
  }

  .review-source-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .faq-heading {
    position: static;
    max-width: 720px;
  }

  .final-cta {
    min-height: 320px;
    grid-template-columns: minmax(0, 1.25fr) 185px 150px;
    gap: 22px;
    padding: 24px 34px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta-device img {
    top: 8px;
    width: 176px;
  }

  .final-cta-store {
    width: 145px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .container,
  .container-narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .trust-pill {
    margin-bottom: 21px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 46px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .btn {
    width: min(100%, 310px);
  }

  .hero-proof {
    align-items: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 580px;
    margin-top: -5px;
  }

  .hero-phone {
    width: 282px;
    height: 560px;
  }

  .phone-topbar {
    height: 38px;
  }

  .phone-app {
    min-height: 504px;
    padding-inline: 18px;
  }

  .app-nav {
    margin-bottom: 19px;
  }

  .power-control {
    width: 158px;
    height: 158px;
    margin-bottom: 18px;
  }

  .power-core {
    width: 98px;
    height: 98px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mini-feature,
  .mini-feature:first-child,
  .mini-feature:nth-child(3),
  .mini-feature:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-feature:last-child {
    border-bottom: 0;
  }

  .device-stage {
    min-height: 0;
    padding-bottom: 66px;
  }

  .mini-phone {
    width: 95px;
    height: 190px;
    bottom: 42px;
  }

  .mini-phone-content {
    padding-top: 19px;
  }

  .mini-power {
    width: 46px;
    height: 46px;
    margin: 18px auto 27px;
    border-width: 7px;
  }

  .mini-power svg {
    width: 15px;
    height: 15px;
  }

  .stats-card {
    grid-template-columns: 1fr;
    margin-bottom: -78px;
    padding: 20px;
  }

  .stats-card > div,
  .stats-card > div:first-child,
  .stats-card > div:nth-child(3),
  .stats-card > div:nth-child(4) {
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .stats-card > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .stats-card > div:last-child {
    padding-bottom: 0;
  }

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

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

  .benefit-card-large {
    min-height: 520px;
  }

  .benefit-card-visual {
    min-height: 450px;
  }

  .benefit-card-art {
    height: 245px;
  }

  .benefit-card-content {
    padding: 8px 26px 26px;
  }

  .benefit-copy {
    max-width: 100%;
  }

  .connection-visual {
    right: 50%;
    bottom: -30px;
    transform: translateX(50%);
  }

  .server-showcase-heading {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .server-count-card {
    min-height: 0;
  }

  .server-regions {
    grid-template-areas:
      "america"
      "asia"
      "europe";
    grid-template-columns: 1fr;
  }

  .server-locations-cta {
    margin-top: 30px;
  }

  .server-locations-cta .btn {
    width: 100%;
  }

  .server-region-card,
  .server-region-card-featured {
    min-height: 0;
  }

  .server-location-grid,
  .server-location-grid-featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .server-network-backdrop {
    top: 250px;
    width: auto;
    height: 72%;
    object-fit: cover;
  }

  .server-region-action {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 18px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-art {
    height: 130px;
  }

  .how-phone-wrap {
    min-height: 520px;
  }

  .how-phone-wrap::before {
    width: 360px;
    height: 360px;
  }

  .how-phone {
    width: 264px;
    height: 520px;
  }

  .how-phone-screen {
    padding: 30px 18px 20px;
  }

  .how-power {
    width: 118px;
    height: 118px;
    margin-bottom: 42px;
  }

  .quote-card {
    padding: 22px;
  }

  .final-cta-section {
    padding: 70px 0 34px;
  }

  .final-cta {
    min-height: 680px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 330px;
    gap: 22px;
    padding: 34px 24px 0;
    text-align: center;
    background-position: center;
  }

  .final-cta-copy {
    padding-left: 0;
  }

  .final-cta h2 {
    margin-inline: auto;
    font-size: 29px;
  }

  .final-cta p {
    margin-inline: auto;
    font-size: 13px;
  }

  .final-cta p br {
    display: none;
  }

  .final-cta-stores {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .final-cta-store {
    width: min(44%, 150px);
  }

  .final-cta-device {
    order: 3;
    min-height: 330px;
  }

  .final-cta-device img {
    top: 8px;
    width: 216px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .brand span {
    max-width: 175px;
  }

  .hero-proof {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .devices-copy h2 {
    font-size: 34px;
  }

  .platform-list {
    gap: 14px;
  }

  .laptop-screen {
    padding: 7px;
  }

  .desktop-brand {
    margin-bottom: 14px;
  }

  .desktop-app aside {
    padding: 10px 7px;
  }

  .desktop-app aside a {
    padding: 5px;
  }

  .desktop-locations {
    padding: 12px 9px;
  }

  .desktop-locations > p {
    margin-bottom: 8px;
  }

  .desktop-locations > div {
    gap: 4px;
    margin-bottom: 8px;
  }

  .desktop-power {
    width: 70px;
    height: 70px;
    border-width: 10px;
  }

  .desktop-power svg {
    width: 23px;
    height: 23px;
  }

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

  .footer-brand,
  .footer-column {
    grid-column: auto;
  }
}

@media (max-width: 1040px) {
  .footer-panel {
    padding: 44px 40px 22px;
  }

  .footer-main {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand > p {
    max-width: 500px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-bottom: 22px;
  }

  .footer-panel {
    padding: 36px 26px 20px;
    border-radius: 18px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-divider {
    margin-top: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .footer-panel {
    padding-inline: 22px;
  }

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

  .footer-brand,
  .footer-column {
    grid-column: auto;
  }

  .footer-logo {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  body.has-mobile-download-bar {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .mobile-download-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    width: min(calc(100% - 24px), 520px);
    min-height: 76px;
    margin-inline: auto;
    padding: 10px 11px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(78, 86, 244, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(17, 27, 67, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .mobile-download-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-download-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), var(--primary-deep));
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(78, 86, 244, 0.3);
  }

  .mobile-download-icon svg {
    width: 25px;
    height: 25px;
  }

  .mobile-download-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .mobile-download-copy strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-download-copy small {
    overflow: hidden;
    margin-top: 3px;
    color: #737d98;
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-download-store {
    width: 118px;
    display: block;
    border-radius: 8px;
    transition: transform 180ms ease, filter 180ms ease;
  }

  .mobile-download-store:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
  }

  .mobile-download-store img {
    width: 100%;
    height: auto;
    border-radius: inherit;
  }
}

@media (max-width: 430px) {
  .mobile-download-bar {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 9px;
    border-radius: 18px;
  }

  .mobile-download-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .mobile-download-copy strong {
    font-size: 12px;
  }

  .mobile-download-store {
    width: 110px;
  }
}

@media (max-width: 430px) {
  .server-showcase-copy h2 {
    font-size: 34px;
  }

  .server-count-card {
    grid-template-columns: 54px 1fr;
    padding: 18px;
    border-radius: 22px;
  }

  .server-count-icon {
    width: 54px;
    height: 54px;
  }

  .server-count-icon svg {
    width: 29px;
    height: 29px;
  }

  .server-count-copy strong {
    font-size: 17px;
  }

  .server-count-copy strong b {
    font-size: 34px;
  }

  .server-region-card {
    padding: 20px;
    border-radius: 22px;
  }

  .server-region-header {
    gap: 10px;
    margin-bottom: 18px;
  }

  .server-region-icon {
    width: 42px;
    height: 42px;
  }

  .server-region-icon svg {
    width: 21px;
    height: 21px;
  }

  .server-region-header h3 {
    font-size: 17px;
  }

  .server-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
  }

  .server-location-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .server-region-action {
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 1120px) {
  .locations-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 40px;
  }

  .locations-hero h1 {
    font-size: 56px;
  }

  .top-locations-map {
    min-height: 500px;
  }

  .top-location-card {
    gap: 16px;
    padding: 16px;
  }

  .top-location-card-large .top-location-flag {
    width: 82px;
    height: 82px;
  }

  .country-directory-controls {
    align-items: center;
    flex-direction: row;
  }

  .country-directory-search {
    width: 220px;
  }

  .country-directory-filters {
    justify-content: flex-start;
  }

  .country-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .locations-hero {
    padding: calc(var(--header-height) + 68px) 0 84px;
  }

  .locations-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .locations-hero-copy,
  .locations-hero h1,
  .locations-hero-description {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .locations-hero-actions,
  .locations-hero-highlights,
  .locations-breadcrumb {
    justify-content: center;
  }

  .locations-hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .top-locations-section,
  .country-directory-section {
    padding: 90px 0;
  }

  .top-locations-map {
    min-height: auto;
    padding: 24px;
  }

  .top-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .top-location-card,
  .top-location-card-1,
  .top-location-card-2,
  .top-location-card-3,
  .top-location-card-4,
  .top-location-card-5 {
    grid-column: auto;
    min-height: 132px;
    margin-top: 0;
  }

  .top-location-card-5 {
    grid-column: 1 / -1;
  }

  .top-location-card-large .top-location-flag,
  .top-location-flag {
    width: 70px;
    height: 70px;
  }

  .country-directory-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .country-directory-search {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .locations-hero {
    padding: calc(var(--header-height) + 54px) 0 72px;
  }

  .locations-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .locations-hero-description {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.7;
  }

  .locations-hero-actions .btn {
    width: 100%;
  }

  .locations-hero-highlights {
    gap: 8px;
    margin-top: 24px;
  }

  .locations-hero-highlights span {
    padding: 8px 10px;
    font-size: 10px;
  }

  .locations-hero-visual {
    padding: 0;
    border-radius: 24px;
  }

  .locations-hero-visual img {
    border-radius: 24px;
  }

  .locations-page .server-section {
    padding-top: 78px;
  }

  .top-locations-heading,
  .country-directory-heading {
    margin-bottom: 34px;
  }

  .top-locations-heading h2,
  .country-directory-heading h2 {
    font-size: 36px;
  }

  .top-locations-map {
    padding: 14px;
    border-radius: 24px;
  }

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

  .top-location-card,
  .top-location-card-5 {
    grid-column: auto;
    min-height: 112px;
    padding: 14px;
    border-radius: 18px;
  }

  .top-location-card-large .top-location-flag,
  .top-location-flag {
    width: 62px;
    height: 62px;
    border-width: 5px;
  }

  .top-location-copy strong,
  .top-location-card-small .top-location-copy strong {
    font-size: 17px;
  }

  .country-directory-controls {
    padding: 14px;
    border-radius: 18px;
  }

  .country-directory-filters {
    gap: 7px;
  }

  .country-directory-filters button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 10px;
  }

  .country-directory-status {
    text-align: left;
  }

  .country-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .country-directory-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }

  .country-directory-flag {
    width: 46px;
    height: 31px;
  }
}

@media (max-width: 520px) {
  .country-directory-grid {
    grid-template-columns: 1fr;
  }

  .country-directory-card {
    align-items: center;
    flex-direction: row;
    min-height: 72px;
  }
}

@media (max-width: 350px) {
  .mobile-download-copy small {
    display: none;
  }

  .mobile-download-copy strong {
    font-size: 11px;
  }

  .mobile-download-store {
    width: 96px;
  }
}

@media (max-width: 720px) {
  .testimonial-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .review-heading {
    margin-bottom: 34px;
  }

  .review-heading h2 {
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.12;
  }

  .review-heading p {
    font-size: 14px;
  }

  .review-carousel {
    padding-right: 0;
    padding-bottom: 48px;
    padding-left: 0;
  }

  .review-card {
    min-height: 288px;
    flex-basis: 100%;
    padding: 24px 20px 22px;
  }

  .review-card blockquote {
    font-size: 15px;
    line-height: 1.7;
  }

  .review-play-store {
    width: 94px;
  }

  .review-carousel-control {
    top: auto;
    bottom: -2px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .review-carousel-control:hover {
    transform: scale(1.04);
  }

  .review-carousel-prev {
    left: 0;
  }

  .review-carousel-next {
    right: 0;
  }

  .review-carousel-dots {
    bottom: 12px;
    padding: 0 48px;
  }

  .review-source-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin-top: 48px;
  }

  .review-source-row span:last-child {
    grid-column: 1 / -1;
  }

  .review-source-row strong {
    font-size: 12px;
  }
}

@media (max-width: 960px) {
  .sitemap-hero {
    padding: calc(var(--header-height) + 66px) 0 82px;
  }

  .sitemap-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .sitemap-hero-copy h1,
  .sitemap-hero-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .sitemap-hero-visual {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .sitemap-language-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .sitemap-hero {
    padding: calc(var(--header-height) + 52px) 0 70px;
  }

  .sitemap-hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .sitemap-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .sitemap-hero-copy .btn {
    width: 100%;
  }

  .sitemap-hero-visual {
    padding: 8px;
    border-radius: 24px;
  }

  .sitemap-hero-visual img {
    border-radius: 18px;
  }

  .sitemap-directory-heading {
    margin-bottom: 34px;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sitemap-card,
  .sitemap-card-wide {
    grid-column: auto;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .sitemap-card h2 {
    font-size: 24px;
  }

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

@media (max-width: 430px) {
  .sitemap-link-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
