/* Gnome homepage — matches sections design mockup, original brand colors */

:root {
  --gh-pink: #ee5586;
  --gh-pink-dark: #a5215e;
  --gh-yellow: #ffc107;
  --gh-navy: #111827;
  --gh-navy-soft: #1a2332;
  --gh-text: #212122;
  --gh-muted: #5e686c;
  --gh-bg: #f7f9fc;
  --gh-white: #ffffff;
  --gh-border: #e8edf3;
  --gh-pink-light: #fff6fa;
  --gh-hero-grad: linear-gradient(120deg, #ee5586 0%, #c44569 35%, #574b90 70%, #303a9a 100%);
  --gh-shadow: 0 8px 32px rgba(17, 24, 39, 0.08);
  --gh-radius: 12px;
  --gh-container: 1140px;
}

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

html { scroll-behavior: smooth; }

body.gh-page {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gh-text);
  background: var(--gh-bg);
}

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

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

.gh-skip { position: absolute; left: -9999px; }
.gh-skip:focus {
  left: 16px; top: 16px; z-index: 9999;
  padding: 8px 12px; background: var(--gh-yellow); color: var(--gh-text);
}

/* Buttons */
.gh-btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.gh-btn-yellow {
  background: var(--gh-yellow);
  color: var(--gh-text);
  box-shadow: 0 4px 14px rgba(255, 193, 7, 0.35);
}

.gh-btn-yellow-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.gh-btn-outline-yellow {
  background: transparent;
  border: 2px solid var(--gh-yellow);
  color: var(--gh-yellow);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 18px;
}

.gh-btn-outline-yellow:hover {
  background: var(--gh-yellow);
  color: var(--gh-navy);
}

.gh-btn-outline-yellow i { margin-left: 6px; font-size: 12px; }

.gh-btn-outline {
  background: transparent;
  border: 2px solid var(--gh-white);
  color: var(--gh-white);
  border-radius: 999px;
}

/* Top bar */
.gh-topbar {
  background: var(--gh-pink);
  color: var(--gh-white);
  font-size: 13px;
}

.gh-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  flex-wrap: wrap;
}

.gh-topbar a { color: var(--gh-white); text-decoration: none; }
.gh-topbar a:hover { text-decoration: underline; }

.gh-badge {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.gh-topbar-links { display: flex; align-items: center; gap: 16px; }

/* Header */
.gh-header {
  background: var(--gh-white);
  border-bottom: 1px solid var(--gh-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  position: relative;
}

.gh-logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(340px, 62vw);
}

.gh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.gh-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gh-text);
}

.gh-nav { display: flex; align-items: center; gap: 4px; }

.gh-nav-item { position: relative; }

.gh-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  color: var(--gh-navy);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

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

.gh-nav-link i { font-size: 10px; opacity: 0.6; }

.gh-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 12px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
  z-index: 50;
}

.gh-nav-item:hover > .gh-dropdown,
.gh-nav-item.is-open > .gh-dropdown { display: block; }

.gh-dropdown a {
  display: block;
  padding: 8px 10px;
  color: var(--gh-text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
}

.gh-dropdown a:hover { background: var(--gh-pink-light); color: var(--gh-pink); }

.gh-dropdown small {
  display: block;
  padding: 0 10px 8px;
  color: var(--gh-muted);
  font-size: 12px;
}

.gh-client-btn { margin-left: 8px; white-space: nowrap; }

/* Hero */
.gh-hero {
  position: relative;
  background: var(--gh-hero-grad);
  overflow: hidden;
}

.gh-slider { position: relative; min-height: 300px; }

.gh-slide {
  display: none;
  padding: 40px 0 58px;
  color: var(--gh-white);
}

.gh-slide.is-active { display: block; }

.gh-slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.gh-slide h1, .gh-slide h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gh-white);
}

.gh-slide p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  max-width: 520px;
}

.gh-slide .highlight { color: var(--gh-yellow); }

.gh-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gh-slide-art { text-align: center; }
.gh-slide-art img { max-height: 220px; width: auto; }

.gh-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.gh-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.gh-dot.is-active { background: var(--gh-yellow); }

/* Trust strip */
.gh-trust {
  margin-top: -26px;
  padding-bottom: 32px;
  position: relative;
  z-index: 2;
}

.gh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gh-white);
  border-radius: var(--gh-radius);
  border: 1px solid var(--gh-border);
  box-shadow: var(--gh-shadow);
  overflow: hidden;
}

.gh-trust-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--gh-border);
}

.gh-trust-item:last-child { border-right: none; }

.gh-trust-item i {
  color: var(--gh-pink);
  font-size: 22px;
  margin-bottom: 8px;
}

.gh-trust-item strong { display: block; font-size: 14px; color: var(--gh-navy); }
.gh-trust-item span { display: block; font-size: 12px; color: var(--gh-muted); }

/* Pricing — mockup cards */
.gh-pricing {
  padding: 48px 0 64px;
  background: var(--gh-bg);
}

.gh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 16px;
}

.gh-plan {
  display: flex;
  flex-direction: column;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
  overflow: hidden;
  position: relative;
}

.gh-plan::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--gh-pink);
}

.gh-plan-featured {
  border-color: rgba(238, 85, 134, 0.35);
  box-shadow: 0 16px 48px rgba(238, 85, 134, 0.12);
}

.gh-plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--gh-pink);
  color: var(--gh-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}

.gh-plan-top {
  padding: 28px 24px 22px;
  text-align: center;
}

.gh-plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 2px solid rgba(238, 85, 134, 0.3);
  border-radius: var(--gh-radius);
  color: var(--gh-pink);
  font-size: 26px;
}

.gh-plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gh-navy);
  margin-bottom: 6px;
}

.gh-plan-desc {
  font-size: 14px;
  color: var(--gh-muted);
  margin-bottom: 16px;
  min-height: 42px;
}

.gh-plan-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--gh-navy);
  line-height: 1;
}

.gh-plan-price sup { font-size: 18px; top: -0.5em; }

.gh-plan-price .mo {
  font-size: 16px;
  font-weight: 700;
  color: var(--gh-navy);
}

.gh-plan-billing {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gh-muted);
}

.gh-plan-top .gh-btn {
  width: 100%;
  margin-top: 18px;
}

.gh-plan-features {
  list-style: none;
  margin: 0;
  padding: 20px 22px 24px;
  background: var(--gh-pink-light);
  flex: 1;
}

.gh-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--gh-navy);
}

.gh-plan-features li i {
  color: var(--gh-pink);
  margin-top: 3px;
  font-size: 13px;
}

/* Network operations panel */
.gh-netops {
  padding: 64px 0;
  background: var(--gh-bg);
  text-align: center;
}

.gh-section-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: var(--gh-navy);
}

.gh-section-sub {
  max-width: 780px;
  margin: 0 auto 40px;
  color: var(--gh-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gh-netops-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 32px 28px;
  text-align: left;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-top: 4px solid var(--gh-pink);
  border-radius: 20px;
  box-shadow: var(--gh-shadow);
}

.gh-netops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gh-border);
}

.gh-netops-heading h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--gh-navy);
}

.gh-netops-heading p {
  margin: 0;
  font-size: 14px;
  color: var(--gh-muted);
}

.gh-netops-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
}

.gh-netops-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.gh-netops-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 22px;
  background: var(--gh-pink-light);
  border-radius: 999px;
}

.gh-netops-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gh-pink);
  color: var(--gh-white);
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(238, 85, 134, 0.25);
}

.gh-netops-highlight-text {
  flex: 1;
  min-width: 0;
}

.gh-netops-highlight-text strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gh-navy);
}

.gh-netops-highlight-text span {
  font-size: 13px;
  color: var(--gh-muted);
}

.gh-netops-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 32px;
  flex-shrink: 0;
  padding: 0 4px;
}

.gh-netops-bars span {
  display: block;
  width: 7px;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gh-pink) 0%, rgba(238, 85, 134, 0.45) 100%);
}

.gh-netops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.gh-netops-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gh-pink-light);
  border: 1px solid rgba(238, 85, 134, 0.12);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gh-netops-tile:hover {
  border-color: rgba(238, 85, 134, 0.28);
  box-shadow: 0 6px 20px rgba(238, 85, 134, 0.1);
}

.gh-netops-tile-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gh-white);
  border: 2px solid rgba(238, 85, 134, 0.2);
  color: var(--gh-pink);
  font-size: 18px;
}

.gh-netops-tile-body {
  flex: 1;
  min-width: 0;
}

.gh-netops-tile h4 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 800;
  color: var(--gh-navy);
  line-height: 1.35;
}

.gh-netops-tile p {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--gh-muted);
  line-height: 1.5;
}

.gh-netops-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
}

.gh-netops-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(120deg, #ee5586 0%, #c44569 35%, #574b90 70%, #303a9a 100%);
  border-radius: 16px;
}

.gh-netops-stat {
  padding: 4px 8px;
  text-align: center;
}

.gh-netops-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 800;
  color: var(--gh-white);
  line-height: 1.1;
}

.gh-netops-stat-unit {
  font-size: 13px;
  font-weight: 700;
  color: var(--gh-yellow);
}

.gh-netops-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Dedicated table — navy */
.gh-dedicated {
  padding: 64px 0;
  background: var(--gh-navy);
  color: var(--gh-white);
}

.gh-dedicated .gh-section-title { color: var(--gh-white); margin-bottom: 28px; }

.gh-table-wrap {
  overflow-x: auto;
  border-radius: var(--gh-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--gh-navy-soft);
}

.gh-table th,
.gh-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
}

.gh-table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  white-space: nowrap;
}

.gh-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.03); }

.gh-table .old-price {
  text-decoration: line-through;
  opacity: 0.45;
  margin-right: 4px;
}

.gh-table .new-price {
  color: var(--gh-yellow);
  font-weight: 800;
  font-size: 15px;
}

.gh-label {
  display: inline-block;
  padding: 2px 7px;
  margin-right: 4px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.gh-label-hot { background: #ff4757; color: #fff; }
.gh-label-sale { background: var(--gh-pink); color: #fff; }

.gh-dedicated-more { text-align: center; margin-top: 28px; }

/* Why choose */
.gh-features {
  padding: 64px 0;
  background: var(--gh-bg);
}

.gh-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gh-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
}

.gh-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-pink-light);
  color: var(--gh-pink);
  border-radius: var(--gh-radius);
  font-size: 26px;
}

.gh-feature-icon-cp {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gh-feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--gh-navy);
}

.gh-feature p {
  margin: 0;
  color: var(--gh-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Map */
.gh-map-section {
  padding: 64px 0;
  background: var(--gh-navy);
  color: var(--gh-white);
}

.gh-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.gh-map-grid h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
}

.gh-map-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.gh-map-area { position: relative; min-height: 300px; }

.gh-map-area img {
  opacity: 0.35;
  filter: brightness(2);
  width: 100%;
}

.gh-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--gh-white);
  border-radius: 50%;
  background: var(--gh-pink);
  box-shadow: 0 0 12px rgba(238, 85, 134, 0.8);
  cursor: pointer;
}

.gh-pin.montreal { top: 38%; left: 28%; }
.gh-pin.newyork { top: 44%; left: 26%; }
.gh-pin.portugal { top: 46%; left: 44%; }
.gh-pin.london { top: 38%; left: 46.5%; }
.gh-pin.germany { top: 41%; left: 49.5%; }
.gh-pin.moskow { top: 35%; left: 56%; }
.gh-pin.hongkong { top: 54%; left: 79%; }
.gh-pin.singapure { top: 64%; left: 77%; }

/* Help */
.gh-help {
  padding: 56px 0 64px;
  background: var(--gh-bg);
}

.gh-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gh-help-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gh-help-card:hover {
  border-color: rgba(238, 85, 134, 0.35);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.1);
}

.gh-help-card > i:first-child {
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  color: var(--gh-pink);
  font-size: 26px;
}

.gh-help-card strong {
  display: block;
  font-size: 16px;
  color: var(--gh-navy);
}

.gh-help-card span {
  display: block;
  color: var(--gh-muted);
  font-size: 13px;
  margin-top: 2px;
}

.gh-help-card .arrow {
  margin-left: auto;
  color: var(--gh-pink);
  font-size: 14px;
}

/* Footer — mockup */
.gh-footer {
  background: var(--gh-navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 52px;
}

.gh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.gh-footer-brand p {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.gh-footer-brand .gh-logo img { height: 50px; max-width: 100%; }
.gh-footer-brand .gh-logo { margin-bottom: 8px; display: inline-block; }

.gh-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px !important;
}

.gh-footer-social { display: flex; gap: 10px; }

.gh-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gh-white);
  text-decoration: none;
  font-size: 14px;
}

.gh-footer-social a:hover { background: var(--gh-pink); }

.gh-footer h4 {
  margin: 0 0 14px;
  color: var(--gh-white);
  font-size: 15px;
  font-weight: 700;
}

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

.gh-footer li { margin-bottom: 9px; }

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

.gh-footer a:hover { color: var(--gh-yellow); }

.gh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.gh-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gh-footer-since { color: rgba(255, 255, 255, 0.65); }
.gh-footer-since .heart { color: var(--gh-pink); }

/* Responsive */
@media (max-width: 991px) {
  .gh-nav-toggle { display: flex; }

  .gh-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--gh-white);
    border-bottom: 1px solid var(--gh-border);
    padding: 12px;
    box-shadow: var(--gh-shadow);
  }

  .gh-header.is-open .gh-nav { display: flex; }

  .gh-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }

  .gh-netops-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gh-netops-highlight {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .gh-netops-bars { display: none; }

  .gh-netops-grid { grid-template-columns: 1fr; }

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

  .gh-slide-grid,
  .gh-pricing-grid,
  .gh-features-grid,
  .gh-help-grid,
  .gh-map-grid,
  .gh-footer-grid,
  .gh-trust-grid { grid-template-columns: 1fr; }

  .gh-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--gh-border);
  }

  .gh-client-btn { margin-left: 0; width: 100%; text-align: center; }

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

@media (max-width: 575px) {
  .gh-slide-art { display: none; }
  .gh-netops-stats { grid-template-columns: 1fr 1fr; }
  .gh-netops-panel { padding: 22px 18px 18px; }
  .gh-footer-grid { grid-template-columns: 1fr; }
  .gh-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
