/*
Theme Name: GOOSE VPN RU Theme
Theme URI: https://example.com/
Author: Webmaster
Author URI: https://example.com/
Description: SEO-optimized Russian informational WordPress theme for GOOSE VPN.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: goosevpn-ru
*/

:root {
  --gvpn-bg: #fffaf1;
  --gvpn-bg-soft: #fff3d7;
  --gvpn-card: #ffffff;
  --gvpn-text: #172033;
  --gvpn-muted: #667085;
  --gvpn-accent: #ffb21a;
  --gvpn-accent-2: #ff7a1a;
  --gvpn-green: #17a398;
  --gvpn-dark: #111827;
  --gvpn-border: #f1dfbd;
  --gvpn-shadow: 0 18px 50px rgba(83, 62, 25, .12);
  --gvpn-radius: 24px;
  --gvpn-radius-sm: 16px;
  --gvpn-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--gvpn-text);
  background: var(--gvpn-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 18px;
}

ul,
ol {
  margin-top: 0;
}

.gvpn-container {
  width: min(100% - 32px, var(--gvpn-max));
  margin-inline: auto;
}

.gvpn-skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gvpn-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 999;
}

.gvpn-skip:focus {
  left: 12px;
}

.gvpn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 241, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241, 223, 189, .75);
}

.gvpn-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.gvpn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 22px;
  white-space: nowrap;
}

.gvpn-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gvpn-accent), var(--gvpn-accent-2));
  box-shadow: 0 10px 24px rgba(255, 122, 26, .22);
}

.gvpn-logo__mark svg {
  width: 28px;
  height: 28px;
}

.gvpn-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gvpn-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gvpn-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: #273245;
}

.gvpn-nav a:hover,
.gvpn-nav .current-menu-item > a {
  background: #fff;
  box-shadow: 0 10px 22px rgba(83, 62, 25, .08);
}

.gvpn-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gvpn-dark);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(17, 24, 39, .16);
  white-space: nowrap;
}

.gvpn-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--gvpn-dark);
  color: #fff;
  cursor: pointer;
  position: relative;
}

.gvpn-burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: .25s ease;
}

.gvpn-burger span:nth-child(1) { top: 15px; }
.gvpn-burger span:nth-child(2) { top: 22px; }
.gvpn-burger span:nth-child(3) { top: 29px; }

.gvpn-burger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}

.gvpn-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.gvpn-burger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}

.gvpn-main {
  min-height: 70vh;
}

.gvpn-section {
  padding: 78px 0;
}

.gvpn-section--tight {
  padding: 46px 0;
}

.gvpn-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid var(--gvpn-border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #8a5300;
  font-weight: 850;
  font-size: 14px;
}

.gvpn-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gvpn-accent-2);
  box-shadow: 0 0 0 5px rgba(255, 122, 26, .13);
}

.gvpn-hero {
  position: relative;
  padding: 22px 0 72px;
  overflow: hidden;
}

.gvpn-hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  top: -260px;
  background: radial-gradient(circle, rgba(255,178,26,.38), transparent 62%);
  pointer-events: none;
}

.gvpn-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(23,163,152,.18), transparent 66%);
  pointer-events: none;
}

.gvpn-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 44px;
}

.gvpn-hero h1,
.gvpn-page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
}

.gvpn-page-hero h1 {
  max-width: 860px;
}

.gvpn-hero__lead,
.gvpn-page-hero__lead {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 22px);
  color: #3d4859;
}

.gvpn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gvpn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.gvpn-btn--primary {
  background: linear-gradient(135deg, var(--gvpn-accent), var(--gvpn-accent-2));
  color: #221400;
  box-shadow: 0 16px 32px rgba(255, 122, 26, .22);
}

.gvpn-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(255, 122, 26, .28);
}

.gvpn-btn--dark {
  background: var(--gvpn-dark);
  color: #fff;
}

.gvpn-btn--ghost {
  background: rgba(255,255,255,.78);
  border-color: var(--gvpn-border);
  color: var(--gvpn-text);
}

.gvpn-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.gvpn-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--gvpn-border);
  font-weight: 750;
  font-size: 14px;
  color: #3e4757;
}

.gvpn-visual {
  position: relative;
  min-height: 520px;
}

.gvpn-device {
  position: absolute;
  inset: 42px 0 0 36px;
  border-radius: 36px;
  padding: 18px;
  background: linear-gradient(145deg, #262f3f, #0c111b);
  box-shadow: 0 36px 80px rgba(17, 24, 39, .24);
  transform: rotate(-2deg);
	width: fit-content;
    height: fit-content;
}

.gvpn-device__screen {
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 22%, rgba(255,178,26,.42), transparent 25%),
    radial-gradient(circle at 20% 82%, rgba(23,163,152,.32), transparent 28%),
    linear-gradient(160deg, #fff7e2, #fff);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gvpn-screen-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.gvpn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(83, 62, 25, .11);
  font-weight: 850;
  font-size: 13px;
}

.gvpn-toggle {
  width: 72px;
  height: 38px;
  border-radius: 999px;
  background: #17a398;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.gvpn-toggle::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 50%;
  background: #fff;
}

.gvpn-goose {
  width: 210px;
  height: 210px;
  margin: auto;
  border-radius: 44% 56% 50% 50%;
  background: linear-gradient(145deg, #fff, #ffe9aa);
  position: relative;
  box-shadow: 0 22px 46px rgba(255, 122, 26, .18);
}

.gvpn-goose::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 58px;
  right: -34px;
  top: 78px;
  border-radius: 0 32px 32px 0;
  background: var(--gvpn-accent-2);
}

.gvpn-goose::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: 48px;
  top: 60px;
  border-radius: 50%;
  background: var(--gvpn-dark);
}

.gvpn-server-card {
  position: absolute;
  right: -4px;
  bottom: 44px;
  width: 220px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--gvpn-shadow);
  border: 1px solid var(--gvpn-border);
}

.gvpn-server-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.gvpn-server-card span {
  color: var(--gvpn-muted);
  font-weight: 700;
  font-size: 14px;
}

.gvpn-section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.gvpn-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.gvpn-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.gvpn-section-head p {
  color: var(--gvpn-muted);
  font-size: 18px;
}

.gvpn-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.gvpn-card {
  padding: 28px;
  border-radius: var(--gvpn-radius);
  background: var(--gvpn-card);
  border: 1px solid rgba(241, 223, 189, .8);
  box-shadow: 0 14px 36px rgba(83, 62, 25, .08);
}

.gvpn-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.gvpn-card p {
  color: var(--gvpn-muted);
}

.gvpn-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff2c0, #ffd36b);
  color: #4b2a00;
  font-size: 24px;
  font-weight: 900;
}

.gvpn-band {
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.28), transparent 26%),
    linear-gradient(135deg, #172033, #0f172a);
  color: #fff;
  padding: 44px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17,24,39,.18);
}

.gvpn-band h2,
.gvpn-band h3 {
  margin-top: 0;
  color: #fff;
}

.gvpn-band p {
  color: rgba(255,255,255,.78);
}

.gvpn-band__grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 30px;
  align-items: center;
}

.gvpn-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.gvpn-check-list li {
  position: relative;
  padding-left: 32px;
  color: #334155;
}

.gvpn-band .gvpn-check-list li {
  color: rgba(255,255,255,.86);
}

.gvpn-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gvpn-green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.gvpn-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gvpn-price-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--gvpn-border);
  box-shadow: 0 16px 42px rgba(83, 62, 25, .09);
}

.gvpn-price-card--featured {
  border: 2px solid var(--gvpn-accent-2);
  transform: translateY(-8px);
}

.gvpn-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff0c7;
  color: #8a5300;
  font-weight: 900;
  font-size: 13px;
}

.gvpn-price {
  margin: 12px 0 16px;
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.05em;
}

.gvpn-price small {
  font-size: 16px;
  color: var(--gvpn-muted);
  letter-spacing: 0;
}

.gvpn-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--gvpn-border);
  background: #fff;
}

.gvpn-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.gvpn-table th,
.gvpn-table td {
  padding: 18px;
  border-bottom: 1px solid var(--gvpn-border);
  text-align: left;
  vertical-align: top;
}

.gvpn-table th {
  background: #fff3d7;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gvpn-table tr:last-child td {
  border-bottom: 0;
}

.gvpn-page-hero {
  padding: 76px 0 42px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,178,26,.28), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(23,163,152,.12), transparent 30%);
}

.gvpn-content {
  max-width: 880px;
}

.gvpn-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.gvpn-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.25;
}

.gvpn-content p,
.gvpn-content li {
  color: #465466;
}

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

.gvpn-faq__item {
  border-radius: 20px;
  border: 1px solid var(--gvpn-border);
  background: #fff;
  overflow: hidden;
}

.gvpn-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font: inherit;
  font-weight: 900;
  color: var(--gvpn-text);
  cursor: pointer;
}

.gvpn-faq__question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
}

.gvpn-faq__item.is-open .gvpn-faq__question::after {
  content: "−";
}

.gvpn-faq__answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--gvpn-muted);
}

.gvpn-faq__item.is-open .gvpn-faq__answer {
  display: block;
}

.gvpn-cta {
  padding: 70px 0;
}

.gvpn-cta__box {
  border-radius: 34px;
  padding: 44px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,178,26,.33), transparent 28%),
    linear-gradient(135deg, #fff, #fff0ca);
  border: 1px solid var(--gvpn-border);
  box-shadow: var(--gvpn-shadow);
}

.gvpn-cta__box h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.gvpn-footer {
  background: #111827;
  color: #fff;
  padding: 54px 0 24px;
}

.gvpn-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 28px;
  margin-bottom: 34px;
}

.gvpn-footer h3,
.gvpn-footer h4 {
  margin-top: 0;
}

.gvpn-footer p,
.gvpn-footer li,
.gvpn-footer a {
  color: rgba(255,255,255,.72);
}

.gvpn-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.gvpn-footer a:hover {
  color: #fff;
}

.gvpn-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.gvpn-notfound {
  padding: 100px 0;
  text-align: center;
}

.gvpn-notfound h1 {
  font-size: clamp(60px, 12vw, 130px);
  margin: 0;
  line-height: .9;
  letter-spacing: -.08em;
}

@media (max-width: 980px) {
  .gvpn-burger {
    display: inline-block;
	  margin-left: auto;
  }

  .gvpn-header__inner {
    min-height: 68px;
  }

  .gvpn-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--gvpn-shadow);
    border: 1px solid var(--gvpn-border);
  }

  .gvpn-nav.is-open {
    display: block;
  }

  .gvpn-nav ul {
    display: grid;
    gap: 4px;
  }

  .gvpn-nav a {
    width: 100%;
    border-radius: 14px;
  }

 

  .gvpn-hero__grid,
  .gvpn-band__grid,
  .gvpn-grid--2,
  .gvpn-grid--3,
  .gvpn-grid--4,
  .gvpn-pricing,
  .gvpn-footer__grid {
    grid-template-columns: 1fr;
  }

  .gvpn-visual {
    min-height: 430px;
  }

  .gvpn-device {
    inset: 22px 0 0 0;
  }

  .gvpn-price-card--featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .gvpn-container {
    width: min(100% - 22px, var(--gvpn-max));
  }

  .gvpn-hero,
  .gvpn-page-hero {
    padding-top: 24px;
  }

  .gvpn-section {
    padding: 54px 0;
  }

  .gvpn-card,
  .gvpn-band,
  .gvpn-cta__box,
  .gvpn-price-card {
    padding: 22px;
    border-radius: 22px;
  }

  .gvpn-actions {
    display: grid;
  }

  .gvpn-btn {
    width: 100%;
  }

  .gvpn-visual {
    min-height: 360px;
  }

  .gvpn-device__screen {
    padding: 18px;
  }

  .gvpn-goose {
    width: 150px;
    height: 150px;
  }

  .gvpn-server-card {
    width: 180px;
    right: 10px;
    bottom: 22px;
  }

  .gvpn-footer__bottom {
    flex-direction: column;
  }

  .gvpn-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .gvpn-table,
  .gvpn-table thead,
  .gvpn-table tbody,
  .gvpn-table th,
  .gvpn-table td,
  .gvpn-table tr {
    display: block;
    min-width: 0;
  }

  .gvpn-table thead {
    display: none;
  }

  .gvpn-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--gvpn-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
  }

  .gvpn-table td {
    border-bottom: 1px solid var(--gvpn-border);
    padding: 14px 16px;
  }

  .gvpn-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 900;
    color: #8a5300;
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .gvpn-table td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 380px) {
  .gvpn-logo {
    font-size: 18px;
  }

  .gvpn-logo__mark {
    width: 36px;
    height: 36px;
  }

  .gvpn-card,
  .gvpn-band,
  .gvpn-cta__box,
  .gvpn-price-card {
    padding: 18px;
  }
}
.gvpn-menu > .menu-item-has-children,
.gvpn-menu__item--has-children {
  position: relative;
}

.gvpn-menu > .menu-item-has-children > a,
.gvpn-menu__item--has-children > a {
  padding-right: 34px;
}

.gvpn-menu > .menu-item-has-children > a::after,
.gvpn-menu__item--has-children > a::after {
  content: "⌄";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 14px;
  line-height: 1;
  color: #8a5300;
}

.gvpn-submenu-toggle {
  display: none;
}

.gvpn-menu .sub-menu,
.gvpn-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 20;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--gvpn-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--gvpn-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.gvpn-menu .menu-item-has-children:hover > .sub-menu,
.gvpn-menu .menu-item-has-children:focus-within > .sub-menu,
.gvpn-menu__item--has-children:hover > .gvpn-submenu,
.gvpn-menu__item--has-children:focus-within > .gvpn-submenu,
.gvpn-menu__item--has-children.is-open > .gvpn-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gvpn-menu .sub-menu a,
.gvpn-submenu a {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  color: #273245;
  white-space: nowrap;
}

.gvpn-menu .sub-menu a:hover,
.gvpn-submenu a:hover {
  background: #fff3d7;
  box-shadow: none;
}

@media (max-width: 980px) {
	.gvpn-device {
		max-width: 400px;}
  .gvpn-menu > .menu-item-has-children,
  .gvpn-menu__item--has-children {
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: center;
  }

  .gvpn-menu > .menu-item-has-children > a,
  .gvpn-menu__item--has-children > a {
    padding-right: 12px;
  }

  .gvpn-menu > .menu-item-has-children > a::after,
  .gvpn-menu__item--has-children > a::after {
    display: none;
  }

  .gvpn-submenu-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #fff3d7;
    color: #8a5300;
    cursor: pointer;
  }

  .gvpn-submenu-toggle::before {
    content: "⌄";
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease;
  }

  .gvpn-menu__item--has-children.is-open .gvpn-submenu-toggle::before {
    transform: rotate(180deg);
  }

  .gvpn-menu .sub-menu,
  .gvpn-submenu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: none;
    background: #fffaf1;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gvpn-menu .menu-item-has-children.is-open > .sub-menu,
  .gvpn-menu__item--has-children.is-open > .gvpn-submenu {
    display: grid;
  }

  .gvpn-menu .sub-menu a,
  .gvpn-submenu a {
    white-space: normal;
  }
}

@media (max-width: 400px) {
	.gvpn-logo span {
		display:none;
	}
}