
:root {
  --bg: #000000;
  --bg-2: #1a1a1a;
  --card: #101010;
  --text: #ffffff;
  --muted: #a1a1a1;
  --brand: #7f56d9;
  --brand-2: #6941c6;
  --accent: #9e77ed;
  --ring: rgba(127, 86, 217, 0.4);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


#globe-canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
}

.hero__media .glass-card {
  padding: 0;
  background: linear-gradient(180deg, rgba(8,10,18,0.55), rgba(8,10,18,0.35));
}

@media (max-width: 640px) {
  #globe-canvas { aspect-ratio: 1 / 1; }
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial, Noto Sans, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Scrollbar: clean purple theme */
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(127, 86, 217, 0.75) rgba(255, 255, 255, 0.08);
}

/* WebKit (Chrome/Edge/Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}
::-webkit-scrollbar-corner {
  background: transparent;
}

@media (max-width: 640px) {
  ::-webkit-scrollbar { width: 8px; height: 8px; }
  html { scrollbar-width: thin; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(127, 86, 217, 0.2), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(127, 86, 217, 0.1), transparent 50%);
  background-attachment: fixed;
}
img{max-width:100%; display:block}
.container{max-width:1152px; margin-inline:auto; padding-inline:24px}
.section{padding:72px 0; position:relative}


@media (max-width: 1024px){
  .container{ padding-inline: 24px; }
  .section{ padding: 64px 0; }
}
@media (max-width: 768px){
  .container{ padding-inline: 20px; }
  .section{ padding: 56px 0; }
}
@media (max-width: 640px){
  .container{ padding-inline: 18px; }
  .section{ padding: 48px 0; }
}
@media (max-width: 480px){
  .container{ padding-inline: 16px; }
  .section{ padding: 40px 0; }
}
@media (max-width: 375px){
  .container{ padding-inline: 14px; }
  .section{ padding: 36px 0; }
}

#products{margin-top:56px}
@media (min-width: 900px){
  #products{margin-top:120px}
}
.section__title{font-size: clamp(28px, 4vw, 40px); font-weight:800; letter-spacing:-.02em; text-align:center; margin:0 0 16px}
.section__subtitle{color:var(--muted); text-align:center; margin:0 0 36px}
.gradient-text{background:linear-gradient(90deg,var(--brand),var(--accent)); -webkit-background-clip:text; background-clip:text; color:transparent}


.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}
.site-header.scrolled{
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  height: 78px;
  padding-top: 14px;
}


.site-header.scrolled .nav{
  background: rgba(8, 6, 18, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px){
  .site-header.scrolled{ height: 60px; padding-top: 0; }
  .site-header.scrolled .nav{ border-radius: 0; border: none; background: rgba(8,6,18,0.85); }
}


@media (max-width: 768px){
  .site-header{ height: 64px; }
}
@media (max-width: 480px){
  .site-header{ height: 60px; }
}
.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, height 180ms ease, padding 180ms ease, transform 220ms ease, opacity 220ms ease, border-radius 220ms ease;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.brand img{width:34px; height:34px; border-radius:8px; background:#000}
.nav-links{list-style:none; display:flex; gap:18px; margin:0 auto; padding:0; justify-content:center}
.nav-links a{color:var(--muted); text-decoration:none; padding:10px 12px; border-radius:10px}
.nav-links a:hover,.nav-links a.active{color:var(--text); background:rgba(255,255,255,.05)}
.nav-ctas{display:flex; gap:10px; justify-self:end}

.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 16px; border-radius:999px; text-decoration:none; font-weight:600; border:1px solid transparent; transition:.2s ease}
.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.btn--primary:hover {
  background: var(--brand-2);
}
.btn--secondary{background:rgba(255,255,255,.06); color:var(--text); border-color:rgba(255,255,255,.12)}
.btn--secondary:hover{background:rgba(255,255,255,.1)}
.btn--ghost{background:transparent; color:var(--text); border-color:rgba(255,255,255,.16)}
.btn--ghost:hover{background:rgba(255,255,255,.06)}


.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.nav-toggle span{width:22px; height:2px; background:#e8ecff; border-radius:2px; transition: all 0.3s ease;}

@media (max-width: 880px){
  .nav{ 
    padding: 0 16px; 
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .nav-links {
    display: none;
  }
  .nav-ctas {
    display: none;
  }
  .nav-toggle{
    display: flex;
    margin: 0;
  }
  .brand{ 
    display: flex !important; 
    align-items: center;
    font-size: 15px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  
  /* Show all links in mobile menu */
  .mobile-menu__links {
    display: block !important;
  }
  
.nav-toggle span:nth-child(1){ transform-origin: center; }
.nav-toggle span:nth-child(2){ opacity: 1; }
.nav-toggle span:nth-child(3){ transform-origin: center; }

.nav.is-open .nav-toggle span:nth-child(1){ transform: rotate(45deg) translateY(6px); }
.nav.is-open .nav-toggle span:nth-child(2){ opacity: 0; transform: scale(0); }
.nav.is-open .nav-toggle span:nth-child(3){ transform: rotate(-45deg) translateY(-6px); }


/* Desktop-only items */
@media (max-width: 880px) {
  .desktop-only {
    display: none !important;
  }
  
  /* Keep mobile menu items visible */
  .mobile-menu__links {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    margin: 0 12px;
  }
  
  .mobile-menu__links a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    transition: background-color 0.2s ease;
  }
  
  .mobile-menu__links a:hover {
    background: rgba(138, 92, 255, 0.1);
  }
  
  .mobile-menu__links a.active {
    background: rgba(138, 92, 255, 0.2);
    color: var(--text);
  }
}


.nav.is-open .nav-links{
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  display: flex;
  flex-direction: column;
  background: rgba(11, 15, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1001;
  gap: 8px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  animation: slideDown 0.3s ease-out;
  transform: translateY(-100%);
  animation-fill-mode: both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav.is-open .nav-links a{
  padding: 16px 18px;
  font-size: 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: rgba(138, 92, 255, 0.1);
}
.nav.is-open .nav-links a:hover,
.nav.is-open .nav-links a:focus{
  background: rgba(138, 92, 255, 0.1);
  outline: none;
}

.nav.is-open .nav-ctas .btn{
  min-height: 52px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
}
  .nav.is-open .nav-ctas{
    display: flex;
    flex-direction: column;
    position: static;
    margin-top: 12px;
    gap: 12px;
    padding: 0 16px 20px;
  }
  .nav.is-open .nav-ctas .btn{
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
  }
}

@media (max-width: 768px){
  .nav.is-open .nav-links{ top: 64px; max-height: calc(100vh - 64px); animation: slideDown 0.3s ease-out; transform: translateY(-100%); animation-fill-mode: both; }
}

@media (max-width: 480px){
  .nav{
    padding: 0 14px;
    justify-content: center;
  }
  .nav.is-open .nav-links{ 
    top: 60px; 
    max-height: calc(100vh - 60px); 
    padding: 16px 14px; 
    animation: slideDown 0.3s ease-out; 
    transform: translateY(-100%); 
    animation-fill-mode: both; 
  }
  .nav.is-open .nav-ctas{ 
    padding: 0 14px 16px; 
  }
}


.hero{
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  align-items: center;
  gap: 40px;
  padding: 120px 0 60px;
  min-height: 100vh;
  margin-top: -70px;
  padding-top: 190px;
}
.hero__content h1{font-size: clamp(38px, 6.5vw, 60px); line-height:1.06; margin:0 0 12px}
.hero__content p{color:var(--muted); font-size:clamp(15px,1.3vw,17px); margin:0 0 22px; max-width: 640px}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.hero__media{position:relative}
.hero__media::before{
  content: "";
  position: absolute;
  inset: -6%;
  z-index: -1;
  filter: blur(50px);
  opacity: 0.5;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(100, 60, 220, 0.7), transparent 60%),
    radial-gradient(60% 60% at 80% 70%, rgba(180, 70, 220, 0.5), transparent 60%);
  transition: opacity 0.3s ease;
}
.hero__media .glass-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.1s ease-out;
}
.hero__media img{
  aspect-ratio: 16/10;
  object-fit: cover;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.1s ease-out;
}
@media (max-width: 980px){
  .hero{grid-template-columns:1fr; padding:40px 0 28px}
}
@media (min-width: 900px){
  .hero{padding:96px 0 64px}
}


.hero--centered{
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--centered .hero__content{ max-width: 820px; }
.hero--centered .hero__content h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero--centered .hero__content p {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(18px, 1.5vw, 20px);
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 600px;
  color: var(--muted);
}
.hero--centered .hero__actions{ justify-content: center; margin-bottom: 0; }
.hero--centered .hero__metrics{ justify-content: center; display: none; }
.hero--centered .hero__media{ display: none; }


@media (max-width: 1024px){
  .hero--centered{
    padding-top: 140px;
    padding-bottom: 70px;
  }
}

@media (max-width: 768px){
  .hero--centered{
    padding-top: 100px;
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 0;
    min-height: 100vh;
  }
  .hero--centered .hero__content{
    padding: 0 8px;
  }
  .hero--centered .hero__content h1{
    font-size: clamp(36px, 10vw, 52px);
    margin-bottom: 16px;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  .hero--centered .hero__content h1 br{ display: none; }
  .hero--centered .hero__content p{
    font-size: clamp(16px, 4.5vw, 18px);
    margin-bottom: 28px;
    padding: 0;
    line-height: 1.6;
    max-width: 400px;
  }
  .hero--centered .hero__content p br{ display: none; }
  .hero--centered .hero__actions{
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
  }
  .hero--centered .hero__actions .btn{
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 640px){
  .hero--centered{
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero--centered .hero__content h1{
    font-size: clamp(32px, 9vw, 44px);
  }
}

@media (max-width: 480px){
  .hero--centered{
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero--centered .hero__content{
    padding: 0 4px;
  }
  .hero--centered .hero__content h1{
    font-size: clamp(28px, 8.5vw, 40px);
    margin-bottom: 14px;
  }
  .hero--centered .hero__content p{
    font-size: clamp(15px, 4vw, 17px);
    margin-bottom: 24px;
  }
  .hero--centered .hero__actions{
    max-width: 100%;
    gap: 10px;
  }
  .hero--centered .hero__actions .btn{
    padding: 15px 20px;
    font-size: 15px;
    min-height: 50px;
  }
}

@media (max-width: 375px){
  .hero--centered{
    padding-top: 75px;
  }
  .hero--centered .hero__content h1{
    font-size: clamp(26px, 8vw, 36px);
  }
}


.hero-phrase {
  transition: opacity 0.35s ease;
  will-change: opacity;
}
.hero-phrase.is-fade {
  opacity: 0;
}


.trusted {
  padding: 36px 0;
}
.trusted__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.trusted__title {
  font-weight: 600;
  color: var(--muted);
}
.trusted-carousel-auto {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}
.trusted-track-auto {
  display: flex;
  gap: 48px;
  animation: scroll-auto 30s linear infinite;
}
.trusted__logo {
  height: 32px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.8;
  transition: all 0.2s ease;
}
.trusted__logo:hover {
  filter: none;
  opacity: 1;
}

@keyframes scroll-auto {
  to {
    transform: translateX(calc(-50% - 24px));
  }
}


.hero-badge{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.hero-badge--left{
  left: 6%;
  top: 32%;
}
.hero-badge--right{
  right: 6%;
  top: 32%;
}
.hero-badge__icon{
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(138,92,255,.2) inset;
  backdrop-filter: blur(12px);
}
.hero-badge__icon--heart{
  color: #ff4d6d;
}
.hero-badge__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-modpacks{
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.modpack-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  min-width: 110px;
}
.modpack-card:hover{
  transform: translateY(-4px);
  border-color: rgba(138,92,255,.25);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
}
.modpack-card img{
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.modpack-card__name{
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.hero-modpacks__note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}


.modpack-card--more{
  position: relative;
}
.modpack-card__dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
}
.modpack-card__dots span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 12px var(--ring);
  animation: dotPulse 1.5s ease-in-out infinite;
}
.modpack-card__dots span:nth-child(1){ animation-delay: 0s; }
.modpack-card__dots span:nth-child(2){ animation-delay: 0.2s; }
.modpack-card__dots span:nth-child(3){ animation-delay: 0.4s; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}


.more-modal{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.more-modal.is-open{
  display: flex;
}
.more-modal__content{
  background: linear-gradient(180deg, rgba(15, 12, 35, 0.95), rgba(10, 8, 28, 0.98));
  border: 1px solid rgba(138, 92, 255, 0.3);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  animation: slideUp 0.3s ease;
}
.more-modal__close{
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.more-modal__close:hover{
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.more-modal__content h3{
  margin: 0 0 20px;
  font-size: 24px;
  color: var(--text);
  text-align: center;
}
.more-modal__list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.more-modal__item{
  background: linear-gradient(135deg, rgba(138, 92, 255, 0.15), rgba(196, 91, 255, 0.1));
  border: 1px solid rgba(138, 92, 255, 0.25);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
  cursor: default;
}
.more-modal__item:hover{
  background: linear-gradient(135deg, rgba(138, 92, 255, 0.25), rgba(196, 91, 255, 0.15));
  border-color: rgba(138, 92, 255, 0.4);
  transform: translateY(-2px);
}
.more-modal__custom{
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


@media (max-width: 1024px){
  .more-modal__content{
    max-width: 85%;
  }
}

@media (max-width: 768px){
  .more-modal__content{
    padding: 28px 24px;
    max-width: 90%;
  }
  .more-modal__content h3{
    font-size: 22px;
    margin-bottom: 18px;
  }
  .more-modal__list{
    gap: 8px;
  }
  .more-modal__item{
    padding: 9px 16px;
    font-size: 13px;
    -webkit-tap-highlight-color: transparent;
  }
  .more-modal__custom{
    font-size: 14px;
    margin-top: 18px;
    padding-top: 18px;
  }
}

@media (max-width: 640px){
  .more-modal__content{
    padding: 26px 22px;
    max-width: 92%;
  }
}

@media (max-width: 480px){
  .more-modal{
    padding: 12px;
  }
  .more-modal__content{
    padding: 24px 18px;
    border-radius: 16px;
    max-width: 95%;
  }
  .more-modal__content h3{
    font-size: 20px;
    margin-bottom: 16px;
  }
  .more-modal__close{
    width: 32px;
    height: 32px;
    font-size: 20px;
    top: 12px;
    right: 12px;
    -webkit-tap-highlight-color: transparent;
  }
  .more-modal__list{
    gap: 7px;
  }
  .more-modal__item{
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 375px){
  .more-modal{
    padding: 10px;
  }
  .more-modal__content{
    padding: 20px 16px;
  }
  .more-modal__content h3{
    font-size: 18px;
  }
  .more-modal__item{
    padding: 7px 12px;
    font-size: 11px;
  }
  .more-modal__custom{
    font-size: 13px;
  }
}


@media (max-width: 1100px){
  .hero-badge{ display: none; }
}


@media (max-width: 768px){
  .hero-modpacks{ 
    gap: 14px; 
    margin-top: 48px;
    padding: 0 24px;
    width: 100%;
  }
  .modpack-card{ 
    padding: 16px 20px;
    min-width: 100px;
    flex: 1;
    max-width: 120px;
    border-radius: 16px;
    -webkit-tap-highlight-color: transparent;
  }
  .modpack-card img{ 
    width: 64px; 
    height: 64px; 
  }
  .modpack-card__name{
    font-size: 14px;
    font-weight: 700;
  }
  .modpack-card__dots{
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 640px){
  .hero-modpacks{
    gap: 12px;
    margin-top: 42px;
    padding: 0 20px;
  }
}

@media (max-width: 480px){
  .hero-modpacks{
    gap: 10px;
    margin-top: 36px;
    padding: 0 16px;
  }
  .modpack-card{
    padding: 14px 16px;
    min-width: 85px;
    border-radius: 14px;
  }
  .modpack-card img{
    width: 56px;
    height: 56px;
  }
  .modpack-card__name{
    font-size: 13px;
  }
  .modpack-card__dots{
    width: 56px;
    height: 56px;
  }
  .modpack-card__dots span{
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 375px){
  .hero-modpacks{
    gap: 8px;
    margin-top: 32px;
  }
  .modpack-card{
    padding: 12px 14px;
    min-width: 80px;
  }
  .modpack-card img{
    width: 52px;
    height: 52px;
  }
  .modpack-card__name{
    font-size: 12px;
  }
}


.tilt{transform-style: preserve-3d; will-change: transform; transition: transform .25s ease}
.tilt img{will-change: transform; transition: transform .25s ease}
.tilt:focus-visible{outline: 2px solid var(--brand)}


.cards{display:grid; gap:18px}
.cards--3{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 960px){
  .cards--3{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .cards--3{grid-template-columns:1fr; gap: 16px;}
  .card__body{padding: 20px;}
  .card__body h3{font-size: 20px;}
  .card__body p{font-size: 14px;}
}
@media (max-width: 480px){
  .cards--3{gap: 14px;}
  .card__body{padding: 18px;}
  .card__body h3{font-size: 19px;}
}
@media (max-width: 375px){
  .card__body{padding: 16px;}
  .card__body h3{font-size: 18px;}
  .card__body p{font-size: 13px;}
}
.card {
  background: rgba(12, 10, 28, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) translateZ(0);
}

.card:hover {
  background: rgba(15, 12, 35, 0.8);
  border-color: rgba(127, 86, 217, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.card__media {
  overflow: hidden;
  transform: translateZ(30px);
}

.card__media img {
  aspect-ratio: 16/9; 
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 18px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transform: translateZ(30px);
}

.card__body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.card__body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}


@media (hover: none) {
  .card {
    transform: none !important;
  }
}


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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}


#ram-calculator-section .section__title {
    font-size: 28px;
    font-weight: 600;
}
#ram-calculator-section .section__subtitle {
    color: #8C89B8;
    max-width: 450px;
    margin: 8px auto 0;
}
.ram-calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.calculator-form {
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.calculator-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.version-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #C1BFF1;
    cursor: pointer;
    background: rgba(138, 92, 255, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(138, 92, 255, 0.2);
    transition: all 0.2s ease;
}

.version-select:hover {
    background: rgba(138, 92, 255, 0.15);
    border-color: rgba(138, 92, 255, 0.3);
    transform: translateY(-1px);
}

.version-select svg {
    transition: transform 0.2s ease;
}

.version-select:hover svg {
    transform: translateY(2px);
}
.calculator-description {
    font-size: 14px;
    color: #8C89B8;
    margin-bottom: 24px;
}
.calculator-description a {
    color: #4A90E2;
    text-decoration: none;
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #C1BFF1;
    margin-bottom: 12px;
}
.server-type-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.server-type-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
}
.server-type-option input { display: none; }
.server-type-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 92, 255, 0.3);
    transform: translateY(-2px);
}
.server-type-option.active {
    background: rgba(138, 92, 255, 0.15);
    border-color: var(--brand);
    box-shadow: 0 0 20px rgba(138, 92, 255, 0.3);
}
.server-type-option .icon { 
    width: 24px; 
    height: 24px; 
    margin-bottom: 8px; 
}
.server-type-info .title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.server-type-info .subtitle {
    display: block;
    font-size: 12px;
    color: #8C89B8;
}
.slider-container {
    position: relative;
    padding-top: 8px;
}
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    outline: none;
    transition: background .3s ease;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--brand);
    border-radius: 50%;
    cursor: pointer;
    transition: transform .2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--brand);
    border-radius: 50%;
    cursor: pointer;
}

#optimization-group.hidden {
    display: none;
}
#mods-group.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #8C89B8;
}
.form-group-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}
.number-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.number-input input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.number-input input::-webkit-outer-spin-button, 
.number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btn-stepper {
    background: transparent;
    border: none;
    color: #8C89B8;
    font-size: 20px;
    padding: 8px 16px;
    cursor: pointer;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.toggle-switch input { display: none; }
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.08);
    transition: .4s;
    border-radius: 24px;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .toggle-slider {
    background-color: var(--brand);
}
input:checked + .toggle-slider:before {
    transform: translateX(20px);
}
.recommendation-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    color: #fff;
}
.recommendation-header {
    background: #00D1FF;
    color: #13122A;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 0;
    border-radius: 6px 6px 0 0;
    margin: -20px -20px 20px;
}
.recommendation-body img { width: 64px; height: 64px; margin-bottom: 12px; }
.recommendation-body h4 { font-size: 20px; margin: 0 0 4px; color: #00D1FF; }
.rec-ram { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.rec-ram span { font-size: 20px; }
.recommendation-body p { font-size: 14px; color: #8C89B8; margin-bottom: 16px; }
.rec-price { font-size: 14px; color: #8C89B8; margin-bottom: 16px; }
.rec-price span { font-size: 18px; font-weight: 600; color: #fff; }
.recommendation-body .btn { width: 100%; }

@media (max-width: 900px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    .calculator-form {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .server-type-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-group-inline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


.interface-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.interface-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.interface-image img {
  width: 100%;
  display: block;
}


.cards{display:grid; gap:18px}
.cards--3{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 960px){
  .cards--3{grid-template-columns:1fr 1fr}
  .cards--features{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .cards--3{grid-template-columns:1fr; gap: 16px;}
  .card__body{padding: 20px;}
  .card__body h3{font-size: 20px;}
  .card__body p{font-size: 14px;}
}
@media (max-width: 480px){
  .cards--3{gap: 14px;}
  .card__body{padding: 18px;}
  .card__body h3{font-size: 19px;}
}
@media (max-width: 375px){
  .card__body{padding: 16px;}
  .card__body h3{font-size: 18px;}
  .card__body p{font-size: 13px;}
}
.card{
  background: rgba(12, 10, 28, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.card:hover {
  background: rgba(15, 12, 35, 0.8);
  border-color: rgba(138, 92, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.card__media img{aspect-ratio: 16/9; object-fit: cover}
.card__body{padding:18px}
.card__body h3{margin:0 0 6px; font-size:22px}
.card__body p{margin:0 0 12px; color:var(--muted)}


.hardware-feature {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: rgba(12, 10, 28, 0.9) !important;
  border: 1px solid rgba(138, 92, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.hardware-feature:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.hardware-feature__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}

.hardware-feature:hover .hardware-feature__bg {
  opacity: 0.25;
  transform: scale(1.05);
}

.hardware-feature__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.hardware-connection {
  margin-top: auto;
  width: 100%;
  max-width: 300px;
  align-self: center;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hardware-feature:hover .hardware-connection {
  transform: translateY(-5px);
  opacity: 1;
}


.hero__metrics{display:flex; gap:16px; flex-wrap:wrap; margin-top:14px}
.metric{display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); padding:10px 12px; border-radius:999px; color:var(--text)}
.metric__dot{width:8px; height:8px; border-radius:50%; background:linear-gradient(90deg,var(--brand),var(--accent)); box-shadow:0 0 12px var(--ring)}

.feature{padding:22px}
.feature h3{margin-top:0}


.chart{display:grid; gap:12px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); padding:22px; border-radius: var(--radius); border:1px solid rgba(255,255,255,.08)}
.bar{display:grid; grid-template-columns: 160px 1fr; align-items:center; gap:12px}
.bar__label{color:var(--muted)}
.bar__value{--w:50%; height:14px; display:block; background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius:999px; width:var(--w); box-shadow: 0 6px 16px var(--ring)}
.chart__note{color:var(--muted); margin-top:8px}


.compare {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.compare__row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06) inset,
              0 10px 32px var(--glass-yellow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare__row--highlight {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
              radial-gradient(120% 120% at 0% 0%, rgba(255,230,140,.10), transparent 60%),
              radial-gradient(120% 120% at 100% 0%, rgba(140,120,255,.10), transparent 60%);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 14px 34px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08) inset,
              0 12px 38px var(--glass-yellow);
}

.compare__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  padding: 6px;
}

.compare__content {
  display: grid;
  gap: 8px;
}

.compare__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.compare__title {
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-size: 16px;
}

.compare__meta {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  gap: 12px;
}

.compare__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.compare__bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  width: 0;
  box-shadow: 0 4px 12px var(--ring);
  transition: width 1.2s cubic-bezier(.22,.8,.24,1);
  position: relative;
  overflow: hidden;
}

.compare__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shine 2s infinite;
  opacity: 0.6;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.compare__row.is-animated .compare__bar {
  width: var(--w, 60%);
}


.compare > .compare__row:nth-of-type(1) .compare__bar { transition-delay: .0s; }
.compare > .compare__row:nth-of-type(2) .compare__bar { transition-delay: .08s; }
.compare > .compare__row:nth-of-type(3) .compare__bar { transition-delay: .16s; }
.compare > .compare__row:nth-of-type(4) .compare__bar { transition-delay: .24s; }
.compare > .compare__row:nth-of-type(5) .compare__bar { transition-delay: .32s; }


@media (max-width: 768px) {
  .compare {
    gap: 10px;
    padding: 0 12px;
  }
  
  .compare__row {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
  }
  
  .compare__logo {
    width: 40px;
    height: 40px;
    padding: 5px;
  }
  
  .compare__title {
    font-size: 15px;
  }
  
  .compare__meta {
    font-size: 13px;
    flex-direction: column;
    gap: 4px;
  }
  
  .compare__bar {
    height: 8px;
  }
}

@media (max-width: 480px) {
  .compare {
    gap: 8px;
    padding: 0 10px;
  }
  
  .compare__row {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }
  
  .compare__logo {
    width: 36px;
    height: 36px;
  }
  
  .compare__title {
    font-size: 14px;
  }
  
  .compare__meta {
    font-size: 12px;
  }
}


.faq{display:grid; gap:12px}
.faq__item{background:radial-gradient(120% 120% at 0% 0%, rgba(155,91,255,.08), transparent 60%),
                         linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:0 14px; box-shadow:0 12px 28px rgba(0,0,0,.35)}
.faq__q{width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px; text-align:left; background:transparent; color:var(--text); border:0; padding:16px 6px; font-size:18px; font-weight:600; cursor:pointer}
.faq__chev{width:18px; height:18px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; transition: transform .25s ease;}
.faq__chev::before{content:""; border: solid var(--muted); border-width: 0 2px 2px 0; display:inline-block; padding:3px; transform: rotate(45deg)}
.faq__a{height:0; overflow:hidden; opacity:0; transform: translateY(-4px); transition: height .28s ease, opacity .22s ease, transform .28s ease; color:var(--muted); padding:0 6px}
.faq__a > p{margin:0 0 14px}
.faq__item.is-open .faq__a{opacity:1; transform: translateY(0)}
.faq__item.is-open .faq__chev{transform: rotate(180deg)}


.site-footer{background:transparent; border-top:1px solid rgba(255,255,255,.06); margin-top:40px}
.footer__inner{padding:36px 24px; text-align:center}
.footer__title{font-weight:800; font-size:22px; margin:0 0 12px}
.footer__links{list-style:none; display:flex; gap:18px; justify-content:center; padding:0; margin:0 0 16px}
.footer__links a{color:var(--muted); text-decoration:none}
.footer__links a:hover{color:var(--text)}
.copyright{color:var(--muted); font-size:14px}


.bg-blob{
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: -1;
  will-change: transform;
  transition: transform 0.1s ease-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.bg-blob--one{
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand), transparent 70%);
  top: -200px;
  left: -200px;
}

.bg-blob--two{
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: -300px;
  right: -200px;
}


.parallax-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  z-index: -1;
  will-change: transform;
  transition: transform 0.1s ease-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.parallax-shape--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--brand), transparent 70%);
  top: 10%;
  right: 10%;
}

.parallax-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: 10%;
  left: 10%;
}

.parallax-shape--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--brand-2), transparent 70%);
  top: 30%;
  left: 5%;
  filter: blur(30px);
  opacity: 0.15;
}

.parallax-shape--4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: 15%;
  right: 5%;
  filter: blur(35px);
  opacity: 0.15;
}


html {
  scroll-behavior: smooth;
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  [data-parallax] {
    transform: none !important;
  }
}


.plans-hero{
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px; 
  background:
    linear-gradient(180deg, rgba(8,6,18,0.75), rgba(8,6,18,0.85)),
    url('https://th.bing.com/th/id/R.9bea4105c1af7a3b5d06cda36d350cb9?rik=SN3lK2l2a0tUVA&pid=ImgRaw&r=0') center/cover fixed no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plans-hero__overlay{position:absolute; inset:0; background: radial-gradient(80% 60% at 50% 20%, rgba(138,92,255,0.15), transparent 60%), radial-gradient(80% 60% at 50% 80%, rgba(196,91,255,0.1), transparent 60%); pointer-events:none}
.plans-hero__inner{position:relative; z-index:1}
.plans-hero__content{ text-align:center; max-width: 840px; margin-inline:auto; padding: 40px 24px }
.plans-hero__content h1{ font-size: clamp(32px, 5vw, 54px); line-height: 1.06; margin:0 0 12px }
.plans-hero__content p{ color: var(--muted); margin: 0 0 18px; font-size: clamp(15px, 1.2vw, 18px) }
.plans-hero__actions{ display: flex; gap: 10px; justify-content: center; flex-wrap: wrap }


.pricing-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:24px }
@media (max-width: 960px){ .pricing-grid{ grid-template-columns:1fr 1fr } }
@media (max-width: 640px){ .pricing-grid{ grid-template-columns:1fr } }

.price-card{ position:relative; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border:1px solid rgba(255,255,255,.12); border-radius:18px; backdrop-filter: blur(12px) saturate(120%); padding:18px; box-shadow:0 12px 28px rgba(0,0,0,.35); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease }
.price-card:hover{ transform: translateY(-4px); border-color: rgba(138,92,255,.25); box-shadow:0 16px 36px rgba(0,0,0,.4) }
.price-card--popular{ border-color: rgba(138,92,255,.35); box-shadow: 0 18px 42px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06) inset }
.price-card--popular .badge{ position:absolute; top:14px; right:14px; font-size:12px; font-weight:700; padding:6px 10px; border-radius:999px; background:linear-gradient(90deg,var(--brand-2),var(--brand)) }
.price-card__header h3{ margin:2px 0 6px; font-size:22px }
.price-card__price{ display:flex; align-items:baseline; gap:4px; margin:2px 0 6px }
.price-card__price span{ font-size:28px; font-weight:800 }
.price-card__price small{ color:var(--muted) }
.price-card__tag{ color:var(--muted); margin:0 }
.price-card__features{ list-style:none; padding:12px 0 0; margin:12px 0 16px; display:grid; gap:10px }
.price-card__features li{ display:flex; align-items:center; gap:10px; color:var(--text) }
.price-card__features .check{ 
  width: 20px; 
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316d26b'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
}
.price-card__cta{ padding-top:6px }

.plans-includes{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:18px; color:var(--muted) }
.plans-includes__item{ display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); padding:10px 12px; border-radius:999px }
.plans-includes__item .dot{ width:8px; height:8px; border-radius:50%; background:linear-gradient(90deg,var(--brand),var(--accent)); box-shadow:0 0 12px var(--ring) }


.trusted{ padding-top: 24px; padding-bottom: 10px }
.trusted__inner{ text-align:center }
.trusted__title{ color: var(--muted); font-weight:700; letter-spacing:.02em; margin: 0 0 12px }
.trusted__logos{ display:none }


.trusted-carousel-auto{
  overflow: hidden;
  width: 100%;
  margin-top: 4px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trusted-track-auto{
  display: flex;
  gap: 64px;
  animation: scroll 20s linear infinite;
  width: fit-content;
}
.trusted-track-auto:hover{
  animation-play-state: paused;
}
.trusted__logo{
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(.9) brightness(.95) contrast(1.05) drop-shadow(0 8px 18px rgba(0,0,0,.35));
  transition: filter .25s ease, transform .25s ease;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.trusted__logo::after{
  content: attr(alt);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(138, 92, 255, 0.95), rgba(196, 91, 255, 0.9));
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.trusted__logo:hover{
  filter: grayscale(0) saturate(1) brightness(1) contrast(1.05) drop-shadow(0 8px 18px rgba(0,0,0,.35));
  transform: scale(1.1);
}
.trusted__logo:hover::after{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
.trusted__logo.is-active::after{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
.trusted__logo.is-active{
  filter: grayscale(0) saturate(1) brightness(1) contrast(1.05) drop-shadow(0 8px 18px rgba(0,0,0,.35));
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@media (max-width: 768px){
  .trusted-track-auto{ gap: 48px; animation-duration: 16s; }
  .trusted__logo{ height: 40px; }
  .trusted__logo::after{ font-size: 12px; padding: 5px 12px; bottom: -28px; }
}
@media (max-width: 480px){
  .trusted-track-auto{ gap: 40px; animation-duration: 14s; }
  .trusted__logo{ height: 36px; }
  .trusted__logo::after{ font-size: 11px; padding: 4px 10px; bottom: -26px; }
}


.trusted-carousel{ position:relative; display:flex; align-items:center; gap:12px; margin-top:4px }
.trusted-viewport{ overflow:hidden; flex:1 }
.trusted-track{ display:flex; gap:22px; will-change: transform; transition: transform .35s cubic-bezier(.22,.8,.24,1) }
.trusted-arrow{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06); color:var(--text); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 6px 16px rgba(0,0,0,.35) }
.trusted-arrow:hover{ background:rgba(255,255,255,.06) }
.trusted-arrow:disabled{ opacity:.4; cursor:not-allowed }


.pricing-carousel{ position:relative; display:flex; align-items:center; gap:12px; margin-top: 12px }
.pricing-viewport{ overflow:hidden; flex:1 }
.pricing-track{ display:flex; gap:18px; will-change: transform; transition: transform .35s cubic-bezier(.22,.8,.24,1) }

.pricing-viewport .price-card{ flex: 0 0 calc((100% - 36px) / 3); width: calc((100% - 36px) / 3); min-width: 0; max-width: none }

@media (max-width: 960px){ .pricing-viewport .price-card{ flex-basis: calc((100% - 18px) / 2); width: calc((100% - 18px) / 2) } }

@media (max-width: 640px){ .pricing-viewport .price-card{ flex-basis: 100%; width: 100% } }

.carousel-arrow{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06); color:var(--text); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 8px 18px rgba(0,0,0,.35) }
.carousel-arrow:hover{ background:rgba(255,255,255,.06) }
.carousel-arrow:disabled{ opacity:.4; cursor:not-allowed }


.pricing-carousel .price-card:hover{ transform:none; border-color: rgba(255,255,255,.12); box-shadow: 0 12px 28px rgba(0,0,0,.35) }



.faq{display:grid; gap:16px; max-width:900px; margin:0 auto}
.faq__tabs{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 8px 0 18px;
}
.faq__tab{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.01em;
  cursor:pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, transform .15s ease;
  box-shadow:0 8px 18px rgba(0,0,0,.28);
}
.faq__tab:hover{ background:rgba(255,255,255,.1) }
.faq__tab[aria-selected="true"]{
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  color:#fff;
  border-color: transparent;
  box-shadow:0 8px 20px var(--ring);
}
.faq__tab:focus-visible{ outline:2px solid var(--brand); outline-offset:2px }
.faq__item{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(138,92,255,.12);
  border-radius:14px;
  padding:0;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
  will-change: transform;
}
.faq__item:hover{ border-color: rgba(138,92,255,.22); box-shadow:0 12px 32px rgba(0,0,0,.4); transform: translateY(-2px) }
.faq__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  text-align:left; background:transparent; color:var(--text); border:0; padding:20px 24px;
  font-size:18px; font-weight:700; cursor:pointer; letter-spacing:.01em;
}
.faq__q:hover{ color: var(--brand); background: rgba(255,255,255,.03) }
.faq__chev{ width:24px; height:24px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; transition: transform .3s ease, background .3s ease; background: rgba(138,92,255,.12); flex-shrink:0 }
.faq__chev::before{ content:""; border: solid var(--muted); border-width: 0 2px 2px 0; display:inline-block; padding:4px; transform: rotate(45deg); transition: border-color .3s ease }
.faq__a{
  height:0; overflow:hidden; opacity:0; transform: translateY(-8px);
  transition: height .32s ease, opacity .26s ease, transform .32s ease, padding .32s ease;
  color:var(--muted); padding:0 24px;
}
.faq__a > p{ margin:0 0 16px }
.faq__item.is-open .faq__a{ opacity:1; transform: translateY(0); padding: 0 24px 18px }
.faq__item.is-open .faq__chev{ transform: rotate(180deg); background: rgba(138,92,255,.2) }
.faq__item.is-open .faq__chev::before{ border-color: var(--brand) }


.faq__item .faq__q{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.faq__item.is-open .faq__q{
  box-shadow: 0 0 0 1px rgba(138,92,255,.2) inset, 0 8px 22px rgba(0,0,0,.28);
}
.faq__q:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}


.plugin-demo{ display:grid; grid-template-columns: 1.05fr 1fr; gap:24px; align-items:center; margin-top:12px }
@media (max-width: 900px){ .plugin-demo{ grid-template-columns: 1fr; } }
.plugin-demo__content{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px; padding:22px; box-shadow:0 12px 28px rgba(0,0,0,.35)
}
.plugin-demo__content h3{ margin:0 0 8px; font-size:22px }
.plugin-demo__content p{ margin:0 0 12px; color: var(--muted) }
.plugin-demo__features{ list-style:none; padding:0; margin:12px 0 0; display:grid; gap:10px }
.plugin-demo__features li{ display:flex; align-items:center; gap:10px }
.plugin-demo__features .check{ width:16px; height:16px; border-radius:50%; display:inline-block; background: radial-gradient(circle at 30% 30%, #16d26b 0%, #16d26b 55%, #0ea95a 56%, #0ea95a 100%); box-shadow:0 0 0 3px rgba(22,210,107,.14) }
.plugin-demo__iframe{ border-radius:18px; overflow:hidden; box-shadow:0 16px 36px rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.06) }




button, a, .btn, input, select, textarea {
  -webkit-tap-highlight-color: rgba(138, 92, 255, 0.2);
  touch-action: manipulation;
}


html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}


@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}


@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    padding: 12px 18px;
  }
  
  .section__title {
    font-size: clamp(26px, 6vw, 36px);
    line-height: 1.2;
  }
  
  .section__subtitle {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.5;
    margin-bottom: 28px;
  }
}


@media (max-width: 480px) {
  .section__title {
    font-size: clamp(24px, 7vw, 32px);
  }
  
  .section__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
}


@media (max-width: 768px) {
  .trusted-carousel-auto {
    -webkit-overflow-scrolling: touch;
  }
  
  .trusted__logo {
    cursor: pointer;
    touch-action: manipulation;
  }
}


@media (max-width: 768px) {
  .faq {
    gap: 14px;
    padding: 0 4px;
  }
  
  .faq__item {
    border-radius: 12px;
  }
  
  .faq__q {
    padding: 16px 20px;
    font-size: 16px;
    min-height: 56px;
  }
  
  .faq__tabs {
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .faq__tab {
    padding: 9px 14px;
    font-size: 14px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .faq {
    gap: 12px;
  }
  
  .faq__q {
    padding: 14px 18px;
    font-size: 15px;
    min-height: 52px;
  }
  
  .faq__tab {
    padding: 8px 12px;
    font-size: 13px;
    min-height: 38px;
  }
}


@media (max-width: 768px) {
  .compare__row {
    padding: 12px;
    border-radius: 14px;
  }
  
  .compare__logo {
    width: 40px;
    height: 40px;
  }
  
  .compare__title {
    font-size: 15px;
  }
  
  .compare__meta {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .compare__row {
    padding: 10px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  
  .compare__logo {
    width: 36px;
    height: 36px;
  }
  
  .compare__title {
    font-size: 14px;
  }
  
  .compare__meta {
    font-size: 12px;
  }
}


@media (max-width: 768px) {
  .footer__links {
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .footer__title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .footer__links {
    gap: 12px;
    font-size: 14px;
  }
  
  .footer__title {
    font-size: 18px;
  }
}


@media (max-width: 375px) {
  * {
    max-width: 100%;
  }
  
  img {
    height: auto;
  }
}


.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wizard-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.wizard-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.wizard-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(138, 92, 255, 0.2);
  box-shadow: var(--shadow);
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.wizard-modal.is-open .wizard-modal__content {
  transform: scale(1);
}

.wizard-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}

.wizard-modal__close:hover {
  color: var(--text);
}

.wizard-step {
  padding: 40px;
}

.wizard-step__header {
  text-align: center;
  margin-bottom: 40px;
}

.wizard-progress {
  width: 100%;
  height: 4px;
  background: rgba(138, 92, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 30px;
  overflow: hidden;
}

.wizard-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.wizard-step h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--text);
}

.wizard-step__header p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.ping-note {
  font-size: 13px !important;
  color: rgba(138, 92, 255, 0.7) !important;
  font-style: italic;
  margin-top: 8px !important;
}

.wizard-step p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}


.wizard-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.wizard-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .wizard-locations-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: rgba(138, 92, 255, 0.05);
  border: 2px solid rgba(138, 92, 255, 0.2);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: rgba(138, 92, 255, 0.4);
  background: rgba(138, 92, 255, 0.1);
}

.location-card.selected {
  border-color: var(--brand);
  background: rgba(138, 92, 255, 0.15);
  box-shadow: 0 0 20px rgba(138, 92, 255, 0.3);
}

.location-card__flag {
  margin-bottom: 15px;
}

.location-card__flag img {
  width: 60px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.location-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--text);
}

.location-card__latency {
  color: var(--muted);
  font-size: 14px;
}

.latency-value {
  color: var(--brand);
  font-weight: 600;
}


.wizard-form {
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
}


.slider-container {
  text-align: center;
  position: relative;
  padding: 20px 0;
  margin: 20px 0;
}

.slider-container input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  outline: none;
  margin-bottom: 20px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.slider-container input[type="range"]:hover {
  background: rgba(255, 255, 255, 0.15);
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--brand);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(138, 92, 255, 0.4);
  transition: all 0.2s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(138, 92, 255, 0.6);
}

.slider-container input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(138, 92, 255, 0.4);
  transition: all 0.2s ease;
}

.slider-container input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(138, 92, 255, 0.6);
}

.slider-container input[type="range"]::-webkit-slider-track {
  -webkit-appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.slider-container input[type="range"]::-moz-range-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.slider-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider-value span:first-child {
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
}


.server-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.server-type-card {
  background: rgba(138, 92, 255, 0.05);
  border: 2px solid rgba(138, 92, 255, 0.2);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.server-type-card:hover {
  border-color: rgba(138, 92, 255, 0.4);
  background: rgba(138, 92, 255, 0.1);
}

.server-type-card.selected {
  border-color: var(--brand);
  background: rgba(138, 92, 255, 0.15);
  box-shadow: 0 0 20px rgba(138, 92, 255, 0.3);
}

.server-type-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.server-type-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--text);
}

.server-type-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}


.wizard-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.plan-card {
  background: rgba(138, 92, 255, 0.05);
  border: 2px solid rgba(138, 92, 255, 0.2);
  border-radius: var(--radius);
  padding: 25px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: rgba(138, 92, 255, 0.4);
  background: rgba(138, 92, 255, 0.1);
}

.plan-card.selected {
  border-color: var(--brand);
  background: rgba(138, 92, 255, 0.15);
  box-shadow: 0 0 20px rgba(138, 92, 255, 0.3);
}

.plan-card--recommended {
  border-color: var(--accent);
  background: rgba(196, 91, 255, 0.1);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-card__header {
  text-align: center;
  margin-bottom: 20px;
}

.plan-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--text);
}

.plan-card__price {
  margin-bottom: 10px;
}

.plan-card__price span {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
}

.plan-card__price small {
  color: var(--muted);
  font-size: 16px;
}

.plan-card__tag {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.plan-card__features .check {
  color: var(--brand);
  margin-right: 10px;
  font-weight: 600;
}

.plan-card__cta {
  text-align: center;
}


.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.wizard-actions .btn {
  flex: 1;
  max-width: 200px;
}


.coming-soon-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.coming-soon-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.coming-soon-popup__content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(138, 92, 255, 0.3);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.coming-soon-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.2s ease;
}

.coming-soon-popup__close:hover {
  color: var(--text);
}

.coming-soon-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(138, 92, 255, 0.15);
  border: 1px solid rgba(138, 92, 255, 0.3);
  border-radius: 50px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.coming-soon-popup h2 {
  font-size: 28px;
  margin: 0 0 15px 0;
  color: var(--text);
}

.coming-soon-popup__description {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}

.coming-soon-popup .btn {
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.bedrock-support-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.bedrock-support-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.bedrock-support-content {
  position: relative;
  z-index: 1;
}

.bedrock-support-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.bedrock-support-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px 0;
}

.bedrock-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.bedrock-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.bedrock-platform-card {
  background: rgba(16, 185, 129, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.bedrock-platform-card:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.bedrock-platform-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.platform-badge {
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  color: #10b981;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-name {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.bedrock-support-footer {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  flex-wrap: wrap;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.footer-feature svg {
  color: #10b981;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .bedrock-support-banner {
    padding: 40px 25px;
  }
  
  .bedrock-support-header h2 {
    font-size: 28px;
  }
  
  .bedrock-platforms {
    grid-template-columns: 1fr;
  }
}


.trusted-section {
  text-align: center;
  padding: 4rem 0;
  background: var(--color-bg-secondary);
  border-radius: 1rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.trusted-category {
  background: var(--color-bg-primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.trusted-category h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.trusted-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.trusted-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-bg-secondary);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 220px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.trusted-logo:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
}

.trusted-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.trusted-logo span {
  font-weight: 500;
  color: var(--color-text);
}


.features-tabs {
  max-width: 1000px;
  margin: 40px auto 0;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tabs-header {
  display: flex;
  background: rgba(16, 16, 16, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.tab-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.tab-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.tabs-content {
  padding: 40px;
  position: relative;
  min-height: 300px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

.feature-item h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--text);
}

.feature-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
}

.feature-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: bold;
  font-size: 14px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .features-tabs {
    border-radius: 12px;
  }
  
  .tabs-header {
    padding: 0;
    justify-content: space-between;
  }
  
  .tab-btn {
    flex: 1;
    justify-content: center;
    padding: 16px 10px;
    font-size: 0;
    min-width: auto;
  }
  
  .tab-btn span {
    display: none;
  }
  
  .tabs-content {
    padding: 30px 20px;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tab-icon {
    width: 18px;
    height: 18px;
  }
  
  .feature-item h3 {
    font-size: 22px;
  }
  
  .feature-item p {
    font-size: 15px;
  }
}


.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: rgba(138, 92, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(138, 92, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(138, 92, 255, 0.2);
  background: rgba(138, 92, 255, 0.05);
}

.faq-item.active {
  border-color: rgba(138, 92, 255, 0.3);
  background: rgba(138, 92, 255, 0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--brand);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }
}


@media (max-width: 768px) {
  .wizard-step {
    padding: 30px 20px;
  }
  
  .wizard-locations,
  .server-types,
  .wizard-plans {
    grid-template-columns: 1fr;
  }
  
  .wizard-actions {
    flex-direction: column;
  }
  
  .wizard-actions .btn {
    max-width: none;
  }
}


@media (max-width: 640px) {
  
  #products.section,
  #bedrock-support.section,
  #ram-calculator-section.section,
  #features.section,
  #faqs.section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  
  #bedrock-support .bedrock-support-banner,
  #ram-calculator-section .calculator-container {
    padding: 24px;
  }

  
  #features .features-grid { gap: 18px; }
  #faqs .faq-container { margin: 36px auto 0; padding: 0 8px; }
}

@media (max-width: 480px) {
  #products.section,
  #bedrock-support.section,
  #ram-calculator-section.section,
  #features.section,
  #faqs.section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  #bedrock-support .bedrock-support-banner,
  #ram-calculator-section .calculator-container {
    padding: 20px;
    border-radius: 16px;
  }

  #faqs .faq-container { margin: 28px auto 0; padding: 0 6px; }
}


.mobile-menu__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1200;
}
.mobile-menu{
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1201;
}
.mobile-menu__inner{
  width: 86%;
  max-width: 420px;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 12, 35, 0.9), rgba(10, 8, 28, 0.92));
  border-left: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform .28s ease;
  padding: 18px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: auto;
}
body.mobile-menu-open .mobile-menu__backdrop{ opacity: 1; pointer-events: auto; }
body.mobile-menu-open .mobile-menu__inner{ transform: translateX(0); }

.mobile-menu__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .brand{ gap: 10px; font-size: 16px; }
.mobile-menu .brand img{ width: 28px; height: 28px; border-radius: 8px; }

.mobile-menu__close{
  position: relative;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s ease;
}
.mobile-menu__close:hover{ background: rgba(255,255,255,0.1); }
.mobile-menu__close span{
  position: absolute; width: 18px; height: 2px; background: #e8ecff; border-radius: 2px;
}
.mobile-menu__close span:first-child{ transform: rotate(45deg); }


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  background: linear-gradient(145deg, rgba(30, 30, 40, 0.8), rgba(20, 20, 30, 0.9));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(138, 92, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0.8;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(127, 86, 217, 0.15);
  border-color: rgba(138, 92, 255, 0.3);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 86, 217, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--brand);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--brand);
  color: white;
  transform: rotate(5deg) scale(1.1);
}

.feature-item h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.feature-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.feature-list li:hover {
  color: white;
}


.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}



.site-header:not(.scrolled) .nav{
  padding: 6px 24px;
  opacity: 1;
  transform: translateY(0);
}



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

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #a78bfa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 5rem;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--brand);
  border-radius: 3px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.values-section {
  margin: 6rem 0;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand);
}

.value-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #fff;
}

.value-card p {
  color: var(--muted);
  line-height: 1.6;
}


.goals-section {
  margin: 6rem 0;
  text-align: center;
}

.goals-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.goals-section p {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.goal-card {
  background: rgba(16, 16, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand);
}

.goal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  padding-left: 1.5rem;
}

.goal-card h3::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
}

.goal-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}



@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .values-grid,
  .goals-grid {
    grid-template-columns: 1fr;
  }
}

.legal-content {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  color: var(--text);
  line-height: 1.6;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--brand);
  text-align: center;
}

.legal-content .last-updated {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.check-icon {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--brand);
  font-weight: bold;
  margin-right: 0.5rem;
}

.feature-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}


.value-proposition {
  background: linear-gradient(145deg, rgba(127, 86, 217, 0.08), rgba(20, 20, 30, 0.8));
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  border: 1px solid rgba(138, 92, 255, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.value-proposition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(127, 86, 217, 0.1), transparent 60%);
  pointer-events: none;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(127, 86, 217, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.value-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}


@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .value-proposition {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .value-icon {
    margin: 0 auto 1rem;
  }
  
  .value-content h3 {
    font-size: 1.3rem;
  }
  
  .feature-actions {
    flex-direction: column;
  }
  
  .feature-actions .btn {
    width: 100%;
    text-align: center;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item, .value-proposition {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.value-proposition { animation-delay: 0.3s; }
.mobile-menu__close span:last-child{ transform: rotate(-45deg); }

.mobile-menu__links{ list-style: none; margin: 8px 0 0; padding: 8px 4px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__links a{
  display: flex; align-items: center;
  min-height: 40px; padding: 10px 10px; border-radius: 10px;
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin: 0 4px;
}

.mobile-menu__links a:hover{ 
  background: rgba(138, 92, 255, 0.12); 
  border-color: rgba(138, 92, 255, 0.25); 
}

.mobile-menu__ctas{ 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  padding: 8px 16px 20px; 
  margin: 0 12px;
  
  .btn {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 44px;
  }
}
.mobile-menu__ctas .btn{ width: 100%; min-height: 52px; font-size: 16px; border-radius: 12px; }


.nav.is-open .nav-toggle span:nth-child(1){ transform: rotate(45deg) translateY(6px); }
.nav.is-open .nav-toggle span:nth-child(2){ opacity: 0; transform: scale(0); }
.nav.is-open .nav-toggle span:nth-child(3){ transform: rotate(-45deg) translateY(-6px); }
