/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
  --green:       #059669;
  --green-light: #D1FAE5;
  --green-mid:   #6EE7B7;
  --ink:         #111827;
  --ink-mid:     #374151;
  --ink-soft:    #6B7280;
  --bg:          #F9FAFB;
  --white:       #FFFFFF;
  --border:      #E5E7EB;
  --amber:       #D97706;
  --blue:        #2563EB;
  --blue-light:  #DBEAFE;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

img, svg { display: block; }

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

/* ============================
   UTILITIES
   ============================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #A7F3D0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 27px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.placeholder-img {
  background: #F3F4F6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 16px;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-mid);
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--green);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: var(--white);
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  color: var(--ink);
}

.hero__h1 span {
  color: var(--green);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust__avatars {
  display: flex;
}

.trust__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--white);
  flex-shrink: 0;
}

.trust__avatar:not(:first-child) { margin-left: -10px; }
.trust__avatar--green { background: var(--green); }
.trust__avatar--blue  { background: var(--blue); }
.trust__avatar--amber { background: var(--amber); }

.trust__text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Booking card */
.hero__card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.booking-notification {
  position: absolute;
  top: -18px;
  right: -10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  z-index: 2;
  max-width: 240px;
}

.booking-notification__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-notification__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-notification__detail {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.booking-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 360px;
}

.booking-card__header {
  background: linear-gradient(135deg, #059669, #047857);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.booking-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
}

.booking-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-align: center;
}

.booking-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.booking-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-card__url {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
}

.booking-card__date-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-card__slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.booking-slot {
  padding: 9px 6px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all 0.15s ease;
}

.booking-slot:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.booking-slot--selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.booking-card__confirm {
  background: var(--green);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
}

.booking-card__confirm:hover {
  background: #047857;
}

.booking-card__fine {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
}

/* ============================
   PROOF BAR
   ============================ */
.proof {
  background: var(--ink);
  padding: 48px 0;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 32px;
}

.proof__stat + .proof__stat {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.proof__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--green-mid);
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof__label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-weight: 500;
}

/* ============================
   HOW IT WORKS
   ============================ */
.hiw {
  background: var(--white);
  padding: 96px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.section-header p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.65;
}

.hiw__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hiw-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.hiw-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  object-fit: cover;
  object-position: center top;
}

img.hiw-card__img {
  display: block;
  padding: 0;
}

.hiw-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hiw-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.hiw-card__text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.hiw-card__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}

.hiw-card__checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
}

.hiw-card__checklist li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================
   DISCIPLINE GRID
   ============================ */
.disciplines {
  background: var(--bg);
  padding: 96px 0;
}

.disc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.disc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.disc-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.disc-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 12px;
  object-fit: cover;
  object-position: center;
}

img.disc-card__img {
  display: block;
  padding: 0;
}

.disc-card__body {
  padding: 16px 18px 18px;
}

.disc-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}

.disc-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
}

.disc__note {
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  flex-wrap: wrap;
}

.disc__note a {
  color: var(--green);
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.disc__note a:hover { opacity: 0.75; }

/* ============================
   FEATURES
   ============================ */
.features {
  background: var(--white);
  padding: 96px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}

.feature-card__text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ============================
   QR CODE SECTION
   ============================ */
.qr-section {
  background: var(--bg);
  padding: 96px 0;
}

.qr__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.qr__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.qr__copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.qr__copy h2 span {
  color: var(--green);
}

.qr__copy p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
}

.qr__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qr__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.qr__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.qr__step-text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.qr__card-wrap {
  display: flex;
  justify-content: center;
}

.qr-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 320px;
}

.qr-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-code-svg {
  width: 180px;
  height: 180px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.qr-card__url {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.qr-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  background: var(--ink);
  padding: 96px 0;
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials .section-header p {
  color: rgba(255,255,255,0.5);
}

.testimonials .pill {
  background: rgba(255,255,255,0.08);
  color: var(--green-mid);
  border-color: rgba(255,255,255,0.12);
}

.test__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease;
}

.test-card:hover {
  background: rgba(255,255,255,0.08);
}

.test-card__quote {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.test-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}

.test-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.test-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.test-card__role {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.test-card__stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============================
   WAITLIST FORM
   ============================ */
.waitlist {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  padding: 96px 0;
}

.waitlist__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.waitlist__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.waitlist__header h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.waitlist__header h2 span {
  color: var(--green);
}

.waitlist__header p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.waitlist__url-pill {
  background: var(--white);
  border: 1.5px solid #A7F3D0;
  border-radius: 999px;
  padding: 8px 20px;
  font-family: 'Courier New', monospace;
  font-size: 15px;
  color: var(--ink);
}

.waitlist__url-pill span {
  color: var(--green);
  font-weight: 700;
}

.waitlist__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.form-field input.error,
.form-field select.error {
  border-color: #EF4444;
}

.form-field .error-msg {
  font-size: 13px;
  color: #EF4444;
  display: none;
}

.form-field .error-msg.visible {
  display: block;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--ink-soft);
  pointer-events: none;
}

.waitlist__submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  margin-top: 4px;
}

.waitlist__submit:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.waitlist__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist__fine {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* Success state */
.waitlist__success {
  display: none;
  width: 100%;
  background: var(--white);
  border: 2px solid #A7F3D0;
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waitlist__success.visible {
  display: flex;
}

.waitlist__success__icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.waitlist__success h3 {
  font-size: 22px;
  color: var(--ink);
}

.waitlist__success p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 460px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--ink);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer__links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.footer__wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer__wordmark span {
  color: var(--green-mid);
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }

  /* Hero */
  .hero { padding: 56px 0 48px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__h1 { font-size: 34px; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn-primary,
  .hero__ctas .btn-ghost { width: 100%; justify-content: center; }

  /* Proof */
  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .proof__stat {
    padding: 24px 20px;
  }
  .proof__stat:nth-child(1),
  .proof__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .proof__stat + .proof__stat { border-left: none; }
  .proof__stat:nth-child(2),
  .proof__stat:nth-child(4) {
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .proof__value { font-size: 36px; }

  /* How it works */
  .hiw { padding: 64px 0; }
  .hiw__cards { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }

  /* Disciplines */
  .disciplines { padding: 64px 0; }
  .disc__grid { grid-template-columns: repeat(2, 1fr); }

  /* Features */
  .features { padding: 64px 0; }
  .features__grid { grid-template-columns: 1fr; }

  /* QR */
  .qr-section { padding: 64px 0; }
  .qr__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Testimonials */
  .testimonials { padding: 64px 0; }
  .test__grid { grid-template-columns: 1fr; }

  /* Waitlist */
  .waitlist { padding: 64px 0; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__links { gap: 20px; }
}

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