@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --bg:         #06090F;
  --bg-2:       #090D17;
  --bg-3:       #0C1120;
  --bg-4:       #101828;

  --blue:       #2B7FFF;
  --blue-glow:  rgba(43,127,255,0.18);
  --blue-dim:   rgba(43,127,255,0.08);
  --gold:       #C9A84C;
  --gold-dim:   rgba(201,168,76,0.12);

  --text:       #FFFFFF;
  --text-60:    rgba(255,255,255,0.6);
  --text-30:    rgba(255,255,255,0.3);
  --text-08:    rgba(255,255,255,0.08);
  --text-04:    rgba(255,255,255,0.04);

  --border:     rgba(255,255,255,0.07);
  --border-b:   rgba(43,127,255,0.25);

  --r-xs: 4px;
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,9,15,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }

.logo-mark-img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  background: var(--text-08);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--border);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-30);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 16px;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: var(--blue);
  color: var(--text);
  box-shadow: 0 0 12px rgba(43,127,255,0.45);
}

.btn-nav {
  background: var(--blue);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 24px rgba(43,127,255,0.25);
}
.btn-nav:hover { background: #3d8fff; box-shadow: 0 0 36px rgba(43,127,255,0.5); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 68px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(43,127,255,0.1) 0%, transparent 70%);
  top: -150px;
  right: -50px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner > *:first-child { min-width: 0; overflow: hidden; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 800;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.hero-title .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-60);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 380px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  flex: 1;
  padding-right: 28px;
}

.hero-stat + .hero-stat {
  padding-left: 28px;
  padding-right: 28px;
  border-left: 1px solid var(--border);
}

.hero-stat:last-child { padding-right: 0; }

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-30);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* Hero 3D card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-3d {
  width: min(460px, 100%);
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  transform: perspective(900px) rotateY(-18deg) rotateX(8deg) rotate(-4deg);
  box-shadow:
    40px 60px 140px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 80px rgba(43,127,255,0.08);
  animation: float 8s ease-in-out infinite;
}

.hero-card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes float {
  0%, 100% { transform: perspective(900px) rotateY(-18deg) rotateX(8deg) rotate(-4deg) translateY(0); }
  50%       { transform: perspective(900px) rotateY(-14deg) rotateX(6deg) rotate(-3deg) translateY(-16px); }
}

/* ── Shared Buttons ── */
.btn-primary {
  background: var(--blue);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(43,127,255,0.3);
}
.btn-primary:hover {
  background: #3d8fff;
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(43,127,255,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text-60);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--border-b); color: var(--text); }

/* ── Section Base ── */
.section { padding: 100px 40px; }
.section-alt  { background: var(--bg-2); }
.section-dark { background: var(--bg); }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-header.centered .section-eyebrow { justify-content: center; }

.section-eyebrow-line {
  width: 20px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.section-eyebrow-text {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.0;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-60);
  max-width: 500px;
  line-height: 1.75;
}
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s;
}

.pkg-card:hover {
  border-color: rgba(43,127,255,0.3);
}

.pkg-card.popular {
  border-color: rgba(43,127,255,0.5);
  box-shadow: 0 0 60px rgba(43,127,255,0.08);
}

.pkg-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pkg-index {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-30);
  letter-spacing: 1px;
}

.pkg-badge {
  background: var(--blue);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 0 12px rgba(43,127,255,0.5);
}

/* 3D flip card */
.pkg-img-scene {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  perspective: 500px; /* short = very dramatic 3D */
}

.pkg-img-flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  /* aggressive tilt so the 3D is unmissable */
  transform: rotateY(-28deg) rotateX(14deg);
  box-shadow:
    28px 40px 80px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  transition:
    transform .7s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow .7s cubic-bezier(0.23, 1, 0.32, 1);
}

.pkg-card:hover .pkg-img-flipper {
  transform: rotateY(180deg) rotateX(0deg);
  box-shadow:
    -28px 20px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(43,127,255,0.3),
    0 0 0 1px rgba(43,127,255,0.25);
}

.pkg-img-front,
.pkg-img-back {
  position: absolute;
  inset: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.pkg-img-front img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.pkg-img-back {
  transform: rotateY(180deg);
  background: var(--bg-2);
}

.pkg-img-back img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.pkg-sub {
  font-size: 12px;
  color: var(--text-30);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.pkg-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
}

.pkg-price-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-30);
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

.pkg-features li {
  font-size: 13px;
  color: var(--text-60);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--blue);
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--text-08);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.btn-buy:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 24px rgba(43,127,255,0.35); }
.pkg-card.popular .btn-buy { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 24px rgba(43,127,255,0.35); }
.pkg-card.popular .btn-buy:hover { background: #3d8fff; box-shadow: 0 0 40px rgba(43,127,255,0.6); }

/* ── How It Works ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: border-color .2s;
}

.step-block:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.step-block:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.step-block:hover { border-color: rgba(43,127,255,0.3); z-index: 1; }

.step-block-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-04);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}

.step-block-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--border-b);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-block-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.step-block-desc {
  font-size: 13px;
  color: var(--text-60);
  line-height: 1.65;
}

/* ── Payment Methods ── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.payment-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
  cursor: default;
}

.payment-card:hover { border-color: rgba(43,127,255,0.25); }

.payment-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-08);
  border: 1px solid var(--border);
}

.payment-card-icon img { width: 100%; height: 100%; object-fit: contain; }

.payment-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.payment-card-desc {
  font-size: 13px;
  color: var(--text-30);
  line-height: 1.55;
}

/* ── Trust Row ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust-item {
  background: var(--bg-3);
  padding: 40px 28px;
  text-align: center;
}

.trust-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 12px;
  color: var(--text-30);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 13px; color: var(--text-30); }

.footer-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-link { font-size: 13px; color: var(--text-30); transition: color .2s; }
.footer-link:hover { color: var(--text-60); }

.nav-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-60);
  text-decoration: none;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--text-04);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  letter-spacing: 0.2px;
}
.nav-ig:hover {
  color: #E1306C;
  border-color: rgba(225,48,108,0.4);
  background: rgba(225,48,108,0.07);
  transform: translateY(-1px);
}

/* ── Fade-up Animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--bg-4);
  border: 1px solid var(--border-b);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { border-color: rgba(255,80,80,0.4); background: rgba(255,30,30,0.07); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: clamp(44px, 9vw, 72px); }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-block:first-child { border-radius: var(--r-lg) 0 0 0; }
  .step-block:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
  .step-block:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
  .step-block:last-child { border-radius: 0 0 var(--r-lg) 0; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 20px; }
  .section { padding: 72px 20px; }
  .navbar { padding: 0 20px; }
  .footer { padding: 40px 20px 24px; }
  .hero-stats { gap: 20px; }
  .steps-row { grid-template-columns: 1fr; }
  .step-block { border-radius: 0 !important; }
  .step-block:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0 !important; }
  .step-block:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg) !important; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 760px;
}

.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:has(.faq-q.open) { border-color: rgba(43,127,255,0.3); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color .2s;
}

.faq-q:hover { color: var(--text-60); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--text-30);
  transition: transform .3s;
}

.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-60);
  line-height: 1.7;
}

/* ── order.css uses these shared vars too ── */
/* Shared toast lives here */
