/* ============================================================
   styles.css — Shared styles for all pages.
   Modern, clean, mobile-first design system.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:        #10406C;
  --primary-light:  #1a5490;
  --accent:         #1989CA;
  --accent-dark:    #1270a8;
  --accent-glow:    rgba(25, 137, 202, 0.25);
  --white:          #FFFFFF;
  --text:           #0F1724;
  --text-secondary: #4A5568;
  --text-muted:     #8896A8;
  --border:         #E2E8F0;
  --border-light:   #EDF2F7;
  --surface:        #F7FAFC;
  --surface-2:      #EDF2F7;
  --success:        #10B981;
  --success-bg:     #ECFDF5;
  --success-border: #A7F3D0;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 3px rgba(15, 23, 36, 0.06), 0 1px 2px rgba(15, 23, 36, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 36, 0.08), 0 1px 3px rgba(15, 23, 36, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 36, 0.1),  0 2px 6px  rgba(15, 23, 36, 0.06);
  --shadow-lg: 0 8px 32px rgba(15, 23, 36, 0.12), 0 4px 12px rgba(15, 23, 36, 0.08);
  --shadow-xl: 0 20px 60px rgba(15, 23, 36, 0.15), 0 8px 24px rgba(15, 23, 36, 0.1);

  --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 5vw, 2.625rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.375rem, 3vw, 2rem);    letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem,   2vw, 1.375rem); }
p  { line-height: 1.7; }

/* ── Layout ─────────────────────────────────────────────────── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F0F4F8;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  padding: 0.875rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .logo { height: 40px; width: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1989CA 0%, #1270a8 100%);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(25, 137, 202, 0.3), 0 1px 3px rgba(25, 137, 202, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25, 137, 202, 0.4), 0 2px 8px rgba(25, 137, 202, 0.25);
  text-decoration: none;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text-secondary);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  line-height: 1;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(25, 137, 202, 0.04);
  text-decoration: none;
}

.btn-secondary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  width: 100%;
  border-radius: var(--radius-lg);
  letter-spacing: 0.01em;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.125rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.375rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  box-shadow: var(--shadow-xs);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow-xs);
}

.form-group input::placeholder { color: #B0BEC5; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238896A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option[value=""] { color: #B0BEC5; }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ── Registration Page ──────────────────────────────────────── */
.reg-page-bg {
  background: linear-gradient(160deg, #EBF4FF 0%, #F0F4F8 40%, #F7F9FB 100%);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reg-main {
  flex: 1;
  padding: 2.5rem 1.25rem 4rem;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  animation: pageIn 0.45s ease both;
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(25, 137, 202, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.125rem;
  border: 1px solid rgba(25, 137, 202, 0.2);
}

.reg-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.reg-title {
  font-size: clamp(1.5rem, 4.5vw, 2.125rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.reg-change-notice {
  font-size: 0.9rem;
  font-weight: 500;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-left: 4px solid #F59E0B;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.session-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  margin-bottom: 1.125rem;
  box-shadow: var(--shadow-xs);
}

.session-time {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.session-tz {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.urgency-bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #065F46;
  margin-bottom: 1.75rem;
  padding: 0.7rem 1rem;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius);
}

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

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

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%       { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* ── Session Picker ─────────────────────────────────────────── */
.session-picker {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.session-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  user-select: none;
}

.session-card:hover {
  border-color: var(--accent);
  background: rgba(25,137,202,0.03);
}

.session-card.selected {
  border-color: var(--accent);
  background: rgba(25,137,202,0.06);
  box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow-xs);
}

.session-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.session-radio-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.session-card.selected .session-radio-dot {
  border-color: var(--accent);
  background: var(--accent);
}

.session-card.selected .session-radio-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.session-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.session-card-day {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.session-card-time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.session-picker-tz {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.session-picker-empty {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  margin-bottom: 1.125rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

/* ── Registration Form Wrap ─────────────────────────────────── */
.reg-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .reg-form-wrap { padding: 1.5rem 1.125rem; border-radius: var(--radius-lg); }
  .reg-main { padding-top: 1.75rem; }
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.875rem;
}

/* ── Waiting Room ─────────────────────────────────────────────  */
.waiting-main {
  flex: 1;
  padding: 2.5rem 1.25rem 4rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  animation: pageIn 0.45s ease both;
}

.waiting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.waiting-title {
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  color: var(--primary);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.waiting-subtitle {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.countdown-wrap {
  background: linear-gradient(145deg, var(--primary) 0%, #0c3057 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem 2rem;
  margin-bottom: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.countdown-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(25, 137, 202, 0.12);
}

.countdown-wrap::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.countdown-clock {
  font-size: clamp(3.5rem, 13vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}

.countdown-date {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.countdown-tz {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}

.wtl-section {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.wtl-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.125rem;
}

.wtl-list { list-style: none; padding: 0; }

.wtl-list li {
  padding: 0.75rem 0 0.75rem 1.625rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.wtl-list li:last-child { border-bottom: none; }

.wtl-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.calendar-section { margin-bottom: 1.25rem; }

.calendar-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.calendar-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  background: var(--white);
  font-family: var(--font);
  box-shadow: var(--shadow-xs);
}

.calendar-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(25, 137, 202, 0.04);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── Next Steps Page ────────────────────────────────────────── */
.next-steps-main {
  flex: 1;
  padding: 2.5rem 1.25rem 4rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  animation: pageIn 0.45s ease both;
}

.next-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--success-bg);
  color: #065F46;
  border: 1px solid var(--success-border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.next-steps-title {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.next-steps-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.steps-list { margin-bottom: 2.25rem; }

.step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.375rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(25, 137, 202, 0.3);
}

.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.step-content p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.meeting-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.meeting-section-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.meeting-section-header h2 { font-size: 1.1rem; color: var(--primary); }
.meeting-section-header p  { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.2rem; }

.meeting-embed iframe { width: 100%; min-height: 650px; border: none; display: block; }

.meeting-fallback { padding: 2.5rem; text-align: center; }
.meeting-fallback p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── Not Interested Page ────────────────────────────────────── */
.not-interested-main {
  flex: 1;
  padding: 2.5rem 1.25rem 4rem;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  animation: pageIn 0.45s ease both;
}

.not-interested-icon { font-size: 3rem; margin-bottom: 1.25rem; }

.not-interested-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary);
  margin-bottom: 0.875rem;
  letter-spacing: -0.015em;
}

.not-interested-body {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ── Feedback form (not-interested page) ────────────────────── */
.feedback-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.875rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.feedback-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.feedback-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.375rem;
}

.feedback-options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.feedback-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  background: var(--white);
}

.feedback-option:hover {
  border-color: var(--accent);
  background: rgba(25,137,202,0.03);
}

.feedback-option.selected {
  border-color: var(--accent);
  background: rgba(25,137,202,0.06);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.feedback-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.feedback-radio-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.feedback-option.selected .feedback-radio-dot {
  border-color: var(--accent);
  background: var(--accent);
}

.feedback-option.selected .feedback-radio-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.feedback-option-label {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.feedback-comments {
  margin-bottom: 1.25rem;
}

.feedback-comments label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.feedback-comments textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow-xs);
}

.feedback-comments textarea:focus,
#other-detail-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
  outline: none;
}

.feedback-comments textarea::placeholder { color: #B0BEC5; }

.feedback-error {
  font-size: 0.82rem;
  color: #EF4444;
  margin-bottom: 0.75rem;
  display: none;
}

.feedback-success {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feedback-success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.875rem;
  display: block;
}

.feedback-success h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.feedback-success p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .feedback-wrap { padding: 1.5rem 1.125rem; border-radius: var(--radius-lg); }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }

.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;
}
