:root {
  --bg:       #04060a;
  --bg2:      #080b12;
  --bg3:      #0c1018;
  --card:     #0a0d16;
  --card-h:   #0f1420;
  --border:   rgba(0, 200, 80, 0.13);
  --border-b: rgba(0, 200, 80, 0.38);
  --green:    #22b85e;
  --green-d:  #00b347;
  --green-dk: rgba(0, 200, 80, 0.08);
  --glow:     rgba(0, 200, 80, 0.18);
  --text:     #c8d8cc;
  --muted:    #4a6655;
  --accent:   #22b85e;
}

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

body {
  font-family: 'Oxanium', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex-grow: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BACKGROUND ANIMATION ── */
.bg-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-animation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 85%, rgba(0,200,80,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(0,180,70,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0,100,255,0.03) 0%, transparent 60%);
  animation: float 25s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-15px) scale(1.01); }
}

/* ── HEADER ── */
header {
  padding: 0;
  background: rgba(4, 6, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1350px;
  height: 70px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo { display: flex; align-items: center; gap: 15px; margin-left: 75px; }
.logo a { text-decoration: none !important; }

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  top: 11px;
  letter-spacing: 1px;
}

.accent {
  color: var(--green);
  text-shadow: 0 0 12px rgb(49 121 78 / 55%);
}

.nav-logo {
  height: 50px;
  width: auto;
  filter: brightness(0.85) hue-rotate(17deg) saturate(1.0);
  transform: translateY( 2.6px);
  margin-top: -2px;

}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  margin-top: 15px;
  margin-right: 44px;
}

.nav-links li {
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-links li:hover { background: rgba(0,200,80,0.08); }

.nav-links a {
  color: var(--green);
  text-shadow: 0 0 12px rgb(49 121 78 / 55%);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-links li img {
    position: relative;
    top: -2px;
    filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(50%) contrast(100%);
}

#auth-button { padding: 0 !important; }
#auth-button:hover { background: none !important; }

.client-btn {
  background-color: #087241a8;
  text-align: center;
  font-weight: 700;
  padding: 0.55rem 1rem 0.35rem 0.5rem;
  border-radius: 6px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.2s ease;
  margin-top: -5px;
}
.nav-links a.client-btn {
  background: #04110a;
  color: #0eaf4e;
  border: 1px solid rgba(0,200,80,0.38);
}
.client-btn:hover {
  background: #13c95b !important;
  box-shadow: 0 0 22px rgba(0, 255, 94, 0.5);
  transform: translateY(-1px);
  color: #ffffff !important;
}
.client-btn:hover img {
    filter: brightness(0) invert(1);
}
/* ── HERO ── */
.hero {
  background:
    linear-gradient(180deg, rgba(4,6,10,0.55) 0%, rgba(4,6,10,0.88) 100%),
    url('background.webp') center center / cover no-repeat fixed;
  padding: 1rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,200,80,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(0,220,80,0.85);
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}

.glitch {
  position: relative;
  color: var(--green);
  display: grid;
  place-items: center;
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; right: 0.2%;
  transform: translateX(-50%);
  width: 100%; height: 100%;
  grid-area: 1 / 1;
}

@keyframes glitch {
  0%,100% { transform: translate(0); }
  20%  { transform: translate(-2px,  2px); }
  40%  { transform: translate(-2px, -2px); }
  60%  { transform: translate( 2px,  2px); }
  80%  { transform: translate( 2px, -2px); }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Space Mono', monospace;
  text-shadow: 0 0 18px rgba(0,200,80,0.4);
}

.stat-label {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-os {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4.5rem;
  flex-wrap: nowrap;
  filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(50%) contrast(100%);
}

.os-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.os-item span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.os-divider { color: rgba(255,255,255,0.1); font-size: 1.5rem; }

.hero-crypto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0.55;
  flex-wrap: wrap;
  transition: opacity 0.3s;
}

.hero-crypto:hover { opacity: 0.85; }

.hero-crypto img { transition: transform 0.3s ease, opacity 0.3s ease; }
.hero-crypto img:hover { transform: translateY(-4px) scale(1.15); opacity: 1; }

.hero-title, .hero-subtitle { transform: translateY(-2rem); }
.hero-stats, .cta-button    { transform: translateY(2rem); }

/* ── CTA BUTTON ── */
.cta-button {
  display: inline-block;
  position: relative;
  background: rgb(15, 66, 38);
  color: #00ff66;
  padding: 0.9rem 2.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--border-b);
  transition: all 0.25s ease;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 255, 102, 0.3), inset 0 0 20px rgba(0, 255, 102, 0.06);
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,80,0.12), transparent);
  transition: opacity 0.3s;
}

.cta-button:hover {
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(0, 255, 102, 0.3), inset 0 0 50px rgba(0, 255, 102, 0.06);
  transform: translateY(-2px);
  color: #fff;
}

.button-glow { display: none; }

/* ── SECTION TITLES ── */
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #41855e;
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(0,200,80,0.25);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-shadow: 0 0 24px rgba(0,200,80,0.25);
}

/* ── ABOUT / SERVICES SECTION ── */
.about-section, .services-section {
  padding: 6rem 0;
  color: var(--text);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(0,200,80,0.06) 0%, rgba(4,6,10,0.95) 100%),
    url('background1.webp') center center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.services-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(0,180,80,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}


.check-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px; 
    filter: invert(64%) sepia(98%) saturate(220%) hue-rotate(85deg) brightness(80%) contrast(100%) drop-shadow(0 4px 8px rgba(4, 161, 70, 0.4));
    transition: all 0.3s ease;
}
/* .check-icon-wrapper:hover {
    box-shadow: 0 0 32px rgba(0,200,80,0.3);
    transform: translateY(-2px);
} */

.check-icon-wrapper img {
    height: 52px;
    
}

.customers-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px; 
    border: 2px solid var(--border-b); 
    border-radius: 50%;
    box-shadow: 0 0 24px var(--glow); 
    background-color: var(--green-dk); 
    transition: all 0.3s ease;
    filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(95deg) brightness(70%) contrast(150%);

  }

.customers-icon-wrapper:hover {
    box-shadow: 0 0 32px rgba(0,200,80,0.3);
    transform: translateY(-2px);
}

.customers-icon-wrapper img {
    height: 32px;
    filter: brightness(0.9) hue-rotate(-5deg) saturate(2.5);
}

.cases-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px; 
    border: 2px solid var(--border-b); 
    border-radius: 50%;
    box-shadow: 0 0 24px var(--glow); 
    background-color: var(--green-dk); 
    transition: all 0.3s ease;
    filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(95deg) brightness(70%) contrast(100%);

  }

.cases-icon-wrapper:hover {
    box-shadow: 0 0 32px rgba(0,200,80,0.3);
    transform: translateY(-2px);
}

.cases-icon-wrapper img {
    height: 32px;
    filter: brightness(0.9) hue-rotate(-5deg) saturate(2.5);
}



.security-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    filter: invert(64%) sepia(98%) saturate(220%) hue-rotate(85deg) brightness(80%) contrast(100%) drop-shadow(0 4px 8px rgba(4, 161, 70, 0.4));
    transition: all 0.3s ease;
}

.security-icon-wrapper img {
    height: 52px;
    margin-top: 120px;
}
/* ── КРАЙ НА СТИЛОВЕТЕ ЗА ЧЕКА ── */

.about-section h2 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}


.about-section > .container > p {
  text-align: center;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-feature {
  background: var(--card);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.about-feature:hover {
  border-color: var(--border-b);
  box-shadow: 0 8px 32px rgba(0,200,80,0.1);
  transform: translateY(-4px);
}

.about-feature h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.about-feature p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }

/* ── USE CASES ── */
.use-cases-section {
  padding: 6rem 0;
}

.combined-background-wrapper {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(4,6,10,0.97) 100%),
    url('background2.webp') center center / cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  min-height: 800px;
}

.combined-background-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0,150,60,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 10rem;
  position: relative; z-index: 1;
}

.use-case {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.use-case:hover {
  border-color: var(--border-b);
  box-shadow: 0 8px 28px rgba(0,200,80,0.1);
  transform: translateY(-4px);
}

.use-case h3 {
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.use-case p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg2);
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border-b);
  transform: translateY(-4px);
}

.stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.testimonial-content p {
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── SECURITY / PAYMENTS ── */
.security-payments-wrapper {
  background:
    linear-gradient(180deg, rgba(0,200,80,0.06) 0%, rgba(4,6,10,0.92) 100%),
    url('background3.webp') center center / cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  min-height: 800px;
}

.security-payments-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,180,80,0.05) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.content-box-style {
  padding: 2.5rem;
  background: rgba(8, 12, 18, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 auto;
  max-width: 1000px;
  backdrop-filter: blur(12px);
  position: relative; z-index: 1;

}

.content-box-style > * { margin-top: -5.5rem; margin-bottom: 2rem; }

.crypto-title { margin-top: 4.9rem; margin-bottom: 4rem; }

.security-payments-wrapper .security-compliance { padding-top: 5rem; }
.security-payments-wrapper .payment-methods { margin-top: -2.5rem; }

.security-features { margin-top: 0rem; }

.security-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
}

.security-item h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.security-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ── PAYMENT METHODS ── */
.payment-methods { padding: 4rem 0; background: transparent; }

.crypto-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.crypto-icon {
  font-size: 1.8rem;
  color: var(--green);
  font-family: 'Space Mono', monospace;
  opacity: 0.8;
}

.crypto-item span { color: var(--muted); font-size: 0.8rem; letter-spacing: 1px; }

.crypto-item img {
  width: auto;
  height: 46px;
  transition: filter 0.3s, transform 0.3s;
  filter: saturate(1.2) brightness(0.85);
}

.crypto-item:hover img {
  filter: saturate(1.2) brightness(1.1);
  transform: translateY(-3px);
}

/* ── SERVICES EXPLAINING ── */
.services-explaining {
  padding: 4rem 2rem;
  background: rgba(0,200,80,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 1000px;
  backdrop-filter: blur(8px);
}

.services-explaining p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.services-explaining ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

.services-explaining li {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.5rem 1rem 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  position: relative;
  text-align: left;
}

.services-explaining li::before {
  content: '▶';
  position: absolute;
  left: 1rem; top: 1rem;
  color: var(--green);
  font-size: 0.65rem;
  opacity: 0.6;
}

.services-explaining li:hover {
  background: rgba(0,200,80,0.07);
  border-color: var(--border-b);
  transform: translateX(4px);
}

/* ── PLANS SECTION ── */
.plans {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,6,10,0.85) 0%, rgba(4,6,10,0.98) 100%),
    url('background.webp') center center / cover no-repeat fixed;
}

.plans::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 90%, rgba(0,180,80,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.plans .container { position: relative; z-index: 1; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-b);
  box-shadow: 0 16px 40px rgba(0,200,80,0.12);
}

.plan-card.popular {
  border-color: rgba(0,200,80,0.4);
  box-shadow: 0 0 24px rgba(0,200,80,0.15);
}

.popular-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--green);
  color: #000;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.25rem 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.plan-header img { 
width: 32px; height: 32px; object-fit: contain; 
filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(40%) contrast(100%);
}

.plan-name {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.plan-content {
  padding: 1rem;
  text-align: center;
}

.plan-specs { margin-bottom: 1rem; }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,200,80,0.07);
  font-size: 0.88rem;
}

.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--muted); font-weight: 400; }
.spec-value { color: var(--text); font-weight: 600; font-family: 'Space Mono', monospace; font-size: 0.82rem; }

.plan-features { margin-bottom: 1rem; }

.feature-tag {
  display: inline-block;
  background: rgba(0,200,80,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  margin: 0.25rem;
  font-size: 0.75rem;
  color: rgba(0,200,80,0.75);
  letter-spacing: 0.5px;
}

.plan-price-section {
  background: rgba(0,200,80,0.05);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Space Mono', monospace;
  text-shadow: 0 0 16px rgba(0,200,80,0.35);
}

.period { color: var(--muted); font-size: 0.8rem; margin-top: 0.3rem; display: block; letter-spacing: 1px; }

.plan-button {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-b);
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 1.5px;
}

.plan-button:hover {
  background: rgba(0,200,80,0.1);
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(0,200,80,0.2);
  transform: translateY(-1px);
  color: #fff;
}

/* ── SERVERS ── */
.servers {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,6,10,0.88) 0%, rgba(4,6,10,0.98) 100%),
    url('background.webp') center center / cover no-repeat fixed;
}

.servers::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 80%, rgba(0,180,80,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.servers .container { position: relative; z-index: 1; }

.server { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 200px; color: var(--green); margin-top: 0; }

.section-servers {
  margin-top: -45px;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 3rem;
  margin-right: 25px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-servers img { vertical-align: middle; margin-right: 10px; }

.server-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  width: 360px;
}

.server-card:hover {
  border-color: var(--border-b);
  box-shadow: 0 12px 36px rgba(0,200,80,0.1);
  transform: translateY(-5px);
}

.server-header {
  background: rgba(0,200,80,0.05);
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.plan-server {
  font-size: 2.3rem;
  color: rgb(39, 185, 71);
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 9px;
}

.server-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,200,80,0.07);
  font-size: 0.88rem;
}

.server-label { color: var(--muted); font-weight: 400; }
.server-value { color: var(--text); font-weight: 600; font-family: 'Space Mono', monospace; font-size: 0.82rem; }

.server-features { margin-bottom: 1.5rem; }

.server-tag {
  display: inline-block;
  background: rgba(0,200,80,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  margin: 0.25rem;
  font-size: 0.75rem;
  color: rgba(0,200,80,0.75);
}

.server-price-section {
  background: rgba(0,200,80,0.05);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

.sprice {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Space Mono', monospace;
  text-shadow: 0 0 18px rgba(0,200,80,0.3);
}

.speriod { color: var(--muted); font-size: 0.8rem; display: block; margin-top: 0.3rem; letter-spacing: 1px; }

.splan-button {
  width: 100%;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-b);
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 1.5px;
}

.splan-button:hover {
  background: rgba(0,200,80,0.1);
  box-shadow: 0 0 18px rgba(0,200,80,0.2);
}

/* ── FEATURES ── */
.features {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(4,6,10,0.85) 0%, rgba(4,6,10,0.98) 100%),
    url('background.webp') center center / cover no-repeat fixed;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-b);
  box-shadow: 0 12px 32px rgba(0,200,80,0.1);
}

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { color: var(--green); margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: 0.5px; }
.feature-card p { color: var(--muted); line-height: 1.6; font-size: 0.9rem; }

/* ── STAT CARD ── */
.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-family: 'Space Mono', monospace;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover { border-color: var(--border-b); transform: translateY(-4px); }
.stat-icon { font-size: 2rem; }
.stat-info h4 { color: var(--green); font-size: 1.4rem; margin-bottom: 0.3rem; font-family: 'Space Mono', monospace; }
.stat-info p { color: var(--muted); font-size: 0.85rem; }

/* ── ABOUT PAGE ── */
.about {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 20vh;
  color: var(--text);
  padding-top: 0;
  padding-bottom: 2rem;
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(4,6,10,0.85) 0%, rgba(4,6,10,0.98) 100%),
    url('background.webp') center center / cover no-repeat fixed;
}

.about-logo-wrapper {
  width: 150px; height: 150px;
  border: 1px solid var(--border-b);
  border-radius: 50%;
  margin-top: 35px;
  box-shadow: 0 0 24px rgba(0,200,80,0.2);
}

.about-logo { width: auto; height: 132px; border-radius: 50%; filter: hue-rotate(112deg); }

.about-text {
  color: rgb(39, 226, 86);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
  margin-top: 20px;
}

.about h1 { margin-top: 25px; margin-bottom: 10px; color: var(--green); }

/* ── ARTICLE ── */
.article-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.article-container h1 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-container h2 {
  font-size: 1.5rem;
  color: var(--green);
  border-left: 2px solid var(--green);
  padding-left: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.article-container p,
.article-container li { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }

.article-container ul { list-style: none; padding-left: 0; }
.article-container ul li { padding-left: 1.5rem; position: relative; }
.article-container ul li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-size: 1.1rem; }
.article-container strong { color: var(--text); font-weight: 600; }
.article-container iframe { max-width: 100%; border: 1px solid var(--border); border-radius: 8px; margin: 1rem auto 2rem; display: block; }
.article-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

.uacbypassing { text-decoration: none; color: var(--green); font-weight: bold; }

.serverlogo {
  width: 150px; height: auto;
  border: 1px solid rgba(255,50,50,0.4);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(220,40,40,0.5));
}

/* ── PRIVACY / TOS ── */
.privacy, .tos {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: left;
  color: var(--muted);
}

/* ── PLAN CATEGORIES ── */
.plan-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Oxanium', sans-serif;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-btn.active,
.category-btn:hover {
  background: rgba(0,200,80,0.08);
  border-color: var(--border-b);
  color: var(--green);
}

/* ── GLOBE ── */
#globeViz canvas {
  filter: sepia(1) saturate(2.5) hue-rotate(95deg) brightness(0.65);
  
}

/* ── FOOTER ── */
footer {
  background: rgba(4,6,10,0.96);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}

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

}
.footer-content img{
  filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(40%) contrast(100%);
}
.footer-section h3 { color: var(--green); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-section ul { list-style: none; }
.footer-section p { color: var(--muted); font-size: 0.9rem; }

.footer-section a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-section a:hover { color: var(--green); }
.footer-section li { margin-bottom: 0.5rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

/* ── NAV TOGGLE ── */
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; z-index: 1002; pointer-events: all; }

.hamburger {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  position: relative;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px; height: 2px;
  background: var(--green);
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-open .hamburger { background: transparent; }
.nav-open .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-open .hamburger::after  { transform: rotate(-45deg) translate(5px, -5px); }

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* @media (min-width: 769px) {
  header { animation: slideFromRight 0.5s ease forwards; }
} */

.hero-title              { animation: fadeIn 0.8s ease forwards; }
.hero-content > p        { animation: fadeIn 0.8s ease 0.3s forwards; opacity: 0; }
.cta-button              { animation: fadeIn 0.8s ease 0.6s forwards; opacity: 0; }
.hero-stats              { animation: fadeIn 0.8s ease 0.9s forwards; opacity: 0; }
.hero-os                 { animation: fadeIn 0.8s ease 1.2s forwards; opacity: 0; }
.hero-crypto             { animation: fadeIn 0.8s ease 1.5s forwards; opacity: 0; }
 /* header { opacity: 0; animation: fadeIn 0.8s ease 0.1s forwards; } */
.hero-server-img { opacity: 0; animation: fadeIn 0.8s ease 0.5s forwards; }
.hero-terminal           { opacity: 0; animation: fadeIn 0.8s ease 0.8s forwards; }
.stats-bar-inner         { opacity: 0; animation: fadeIn 0.8s ease 0.7s forwards; }
/* .about-section,
.use-cases-section,
.testimonials,
.security-payments-wrapper,
footer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}


.about-feature,
.use-case,
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
} */
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 4rem 0 3rem; background-attachment: scroll; }
  .hero-title { font-size: 1.8rem; padding: 0 1rem; }
  .hero-subtitle { font-size: 1rem; padding: 0 1rem; margin-bottom: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
  .stat-number { font-size: 1.5rem; }
  .hero-os { display: none; }
  .os-divider { display: none; }
  .hero-crypto { gap: 1rem; }
  .hero-crypto img { width: 34px; height: 34px; }
  .crypto-logos { gap: 2rem; }
  .plans-grid { grid-template-columns: 1fr; }
  #globeViz { display: none; }
  .hero-server-img { display: none; }
  .hero > .container > div { flex-direction: column; align-items: center; }
  .hero-content { text-align: center; padding-top: 0 !important; }
  .hero-content + div { width: 100%; align-items: center; }
  .hero-content + div > div { margin-left: 0 !important; margin-top: 1rem !important; max-width: 100% !important; }

  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(4,6,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    margin-top: 0;
  }



  .nav-links.active { display: flex; z-index: 1000; }
  .nav-toggle { display: block; position: fixed; top: 22px; right: 20px; z-index: 1002; }

  .services-section,
  .combined-background-wrapper,
  .security-payments-wrapper,
  .plans,
  .servers { background-attachment: scroll; }

  header, .feature-card, .plan-card, .server-card { backdrop-filter: none; }
  .nav-logo { height: 38px; transform: translateY(0); }
  .logo-text { font-size: 1.3rem; top: 0; }
  .cta-button { padding: 0.8rem 2rem; font-size: 0.9rem; }
  .services-explaining ul { grid-template-columns: 1fr; }
  .services-explaining { margin: 2rem 1rem; }
  .glitch::before, .glitch::after { display: none; }
  .glitch { animation: none; }
  .bg-animation::before { will-change: transform; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 0 2rem; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-os { flex-direction: column; align-items: center; }
  .os-item span { font-size: 0.65rem; }
  .hero-crypto img { width: 28px; height: 28px; }
  .nav-logo { height: 30px; transform: translateY(0); }
  .logo-text { font-size: 1.1rem; top: 0; }
  .hero-title { font-size: 1.4rem; }
  .hero-subtitle { font-size: 0.88rem; }
  .stat-value { font-size: 1.1rem; }
  .cta-button { padding: 0.7rem 1.5rem; font-size: 0.85rem; display: block; width: fit-content; margin: 0 auto 0 auto; margin-right: 170px; }
  
}

@media (min-width: 769px) {
  .nav-toggle { display: none !important; }
}
.stats-bar-inner {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    width: 100%;
  }

.stat-item {
    padding: 1.4rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
    cursor: default;
   }
   

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--green-dk); }

.stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: rgb(23, 121, 56);
    font-family: 'Space Mono', monospace;
    letter-spacing: -1px;
    text-shadow: 0 0 18px rgba(21, 61, 37, 0.3);
}

.stat-num small { font-size: 0.75em; letter-spacing: 0; }

.stat-lbl {
    display: block;
    font-size: 0.67rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.2rem;
}

.bulgaria img {
  width: auto;
  height: 55px;
}


.List ul {
    display: flex; /* прави ul flex контейнер, а li елементите вътре стават flex items */
    flex-direction: column; /* подрежда ги вертикално, защото по подразбиране display:flex ги прави хоризонтално */
    gap: 0.5rem; /* разстояние между li елементите */
    list-style: none; /* маха точките */
    padding: 0; /* маха вградения отстъп на браузъра */
    margin: 0; /* маха вградения margin на браузъра */
}
.List ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ad48;
  }
.List ul img {
    height: 34px;
    width: 34px;
}
.bulgaria {
    margin-top: 25px;
    font-size: 55px;
    text-align: center;
    color: #08a84b;
}
.switzerland {
    margin-top: 25px;
    font-size: 38px;
    text-align: center;
    color: #c00202;
}
.bg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg img {
    height: 155px;
    width: auto;
}
.sw {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sw img {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
}
.bgoffshore, .swoffshore {
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 600px;
    color: rgb(3, 172, 88);
    line-height: 1.6;
    margin: 0 auto;
}
.bgoffshore { border: 1px solid #00ad48; }
.swoffshore { border: 1px solid #c00202; }
.bgoffshore ul, .swoffshore ul {
    padding-left: 1.2rem;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.moldova {
    margin-top: 25px;
    font-size: 38px;
    text-align: center;
    color: #003DA5;
}
.md {
    display: flex;
    align-items: center;
    justify-content: center;
}
.md img {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
}
.mdoffshore {
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 600px;
    color: rgb(3, 172, 88);
    line-height: 1.6;
    margin: 0 auto;
    border: 1px solid #003DA5;
}
.mdoffshore ul {
    padding-left: 1.2rem;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.final {
  color: #1ac266;
}

.stats-bar-inner img {
    filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(50%) contrast(100%);
}

.dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    min-width: 180px;
    z-index: 1000;
    padding: 8px 0;
    list-style: none;
}
.dropdown-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
}

.dropdown:hover .dropdown-menu { display: block; }

@media (max-width: 768px) {
  .hero-terminal {
    max-width: 340px;
    margin: 2rem 1rem 0 !important;
    font-size: 0.7rem !important;
  }
}

@media (max-width: 480px) {
  .hero-terminal {
    margin: 1.5rem 0.5rem 0 !important;
  }

  .hero-terminal div[style*="padding:1.25rem"] {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    padding: 0 0 0 1rem;
    min-width: unset;
  }

  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu  { display: block; }
}
@media (max-width: 768px) {
  .dropdown > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.6;
  }

  .dropdown.open > a::after {
    content: ' ▴';
  }
}
@media (max-width: 415px) {
    .glitch {
        animation: none;
        text-align: center;
        margin-right: 35px;
    }
}
@media (max-width: 415px) {
    .information p {
        animation: none;
        text-align: center;
        margin-right: 60px;
        font-size: 10px;
      }
}
.hero-terminal {
  margin: 3rem 0 0 auto;
  background: #010204;
  border: 1px solid rgba(0,200,80,0.38);
  border-radius: 10px;
  overflow: hidden;
  max-width: 400px;
  margin: 3rem auto 0;
  box-shadow: 0 0 40px rgba(0,200,80,0.1);
  position: relative;
  z-index: 1;
}
.hero-terminal {
  margin-left: 0;
}
.hero-terminal__bar {
  background: #0a0d14;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(0,200,80,0.13);
}

.hero-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-terminal__dot--red    { background: #ff5f56; }
.hero-terminal__dot--yellow { background: #ffbd2e; }
.hero-terminal__dot--green  { background: #27c93f; }

.hero-terminal__title {
  color: rgba(0,200,80,0.4);
  font-size: 0.7rem;
  font-family: 'Space Mono', monospace;
  margin-left: 0.5rem;
}

.hero-terminal__body {
  padding: 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  text-align: center;
}

.hero-terminal__prompt { color: #00e55a; }
.hero-terminal__cmd    { color: #c8d8cc; }
.hero-terminal__muted  { color: #3a7050; }
.hero-terminal__ok     { color: #00e55a; }

.hero-terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #00e55a;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@media (max-width: 468px) {
  .hero-terminal {
    max-width: 330px;
  }
}
.encrypted-network p{
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 1rem 0;
}
@media (max-width: 468px) {
  .encrypted-network p {
    max-width: 330px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cta-button {
    max-width: 250px;
    display: block;
    margin: 0 auto;
  }
}
.security-compliance .container h3{
color: rgba(0, 200, 80, 0.75);
text-align: center;
margin-bottom: 25px;
}
.security-compliance .container p{
color: rgba(0, 200, 80, 0.75);
}

.payment-methods .container p{
  color: red;
  margin-bottom: 25px;
 }
.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;

}
.security-item img{
  width: auto;
  height: 50px;
  margin-bottom: 15px;
  filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(40%) contrast(100%);
}
.servers .container p{
  color: #00ad48;
}
.plans .container p{
  color: #00ad48;
}

.cpu img {
  width: 235px;
  height: auto; 
}
.information {
  display: flex;
  gap: 0.5rem;
}
.information p{
  color: var(--green);
}
.information img {
   filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(80%) contrast(100%);
  width: auto;
  height: 24px;
  margin-top: 1px;
}
.encrypted-network {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.encrypted-network img {
  filter: invert(64%) sepia(98%) saturate(400%) hue-rotate(75deg) brightness(80%) contrast(100%);
  width: auto;
  height: 24px;
  margin-top: 1px;
}

.article-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.article-container p,
.article-container h1,
.article-container h2 {
    border: none !important;
    padding-left: 0 !important;
    box-shadow: none !important;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(21, 187, 63, 0.6);
    font-size: 0.85rem;
    margin-top: 15px;
}
.lunux-packages p {
    color: #00e55a;
    text-align: center;
    font-weight: bold;
    margin: 2rem 0 1rem;
}
.client-btn img {
    width: auto;
    height: 16px;
    position: static;
    top: unset;
    filter: none;
}