:root {
  --bg: #0b1020;
  --panel: rgba(16, 24, 48, 0.88);
  --panel-strong: #111936;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ecf2ff;
  --muted: #b7c2e0;
  --accent: #6ee7b7;
  --accent-strong: #34d399;
  --accent-ink: #062718;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(52, 211, 153, 0.18), transparent 35%),
    linear-gradient(180deg, #09101d 0%, #0c1327 48%, #070b15 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 28%, transparent 72%, rgba(255,255,255,0.03));
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.top-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-nav a,
.contact-card a,
.contact-inline a {
  color: var(--text);
  text-decoration: none;
}

.top-nav a:hover,
.contact-card a:hover,
.contact-inline a:hover {
  color: var(--accent);
}

main {
  display: grid;
  gap: 1.5rem;
}

.section-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.lead {
  font-size: 1.15rem;
  color: #f7fbff;
  max-width: 40rem;
}

.hero-panel,
.package-card,
.process-grid article,
.faq-list article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(52, 211, 153, 0.22);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.button-small {
  min-height: 2.4rem;
  padding: 0.65rem 1rem;
}

.content-grid,
.package-grid,
.process-grid,
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.check-list,
.tag-list {
  padding-left: 1.15rem;
  margin: 1rem 0 0;
}

.check-list li,
.tag-list li {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.positioning-line {
  margin-top: 1rem;
  color: #fff;
  font-weight: 600;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-label,
.package-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.package-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.package-price {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.package-price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.featured {
  border-color: rgba(110, 231, 183, 0.36);
  background: linear-gradient(180deg, rgba(110, 231, 183, 0.09), rgba(255, 255, 255, 0.04));
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.14);
  color: var(--accent);
  font-weight: 700;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.contact-inline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .content-grid,
  .package-grid,
  .process-grid,
  .faq-list,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.6rem;
  }

  .section-card,
  .hero {
    padding: 1.2rem;
  }

  .site-header {
    align-items: flex-start;
  }

  .top-nav {
    width: 100%;
    gap: 0.75rem;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
}
