*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --bg-alt: #020617;
  --card: #020617;
  --border-subtle: #1f2937;
  --primary: #3b82f6;
  --accent: #22d3ee;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.7);
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #0b1734 0, #020617 60%);
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top nav */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.97), rgba(15,23,42,0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: contain;
  background: #020617;
  border: 1px solid rgba(148,163,184,0.6);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.88rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left, rgba(59,130,246,0.25), rgba(15,23,42,0.95));
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15,23,42,0.98) 0%, rgba(15,23,42,0.92) 45%, rgba(15,23,42,0.6) 70%, rgba(15,23,42,0.2) 100%),
    radial-gradient(circle at top left, rgba(59,130,246,0.35), transparent 60%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
}

.hero-copy {
  max-width: 560px;
}

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

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-sub {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.94rem;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(37,99,235,0.55);
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(37,99,235,0.75);
}

.ghost-button {
  background: rgba(15,23,42,0.7);
  color: var(--text-main);
  border-color: rgba(148,163,184,0.7);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.82rem;
}

.meta-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.meta-value {
  display: block;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 4.3rem 0;
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), #020617 60%);
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), rgba(15,23,42,1));
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.section-intro {
  margin: 0 0 2.2rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(15,23,42,0.96);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 16px 38px rgba(15,23,42,0.8);
}

.card-accent {
  border-color: rgba(59,130,246,0.7);
  background: radial-gradient(circle at top, rgba(37,99,235,0.35), rgba(15,23,42,1));
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card-price {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card ul li {
  margin-bottom: 0.4rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(15,23,42,0.96);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid rgba(148,163,184,0.4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,0.8);
  background: rgba(37,99,235,0.15);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-grid p {
  color: var(--text-muted);
}

.about-card {
  background: rgba(15,23,42,0.96);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148,163,184,0.45);
}

.about-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 0.7rem;
}

.about-card ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-bullets {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 1.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-bullets li {
  margin-bottom: 0.35rem;
}

.contact-form {
  background: rgba(15,23,42,0.98);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 20px 48px rgba(15,23,42,0.95);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.6);
  padding: 0.55rem 0.75rem;
  background: rgba(15,23,42,0.97);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.5);
  background: rgba(15,23,42,1);
}

textarea {
  resize: vertical;
}

.primary-button.full-width {
  width: 100%;
}

.form-footnote {
  margin-top: 0.7rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(148,163,184,0.35);
  padding: 1.6rem 0 2.1rem;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), #020617 70%);
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner p {
  margin: 0.15rem 0;
}

/* Thank you */
.thankyou-body {
  background: radial-gradient(circle at top, rgba(59,130,246,0.3), #020617 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-wrapper {
  width: 100%;
  max-width: 520px;
  padding: 1.5rem;
}

.thankyou-card {
  background: rgba(15,23,42,0.97);
  border-radius: 18px;
  padding: 2rem 1.7rem 2.1rem;
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 24px 55px rgba(15,23,42,0.95);
}

.thankyou-card h1 {
  margin: 0 0 0.9rem;
  font-size: 1.7rem;
}

.thankyou-card p {
  margin: 0.25rem 0;
  color: var(--text-muted);
}

.thankyou-card .muted {
  margin-top: 0.9rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    padding-top: 4rem;
    padding-bottom: 3.2rem;
  }
  .cards-grid,
  .steps-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero {
    min-height: 60vh;
  }
}
