*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #10002b;
  --bg-soft: #240046;
  --bg-softer: #3c096c;
  --accent: #5a189a;
  --accent-soft: #7b2cbf;
  --accent-light: #9d4edd;
  --accent-softer: #c77dff;
  --accent-pale: #e0aaff;
  --text-main: #f5f1ff;
  --text-muted: #c3b7ff;
  --border-subtle: rgba(224, 170, 255, 0.2);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #240046 0, #10002b 45%, #050010 100%);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(16, 0, 43, 0.98), rgba(16, 0, 43, 0.88));
  border-bottom: 1px solid rgba(151, 117, 255, 0.25);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

/* logo */

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.25rem 0.1rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-pale));
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(224, 170, 255, 0.5);
  background: radial-gradient(circle at top left, rgba(157, 78, 221, 0.7), transparent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
}

/* Hero */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.hero-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn.primary {
  background: radial-gradient(circle at top left, var(--accent-light), var(--accent));
  border-color: rgba(199, 125, 255, 0.8);
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-pale);
  border-color: rgba(224, 170, 255, 0.55);
}

.btn.ghost:hover {
  background: rgba(60, 9, 108, 0.75);
  color: #ffffff;
}

.btn.outline {
  background: transparent;
  color: var(--accent-pale);
  border-color: rgba(199, 125, 255, 0.45);
}

.btn.outline:hover {
  background: rgba(60, 9, 108, 0.7);
  color: #ffffff;
}

.btn.full-width {
  width: 100%;
}

/* Pills */

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(60, 9, 108, 0.85);
  border: 1px solid rgba(199, 125, 255, 0.5);
  font-size: 0.75rem;
  color: var(--accent-pale);
}

.pill-soft {
  background: rgba(32, 5, 76, 0.9);
}

/* Hero card */

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(157, 78, 221, 0.25), rgba(16, 0, 43, 0.95));
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.hero-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.hero-card li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.hero-card li::before {
  content: "•";
  color: var(--accent-pale);
  margin-top: -0.05rem;
}

.hero-card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.9;
}

/* Sections */

.section {
  padding: 2.75rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(36, 0, 70, 0.9), rgba(16, 0, 43, 0.98));
  border-top: 1px solid rgba(151, 117, 255, 0.25);
  border-bottom: 1px solid rgba(151, 117, 255, 0.25);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.section-lead {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

/* Cards and grids */

.grid-3 {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(36, 0, 70, 0.95), rgba(16, 0, 43, 0.98));
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.3rem 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-card .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(60, 9, 108, 0.95);
  color: var(--accent-pale);
  font-size: 0.7rem;
  border: 1px solid rgba(199, 125, 255, 0.45);
}

.tag-primary {
  background: radial-gradient(circle at top left, var(--accent-light), var(--accent));
  color: #fff;
}

.price {
  font-size: 1.7rem;
  font-weight: 600;
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.feature-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0.9rem;
}

.feature-list li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.feature-list li::before {
  content: "✔";
  font-size: 0.78rem;
  color: var(--accent-pale);
  margin-top: 0.08rem;
}

.pricing-card-featured {
  transform: translateY(-4px);
  border-color: rgba(199, 125, 255, 0.8);
  background: radial-gradient(circle at top left, rgba(157, 78, 221, 0.25), rgba(16, 0, 43, 0.98));
}

/* Steps */

.steps {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(157, 78, 221, 0.85);
}

.step h3 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */

.faq-list {
  max-width: 720px;
  display: grid;
  gap: 0.7rem;
}

details {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(16, 0, 43, 0.9);
  padding: 0.7rem 0.9rem;
}

summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.96rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-size: 1.1rem;
  color: var(--accent-pale);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== Booking / Contact ===== */

.booking-section {
  padding: 3rem 0 3.5rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.booking-copy h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.booking-lead {
  font-size: 0.96rem;
  color: var(--text-muted, #c3b7ff);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.booking-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted, #c3b7ff);
}

.booking-list li {
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.45rem;
}

.booking-list li::before {
  content: "•";
  color: var(--accent-pale, #e0aaff);
}

.booking-form {
  margin: 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.9rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  font-size: 0.83rem;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(157, 78, 221, 0.6);
  background: rgba(10, 0, 32, 0.9);
  color: #f5f1ff;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out,
    background 0.18s ease-out;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(224, 170, 255, 0.55);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--accent-light, #9d4edd);
  background: rgba(22, 0, 60, 0.97);
  box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.7);
}

.booking-note {
  font-size: 0.8rem;
  color: var(--text-muted, #c3b7ff);
  margin: 0.6rem 0 0.9rem;
}

.btn.full-width {
  width: 100%;
}

/* Stack booking layout on small screens */
@media (max-width: 820px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Footer */

.footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(151, 117, 255, 0.3);
  background: radial-gradient(circle at top, rgba(36, 0, 70, 0.9), #060010);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-small {
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-card-featured {
    transform: none;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 56px;
  }

  .nav {
    position: absolute;
    inset: 56px 0 auto;
    background: rgba(10, 0, 32, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(151, 117, 255, 0.25);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 2.4rem;
  }
}
