:root {
  --bg: #120024;
  --bg-2: #1a0f3c;
  --card: rgba(255, 255, 255, 0.03);
  --accent: #ff9621;
  --accent-soft: rgba(255, 150, 33, 0.12);
  --text: #ffffff;
  --text-muted: #c9c2d8;
  --border: rgba(255, 255, 255, 0.08);
  --maxw: 1080px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ---------- Background ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, #000 40%, transparent 100%);
  z-index: 0;
}

.bg-glow {
  position: fixed;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  max-width: 120vw;
  background: radial-gradient(circle at center, rgba(255, 150, 33, 0.18), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 2rem);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  max-width: var(--maxw);
  margin: 0 auto;
  position: sticky;
  top: 0;
  background: rgba(18, 0, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.brand {
  text-decoration: none;
}

.brand-mark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.brand-mark.sm {
  font-size: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--accent);
  color: #1a0f00;
  box-shadow: 0 10px 30px -10px rgba(255, 150, 33, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(255, 150, 33, 0.75);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 480px) {
  .header-cta {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(3.5rem, 11vh, 7rem) clamp(1.25rem, 5vw, 2rem) clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.headline {
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.headline .accent {
  color: var(--accent);
}

.subhead {
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 600px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.reassure {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Grids & cards ---------- */
.grid {
  display: grid;
  gap: 1.1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(255, 150, 33, 0.4);
  transform: translateY(-3px);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Icon chip */
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 150, 33, 0.25);
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.feature {
  position: relative;
}

.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.feature-head .card-icon {
  margin-bottom: 0;
}

.feature-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 150, 33, 0.45);
  letter-spacing: 0.05em;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
}

.steps li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
}

.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  border: 1px solid rgba(255, 150, 33, 0.3);
}

.steps h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  max-width: var(--maxw);
  margin: 1rem auto clamp(3rem, 8vw, 5rem);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background: linear-gradient(160deg, var(--bg-2), rgba(255, 150, 33, 0.08));
  border: 1px solid rgba(255, 150, 33, 0.25);
  border-radius: 24px;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0.9rem auto 1.75rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* ---------- Booking ---------- */
.booking {
  scroll-margin-top: 90px;
  max-width: 980px;
  margin: 1rem auto clamp(3rem, 8vw, 5rem);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
  background: linear-gradient(160deg, var(--bg-2), rgba(255, 150, 33, 0.06));
  border: 1px solid rgba(255, 150, 33, 0.25);
  border-radius: 24px;
}

.booking h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.booking p {
  margin: 0.9rem auto 2rem;
  color: var(--text-muted);
  max-width: 520px;
}

.calendly-inline-widget {
  height: 730px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Calendly stacks its layout vertically on narrow screens,
   so it needs a little more height there. */
@media (max-width: 768px) {
  .calendly-inline-widget {
    height: 620px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.25rem clamp(1.25rem, 5vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .site-footer {
    justify-content: flex-start;
  }
}
