/* ==========================================================================
   Try Meet IQ — static marketing site styles (purple → pink → orange theme)
   ========================================================================== */

:root {
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-900: #4c1d95;

  --pink-500: #f43f5e;
  --pink-600: #e11d48;
  --orange-500: #fe8903;
  --orange-600: #ea580c;

  --gradient-start: #8b5cf6;
  --gradient-mid: #f43f5e;
  --gradient-end: #fe8903;
  --gradient: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-mid) 52%, var(--gradient-end) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(139, 92, 246, .08) 0%, rgba(244, 63, 94, .06) 55%, rgba(254, 137, 3, .05) 100%);

  /* Backwards-compatible aliases used by existing components */
  --green-50: #faf5ff;
  --green-100: #f3e8ff;
  --green-200: #e9d5ff;
  --green-500: #8b5cf6;
  --green-600: #7c3aed;
  --green-700: #6d28d9;
  --green-900: #4c1d95;

  --ink: #1a1a1a;
  --body: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --border: #e2e8f0;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-dark: #0f172a;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 20px rgba(244, 63, 94, .28);

  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  --maxw: 1180px;
}

/* Reset ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--purple-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1.05em; }

ul { margin: 0 0 1.1em; padding-left: 1.15rem; }
li { margin-bottom: .45em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--purple-600); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: .98rem;
  padding: .78rem 1.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, filter .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn i, .btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--purple-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--purple-700); box-shadow: var(--shadow-glow); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--purple-200); }

.btn-light { background: #fff; color: var(--purple-700); }
.btn-light:hover { background: var(--purple-50); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--purple-600); color: var(--purple-700); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.btn-lg { padding: .95rem 1.7rem; font-size: 1.02rem; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex; align-items: center; gap: 1.5rem;
  position: relative;
  height: 72px;
}

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.16rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.02em;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gradient);
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-glow);
}
.brand-mark svg { width: 19px; height: 19px; }

.nav-links {
  margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none; padding: 0;
  white-space: nowrap;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--body); font-weight: 600; font-size: .96rem;
  position: relative;
}
.nav-links a:hover { color: var(--purple-700); text-decoration: none; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--gradient);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; flex-shrink: 0; }
.brand-logo { height: 52px; width: auto; display: block; }
.nav-login { color: var(--ink); font-weight: 600; font-size: .96rem; }
.nav-login:hover { color: var(--purple-700); text-decoration: none; }
.btn-gradient {
  background: var(--gradient);
  color: #fff; border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.btn-gradient:hover { filter: brightness(1.05); color: #fff; }
.nav-actions .btn {
  height: 44px; padding: 0 1.5rem;
  font-size: .94rem; line-height: 1; border-radius: 14px;
}

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 42px; height: 42px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}


/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.4rem, 4.5vw, 3.8rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--purple-200); color: var(--purple-700);
  font-weight: 600; font-size: .84rem; padding: .38rem .85rem; border-radius: 999px;
  margin-bottom: 1.2rem; box-shadow: var(--shadow-sm);
}
.eyebrow svg { width: 15px; height: 15px; }

.hero h1 span { color: var(--purple-600); }
.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 1.15rem; max-width: 34rem; color: var(--body); line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 .8rem; }
.hero-note { font-size: .9rem; color: var(--muted); }

/* Booking mock ----------------------------------------------------------- */
.booking-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.3rem;
}
.booking-head { display: flex; align-items: center; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.booking-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
}
.booking-head strong { display: block; color: var(--ink); font-family: var(--font-display); }
.booking-head small { color: var(--muted); }
.booking-meta { display: flex; gap: 1rem; flex-wrap: wrap; padding: .9rem 0; font-size: .88rem; color: var(--muted); }
.booking-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.booking-meta svg { width: 15px; height: 15px; }

.cal-title { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: .6rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid span, .cal-grid button {
  aspect-ratio: 1; display: grid; place-items: center; font-size: .8rem;
  border-radius: 9px; border: 0; background: none; color: var(--body);
  font-family: var(--font-body); cursor: default;
}
.cal-grid .dow { color: var(--muted); font-weight: 700; font-size: .7rem; }
.cal-grid .muted { color: #cbd5e1; }
.cal-grid button { cursor: pointer; transition: background .15s ease, color .15s ease; }
.cal-grid button:hover { background: var(--purple-50); color: var(--purple-700); }
.cal-grid button.is-active { background: var(--purple-600); color: #fff; font-weight: 700; }

.slots { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.slot {
  flex: 1 1 30%; text-align: center; padding: .55rem .3rem;
  border: 1px solid var(--purple-200); border-radius: 10px;
  color: var(--purple-700); font-weight: 600; font-size: .88rem;
  background: #fff; cursor: pointer; font-family: var(--font-body);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.slot:hover, .slot.is-active {
  background: var(--gradient);
  color: #fff; border-color: transparent;
}

/* Platform promise -------------------------------------------------------- */
.platform-promise { padding: 2rem 0; background: #fff; }
.promise-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  background: var(--gradient-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(139,92,246,.07), rgba(244,63,94,.05), rgba(254,137,3,.04));
  pointer-events: none;
}
.promise-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
}
.promise-icons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  color: var(--muted);
  font-size: .9rem; font-weight: 600;
  position: relative; z-index: 1;
}
.promise-icons span {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem 1rem;
}
.promise-icons svg { width: 17px; height: 17px; color: var(--purple-600); }

/* Sections --------------------------------------------------------------- */
.section { padding: clamp(2.4rem, 5vw, 4rem) 0; }
.section-alt { background: var(--gradient-soft); border-block: 1px solid var(--line); }

.section-head { max-width: 44rem; margin: 0 auto clamp(1.4rem, 3vw, 2.2rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

.logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem;
  list-style: none; padding: 0; margin: 0;
}
.logos li {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: #9aa8a1; letter-spacing: -.01em; margin: 0;
}

.grid { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--purple-200); }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--purple-50); color: var(--purple-700); margin-bottom: 1rem;
}
.card-icon svg { width: 21px; height: 21px; }

.step-list { list-style: none; padding: 0; margin: 0; }
.step-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.step-list li:last-child { border-bottom: 0; }
.step-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--purple-100); color: var(--purple-700);
  display: grid; place-items: center; margin-top: .15rem;
}
.step-list .tick svg { width: 14px; height: 14px; }
.step-list strong { display: block; color: var(--ink); font-family: var(--font-display); }
.step-list small { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

/* Pricing ---------------------------------------------------------------- */
.meet-pill {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem;
  font-size: .92rem; font-weight: 600; color: var(--ink); margin-top: 1rem;
}
.meet-pill svg { width: 17px; height: 17px; color: var(--purple-600); }
.meet-pill span { color: var(--purple-600); }

.price-grid {
  display: grid; gap: 1.4rem; align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  max-width: 1080px; margin-inline: auto;
}
.price-card {
  position: relative; display: flex; flex-direction: column; text-align: left;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem; background: #fff; box-shadow: var(--shadow);
}
.price-card h3 { font-size: 1.3rem; margin: 0; }
.price-card--featured {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              var(--gradient) border-box;
  box-shadow: 0 20px 40px rgba(139, 92, 246, .15);
}
.price-tag {
  position: absolute; top: -.9rem; left: 1.6rem;
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--gradient); color: #fff; border-radius: 999px;
  padding: .35rem .85rem; font-size: .78rem; font-weight: 700;
}
.price-tag svg { width: 14px; height: 14px; }
.price-card .price {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--ink);
  line-height: 1; margin: .9rem 0 .2rem;
}
.price-card .price small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-was { margin: .9rem 0 .2rem; color: var(--muted); font-weight: 600; }
.price-was s { margin-right: .5rem; }
.off-badge { background: #ffe4e6; color: #be123c; border-radius: 6px; padding: .15rem .45rem; font-size: .8rem; font-weight: 700; }
.price-note { color: var(--muted); font-size: .88rem; margin: 0; }
.price-card ul { list-style: none; padding: 0; margin: 1.4rem 0 auto; text-align: left; display: grid; gap: .6rem; }
.price-card ul li { display: flex; gap: .6rem; align-items: center; font-size: .95rem; }
.price-card ul li.off,
.price-card ul li.greyed { color: var(--muted); }
.price-card ul li.off svg,
.price-card ul li.greyed svg { color: var(--muted); }
.price-card ul svg { width: 17px; height: 17px; color: var(--purple-600); flex: none; }
.price-card .btn { margin-top: 1.6rem; width: 100%; }


.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.8rem; }
.badge {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .45rem 1rem; font-size: .86rem; font-weight: 600; color: var(--body);
}

/* CTA -------------------------------------------------------------------- */
.cta {
  background: var(--gradient);
  color: #fff; text-align: center;
  padding: clamp(2.6rem, 5.5vw, 4.2rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 50% -30%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.cta h2 { color: #fff; position: relative; z-index: 1; }
.cta p { color: rgba(255,255,255,.9); max-width: 34rem; margin-inline: auto; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; position: relative; z-index: 1; }

/* Tabs (features) -------------------------------------------------------- */
.tabs { margin-top: 1rem; }
.tabs-list {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: 1.8rem;
}
.tab-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: .55rem 1.1rem;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600; color: var(--body);
  cursor: pointer; transition: all .2s ease;
}
.tab-btn:hover { border-color: var(--purple-500); color: var(--purple-700); }
.tab-btn.is-active { background: var(--gradient); border-color: transparent; color: #fff; }
.tab-btn svg { width: 17px; height: 17px; }
.tabs-panels { position: relative; }
.tab-panel { display: none; animation: fadeIn .25s ease; }
.tab-panel.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Legal pages ------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(180deg, var(--purple-50), #fff);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-hero p { color: var(--muted); margin-bottom: 0; }

.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--purple-700); }

.legal { padding: clamp(2.2rem, 5vw, 3.6rem) 0 4rem; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }

.legal-toc {
  position: sticky; top: 96px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; background: var(--surface-2);
  font-size: .92rem;
}
.legal-toc strong { display: block; font-family: var(--font-display); color: var(--ink); margin-bottom: .6rem; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; max-height: 60vh; overflow-y: auto; }
.legal-toc li { margin-bottom: .35em; }
.legal-toc a { color: var(--body); }
.legal-toc a:hover { color: var(--purple-700); }

.legal-body { max-width: 46rem; }
.legal-body h2 {
  font-size: 1.4rem; margin-top: 2.4rem; padding-top: .4rem;
  scroll-margin-top: 96px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin-top: 1.6rem; font-size: 1.08rem; scroll-margin-top: 96px; }
.legal-body .meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: .92rem; color: var(--muted); margin-bottom: 2rem;
}
.legal-body .meta strong { color: var(--ink); }
.legal-body .note {
  border-left: 3px solid var(--purple-500);
  background: var(--purple-50);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.4rem 0;
}
.legal-body .note p:last-child { margin-bottom: 0; }
.legal-body .upper { text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.legal-body .updated { color: var(--muted); font-size: .92rem; margin-bottom: 1.5rem; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .92rem; }
.legal-body th, .legal-body td { text-align: left; padding: .65rem .75rem; border: 1px solid var(--line); vertical-align: top; }
.legal-body th { background: var(--surface-2); font-weight: 600; }
.legal-body td code { background: var(--surface-2); padding: .15rem .35rem; border-radius: var(--radius-sm); font-size: .85em; }
.address { font-style: normal; line-height: 1.7; }

/* Footer ----------------------------------------------------------------- */
.site-footer {
  background: var(--surface-dark); color: #e2e8f0;
  padding: 3.4rem 0 2rem; font-size: .94rem;
}
.site-footer a { color: #e2e8f0; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-grid h4 {
  color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5em; }
.site-footer .brand { color: #fff; }
.footer-about p { margin-top: 1rem; max-width: 24rem; color: #94a3b8; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  color: #94a3b8; font-size: .88rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* Reveal animation ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { position: static; max-height: none; }
  .legal-toc ul { max-height: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-actions { display: none; }
  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: .9rem; width: 100%; margin: 0; padding: 1rem 0 1.4rem;
  }
  .site-header.is-open .nav-links {
    margin: 0; white-space: normal;
  }
  .site-header.is-open .nav {
    flex-wrap: wrap; height: auto; padding-bottom: .4rem;
  }
  .site-header.is-open .nav-actions .btn { width: 100%; }
  .hero-grid, .split, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .legal-body .meta { flex-direction: column; gap: .35rem; }
}

/* ---------- WhatsApp + Email reminders ---------- */
.reminders { position: relative; }
.reminder-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start;
}
.reminder-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.1rem; }
.reminder-list li { display: flex; gap: .9rem; align-items: flex-start; }
.reminder-list .tick {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(139, 92, 246, .12); color: var(--purple-600);
}
.reminder-list .tick svg { width: 17px; height: 17px; }
.reminder-list strong { display: block; font-size: 1.02rem; }
.reminder-list small { display: block; color: var(--muted); font-size: .93rem; margin-top: .15rem; }
.reminder-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding: 1.1rem 0; margin-bottom: 1.6rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.reminder-stats strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--purple-700); }
.reminder-stats span { display: block; color: var(--muted); font-size: .85rem; line-height: 1.35; }

.reminder-visual { display: grid; gap: 1rem; }
.chat-window, .mail-window {
  background: var(--surface, #fff); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.1rem 1.2rem; box-shadow: 0 18px 40px rgba(15,23,42,.08);
}
.chat-head, .mail-head {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; margin-bottom: .9rem;
}
.chat-head svg, .mail-head svg { width: 18px; height: 18px; color: #22c55e; }
.mail-head svg { color: var(--purple-600); }
.chat-bubble {
  background: #f1f5f9; border-radius: 14px 14px 14px 4px;
  padding: .7rem .9rem; font-size: .92rem; line-height: 1.5; margin-bottom: .6rem; max-width: 88%;
}
.chat-bubble.chat-out {
  margin-left: auto; background: #f3e8ff; border-radius: 14px 14px 4px 14px;
}
.mail-window p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* ---------- No-show prevention ---------- */
.no-show { overflow: hidden; }
.no-show .section-head h2 {
  white-space: nowrap;
  font-size: clamp(1.05rem, 4.2vw, 2.3rem);
}
@media (max-width: 360px) {
  .no-show .section-head h2 { font-size: 1rem; }
}
.no-show-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; max-width: 1100px; margin-inline: auto;
}
.no-show-flow { position: relative; }
.flow-start { margin-bottom: 1.2rem; }
.flow-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gradient); color: #fff;
  font-weight: 700; font-size: .92rem; padding: .55rem 1rem; border-radius: 999px;
  box-shadow: var(--shadow-glow);
}
.flow-badge svg { width: 17px; height: 17px; }
.flow-steps {
  list-style: none; padding: 0; margin: 0 0 1.8rem;
  position: relative;
}
.flow-steps::before {
  content: ""; position: absolute; left: 15px; top: 8px; bottom: 18px;
  width: 2px; background: var(--gradient);
}
.flow-steps li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .7rem 0; position: relative;
}
.flow-dot {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 2px solid var(--purple-500);
  display: grid; place-items: center; z-index: 1;
}
.flow-dot::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--purple-600);
}
.flow-steps strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.02rem; }
.flow-steps small { display: block; color: var(--muted); font-size: .92rem; margin-top: .15rem; }
.no-show-visual {
  display: flex; justify-content: center; align-items: center;
}
.no-show-visual img {
  max-width: 360px; width: 100%; height: auto;
}
.callout {
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.callout h3 {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  color: var(--purple-700);
}
.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}
.steps li {
  counter-increment: step;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: .75rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--purple-600);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }

.faq-item {
  background: var(--surface, #fff); border: 1px solid var(--border);
  border-radius: 14px; padding: 1rem 1.2rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: rgba(139,92,246,.35); box-shadow: 0 10px 26px rgba(15,23,42,.06); }
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.35rem; line-height: 1; color: var(--muted); font-weight: 500;
}
.faq-item[open] summary::after { content: "\2013"; color: var(--purple-600); }
.faq-item summary:hover { color: var(--purple-700); }
.faq-item p { margin: .8rem 0 .2rem; color: var(--muted); line-height: 1.65; font-size: .96rem; }

@media (max-width: 900px) {
  .reminder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .no-show-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .no-show-visual { order: -1; }
  .no-show-visual img { max-width: 300px; }
}
@media (max-width: 560px) {
  .reminder-stats { grid-template-columns: 1fr; gap: .8rem; }
}

/* ---------- Google Calendar integration page ---------- */
.integration-hero { padding-top: 8rem; padding-bottom: 3rem; }
.integration-hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center;
}
.integration-hero .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; font-weight: 700; color: var(--purple-700);
  background: var(--purple-100); padding: .4rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}
.integration-hero .eyebrow svg { width: 18px; height: 18px; color: var(--purple-600); }
.integration-hero h1 { margin-bottom: .7rem; }
.integration-hero p { font-size: 1.08rem; color: var(--muted); margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.integration-visual { display: flex; justify-content: center; }
.calendar-card {
  width: 100%; max-width: 340px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-lg);
}
.calendar-header {
  display: flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink);
  margin-bottom: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line);
}
.calendar-header svg { width: 22px; height: 22px; color: var(--purple-600); }
.calendar-slot {
  display: flex; align-items: center; padding: .65rem .8rem; border-radius: var(--radius-sm);
  margin-bottom: .5rem; font-size: .92rem; font-weight: 500;
}
.calendar-slot.free { background: var(--purple-50); color: var(--purple-700); }
.calendar-slot.busy { background: #f1f5f9; color: var(--muted); }
.calendar-meet {
  display: flex; align-items: center; gap: .5rem; margin-top: 1rem; padding: .75rem;
  background: #f3e8ff; color: var(--purple-700); border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600;
}
.calendar-meet svg { width: 18px; height: 18px; color: var(--purple-600); }

.flow-section { padding: 3rem 0 3.6rem; background: var(--gradient-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: .6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.integration-flow {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.1rem; max-width: 820px; margin-inline: auto;
  counter-reset: step;
}
.flow-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); position: relative;
}
.flow-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -10px; left: 22px;
  background: var(--gradient); color: #fff; font-size: .72rem; font-weight: 800;
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
}
.flow-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--purple-50);
  display: grid; place-items: center; color: var(--purple-700); flex-shrink: 0;
}
.flow-icon svg { width: 24px; height: 24px; }
.flow-body h3 { margin-bottom: .25rem; font-size: 1.1rem; }
.flow-body p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.6; }

.data-use-section { padding: 3rem 0; }
.data-use-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: flex-start;
  background: var(--gradient-soft);
  border: 1px solid var(--purple-200); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
}
.data-use-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--gradient);
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.data-use-icon svg { width: 28px; height: 28px; }
.data-use-body h2 { margin-bottom: .6rem; }
.data-use-body p { color: var(--body); }
.data-use-body ul { margin-top: .8rem; }
.data-use-body li { margin-bottom: .35rem; }

.cta-section { padding: 2rem 0 3.6rem; }
.cta-card {
  text-align: center; color: #fff;
  border-radius: var(--radius-lg); padding: 3rem 2rem;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 50% -30%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.cta-card h2 { color: #fff; margin-bottom: .5rem; position: relative; z-index: 1; }
.cta-card p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; position: relative; z-index: 1; }
.cta-card .btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.cta-card .btn-outline:hover { background: rgba(255,255,255,.12); }

@media (max-width: 900px) {
  .integration-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .integration-visual { order: -1; }
  .data-use-card { grid-template-columns: 1fr; gap: 1.2rem; }
}
@media (max-width: 560px) {
  .flow-step { grid-template-columns: 1fr; gap: .8rem; }
  .flow-icon { width: 42px; height: 42px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
}

/* Contact section */
.section-contact .contact-wrap{display:grid;grid-template-columns:1.4fr .8fr;gap:1.5rem;align-items:start}
.contact-form-card{background:var(--surface,#fff);border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:1.5rem;box-shadow:0 20px 45px -30px rgba(15,23,42,.45)}
.contact-info-card{background:var(--gradient-soft);border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:1.5rem}
.contact-info-card h3{margin:0 0 .75rem}
.contact-info-card ul{list-style:none;margin:0 0 1rem;padding:0;display:grid;gap:.4rem}
.contact-address{color:var(--muted,#64748b);line-height:1.6;margin-bottom:1.25rem}
@media (max-width:900px){.section-contact .contact-wrap{grid-template-columns:1fr}}

/* Booking journey section */
.journey { padding: clamp(1rem, 2.2vw, 1.6rem) 0; }
.journey-figure{margin:0 auto;max-width:1100px;border:1px solid var(--border,rgba(17,17,26,.08));border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 18px 45px -28px rgba(17,17,26,.45);}
.journey-figure img{display:block;width:100%;max-width:100%;height:auto;image-rendering:auto;}
@media (max-width:760px){.journey-figure{overflow-x:auto;-webkit-overflow-scrolling:touch;}.journey-figure img{width:1100px;max-width:none;}}


