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

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --border: #1e1e2a;
  --text: #e4e4e7;
  --text-muted: #8b8b96;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

nav a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-nav:hover {
  background: var(--accent-light);
}

/* ---- HERO ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
    var(--bg);
}

.hero-content {
  max-width: 720px;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--white);
}

/* ---- SECTIONS ---- */

section {
  padding: 6rem 2rem;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

/* ---- SERVICES ---- */

.services {
  max-width: 1120px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 1.6rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ---- ABOUT ---- */

.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.about-number {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.about-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.about-item p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ---- PROCESS ---- */

.process {
  max-width: 720px;
  margin: 0 auto;
}

.timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-light);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ---- CONTACT ---- */

.contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.contact-form .btn {
  align-self: flex-start;
  font-family: inherit;
}

/* ---- FOOTER ---- */

footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---- FOOTER LINKS ---- */

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

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

/* ---- LEGAL PAGES ---- */

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 12rem 2rem 6rem;
}

.legal h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: left;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-left: 0;
  margin-bottom: 1.25rem;
  list-style: none;
  padding-left: 0;
}

.legal li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.legal li::before {
  content: "\2022";
  color: var(--accent-light);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.legal strong {
  color: var(--text);
}

/* ---- BOOK A CALL PAGE ---- */

.book-page {
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
    var(--bg);
}

.book-container {
  max-width: 620px;
  margin: 0 auto;
}

.book-step {
  display: none;
}

.book-step.active {
  display: block;
}

.book-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.book-header .tagline {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.book-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.book-header .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.book-pricing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.price-card {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.price-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.price-includes {
  list-style: none;
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
}

.price-includes li {
  color: var(--text-muted);
  font-size: 0.93rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.price-includes li::before {
  content: "\2713";
  color: var(--accent-light);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.book-page .contact-form h2 {
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.btn-full {
  width: 100%;
  text-align: center;
  font-family: inherit;
  font-size: 1rem;
  padding: 1rem;
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.success-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.calendar-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.calendar-embed-note {
  text-align: center;
  padding: 2rem;
}

.calendar-embed-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.booking-help {
  text-align: center;
}

.booking-help p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-help a {
  color: var(--accent-light);
  text-decoration: none;
}

.booking-help a:hover {
  text-decoration: underline;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 640px) {
  nav ul {
    gap: 1rem;
  }

  nav ul li:not(:last-child) {
    display: none;
  }

  .hero {
    padding: 8rem 1.5rem 4rem;
  }

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

  section {
    padding: 4rem 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-links {
    gap: 1rem;
  }

  .legal {
    padding: 10rem 1.5rem 3rem;
  }

  .book-page {
    padding: 6rem 1.5rem 3rem;
  }
}
