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

html, body {
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #312e81 0, #020617 40%, #000 100%);
  color: #e5e7eb;
}

/* ========= LAYOUT HELPERS ========= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-title.left {
  text-align: left;
}

.section-sub {
  text-align: center;
  font-size: 0.96rem;
  color: #9ca3af;
  max-width: 640px;
  margin: 0.25rem auto 1.75rem;
}

.section-sub.left {
  text-align: left;
  margin-left: 0;
}

/* backgrounds */
.section-dark {
  background: radial-gradient(circle at top, rgba(59,130,246,0.2), transparent 55%);
}

.section-gradient {
  background: linear-gradient(135deg, #312e81, #1d1b3b);
}

.section-soft {
  background: #020617;
}

/* ========= HEADER & NAV ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(3,7,18,0.85);
  border-bottom: 1px solid rgba(148,163,184,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

/* logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark img {
  width: 32px;
  height: 32px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(59,130,246,0.9));
  animation: floatLogo 3.5s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.75rem;
  color: #a5b4fc;
}

/* nav */
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #cbd5f5;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(79,70,229,0.2);
  color: #f9fafb;
  transform: translateY(-1px);
}

/* mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* ========= HERO ========= */
.hero {
  padding: 80px 0 72px;
  background: radial-gradient(circle at top, #4c1d95 0, #020617 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(129,140,248,0.8);
  color: #c7d2fe;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-left .accent {
  color: #a5b4fc;
}

.hero-text {
  font-size: 0.98rem;
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 8px;
}

.hero-tagline span {
  font-size: 0.92rem;
  color: #fbbf24;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 12px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9ca3af;
}

.meta-value {
  font-weight: 600;
}

/* hero right */
.neon-card {
  background: radial-gradient(circle at top, rgba(79,70,229,0.65), rgba(15,23,42,0.98));
  border-radius: 18px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(129,140,248,0.85);
  box-shadow: 0 24px 60px rgba(15,23,42,0.9);
}

.neon-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c7d2fe;
}

.neon-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #facc15;
  margin: 6px 0 4px;
}

.neon-list {
  font-size: 0.86rem;
  color: #e5e7eb;
  margin: 6px 0 10px;
}

.neon-list li {
  margin-bottom: 4px;
}

.neon-foot {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #cbd5f5;
}

.hero-floating {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.88);
  border: 1px solid rgba(129,140,248,0.6);
  font-size: 0.8rem;
  color: #e5e7eb;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.pill-dot-green {
  background: #facc15;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(59,130,246,0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(37,99,235,0.6);
}

.btn-secondary {
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.7);
}

.btn-secondary:hover {
  background: rgba(15,23,42,1);
}

.btn-ghost {
  background: rgba(15,23,42,0.6);
  border-color: rgba(148,163,184,0.6);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15,23,42,0.9);
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.8);
}

/* ========= CATEGORY CHIPS ========= */
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.category-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.65);
  font-size: 0.85rem;
  color: #e5e7eb;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.category-chip:hover {
  background: rgba(79,70,229,0.85);
  border-color: rgba(129,140,248,1);
  transform: translateY(-1px);
}

/* ========= PLANS CARDS ========= */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.plan-card {
  background: rgba(15,23,42,0.96);
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 16px 46px rgba(15,23,42,0.7);
  font-size: 0.88rem;
}

.plan-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.plan-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #facc15;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a5b4fc;
}

.plan-desc {
  color: #9ca3af;
  margin: 4px 0 8px;
}

.plan-card ul {
  list-style: none;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.plan-card ul li {
  margin-bottom: 4px;
}

.payments-note {
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15,23,42,0.95);
  border: 1px dashed rgba(129,140,248,0.8);
  font-size: 0.86rem;
  color: #cbd5f5;
}

/* ========= HOW IT WORKS ========= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin-top: 10px;
}

.step-card {
  background: rgba(15,23,42,0.9);
  border-radius: 14px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.86rem;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(79,70,229,0.2);
  color: #a5b4fc;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ========= ABOUT ========= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0,2.3fr);
  gap: 20px;
  align-items: flex-start;
}

.about-text {
  font-size: 0.94rem;
  color: #e5e7eb;
  max-width: 520px;
}

.about-list {
  list-style: none;
  font-size: 0.88rem;
  color: #cbd5f5;
}

.about-list li {
  margin-bottom: 6px;
}

/* ========= CONTACT ========= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0,2.4fr);
  gap: 22px;
  align-items: flex-start;
}

.contact-details p {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.contact-helper {
  background: rgba(15,23,42,0.98);
  border-radius: 14px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(148,163,184,0.5);
  font-size: 0.86rem;
}

.contact-helper ul {
  margin-top: 6px;
  list-style: none;
}

.contact-helper li {
  margin-bottom: 4px;
}

/* ========= SERVICES PAGE ========= */
.top-pad {
  padding-top: 76px;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0,2.2fr);
  gap: 20px;
  align-items: flex-start;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.92rem;
  color: #d1d5db;
  margin-bottom: 8px;
}

.service-list {
  list-style: none;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.service-list li {
  margin-bottom: 4px;
}

.service-side {
  background: rgba(15,23,42,0.95);
  border-radius: 14px;
  padding: 12px 14px 16px;
  border: 1px solid rgba(148,163,184,0.6);
  font-size: 0.86rem;
}

.service-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #a5b4fc;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #facc15;
  margin: 6px 0 10px;
}

/* ========= FOOTER ========= */
.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148,163,184,0.4);
}

.footer-inner {
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-sub {
  margin-top: 2px;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .hero {
    padding-top: 72px;
  }
}

@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    right: 16px;
    top: 56px;
    padding: 10px 10px 12px;
    background: rgba(3,7,18,0.98);
    border-radius: 14px;
    flex-direction: column;
    gap: 6px;
    min-width: 170px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s, transform 0.22s;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .card-grid-3,
  .steps-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .section {
    padding: 52px 0;
  }

  .hero-left h1 {
    font-size: 2rem;
  }
}
