@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

* {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --color-background: #FFFFFF;
  --color-surface: #F7F9FC;
  --color-border: #E2E5EA;
  --color-text-main: #1A1A1A;
  --color-text-secondary: #28303b;
  --color-primary: #1865c9;
  --color-primary-hover: #165FC0;
  /* Updated accent: dark blue */
  --color-accent: #0B3D91;
  --color-accent-dark:#b60911;
  --color-accent-hover: #082A65;
  --color-success: #29D884;
  --color-warning: #FFA654;
  --color-rating: #FFC94D;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-main);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas {
  max-width: 100%;
  display: block;
}

figure {
  margin: 0;
}

hr {
  border: 0;
  height: 1px;
  background: var(--color-border);
}

button {
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover, a:focus {
  /* use hover token instead of SCSS lighten() */
  color: var(--color-primary-hover);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7em;
  justify-content: center;
}
h2::before, h2::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--color-rating);
  flex-shrink: 0;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin: 0 0 0.5rem 0;
  color: var(--color-text-main);
}

small {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

/* Common button utility used across header, hero, footer etc. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease;
  vertical-align: middle;
  line-height: 1;
  border: none;
  color: inherit;
  background: transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  outline: none;
}
.form-control:focus {
  /* border and focus ring use CSS variable tokens */
  border-color: var(--color-primary);
  /* fallback shadow using a neutral rgba; adjust if you need dynamic color-based alpha */
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.06);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding-left: -0.5rem;
  padding-right: -0.5rem;
}

.col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex: 1 1 0;
}

.col-50 {
  flex-basis: 50%;
}

.col-33 {
  flex-basis: 33.333%;
}

.col-66 {
  flex-basis: 66.666%;
}

@media (max-width: 768px) {
  .col-50, .col-33, .col-66 {
    flex-basis: 100%;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.text-muted {
  color: var(--color-text-secondary);
}

.text-nowrap {
  white-space: nowrap;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1rem;
  color: var(--color-text-main);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-background);
  background: var(--color-accent);
}

section {
  padding: 1rem 0;
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }
  .lead {
    font-size: 1rem;
  }
}
.container {
  max-width: 1170px;
  padding: 0 15px;
}

.header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--color-text-main);
  /* Show submenu on hover, focus-within, or hover on submenu itself */
  /* Arrow indicator for submenu toggle buttons */
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}
.header__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.header__nav--desktop .header__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav--mobile {
  /* Mobile submenu expands on click */
  /* Expanded submenu when button has aria-expanded="true" */
}
.header__nav--mobile .header__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.header__nav--mobile a,
.header__nav--mobile .submenu-toggle {
  display: block;
  padding: 0.75rem 0.5rem;
  color: var(--color-text-main);
  text-decoration: none;
  border-radius: 6px;
}
.header__nav--mobile .header__submenu {
  position: static;
  display: none;
  overflow: hidden;
  max-height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  z-index: auto;
  transition: max-height 0.26s ease;
}
.header__nav--mobile .header__submenu li {
  padding: 0;
  margin: 0;
}
.header__nav--mobile .header__submenu a {
  display: block;
  padding: 0.5rem 1.5rem; /* right padding for hierarchy */
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s ease, color 0.12s ease;
}
.header__nav--mobile .header__submenu a:hover {
  background: rgba(26, 115, 232, 0.04);
  color: var(--color-text-main);
}
.header__nav--mobile .submenu-toggle[aria-expanded=true] + .header__submenu {
  display: block;
  max-height: 500px; /* available height for submenu list */
}
.header__item {
  position: relative;
}
.header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  background: transparent;
  transition: color 0.15s ease, background 0.15s ease, transform 0.08s ease;
  cursor: pointer;
  border: none;
}
.header__link:hover, .header__link:focus {
  color: var(--color-text-main);
  background: rgba(26, 26, 26, 0.03);
  outline: none;
  transform: translateY(-1px);
}
.header__link.is-active {
  color: var(--color-primary);
  background: rgba(26, 115, 232, 0.06);
  box-shadow: inset 0 -2px 0 var(--color-primary);
}
.header__submenu {
  position: absolute;
  left: 0;
  top: 100%; /* no extra gap to avoid dead zone */
  min-width: 200px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 22px rgba(25, 30, 40, 0.07);
  border-radius: 8px;
  padding: 0.5rem 0;
  display: none;
  z-index: 90;
}
.header__submenu li {
  padding: 0;
}
.header__submenu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.header__submenu a:hover {
  background: rgba(26, 115, 232, 0.04);
  color: var(--color-text-main);
}
.header .header__item:hover .header__submenu,
.header .header__item:focus-within .header__submenu,
.header .header__submenu:hover {
  display: block;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__search-btn, .header__mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-text-secondary);
}
.header__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0;
  /* Hamburger menu lines */
  /* Middle line */
  /* Transform to X (cross) when menu opens */
}
.header__mobile-toggle::before, .header__mobile-toggle::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease;
}
.header__mobile-toggle::before {
  top: 10px;
}
.header__mobile-toggle::after {
  bottom: 10px;
}
.header__mobile-toggle span {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: block;
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
.header__mobile-toggle[aria-expanded=true]::before {
  transform: translateY(9px) rotate(45deg);
}
.header__mobile-toggle[aria-expanded=true]::after {
  transform: translateY(-9px) rotate(-45deg);
}
.header__mobile-toggle[aria-expanded=true] span {
  opacity: 0;
  transform: translateY(-50%) rotate(45deg);
}
.header__mobile-toggle:hover, .header__mobile-toggle:focus {
  background: rgba(26, 26, 26, 0.04);
  outline: none;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(11, 61, 145, 0.12);
  transition: background 0.12s ease, transform 0.08s ease;
}
.header__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}
.header__mobile-panel {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1rem;
  /* Slide-in menu from right (hidden by default) */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85vw;
  max-width: 320px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
}
.header .submenu-toggle {
  position: relative;
  padding-right: 1.6rem;
  /* Rotate arrow up and highlight when submenu is open */
}
.header .submenu-toggle::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid var(--color-text-secondary);
  border-bottom: 2px solid var(--color-text-secondary);
  transition: transform 0.18s ease, border-color 0.12s ease;
  pointer-events: none;
}
.header .submenu-toggle[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(-135deg);
  border-color: var(--color-primary);
}
.header .submenu-toggle:hover::after {
  border-color: var(--color-text-main);
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .header .header__nav--desktop {
    display: none;
  }
  .header .header__mobile-toggle {
    display: inline-flex;
  }
  .header .header__logo img {
    height: 36px;
  }
}
@media (min-width: 901px) {
  .header .header__mobile-panel {
    display: none;
  }
}
.hero {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.06) 0%, rgba(0, 191, 166, 0.03) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 520px;
}
.hero__content {
  z-index: 2;
  max-width: 720px;
}
.hero__title {
  margin: 0 0 1rem;
  color: var(--color-text-main);
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero__subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.hero__btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.16);
}
.hero__btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.hero__btn--secondary {
  background: var(--color-background);
  color: var(--color-accent);
  border: 1px solid rgba(11, 61, 145, 0.12);
}
.hero__btn--secondary:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.hero__visual {
  position: relative;
  min-height: 420px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--color-surface), rgba(26, 115, 232, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at center, rgba(26, 115, 232, 0.14), transparent 45%);
  border-radius: 50%;
  opacity: 0.9;
}
.hero__visual::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(11, 61, 145, 0.12), transparent 45%);
  border-radius: 50%;
}
.hero__illustration {
  width: 100%;
  max-width: 300px;
  height: auto;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}
.hero__meta {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.hero__updated {
  display: inline-block;
  font-size: 0.75rem;
  color: #9CA3AF;
  padding: 0.35rem 0.5rem;
  background: transparent;
  border-radius: 4px;
  border-left: none;
  letter-spacing: 0.3px;
}

/* Float animation for illustration */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 3rem 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__visual {
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 2rem 0;
  }
  .hero__inner {
    gap: 1.25rem;
  }
  .hero__title {
    font-size: 1.6rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
  }
  .hero__actions {
    gap: 0.75rem;
  }
  .hero__btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .hero__visual {
    min-height: 220px;
  }
}
.hero__type {
  display: inline-block;
  background: #eef2ff;
  color: var(--color-primary, #1A73E8);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.hero__svg-label {
  fill: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.categories {
  padding: 4rem 0;
  background: var(--color-background);
}
.categories__header {
  text-align: center;
  margin-bottom: 3rem;
}
.categories__title {
  margin: 0 0 0.75rem;
  color: var(--color-text-main);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.categories__subtitle {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.categories__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.categories__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.1);
  transform: translateY(-4px);
}
.categories__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories__icon svg {
  width: 100%;
  height: 100%;
}
.categories__card-title {
  margin: 0;
  color: var(--color-text-main);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
.categories__card-desc {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}
.categories__card-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.categories__card-link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Responsive grid */
@media (max-width: 1200px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .categories {
    padding: 3rem 0;
  }
  .categories__title {
    font-size: 1.75rem;
  }
  .categories__subtitle {
    font-size: 0.95rem;
  }
  .categories__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .categories__card {
    padding: 1.5rem;
  }
}
.vpn-list {
  background: var(--color-background);
  padding: 1rem 0;
}
.vpn-list__header {
  text-align: center;
  margin-bottom: 2rem;
}
.vpn-list__subtitle {
  color: var(--color-text-secondary);
  margin: 0;
}
.vpn-list__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: vpn-counter;
}

/* Card: left | center | right */
.vpn-card {
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  gap: 0.75rem;
  align-items: start;
  padding: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: box-shadow 0.18s ease, transform 0.12s ease;
  position: relative;
  counter-increment: vpn-counter;
  /* wrapper навколо логотипа для абсолютного позиціонування плашки всередині */
  /* плашка всередині логотипа — тепер внизу, виступає за межі і підлаштовується під текст */
  /* Pros / Cons (компактніше) */
  /* Meta inline — компактно, горизонтально, без лівої лінії */
  /* Devices pill — компактно поряд з кнопкою країн */
  /* Ensure compact spacing between devices and countries button */
  /* hide detailed text on very small screens, keep icon */
  /* стрілка, що вказує на кнопку (коли плашка над кнопкою, стрілка внизу плашки) */
  /* адаптив: якщо місця зверху немає, показувати під кнопкою */
  /* Responsive */
}
.vpn-card:hover {
  box-shadow: 0 10px 30px rgba(11, 61, 145, 0.06);
}
.vpn-card__compare {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #E8EAED;
  border: none;
  border-radius: 50%;
  color: #5F6368;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}
.vpn-card__compare:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}
.vpn-card__compare:active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
  transform: scale(0.95);
}
.vpn-card__compare svg {
  width: 18px;
  height: 18px;
}
.vpn-card::before {
  content: counter(vpn-counter);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: var(--color-accent);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.vpn-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 28px;
}
.vpn-card__logo-wrap {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  overflow: visible; /* дозволяємо плашці виступати за межі wrap */
}
.vpn-card__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: var(--color-background);
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  display: block;
  z-index: 1;
}
.vpn-card__tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px; /* виступає за нижній край логотипа */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px; /* компактніші відступи */
  width: auto; /* підлаштовується під ширину тексту */
  white-space: nowrap; /* не ламати текст */
  font-size: 0.72rem; /* менший текст у плашці */
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-dark);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15, 35, 65, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 6;
}
.vpn-card__rating {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
  padding-top: 12px; /* трохи простору над рейтингом — плашка розташована під логотипом */
}
.vpn-card__stars {
  color: var(--color-rating);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.vpn-card__score {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text-main);
  background: rgba(26, 115, 232, 0.06);
  padding: 2px 8px;
  border-radius: 12px;
  line-height: 1;
}
.vpn-card__reviews {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
}
.vpn-card__center {
  padding: 2px 0;
}
.vpn-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.vpn-card__name {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-main);
  font-weight: 700;
}
.vpn-card__description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0.35rem 0;
}
.vpn-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 0.6rem 0;
  padding: 0.6rem;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.03) 0%, rgba(26, 115, 232, 0.01) 100%);
  border-radius: 8px;
  border: 1px solid rgba(26, 115, 232, 0.06);
}
.vpn-card__pros-group, .vpn-card__cons-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vpn-card__pros, .vpn-card__cons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
}
.vpn-card__pros li {
  color: #0B8043;
  position: relative;
  padding-left: 1.4rem;
  font-weight: 500;
}
.vpn-card__pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0B8043;
  font-weight: 800;
  font-size: 1.1rem;
}
.vpn-card__cons li {
  color: #B00020;
  position: relative;
  padding-left: 1.4rem;
  font-weight: 500;
}
.vpn-card__cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #B00020;
  font-weight: 800;
  font-size: 1.1rem;
}
.vpn-card__feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.8rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.vpn-card__feature-list li {
  padding-left: 1.1rem;
  position: relative;
}
.vpn-card__feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.vpn-card__meta-inline {
  display: flex;
  flex-direction: row;
  gap: 0.6rem; /* трохи тісніше */
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.25rem 0;
  background: transparent;
  border-radius: 6px;
  flex-wrap: nowrap;
}
.vpn-card__devices {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  background: rgba(26, 115, 232, 0.06);
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 115, 232, 0.12);
  font-weight: 600;
  white-space: nowrap;
}
.vpn-card__countries {
  margin-left: 0;
}
.vpn-card__countries-btn {
  padding: 0.26rem 0.48rem;
  font-size: 0.82rem;
}
@media (max-width: 420px) {
  .vpn-card__devices {
    font-size: 0.76rem;
    padding: 0.22rem 0.4rem;
  }
  .vpn-card__devices { /* keep only icon if needed: use text-overflow or reduce contents in HTML */ }
}
.vpn-card__countries {
  position: relative;
}
.vpn-card__countries-btn {
  font-size: 0.82rem;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 600;
}
.vpn-card__countries-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.vpn-card__countries-list {
  /* збережено попередню логіку (плашка над кнопкою) */
  position: absolute;
  top: auto;
  bottom: calc(100% + 8px); /* розташувати вище кнопки з невеликим відступом */
  left: 0;
  display: none;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.12);
  z-index: 120; /* вище за інші елементи */
  transform-origin: bottom left;
  margin-bottom: 0; /* чистка старих відступів */
}
.vpn-card__countries-list::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--color-surface);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}
.vpn-card__countries-list.is-open {
  display: flex;
  flex-wrap: wrap;
}
@media (max-height: 500px) {
  .vpn-card__countries-list {
    top: 110%;
    bottom: auto;
    transform-origin: top left;
  }
  .vpn-card__countries-list::after {
    bottom: auto;
    top: -7px;
    border-top: none;
    border-bottom: 7px solid var(--color-surface);
  }
}
.vpn-card__right {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.vpn-card .vpn-card__price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.5rem;
  text-align: center;
}
.vpn-card .vpn-card__price-label {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.vpn-card .vpn-card__price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent);
}
.vpn-card .vpn-card__price-period {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}
.vpn-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}
.vpn-card .vpn-card__btn-primary {
  width: 100%;
  text-align: center;
  padding: 0.8rem 0.8rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  border: none;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
}
.vpn-card .vpn-card__btn-primary:hover {
  background: var(--color-accent-hover);
}
.vpn-card .vpn-card__review-link {
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
@media (max-width: 900px) {
  .vpn-card {
    grid-template-columns: 140px 1fr 140px;
    gap: 0.75rem;
  }
  .vpn-card__feature-list {
    grid-template-columns: 1fr;
  }
  .vpn-card__pros-cons {
    flex-direction: column;
    gap: 0.35rem;
  }
  .vpn-card__logo {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 640px) {
  .vpn-card {
    grid-template-columns: 1fr;
  }
  .vpn-card__left {
    order: 0;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .vpn-card__right {
    order: 2;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
  }
  .vpn-card__center {
    order: 1;
  }
  .vpn-card__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .vpn-card .vpn-card__btn-primary {
    width: auto;
    padding: 1rem 0.75rem;
  }
  .vpn-card__logo {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 640px) {
  .vpn-card__rating {
    position: absolute;
    right: -19px;
    background: #e8efff;
    padding: 5px;
    border-radius: 5px;
    top: -23px;
    box-shadow: 0 8px 18px rgba(15, 35, 65, 0.12);
    border: 1px solid var(--color-border);
  }
  .vpn-card__compare {
    top: 84px;
  }
}
@media (max-width: 350px) {
  .vpn-card {
    grid-template-columns: 1fr;
  }
  .vpn-card__left {
    order: 0;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .vpn-card__right {
    order: 2;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
  }
  .vpn-card__center {
    order: 1;
  }
  .vpn-card__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .vpn-card .vpn-card__btn-primary {
    width: auto;
    padding: 1rem 0.75rem;
  }
  .vpn-card__logo {
    width: 110px;
    height: 110px;
  }
}

/* мобільне зменшення плашки і wrap */
@media (max-width: 640px) {
  .vpn-card__logo-wrap {
    width: 110px;
    height: 110px;
  }
  .vpn-card__tag {
    bottom: -10px;
    padding: 4px 6px;
    font-size: 0.66rem;
    border-radius: 6px;
    min-width: auto;
  }
}
.vpn-list {
  background: var(--color-background);
}
.vpn-list__header {
  text-align: center;
  margin-bottom: 2rem;
}
.vpn-list__subtitle {
  color: var(--color-text-secondary);
  margin: 0;
}
.vpn-list__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: vpn-counter;
}
.vpn-list__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.vpn-list__load-more {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vpn-list__load-more:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.compare {
  /* flat row hover */
  /* responsive: stack cells into blocks on very small screens */
}
.compare__title {
  margin: 1rem 0 0.25rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-main);
}
.compare__desc {
  margin: 0 0 0.75rem;
  color: var(--color-text-secondary);
}
.compare__controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.compare__controls .compare__count {
  color: var(--color-primary);
}
.compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px; /* allows horizontal scroll on small screens */
  font-size: 0.95rem;
  background: transparent;
}
.compare th, .compare td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  color: var(--color-text-main);
}
.compare thead th {
  background: var(--color-surface);
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1;
}
.compare .compare__col--select {
  width: 56px;
  text-align: center;
}
.compare .compare__checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-rating);
  cursor: pointer;
}
.compare .btn--link {
  background: transparent;
  color: var(--color-primary);
  padding: 0;
  border: none;
  text-decoration: underline;
}
.compare td .btn {
  margin-left: 0.5rem;
}
.compare tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}
@media (max-width: 560px) {
  .compare .compare__table {
    min-width: 0;
    border: 0;
  }
  .compare thead {
    display: none;
  }
  .compare tbody tr {
    display: block;
    margin-bottom: 0.8rem;
    border: 1px solid var(--color-border);
    padding: 0.5rem;
  }
  .compare tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0.6rem;
    border-bottom: none;
  }
  .compare .compare__col--select {
    order: -1;
  }
}

.hero-section {
  background: var(--secondary-bg);
  padding: 48px 0 32px 0;
  font-family: var(--font-main);
  margin-bottom: 15px;
}
.hero-section__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-section__content {
  max-width: 540px;
}
.hero-section__title {
  color: var(--heading-color);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}
.hero-section__desc {
  color: var(--text-color);
  font-size: 1.25rem;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-section__btn {
  background: var(--btn-color);
  color: var(--btn-text-color);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-section__img-wrap {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .hero-section__img-wrap {
    flex: auto;
  }
}
.hero-section__img {
  max-width: 540px;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(212, 175, 55, 0.1333333333);
  background: #fff;
}
@media (max-width: 560px) {
  .hero-section__img {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .hero-section__container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hero-section__img-wrap {
    justify-content: center;
  }
  .hero-section__content {
    max-width: 100%;
  }
}

.meta-info {
  margin: 5px 0 3px 0;
  font-family: var(--font-main, "Inter", sans-serif);
  text-align: center;
}

.meta-info__row {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: var(--grey-dark, #a5a5a5);
  font-size: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.meta-info__row span {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .meta-info__row {
    gap: 8px;
    font-size: 0.6rem;
  }
}
/* FAQ Accordion */
.faq {
  /* ✅ ключова частина */
  /* padding винесений у текст */
}
.faq__desc {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  overflow: hidden;
}
.faq__trigger {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: none;
  background: transparent;
  color: var(--color-text-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s ease;
}
.faq__trigger:hover {
  background: rgba(26, 115, 232, 0.04);
}
.faq__trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.faq__question {
  flex: 1;
}
.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq__content[aria-hidden=false] {
  max-height: 500px;
  opacity: 1;
}
.faq__content p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .faq__trigger {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  .faq__content p {
    padding: 0 0.75rem 0.75rem;
    font-size: 0.9rem;
  }
}

.info-section {
  /* vertical stack modifier: media above content, centered */
  /* ensure small image variant behaves well when stacked */
  /* responsive: keep stacked behavior on small screens (no change) */
}
.info-section ul {
  margin: 1.5rem auto 2rem auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.info-section ul li {
  position: relative;
  padding-left: 2em;
  font-size: 1rem;
  color: var(--color-text-main);
  background: var(--color-surface);
  border-radius: 6px;
  transition: background 0.2s;
}
.info-section ul li::before {
  content: "";
  position: absolute;
  left: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--color-rating);
  box-shadow: 0 0 4px 0 var(--color-rating);
}
.info-section ul li:hover {
  background: rgba(0, 0, 0, 0.03);
}
.info-section .info-section__note {
  margin: 1.4rem auto;
  max-width: 720px;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  color: var(--color-text-main);
  border-radius: 0;
  position: relative;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.35;
  box-shadow: inset 0 -1px 0 rgba(7, 12, 20, 0.02);
  /* Note: removed top accent bar per request (no ::after) */
  /* small square marker to the left of the text */
}
.info-section .info-section__note > .note-marker, .info-section .info-section__note::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: var(--color-rating);
  border-radius: 3px; /* slightly rounded square */
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
.info-section .info-section__note > * {
  margin-left: 0;
}
.info-section .info-section__note strong {
  color: var(--color-warning);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 0.45rem;
  font-size: 0.94rem;
}
.info-section .info-section__note span {
  color: var(--color-text-main);
  display: block;
  margin: 0;
}
.info-section .info-section__note b {
  color: var(--color-primary);
  font-weight: 700;
}
.info-section .info-section__note--compact {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}
.info-section .info-section__note--compact > .note-marker, .info-section .info-section__note--compact::before {
  width: 0.56rem;
  height: 0.56rem;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .info-section .info-section__note {
    padding: 0.85rem 1rem;
    font-size: 0.96rem;
  }
}
.info-section .info-section__grid--vertical {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  /* media becomes full-width (or constrained by img-wrap) and centered */
}
.info-section .info-section__grid--vertical .info-section__media {
  float: none;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
}
.info-section .info-section__grid--vertical .info-section__content {
  width: 100%;
  max-width: 720px;
}
.info-section .info-section__img-wrap--small {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 900px) {
  .info-section .info-section__grid--vertical {
    gap: 0.75rem;
  }
  .info-section .info-section__img-wrap--small {
    max-width: 100%;
  }
}
.info-section__img-wrap {
  float: right;
  max-width: 400px;
}
.info-section__img-wrap--right {
  margin-left: 15px;
}

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  padding: 3rem 0 2rem;
  margin-top: auto;
padding: 0rem 0 1rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__col--primary {
  grid-column: 1;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.footer__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}
.footer__list a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}
.footer__bottom {
  /* border-top: 1px solid var(--color-border); */
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright, .footer__disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin: 0;
}
.footer__disclaimer {
  flex: 1;
  text-align: right;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer__grid__col--primary {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__disclaimer {
    text-align: center;
  }
  .footer__title {
    font-size: 0.85rem;
  }
  .footer__list a {
    font-size: 0.8rem;
  }
  .footer__copyright, .footer__disclaimer {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=main.css.map */