@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --bg: #05070f;
  --panel: #0e1421;
  --soft-panel: #111a2c;
  --muted: #a8b4ce;
  --text: #f3f6ff;
  --accent: #6ef2c6;
  --accent-2: #ff9b5f;
  --line: #1e2940;
  --radius: 18px;
  --shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(110, 242, 198, 0.14), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(255, 155, 95, 0.12), transparent 25%),
    radial-gradient(circle at 60% 70%, rgba(92, 120, 255, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(115deg, rgba(110, 242, 198, 0.05), rgba(255, 155, 95, 0.05));
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 6vw;
  position: relative;
}

.section.narrow {
  padding: 72px 6vw;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading .pill {
  background: rgba(110, 242, 198, 0.12);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 40px;
  letter-spacing: -0.02em;
}

.section p.lead {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 780px;
  font-size: 18px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 10, 18, 0.8);
  border-bottom: 1px solid var(--line);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(110, 242, 198, 0.05);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.button,
.button-ghost {
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  background: linear-gradient(120deg, var(--accent), #74ffe0, var(--accent));
  color: #02110c;
  box-shadow: 0 8px 24px rgba(110, 242, 198, 0.3);
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 10px 28px rgba(110, 242, 198, 0.4);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero {
  padding-top: 110px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -0.03em;
}

.hero .subhead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 22px;
}

.hero .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 24px;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(180deg, rgba(17, 26, 44, 0.9), rgba(10, 16, 30, 0.94));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 155, 95, 0.15), transparent 60%);
  top: -40px;
  right: -60px;
  filter: blur(14px);
}

.hero-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.stat {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  font-size: 22px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 242, 198, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.card .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(110, 242, 198, 0.12);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card img.bg-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: saturate(1.1) brightness(0.9);
}

.card .content {
  position: relative;
  z-index: 1;
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--muted);
  margin: 0 0 12px;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.step {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(110, 242, 198, 0.12);
  color: var(--accent);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step h4 {
  margin: 6px 0;
}

.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  background: #0b1120;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px;
  border-radius: 12px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(110, 242, 198, 0.6);
  box-shadow: 0 0 0 3px rgba(110, 242, 198, 0.18);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-status.visible {
  opacity: 1;
}

.booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.booking .slots {
  display: grid;
  gap: 12px;
}

.slot {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.slot:hover {
  border-color: rgba(110, 242, 198, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.slot.active {
  border-color: rgba(110, 242, 198, 0.7);
  box-shadow: 0 12px 32px rgba(110, 242, 198, 0.18);
}

.progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--accent), #9fffdc);
  transition: width 0.4s ease;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 6vw;
  background: rgba(6, 8, 15, 0.9);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.tablet-stack {
  display: grid;
  gap: 14px;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 72px;
  }

  .section {
    padding: 72px 20px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 10px;
  }

  .card,
  .panel,
  .form,
  .hero-card {
    padding: 18px;
  }
}
