html, body, * {
  box-sizing: border-box;
  user-select: none;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #070A10;
  color: #E7ECF5;
}

.hero-ctas {
   padding-top: 10px;
}

.page { min-height: 100vh; position: relative; overflow: hidden; }

.bg { position: absolute; inset: 0; pointer-events: none; }
.bg-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
}
.bg-glow {
  display: none !important;
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(24px, 18px); }
  100% { transform: translate(0, 0); }
}

.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 16, 0.86);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand { display: flex; gap: 12px; align-items: center; }
.logo {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #1A2D5C, #0B0E14);
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 900;
}
.brand-name { font-weight: 900; }
.brand-tagline { font-size: 12px; opacity: 0.8; }

.topnav { display: flex; gap: 14px; }
.nav-link {
  text-decoration: none;
  color: rgba(231,236,245,0.9);
  font-weight: 600;
}
.nav-link:hover { color: #fff; }

.btn {
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1e90ff 0%, #00e0c6 100%);
  color: #06101C;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0px); filter: brightness(0.95); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.main { padding: 20px; max-width: 1120px; margin: 0 auto; }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding-top: 20px;
}

.hero-sub { opacity: 0.9; margin: 10px 0 14px; }

.hero-bullets { display: grid; gap: 8px; }
.bullet {
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

.preview {
  border-radius: 14px;
  background: #070A10;
  border: 1px solid rgba(255,255,255,0.14);
}
.preview-title {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
}
.preview-body {
  padding: 12px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px;
}
.line { white-space: pre-wrap; }
.accent { color: #6DD6FF; font-weight: 800; }
.muted { color: rgba(231,236,245,0.65); }

.section { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.10); }

.cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
}
.card {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.steps { display: grid; gap: 12px; list-style: none; padding: 0; }
.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.step-num {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  font-weight: 900;
}

.cta-box {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;       /* center it */
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 8px;
}
.price { font-size: 32px; font-weight: 900; }
.price-note { opacity: 0.9; }

.policy { display: grid; gap: 8px; margin: 12px 0; }

.instructions ol { padding-left: 20px; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(6, 9, 14, 0.9);
}

/* FAQ Accordion */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #E7ECF5;
  text-align: left;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-weight: 900;
  font-size: 18px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(231,236,245,0.9);
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 12px 16px 16px 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
}
.footer-brand { font-weight: 900; }

@media (max-width: 760px) {
  .topnav { display: none; }
  .hero { grid-template-columns: 1fr; }
}

