:root {
  --bg: #0b0b0d;
  --bg-elev: #111114;
  --grid-dot: rgba(29, 229, 183, 0.07);
  --text: #e6f7f3;
  --muted: #a5c1ba;
  --accent: #1de5b7;
  --accent-strong: #00caa0;
  --accent-soft: rgba(29, 229, 183, 0.15);
  --glow: rgba(29, 229, 183, 0.3);
  --card: #0f1416;
  --card-border: rgba(29, 229, 183, 0.22);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--grid-dot) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(8px);
  z-index: 100;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; transition: height .2s ease; }

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
.site-header.scrolled .header-inner { height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft);
  color: #111; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--card-border);
}
.brand-logo { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 12px var(--glow)); }
.brand-name { font-weight: 700; letter-spacing: 0.2px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav-group { display: flex; gap: 24px; }
.nav-dropdown { position: relative; }
.nav-link { background: none; border: 0; color: var(--muted); font: inherit; cursor: pointer; text-decoration: none; padding: 6px 0; display: flex; align-items: center; gap: 4px; }
.nav-link:hover { color: var(--text); }
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
}
.nav-search input {
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 13px;
  min-width: 160px;
  outline: none;
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search button {
  background: var(--accent);
  border: 0;
  color: #0f1416;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.nav-search button:hover { box-shadow: 0 6px 16px var(--glow); transform: translateY(-1px); }
.search-feedback {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 13px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all .2s ease;
  max-width: 220px;
}
.search-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.dropdown-toggle::after { content: '▾'; font-size: 0.8em; transition: transform .2s ease; }
.nav-dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  box-shadow: var(--shadow);
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown-item {
  display: block;
  padding: 8px 16px;
  color: var(--muted);
  text-decoration: none;
  transition: all .15s ease;
  font-size: 14px;
}
.dropdown-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-actions { display: flex; gap: 8px; align-items: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: all .2s ease; border: 1px solid transparent; cursor: pointer; font-size: 14px; }
.btn-pill { background: var(--accent); color: var(--text); font-weight: 600; }
.btn-primary { background: var(--accent); color: #0f1416; font-weight: 800; box-shadow: 0 6px 24px var(--glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 36px var(--glow); }
.btn-ghost { border-color: var(--card-border); background: transparent; color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--text); background: var(--accent-soft); }
.btn.is-disabled { opacity: 0.65; cursor: not-allowed; box-shadow: none; }
.btn.is-disabled:hover { transform: none; box-shadow: none; }
.w-full { width: 100%; }

.btn-nav {
  background-color: var(--accent);
  color: #0f1416;
  font-weight: 700;
  padding: 8px 16px;
}

.btn-nav:hover {
  background-color: var(--accent-strong);
  transform: translateY(-1px);
}

.hero { position: relative; z-index: 1; padding: 80px 0; text-align: left; }
.hero.hero-banner {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.subpage-hero { padding-top: 0; padding-bottom: 0; }
.subpage-hero .hero-inner { padding-top: 24px; padding-bottom: 24px; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--card-border); background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.eyebrow-dot { color: var(--accent); }
.hero-title { font-size: clamp(42px, 7vw, 76px); line-height: 1.2; margin: 16px 0 12px; font-weight: 900; letter-spacing: -0.5px; color: var(--text); text-align: left; }
.text-gradient { background: linear-gradient(90deg, #3eefc2, #1de5b7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subtitle { max-width: 720px; color: var(--muted); font-size: 18px; text-align: left; }
.hero-ctas { display: flex; gap: 12px; margin: 22px 0 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0 0; align-items: center; }
.feature-card { background: linear-gradient(180deg, rgba(29, 229, 183, 0.07) 0%, rgba(29, 229, 183, 0) 100%), var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: flex-start; text-align: left; position: relative; overflow: hidden; width: 100%; }
.feature-card::after{ content:''; position:absolute; inset:-1px; border-radius: calc(var(--radius) + 1px); padding:1px; background: linear-gradient(180deg, var(--accent), transparent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.5; }

.compare { padding: 56px 0 12px; }
@media (min-width: 900px) {
  .compare { padding-top: 102px; margin-top: 24px; }
}
.compare-card { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.compare-card::after { content: ''; position: absolute; inset: -1px; border-radius: calc(var(--radius) + 1px); padding: 1px; background: linear-gradient(180deg, var(--accent), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.5; }
.provider-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }

.provider-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; gap: 12px; padding: 12px; background: transparent; opacity: 0; transform: scale(0.98); filter: none; transition: opacity .35s ease-out, transform .35s ease-out, background .2s ease; will-change: transform; }
.provider-row:not(:last-child) { border-bottom: 1px solid var(--card-border); }
.provider-row:hover { background: var(--accent-soft); }
.provider-row.ours { background: radial-gradient(120% 120% at 10% 10%, var(--accent-soft), rgba(20,20,24,1)); }
body.is-loaded .provider-row { opacity: 1; transform: none; filter: none; }

.provider-row:nth-child(1) { transition-delay: .05s; }
.provider-row:nth-child(2) { transition-delay: .08s; }
.provider-row:nth-child(3) { transition-delay: .11s; }
.provider-row:nth-child(4) { transition-delay: .14s; }
.provider-row:nth-child(5) { transition-delay: .17s; }
.brand-cell { display: inline-flex; align-items: center; gap: 12px; }
.provider-logo { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; background: rgba(255,255,255,0.06); border: 1px solid var(--card-border); }
.provider-name { font-weight: 700; color: var(--text); }
.provider-meta { color: var(--muted); display: grid; gap: 2px; font-size: 14px; }
.price { font-weight: 800; color: var(--text); }
.cpu { font-weight: 600; color: var(--muted); }
.bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.bar::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; border-radius: 999px; transition: width .9s ease-out; }
.bar-good::after { background: linear-gradient(90deg, var(--accent), var(--accent-strong)); }
.bar-mid::after { background: linear-gradient(90deg, #e5c71d, #ffb800); }
.bar-low::after { background: linear-gradient(90deg, #ff6b6b, #ff3b3b); }
.bar-good.is-filled::after { width: 100%; }
.bar-mid.is-filled::after { width: 72%; }
.bar-low.is-filled::after { width: 41%; }
.compare-note { color: var(--muted); font-size: 13px; margin-top: 10px; }

@media (max-width: 900px) {
  .provider-row { grid-template-columns: 1fr; align-items: start; }
}

.brand-cell { display: inline-flex; align-items: center; gap: 12px; }
.provider-logo { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; background: rgba(255,255,255,0.06); border: 1px solid var(--card-border); }
.provider-name { font-weight: 700; color: var(--text); }
.provider-meta { color: var(--muted); display: grid; gap: 2px; font-size: 14px; }
.price { font-weight: 800; color: var(--text); }
.cpu { font-weight: 600; color: var(--muted); }
.bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.bar::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; border-radius: 999px; transition: width .9s ease-out; }
.bar-good::after { background: linear-gradient(90deg, var(--accent), var(--accent-strong)); }
.bar-mid::after { background: linear-gradient(90deg, #e5c71d, #ffb800); }
.bar-low::after { background: linear-gradient(90deg, #ff6b6b, #ff3b3b); }
.bar-good.is-filled::after { width: 100%; }
.bar-mid.is-filled::after { width: 72%; }
.bar-low.is-filled::after { width: 41%; }
.compare-note { color: var(--muted); font-size: 13px; margin-top: 10px; }

.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-toggle-btn {
  background: var(--accent-soft);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-toggle-btn:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: #0f1416;
  border-color: var(--accent);
}

.plan-toggle-btn.is-active {
  background: var(--accent);
  color: #0f1416;
  border-color: var(--accent);
}

.cards-group {
  display: none;
}

.cards-group.is-active {
  display: block;
}

@media (max-width: 900px) {
}


@media (max-width: 900px) {
}

@media (max-width: 900px) {
  .provider-row { grid-template-columns: 1fr; align-items: start; }
}

body:not(.is-loaded) .hero .eyebrow, 
body:not(.is-loaded) .hero .hero-title, 
body:not(.is-loaded) .hero .hero-subtitle, 
body:not(.is-loaded) .hero .hero-ctas {
  opacity: 0;
  transform: translateY(10px);
}

body:not(.is-loaded) .hero .eyebrow { opacity: 0; transform: translateY(8px); filter: none; }
body:not(.is-loaded) .hero .hero-title { opacity: 0; transform: translateY(8px); }
body:not(.is-loaded) .hero .hero-subtitle { opacity: 0; transform: translateY(8px); }
body:not(.is-loaded) .hero .hero-ctas { opacity: 0; transform: translateY(8px); }
body:not(.is-loaded) .feature-grid .feature-card { opacity: 0; transform: scale(0.96); }

body.is-loaded .hero .eyebrow,
body.is-loaded .hero .hero-title,
body.is-loaded .hero .hero-subtitle,
body.is-loaded .hero .hero-ctas { transition: opacity .4s ease-out, transform .4s ease-out; opacity: 1; transform: none; filter: none; }

body.is-loaded .hero .eyebrow { transition-delay: .03s; }
body.is-loaded .hero .hero-title { transition-delay: .08s; }
body.is-loaded .hero .hero-subtitle { transition-delay: .13s; }
body.is-loaded .hero .hero-ctas { transition-delay: .18s; }

body.is-loaded .feature-grid .feature-card { transition: opacity .35s ease-out, transform .35s ease-out; opacity: 1; transform: none; }
body.is-loaded .feature-grid .feature-card:nth-child(1) { transition-delay: .20s; }
body.is-loaded .feature-grid .feature-card:nth-child(2) { transition-delay: .20s; }
body.is-loaded .feature-grid .feature-card:nth-child(3) { transition-delay: .20s; }
body.is-loaded .feature-grid .feature-card:nth-child(4) { transition-delay: .20s; }

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body:not(.is-loaded) .hero .eyebrow,
  body:not(.is-loaded) .hero .hero-title,
  body:not(.is-loaded) .hero .hero-subtitle,
  body:not(.is-loaded) .hero .hero-ctas,
  body:not(.is-loaded) .feature-grid .feature-card { opacity: 1; transform: none; filter: none; }
}

.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--bg-elev); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 8px; box-shadow: var(--shadow); transform: translateY(8px); opacity: 0; pointer-events: none; transition: opacity .12s ease, transform .12s ease; }
.dropdown.is-open > .dropdown-menu { opacity: 1; transform: translateY(6px); pointer-events: auto; }
.dropdown-item { display: block; padding: 10px 12px; color: var(--text); text-decoration: none; border-radius: 10px; border: 1px solid transparent; outline: none; }
.dropdown-item:hover, .dropdown-item:focus { background: rgba(255,255,255,0.04); border-color: var(--card-border); }

.nav-link.active, .dropdown-item.active { color: var(--accent); }
.feature-icon { font-size: 22px; opacity: 1; margin-bottom: 8px; }
.feature-icon img { filter: drop-shadow(0 0 8px rgba(0,0,0,0.5)); width: 24px; height: 24px; object-fit: contain; }
.feature-icon img { width: 24px; height: 24px; object-fit: contain; }
.feature-card-hardware .feature-icon { color: #A09EFF; }
.feature-card-ddos .feature-icon { color: #63E2FF; }
.feature-card-nvme .feature-icon { color: #FFB86C; }
.feature-card-network .feature-icon { color: #6CB2FF; }
.feature-card-hardware .feature-title { background: linear-gradient(90deg, #3EEEC2 0%, #D5F996 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-card-ddos .feature-title { background: linear-gradient(90deg, #3EEEC2 0%, #D5F996 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-card-nvme .feature-title { background: linear-gradient(90deg, #F9C889 0%, #3EEEC2 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-card-network .feature-title { background: linear-gradient(90deg, #3EEEC2 0%, #D5F996 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-kicker { color: var(--muted); font-size: 13px; letter-spacing: 0.3px; }
.feature-title { font-size: 22px; font-weight: 800; background: linear-gradient(90deg, var(--text) 70%, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-meta { color: var(--muted); font-size: 12px; }

.services { padding: 72px 0; position: relative; z-index: 1; }
.why-choose { padding: 72px 0; position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head .section-subtitle { max-width: 640px; margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.service-card-link { text-decoration: none; color: inherit; display: block; }
.service-card {
  background: var(--bg-elev);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-card-link:hover .service-card {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.service-banner {
  position: relative;
}
.service-banner img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.service-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
}
.service-badge.popular { background: var(--accent); color: #0f1416; }
.service-badge.pre-order { background: #ff9f1c; }
.service-card-content { padding: 16px; }
.service-title {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 8px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
.service-icons {
  display: flex;
  gap: 8px;
}
.service-icons span {
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.contact-note { margin-top: 14px; color: var(--muted); font-size: 14px; }

@media (max-width: 880px) {
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

.pricing { padding: 64px 0; margin-top: 96px; }
.section-title { font-size: 34px; font-weight: 900; letter-spacing: -0.3px; margin: 0 0 8px; color: var(--text); }
.section-subtitle { color: var(--muted); margin-bottom: 22px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.plan { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 20px; position: relative; box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; }
.plan:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); border-color: var(--accent); }
.plan.highlighted { border-color: var(--accent); }
.plan-badge { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #0f1416; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.plan-name { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.plan-price { font-size: 28px; font-weight: 900; background: linear-gradient(90deg, var(--accent), #ffcc33); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.plan-price small { color: var(--muted); font-size: 14px; font-weight: 600; }
.plan-list { list-style: none; margin: 0 0 16px; padding: 0; color: var(--muted); flex-grow: 1; }
.plan-list li { padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); font-size: 15px; }
.plan-list li:last-child { border-bottom: 0; }

.calculator-wrapper { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-top: 24px; }
.calculator-display { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 20px; border-bottom: 1px solid var(--card-border); padding-bottom: 20px; margin-bottom: 20px; }
.display-label { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.display-value { font-size: 28px; font-weight: 800; color: var(--text); }
.display-value span { color: var(--accent); }

.slider-container { padding: 10px 0; }
.slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; background: var(--bg-elev); border-radius: 5px; outline: none; opacity: 0.7; transition: opacity .2s; }
.slider:hover { opacity: 1; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: var(--accent); border-radius: 50%; cursor: pointer; box-shadow: 0 0 10px var(--glow); }
.slider::-moz-range-thumb { width: 24px; height: 24px; background: var(--accent); border-radius: 50%; cursor: pointer; }

.slider-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }

.specs-display { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-top: 20px; background: var(--bg-elev); padding: 16px; border-radius: var(--radius-sm); }
.spec-item { font-size: 15px; color: var(--text); }
.specs-display strong { color: var(--muted); }

.plans-carousel-wrapper { position: relative; margin: 0 auto; max-width: 1200px; }
.plans-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; padding: 24px 24px 24px 24px; scrollbar-width: none; -ms-overflow-style: none; }
.plans-carousel::-webkit-scrollbar { display: none; }
.plans-carousel .plan { flex: 0 0 280px; }

.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.carousel-btn { background: rgba(255,255,255,0.08); border: 1px solid var(--card-border); color: var(--text); width: 44px; height: 44px; border-radius: 50%; font-size: 24px; cursor: pointer; transition: background .2s, border-color .2s; }
.carousel-btn:hover { background: rgba(255,255,255,0.12); border-color: var(--accent); }

.panel { padding: 56px 0; }
.panel-inner { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 960px) { .panel-inner { grid-template-columns: 1.1fr 0.9fr; } }
.panel-copy .bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0 22px; }
.bullet { background: var(--accent-soft); border: 1px solid var(--card-border); padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text); }
.panel-art { position: relative; display: grid; place-items: center; }
.panel-art::before { content: ''; position: absolute; width: 70%; max-width: 520px; aspect-ratio: 3 / 1; background: radial-gradient(60% 120% at 30% 50%, var(--glow), transparent); filter: blur(24px); transform: rotate(-6deg) translateY(10%); }
.trident-art { width: 100%; max-width: 540px; transform: rotate(3deg); filter: drop-shadow(0 14px 48px rgba(0,0,0,0.75)) drop-shadow(0 6px 24px var(--glow)); animation: subtle-pulse 5s ease-in-out infinite alternate; }
@keyframes subtle-pulse { 0%,100% { transform: rotate(3deg) scale(1); } 50% { transform: rotate(3deg) scale(0.995); } }

.faq { padding: 56px 0; background: var(--bg); margin-top: -60px; padding-top: 120px; }
.faq .container { max-width: 900px; }
.faq .section-title { color: var(--text); }
.faq .section-subtitle { color: var(--muted); max-width: 680px; margin-left: auto; margin-right: auto; }

.section-kicker { display: inline-block; background: var(--accent-soft); color: var(--accent); padding: 6px 14px; border-radius: 999px; font-weight: 600; font-size: 13px; margin-bottom: 12px; }
.text-center { text-align: center; }
.text-center { text-align: center !important; }

.faq-tabs { display: inline-flex; border-radius: 12px; background: rgba(255,255,255,0.06); padding: 6px; gap: 8px; margin-top: 32px; margin-bottom: 28px; }
.faq-tab { background: none; border: 0; padding: 10px 18px; font-size: 15px; font-weight: 600; color: var(--muted); border-radius: 8px; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.faq-tab.is-active { background: var(--card); color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.faq-tab:active { transform: scale(0.98); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
  text-align: left;
  transition: opacity .18s ease, filter .18s ease;
}
.faq-grid.switching { opacity: .55; filter: blur(1px); }

.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.faq-item:hover { border-color: var(--accent); background: rgba(255,255,255,0.02); }
.faq-question { font-weight: 600; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 16px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { padding-bottom: 12px; }
.faq-q-icon { margin-right: 12px; color: var(--muted); transform: translateY(-1px); transition: transform .2s ease, color .2s ease; }
.faq-item[open] .faq-q-icon { transform: translateY(-1px) rotate(90deg); color: var(--accent); }
.faq-tags { display: flex; gap: 8px; margin-left: auto; }
.faq-tag { background: var(--accent-soft); color: var(--accent); padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }

.faq-answer { color: var(--muted); padding-top: 12px; line-height: 1.6; border-top: 1px solid var(--card-border); margin-top: 12px; padding-right: 20px; font-size: 15px; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(-2px); transition: max-height .26s ease, opacity .2s ease, transform .2s ease; }
.faq-item[open] .faq-answer { max-height: 400px; opacity: 1; transform: translateY(0); }

.site-footer { border-top: 1px solid var(--card-border); margin-top: 0; padding: 48px 0; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: center; }
@media (min-width: 820px) { .footer-inner { grid-template-columns: auto 1fr auto; } }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--muted); text-align: center; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section .brand {
  margin-bottom: 10px;
}

.brand-tagline {
  color: var(--muted);
  font-size: 15px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.footer-heading {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent);
}

.brand-col .footer-copy {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
}

.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); white-space: nowrap; overflow: hidden; clip-path: inset(50%); }

.menu-toggle { display: none; background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); color: var(--text); border-radius: 10px; padding: 8px 10px; cursor: pointer; }
.mobile-menu { position: fixed; inset: 0; background: rgba(0,0,0,0.45); transform: translateX(100%); transition: transform .2s ease; z-index: 20; }
.mobile-menu .mobile-menu-inner { position: absolute; right: 0; top: 0; bottom: 0; width: 100%; max-width: 320px; background: #0a0f10; border-left: 1px solid var(--card-border); padding: 18px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow); }
@media (max-width: 900px) { .nav-group { display: none; } }
@media (max-width: 900px) {
  .container { padding: 0 22px; }
  .menu-toggle { display: inline-flex; }
  .hero-title { font-size: clamp(40px, 6vw, 64px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .panel-inner { grid-template-columns: 1fr; }
  .nav-search { display: none; }
}
.mobile-link { color: var(--text); text-decoration: none; padding: 12px 10px; border-radius: 10px; border: 1px solid transparent; }
.mobile-link:hover { border-color: var(--card-border); background: rgba(255,255,255,0.03); }
.menu-close { align-self: flex-end; background: none; border: 0; color: var(--muted); font-size: 20px; cursor: pointer; margin-bottom: 6px; }
.menu-open #mobile-menu { transform: translateX(0); }


@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { height: 64px; }
  .site-header.scrolled .header-inner { height: 58px; }
  body { padding-top: 64px; }
  .brand-name { display: none; }
  .nav { gap: 8px; }
  .menu-toggle { display: inline-flex; }
  .btn, .btn-pill { padding: 10px 14px; }

  .hero { padding: 28px 0 8px; }
  .hero-inner { padding: 24px 0 8px; }
  .hero-ctas { flex-direction: column; }
  .eyebrow { padding: 7px 11px; font-size: 13px; }
  .hero-title { margin-top: 10px; }
  .hero-subtitle { font-size: 15px; margin-right: 2px; }

  .feature-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .plan { padding: 14px; }
  .section-title { font-size: 26px; }
  .panel-copy .bullets { grid-template-columns: 1fr; }
  .trident-art { max-width: 360px; }
  .footer-inner { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .btn { padding: 8px 12px; }
  .hero-title { font-size: clamp(32px, 9.5vw, 54px); }
  .hero-subtitle { font-size: 14px; }
}

.calculator { padding: 56px 0; }
.calc-head .section-title { margin-bottom: 6px; }
.calc-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px; margin-top: 18px; opacity: 0; transform: scale(0.98); filter: none; transition: opacity .4s ease-out, transform .4s ease-out; }
.calc-grid.is-visible { opacity: 1; transform: none; filter: none; }

.calc-controls, .calc-result { opacity: 1; transform: none; transition: none; }
.calc-controls .calc-row { opacity: 1; transform: none; transition: none; }
.calc-controls .calc-row:nth-child(1),
.calc-controls .calc-row:nth-child(2),
.calc-controls .calc-row:nth-child(3),
.calc-controls .calc-row:nth-child(4) { transition-delay: 0s; } 



@media (max-width: 900px){ .calc-grid { grid-template-columns: 1fr; } }

.calc-controls { background: radial-gradient(120% 120% at 10% 10%, var(--teal-soft), rgba(20,20,24,1)); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.calc-row { margin-bottom: 16px; }
.calc-label { display: block; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.calc-segments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.seg { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); color: var(--text); border-radius: 12px; padding: 12px 10px; cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .15s ease; }
.seg small { color: var(--muted); font-weight: 500; }
.seg.is-active, .seg:hover { background: var(--accent-soft); border-color: var(--accent); }
.seg:active { transform: scale(0.98); }

@media (prefers-reduced-motion: reduce) {
  .calc-grid, .calc-controls, .calc-result, .calc-controls .calc-row { transition: none !important; transform: none !important; opacity: 1 !important; filter: none !important; }
}

.calc-split { display: flex; align-items: center; justify-content: space-between; }
.calc-out { color: var(--text); font-weight: 800; }
input[type=range] { width: 100%; height: 6px; -webkit-appearance: none; appearance: none; background: rgba(255,255,255,0.08); border-radius: 999px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 2px solid #071411; box-shadow: 0 0 0 4px var(--accent-soft); cursor: pointer; }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 2px solid #071411; box-shadow: 0 0 0 4px var(--accent-soft); cursor: pointer; }
.calc-scale { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-top: 6px; }

.calc-toggle-row { display: flex; align-items: center; justify-content: space-between; }
.switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.switch input { display: none; }
.slider { position: absolute; inset: 0; background: rgba(255,255,255,0.08); border: 1px solid var(--card-border); border-radius: 999px; transition: background .2s ease, border-color .2s ease; }
.slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: var(--text); border-radius: 50%; transition: transform .2s ease, background .2s ease; }
.switch input:checked + .slider { background: var(--accent-soft); border-color: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(22px); background: var(--accent); }

.calc-row.is-disabled { opacity: .6; }
.calc-row.is-disabled .calc-label, .calc-row.is-disabled .calc-scale, .calc-row.is-disabled .calc-out { color: var(--muted); }
input[type=range]:disabled { filter: grayscale(1); opacity: .6; cursor: not-allowed; }
input[type=range]:disabled::-webkit-slider-thumb { background: #9aa8a3; box-shadow: none; border-color: #0b1412; }
input[type=range]:disabled::-moz-range-thumb { background: #9aa8a3; box-shadow: none; border-color: #0b1412; }

.calc-result { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: grid; gap: 10px; align-content: start; }
.rec-pill { align-self: start; background: var(--accent); color: #0f1416; display: inline-block; font-weight: 800; font-size: 12px; padding: 6px 10px; border-radius: 999px; }
.rec-ram { font-weight: 900; font-size: 34px; background: linear-gradient(90deg, var(--accent), var(--accent-strong)); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 4px 0; }
.rec-copy { color: var(--muted); margin: 8px 0 12px; }

.trustpilot-widget {
  
  min-height: 52px; 
  
  display: flex;
  align-items: center;
  
  transform: translateY(6px); 
}


.trustpilot-widget iframe {
  background-color: transparent !important;
}









