/* Demo Spa Review Funnel — Premium Minimal */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:      #c8936c;
  --accent-lt:   #d9a47d;
  --accent-glow: rgba(200, 147, 108, 0.12);
  --text:        #181818;
  --muted:       #6b6b6b;
  --subtle:      #adadad;
  --border:      #e8e3dd;
  --surface:     #ffffff;
  --bg:          #f4f2ef;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Card ─────────────────────────────────────────────────── */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  animation: cardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Brand ─────────────────────────────────────────────────── */
.brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

/* ── Page icon container ───────────────────────────────────── */
.page-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(200,147,108,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}
.page-icon.green {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.22);
  color: #22c55e;
}

/* ── Typography ────────────────────────────────────────────── */
h1 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Star rating ───────────────────────────────────────────── */
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}

.star {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #ddd;
  transition: color 0.1s, transform 0.12s;
  display: flex;
  align-items: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.star svg { display: block; pointer-events: none; }
.star.hovered,
.star.selected { color: #f0a500; transform: scale(1.12); }

.hint-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  min-height: 18px;
  letter-spacing: 0.01em;
}

/* ── Decorative star row (positive page) ──────────────────── */
.star-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #f0a500;
  margin-bottom: 24px;
}

/* ── Review platform buttons ───────────────────────────────── */
.review-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 4px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.1px;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}

.btn-google { background: #4285F4; color: #fff; }
.btn-yelp   { background: #d32323; color: #fff; }
.btn-fb     { background: #1877F2; color: #fff; }

/* White circle badge inside platform buttons */
.btn-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Submit button ─────────────────────────────────────────── */
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--accent-lt); }
.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

/* ── Form elements ─────────────────────────────────────────── */
.form-group { text-align: left; margin-bottom: 14px; }

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 6px;
}

input[type=text],
textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--subtle); }
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: #fff;
}
textarea { resize: vertical; min-height: 96px; }

/* ── Divider ───────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── Disclaimer / footnote ─────────────────────────────────── */
.disclaimer {
  font-size: 12px;
  color: var(--subtle);
  line-height: 1.6;
  margin-top: 20px;
}
.disclaimer a { color: var(--accent); text-decoration: none; }
.disclaimer a:hover { text-decoration: underline; }

/* ── Privacy pill ──────────────────────────────────────────── */
.privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--subtle);
  margin-top: 18px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .card { padding: 36px 24px; }
}
