:root {
  --bg: #05070d;
  --bg-soft: #0d1220;
  --card: rgba(18, 24, 39, 0.65);
  --line: rgba(132, 152, 255, 0.2);
  --text: #ecf2ff;
  --muted: #b4c0df;
  --blue: #5ea1ff;
  --purple: #8a73ff;
  --cyan: #53e5ff;
  --gradient: linear-gradient(130deg, var(--blue), var(--purple), var(--cyan));
  --radius: 18px;
  --shadow: 0 10px 30px rgba(7, 12, 26, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 800px at 20% -10%, #1a2461 0%, transparent 50%),
    radial-gradient(1000px 700px at 85% 10%, #321c5f 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.bg-glow {
  position: fixed;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  z-index: -2;
  pointer-events: none;
}

.bg-glow-1 {
  background: #5ea1ff;
  top: -160px;
  left: -120px;
}

.bg-glow-2 {
  background: #8a73ff;
  bottom: -220px;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(6, 10, 18, 0.7);
  border-bottom: 1px solid rgba(134, 154, 255, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  padding: 0.35rem 0.6rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.08rem;
  margin-top: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: #fefeff;
  box-shadow: 0 10px 24px rgba(86, 109, 255, 0.35);
}

.btn-secondary {
  background: rgba(94, 161, 255, 0.12);
  border: 1px solid rgba(94, 161, 255, 0.35);
}

.btn-small {
  padding: 0.48rem 0.9rem;
  color: var(--text) !important;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics div {
  padding: 0.9rem;
  background: rgba(16, 22, 37, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card,
.card,
.value-item,
.testimonial,
.price-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card h3 {
  margin-top: 0;
}

.hero-card ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
}

.hero-card li,
.hero-card p {
  color: var(--muted);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head {
  margin-bottom: 1.6rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.3rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.value-item:hover,
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(131, 153, 255, 0.45);
}

.card p,
.value-item p,
.testimonial p,
.pricing-wrap p,
.contact-wrap p {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(94, 161, 255, 0.15);
  border: 1px solid rgba(94, 161, 255, 0.35);
  margin-bottom: 0.9rem;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-item {
  padding: 1.2rem;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.process-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(16, 22, 37, 0.65);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.process-list span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient);
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial {
  padding: 1.3rem;
}

.testimonial cite {
  font-style: normal;
  color: #d8e3ff;
  font-weight: 600;
  font-size: 0.92rem;
}

.pricing-wrap {
  background: rgba(13, 19, 33, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

.price-card {
  padding: 1.3rem;
}

.price {
  color: var(--cyan);
  font-weight: 700;
  margin: 0.4rem 0 1rem;
}

.price-card ul {
  padding-left: 1rem;
  margin: 0 0 1rem;
}

.cta-band {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(94, 161, 255, 0.12), rgba(138, 115, 255, 0.18));
}

.cta-band p {
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calendly-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: #d6e2ff;
  text-decoration: underline;
}

.calendly-inline-widget {
  margin-top: 1rem;
  min-width: 320px;
  height: 660px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 14, 25, 0.85);
}

.contact-form {
  padding: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

input,
textarea {
  width: 100%;
  background: rgba(7, 10, 18, 0.8);
  border: 1px solid rgba(136, 157, 255, 0.34);
  color: var(--text);
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #96b4ff;
  box-shadow: 0 0 0 3px rgba(117, 149, 255, 0.2);
}

.form-note {
  min-height: 1.1rem;
  color: var(--cyan);
  margin: 0.2rem 0 0;
}

.form-note.loading {
  color: #b4c0df;
}

.form-note.success {
  color: #53e5ff;
}

.form-note.error {
  color: #ff9fbe;
}

.site-footer {
  border-top: 1px solid rgba(132, 152, 255, 0.15);
  padding: 1.4rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-wrap p,
.footer-wrap a {
  color: var(--muted);
}

.footer-wrap div {
  display: flex;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .pricing-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.4rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 1.2rem;
    left: 1.2rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(9, 13, 24, 0.95);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-metrics,
  .cards-3,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendly-inline-widget {
    min-width: 100%;
    height: 620px;
  }
}
