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

:root {
  --bg-dark: #0b0c10;
  --bg-card: rgba(17, 25, 40, 0.8);
  --text-primary: #f8f9fa;
  --accent: #2ee6a8;
  --accent-soft: rgba(46, 230, 168, 0.25);
  --highlight: #ff6fb7;
  --muted: #aab4c8;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(255, 111, 183, 0.15) 0%, rgba(11, 12, 16, 0.95) 35%),
    radial-gradient(circle at 80% 0%, rgba(46, 230, 168, 0.15) 0%, rgba(11, 12, 16, 0.95) 25%),
    var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(11, 12, 16, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5vw;
}

.brand-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(46, 230, 168, 0.65);
}

.brand-name {
  letter-spacing: 0.08em;
}

.brand-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease;
  flex-shrink: 0;
}

.brand-edit svg {
  width: 18px;
  height: 18px;
}

.brand-edit svg path:first-of-type {
  opacity: 0.92;
}

.brand-edit:hover,
.brand-edit:focus-visible {
  background: rgba(46, 230, 168, 0.18);
  border-color: rgba(46, 230, 168, 0.35);
  transform: translateY(-1px);
}

.brand-edit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 230, 168, 0.25);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  position: relative;
}

.nav-links > li {
  list-style: none;
  position: relative;
}

.nav-links > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-links > li > a:hover {
  color: var(--text-primary);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #070a0f;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 111, 183, 0.45);
}

/* Expo dropdown */

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-toggle span {
  font-weight: 500;
  color: var(--text-primary);
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  fill: var(--muted);
  transition: transform 0.3s ease;
}

.expo-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: clamp(320px, 60vw, 760px);
  padding: 1.5rem;
  background: rgba(9, 11, 17, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  transform-origin: top right;
  transform: scaleY(0.8);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links > li.open .expo-dropdown {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.nav-links > li.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.expo-slider-wrapper {
  position: relative;
}

.expo-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow: hidden;
}

.expo-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
}

.expo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(255, 111, 183, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.expo-card:hover::after {
  opacity: 1;
}

.expo-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.expo-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.expo-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1.2rem;
  letter-spacing: 0.05em;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.8rem;
  gap: 0.6rem;
}

.slider-button {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-button:hover {
  background: rgba(46, 230, 168, 0.15);
  transform: translateY(-2px);
}

main {
  padding: 4rem 5vw 6rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-metric {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  min-width: 120px;
}

.metric-card h3 {
  font-size: 2rem;
  font-weight: 700;
}

.metric-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.service-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(46, 230, 168, 0.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin-bottom: 3rem;
}

.modules-section {
  margin-top: 6rem;
}

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

.module-card {
  background: linear-gradient(145deg, rgba(17, 25, 40, 0.85), rgba(9, 11, 17, 0.9));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(46, 230, 168, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.module-card:hover::before {
  opacity: 1;
}

.module-card header p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.module-demo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.module-demo--stacked {
  flex-direction: column;
  align-items: stretch;
}

.module-demo[data-proxy-target] {
  cursor: pointer;
}

.demo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.demo-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 230, 168, 0.35);
}

.demo-button--raise {
  background: linear-gradient(135deg, rgba(46, 230, 168, 0.85), rgba(255, 111, 183, 0.75));
  color: #050608;
  box-shadow: 0 22px 35px rgba(46, 230, 168, 0.25);
  transform: translateY(0);
}

.demo-button--raise:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 45px rgba(255, 111, 183, 0.35);
}

.demo-button--pulse {
  background: linear-gradient(120deg, rgba(46, 230, 168, 0.2), rgba(255, 111, 183, 0.25));
  border: 1px solid rgba(46, 230, 168, 0.3);
}

.demo-button--pulse::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(46, 230, 168, 0.35), transparent 60%);
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.demo-button--pulse:hover::after {
  transform: scale(1);
  opacity: 1;
}

.demo-helper {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.demo-surface {
  --surface-glow: rgba(46, 230, 168, 0.45);
  position: relative;
  padding: 1.4rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, var(--surface-glow), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.4s ease, border-color 0.3s ease;
}

.demo-surface__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.demo-surface__value {
  font-size: 1.2rem;
  font-weight: 600;
}

.demo-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.demo-palette__color {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 0.65rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.demo-palette__color.is-active,
.demo-palette__color:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 230, 168, 0.55);
  background: rgba(46, 230, 168, 0.16);
}

.demo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.demo-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-weight: 600;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.demo-step.is-active,
.demo-step:hover {
  border-color: rgba(46, 230, 168, 0.5);
  background: rgba(46, 230, 168, 0.18);
  transform: translateY(-2px);
}

.demo-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.demo-progress__bar {
  height: 100%;
  width: calc(var(--progress, 0) * 100%);
  background: linear-gradient(90deg, rgba(46, 230, 168, 0.8), rgba(255, 111, 183, 0.7));
  transition: width 0.35s ease;
}

.demo-rating {
  display: flex;
  gap: 0.75rem;
}

.demo-rating__item {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.demo-rating__item.is-active,
.demo-rating__item:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(46, 230, 168, 0.55);
  background: rgba(46, 230, 168, 0.18);
}

.demo-counter {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}

.demo-counter__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.demo-counter__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 230, 168, 0.5);
  background: rgba(46, 230, 168, 0.16);
}

.demo-counter__value {
  min-width: 36px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.demo-ticket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.demo-ticket__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.demo-ticket__amount {
  font-size: 1.1rem;
}

.demo-button--ghost {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.35);
}

.demo-button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.demo-keyboard {
  display: inline-flex;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.demo-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(46, 230, 168, 0.25));
  color: #050608;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(46, 230, 168, 0.25);
}

.demo-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.demo-badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(46, 230, 168, 0.18);
  border: 1px solid rgba(46, 230, 168, 0.45);
  color: var(--text-primary);
}

.demo-slider {
  display: grid;
  gap: 0.5rem;
}

.demo-slider label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.demo-slider input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 230, 168, 0.45), rgba(255, 111, 183, 0.35));
  outline: none;
  cursor: pointer;
  position: relative;
}

.demo-slider input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0b0c10;
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(46, 230, 168, 0.25);
  transition: transform 0.2s ease;
}

.demo-slider input[type='range']::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.demo-segmented {
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.35rem;
}

.demo-segmented__btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.demo-segmented__btn.is-active,
.demo-segmented__btn:hover {
  background: rgba(46, 230, 168, 0.2);
  color: var(--text-primary);
}

[data-ripple] {
  position: relative;
  overflow: hidden;
}

.demo-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

.sound-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem 0.6rem 0.6rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border 0.25s ease, background 0.25s ease;
}

.sound-toggle--outline {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
}

.sound-toggle:hover {
  border-color: rgba(46, 230, 168, 0.35);
}

.sound-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sound-toggle__track {
  width: 54px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.sound-toggle__thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(46, 230, 168, 0.55));
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.35);
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.sound-toggle__input:checked + .sound-toggle__track {
  background: linear-gradient(135deg, rgba(46, 230, 168, 0.35), rgba(255, 111, 183, 0.32));
  box-shadow: 0 10px 20px rgba(46, 230, 168, 0.25);
}

.sound-toggle__input:checked + .sound-toggle__track .sound-toggle__thumb {
  transform: translateX(24px);
}

.sound-toggle__label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.sound-toggle__input:checked ~ .sound-toggle__label {
  color: var(--text-primary);
}

.case-studies {
  margin-top: 6rem;
}

.case-list {
  display: grid;
  gap: 1.8rem;
}

.case-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.case-card h4 {
  font-size: 1.4rem;
}

.case-card p {
  color: var(--muted);
}

.case-card span {
  color: var(--accent);
  font-weight: 600;
}

.booking-section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
  margin: 0 auto 4rem;
  max-width: 880px;
  box-shadow: var(--shadow);
}

.booking-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.booking-section p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
}

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

.booking-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  background: rgba(9, 11, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: rgba(46, 230, 168, 0.35);
  box-shadow: 0 0 0 3px rgba(46, 230, 168, 0.2);
}

.booking-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-messages {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-messages p {
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid;
  background: rgba(9, 11, 17, 0.92);
}

.form-messages .success {
  border-color: rgba(46, 230, 168, 0.45);
  color: var(--accent);
}

.form-messages .error {
  border-color: rgba(255, 111, 183, 0.45);
  color: var(--highlight);
}

.booking-form button[type='submit'] {
  justify-self: flex-start;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
}

.creators {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.creator-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.creator-card h3 {
  font-size: 1.3rem;
}

.creator-card p {
  color: var(--muted);
  line-height: 1.6;
}

footer {
  margin-top: 6rem;
  padding: 3rem 5vw;
  background: rgba(9, 10, 15, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-grid h4 {
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.05em;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  header {
    position: static;
  }

  main {
    padding: 3rem 1.6rem;
  }

  .hero {
    gap: 2rem;
  }
}