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

:root {
  --bg-main: #010208;
  --bg-secondary: #050917;
  --panel-dark: rgba(7, 12, 28, 0.78);
  --blue-purple: #4b66ff;
  --blue-purple-light: #7892ff;
  --blue-purple-soft: #b2c0ff;
  --blue-glow: rgba(75, 102, 255, 0.34);
  --text-main: #f4f7ff;
  --text-soft: #c9d2f1;
  --text-muted: #9ca8d6;
  --border: rgba(120, 145, 255, 0.22);
  --shadow: 0 0 28px rgba(77, 99, 255, 0.16);
  --soft-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  --focus-ring: 0 0 0 3px rgba(120, 145, 255, 0.6);
}

html { scroll-behavior: smooth; }

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--blue-purple);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(120, 145, 255, 0.8);
  outline-offset: 3px;
  border-radius: 6px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(55, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom, rgba(43, 40, 130, 0.18), transparent 35%),
    linear-gradient(180deg, #010207 0%, #040712 28%, #071022 62%, #050811 100%);
  position: relative;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Stars */
.stars, .stars2, .stars3 {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.stars {
  background-image:
    radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
    radial-gradient(2px 2px at 90px 120px, #aebcff, transparent),
    radial-gradient(1.5px 1.5px at 170px 80px, #ffffff, transparent),
    radial-gradient(2px 2px at 240px 160px, #dce3ff, transparent),
    radial-gradient(1.5px 1.5px at 320px 40px, #ffffff, transparent),
    radial-gradient(2px 2px at 400px 200px, #9cafef, transparent),
    radial-gradient(1.5px 1.5px at 520px 100px, #ffffff, transparent),
    radial-gradient(2px 2px at 640px 50px, #d8deff, transparent),
    radial-gradient(2px 2px at 740px 150px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 860px 90px, #a2b1ff, transparent),
    radial-gradient(2px 2px at 980px 180px, #ffffff, transparent);
  background-repeat: repeat;
  background-size: 1100px 300px;
  animation: twinkle 5.5s linear infinite;
  opacity: 0.82;
}

.stars2 {
  background-image:
    radial-gradient(1px 1px at 50px 50px, #fff, transparent),
    radial-gradient(1px 1px at 150px 140px, #d3dcff, transparent),
    radial-gradient(1px 1px at 300px 70px, #fff, transparent),
    radial-gradient(1px 1px at 500px 180px, #a9baff, transparent),
    radial-gradient(1px 1px at 700px 100px, #fff, transparent),
    radial-gradient(1px 1px at 900px 200px, #e0e6ff, transparent);
  background-repeat: repeat;
  background-size: 1000px 260px;
  animation: twinkle 8s linear infinite reverse;
  opacity: 0.42;
}

.stars3 {
  background-image:
    radial-gradient(2px 2px at 80px 40px, #fff, transparent),
    radial-gradient(2px 2px at 260px 180px, #9cadff, transparent),
    radial-gradient(2px 2px at 430px 60px, #fff, transparent),
    radial-gradient(2px 2px at 670px 140px, #d2dcff, transparent),
    radial-gradient(2px 2px at 920px 80px, #fff, transparent);
  background-repeat: repeat;
  background-size: 1100px 260px;
  animation: twinkle 10s ease-in-out infinite;
  opacity: 0.24;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.015); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(2, 5, 14, 0.82);
  border-bottom: 1px solid rgba(120, 145, 255, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 16px rgba(120, 145, 255, 0.35), 0 0 30px rgba(77, 99, 255, 0.18);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: rgba(120, 145, 255, 0.42);
  background: rgba(77, 99, 255, 0.12);
  box-shadow: 0 0 18px rgba(77, 99, 255, 0.18);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: rgba(77, 99, 255, 0.08);
  border: 1px solid rgba(120, 145, 255, 0.25);
  border-radius: 10px;
  padding: 9px 13px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.2rem;
  line-height: 1;
  transition: 0.2s;
}
.hamburger:hover { background: rgba(77, 99, 255, 0.16); }

/* Hero */
.hero { padding: 95px 0 75px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.tag, .section-tag, .plan, .card-label {
  display: inline-block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-purple-soft);
  margin-bottom: 16px;
}

.hero h1, .page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-subtext, .page-hero p, .section-heading p,
.info-card p, .pricing-card p, .glass-card p, .service-preview-card p, li {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badges span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(77, 99, 255, 0.08);
  border: 1px solid rgba(120, 145, 255, 0.18);
  color: var(--text-main);
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-card {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(17, 22, 48, 0.96), rgba(6, 10, 25, 0.98)),
    radial-gradient(circle at 50% 18%, rgba(105, 130, 255, 0.22), transparent 45%);
  border: 1px solid rgba(135, 153, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 38px rgba(97, 117, 255, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(115, 145, 255, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border: 1px solid rgba(140, 160, 255, 0.12);
  pointer-events: none;
  z-index: 1;
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(105, 130, 255, 0.18), transparent 48%),
    radial-gradient(circle at 20% 80%, rgba(40, 110, 255, 0.13), transparent 38%);
  z-index: 0;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
  display: block;
  border-radius: 26px;
  filter:
    brightness(1.08) contrast(1.08) saturate(1.08)
    drop-shadow(0 0 16px rgba(170, 195, 255, 0.36))
    drop-shadow(0 0 38px rgba(75, 102, 255, 0.22));
}

.hero-logo-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 112, 255, 0.24), transparent 70%);
  filter: blur(26px);
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}

.glow-btn {
  background: linear-gradient(135deg, #3554ff, #6e87ff);
  box-shadow: 0 0 16px rgba(77, 99, 255, 0.42), 0 0 32px rgba(77, 99, 255, 0.18);
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(77, 99, 255, 0.58), 0 0 40px rgba(77, 99, 255, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(120, 145, 255, 0.35);
  background: rgba(255, 255, 255, 0.025);
}

.btn-secondary:hover {
  background: rgba(77, 99, 255, 0.08);
  box-shadow: 0 0 18px rgba(77, 99, 255, 0.14);
}

.full-btn {
  width: 100%;
  text-align: center;
  margin-top: 18px;
}

.text-link {
  color: var(--blue-purple-light);
  text-decoration: none;
  font-weight: 700;
}
.text-link:hover { color: #dbe3ff; }

/* Sections */
.section { padding: 78px 0; }

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading-tight { margin-bottom: 28px; }

.section-heading h2, .split h2, .service-heading {
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  margin-bottom: 14px;
}

.highlight-section {
  background: linear-gradient(180deg, rgba(10, 16, 34, 0.55), rgba(6, 10, 22, 0.3));
  border-top: 1px solid rgba(120, 145, 255, 0.12);
  border-bottom: 1px solid rgba(120, 145, 255, 0.12);
}

/* Cards */
.glass-card, .info-card, .pricing-card, .service-preview-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow), var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.glass-card h3, .info-card h3, .pricing-card h3, .service-preview-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

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

.pricing-grid .pricing-card { min-height: 100%; }

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.inner-page .page-hero { padding: 92px 0 30px; }

.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(53,84,255,0.16), rgba(110,135,255,0.16));
  border: 1px solid rgba(120,145,255,0.2);
  color: #d8e1ff;
  font-size: 1rem;
}

.service-preview-card { position: relative; }

.featured-service {
  border-color: rgba(120, 145, 255, 0.42);
  box-shadow: 0 0 28px rgba(77, 99, 255, 0.22), 0 14px 40px rgba(0, 0, 0, 0.32);
}

.pricing-card .price {
  font-size: 2.35rem;
  font-weight: 800;
  margin: 14px 0 18px;
  color: #fff;
}

.price-list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 18px;
}

.price-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.price-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--blue-purple-soft);
}

.featured {
  transform: scale(1.03);
  border-color: rgba(120, 145, 255, 0.42);
  box-shadow: 0 0 28px rgba(77, 99, 255, 0.26), 0 14px 44px rgba(0, 0, 0, 0.34);
}

.premium { border-color: rgba(120, 145, 255, 0.28); }

/* ===== EXPANDABLE SERVICE CARDS ===== */
.service-expand-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--soft-shadow);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.service-expand-card.open {
  border-color: rgba(120, 145, 255, 0.5);
  box-shadow: 0 0 32px rgba(77, 99, 255, 0.22), 0 14px 44px rgba(0, 0, 0, 0.34);
}

.service-expand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-main);
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
  font-family: inherit;
}

.service-expand-header:hover { background: rgba(77, 99, 255, 0.06); }

.service-header-text { flex: 1; }

.service-expand-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-purple-soft);
  margin-bottom: 4px;
  display: block;
}

.service-expand-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main);
}

.service-expand-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.service-expand-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(77, 99, 255, 0.12);
  border: 1px solid rgba(120, 145, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-purple-light);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.2s;
  line-height: 1;
  pointer-events: none;
}

.service-expand-card.open .service-expand-toggle {
  transform: rotate(45deg);
  background: rgba(77, 99, 255, 0.24);
}

.service-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-expand-card.open .service-expand-body {
  max-height: 700px;
}

.service-expand-inner {
  padding: 0 26px 26px;
  border-top: 1px solid rgba(120, 145, 255, 0.12);
  padding-top: 20px;
}

.service-expand-inner p {
  color: var(--text-soft);
  margin-bottom: 14px;
}

.service-expand-inner ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-expand-inner ul li {
  padding-left: 20px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.service-expand-inner ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--blue-purple-soft);
  font-size: 0.7rem;
  top: 5px;
}

.service-expand-grid { display: grid; gap: 14px; }

/* ===== DEPOSIT SECTION ===== */
.deposit-section {
  background: linear-gradient(135deg, rgba(53, 84, 255, 0.1), rgba(80, 110, 255, 0.05));
  border: 1px solid rgba(120, 145, 255, 0.32);
  border-radius: 28px;
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.deposit-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(77, 99, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.deposit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77, 99, 255, 0.14);
  border: 1px solid rgba(120, 145, 255, 0.35);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.82rem;
  color: var(--blue-purple-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.deposit-amount {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #7892ff, #b2c0ff, #7892ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.deposit-label {
  font-size: 1.3rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 14px;
}

.deposit-desc {
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 28px;
  font-size: 1.04rem;
  line-height: 1.65;
}

.deposit-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.deposit-features span {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(77, 99, 255, 0.08);
  border: 1px solid rgba(120, 145, 255, 0.2);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.deposit-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== ABOUT PAGE EXTRAS ===== */
.team-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(77, 99, 255, 0.06);
  border: 1px solid rgba(120, 145, 255, 0.14);
  border-radius: 16px;
}

.value-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 6px;
  color: var(--blue-purple-soft);
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.process-steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(120, 145, 255, 0.16);
  border-radius: 16px;
  counter-increment: steps;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3554ff, #6e87ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(77, 99, 255, 0.4);
  color: white;
}

.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.process-step p { font-size: 0.93rem; color: var(--text-muted); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  margin: 32px 0;
}

.stat-item {
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border: 1px solid rgba(120, 145, 255, 0.18);
  border-radius: 18px;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #7892ff, #b2c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(120, 145, 255, 0.12);
  background: rgba(2, 5, 14, 0.78);
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-wrap p { color: var(--text-soft); }

/* Animation */
.fade-up { animation: fadeUp 1s ease forwards; }
.delay { animation-delay: 0.2s; }

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

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .split, .cards {
    grid-template-columns: 1fr;
  }
  .featured { transform: none; }
  .hero-logo-card { width: min(480px, 100%); margin: 0 auto; }
  .team-values, .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 12px; }

  .hero { padding-top: 62px; }
  .hero h1, .page-hero h1 { font-size: 2.2rem; }
  .btn { width: 100%; text-align: center; }
  .hero-buttons { flex-direction: column; }

  .logo { width: 50px; height: 50px; border-radius: 16px; }

  .hero-logo-card {
    width: min(390px, 100%);
    border-radius: 28px;
    padding: 20px;
  }
  .hero-logo-card::before { inset: 16px; border-radius: 24px; }
  .hero-badges { flex-direction: column; align-items: flex-start; }

  .deposit-section { padding: 32px 20px; }
  .team-values, .stats-row { grid-template-columns: 1fr; }

  .service-expand-inner ul { grid-template-columns: 1fr; }
}
