/* ─────────────────────────────────────────────────────────────────
   Hoospi Landing Page — Light Professional Theme (Dual Audience)
   ───────────────────────────────────────────────────────────────── */

:root {
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: rgba(59,130,246,0.08);
  --purple: #6314a8;
  --purple-dark: #4c0f80;
  --purple-light: rgba(168,85,247,0.08);
  --green: #22c55e;
  --green-dark: #16a34a;
  --orange: #f97316;
  --red: #ef4444;

  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.logo svg { flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }
.logo-img-footer { height: 30px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; border: none; cursor: pointer; transition: all 0.2s;
  text-align: center; white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white; box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}
.btn-primary:hover { box-shadow: 0 4px 16px rgba(59,130,246,0.4); transform: translateY(-1px); }
.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white; box-shadow: 0 2px 8px rgba(168,85,247,0.3);
}
.btn-purple:hover { box-shadow: 0 4px 16px rgba(168,85,247,0.4); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--border); border-radius: var(--radius);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ═══ HERO ═══ */
.hero {
  padding: 120px 0 80px; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; font-size: 0.8rem; font-weight: 600;
  color: var(--blue); background: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius-full);
  margin-bottom: 24px; letter-spacing: 0.02em; text-transform: uppercase;
}
.hero-badge .counter-dot { display: inline-block; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15;
  max-width: 720px; margin: 0 auto 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text-secondary);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.hero-proof-item { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-secondary); }
.hero-proof-item svg { flex-shrink: 0; }

/* ═══ ROLE SWITCH ═══ */
.role-switch {
  display: inline-flex; position: relative;
  background: var(--bg-alt); border-radius: var(--radius-full);
  padding: 4px; margin-bottom: 20px; border: 1px solid var(--border);
}
.switch-btn {
  padding: 10px 28px; border: none; border-radius: var(--radius-full);
  background: transparent; cursor: pointer; font-weight: 600;
  font-size: 0.95rem; color: var(--text-muted); transition: color 0.3s;
  position: relative; z-index: 1;
}
.switch-btn.active { color: white; }
.switch-indicator {
  position: absolute; top: 4px; left: 4px;
  height: calc(100% - 8px); width: calc(50% - 4px);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: var(--radius-full); transition: transform 0.3s ease;
}
.switch-indicator.right { transform: translateX(100%); }
.role-switch-form { margin-bottom: 24px; display: flex; margin-left: auto; margin-right: auto; width: fit-content; }

/* ═══ HOW IT WORKS — SPLIT ═══ */
.how-section { padding: 80px 0; background: var(--bg); }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 48px; }

.how-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.how-col {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 0; overflow: hidden; background: var(--bg-card);
}
.how-col-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px; font-weight: 700; font-size: 0.95rem;
}
.how-col-header-blue { background: var(--blue-light); color: var(--blue-dark); }
.how-col-header-purple { background: var(--purple-light); color: var(--purple-dark); }
.how-col-header svg { flex-shrink: 0; }

.how-steps-mini { padding: 24px; }
.how-step-mini { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.how-step-mini:last-child { margin-bottom: 0; }
.step-num-mini {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.step-num-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.how-step-mini strong { font-size: 0.95rem; }

/* ═══ ROI SECTIONS ═══ */
.roi-section { padding: 80px 0; }
.roi-rest { background: var(--bg-alt); }
.roi-prov { background: var(--bg); }

.roi-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; }
.roi-grid-reverse { direction: rtl; }
.roi-grid-reverse > * { direction: ltr; }

.roi-eyebrow {
  display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 700;
  border-radius: var(--radius-full); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.roi-eyebrow-blue { background: var(--blue-light); color: var(--blue-dark); }
.roi-eyebrow-purple { background: var(--purple-light); color: var(--purple-dark); }

.roi-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.roi-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }

.roi-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.roi-benefit { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.roi-benefit svg { flex-shrink: 0; margin-top: 3px; }

/* ═══ MOCKUP SECTION ═══ */
.mockup-section { padding: 80px 0; background: var(--bg); }
.mockup-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.mockup-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.mockup-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }

.roi-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.roi-benefit { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.roi-benefit svg { flex-shrink: 0; margin-top: 3px; }

.insight-box {
  padding: 16px 20px; border-radius: var(--radius); font-size: 0.9rem;
  line-height: 1.6; background: var(--blue-light); border-left: 3px solid var(--blue);
  color: var(--text-secondary);
}
.insight-box-purple { background: var(--purple-light); border-left-color: var(--purple); }

/* WhatsApp Mockup */
.wa-mockup {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  max-width: 380px;
}
.wa-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #075e54; color: white;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.wa-avatar-blue { background: #6B21A8; }
.wa-avatar-purple { background: #6B21A8; }
.wa-name { font-weight: 600; font-size: 0.95rem; }
.wa-status { font-size: 0.75rem; opacity: 0.8; }

.wa-body {
  background: #ece5dd; padding: 16px 12px;
  display: flex; flex-direction: column; gap: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4cfc6' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-msg {
  max-width: 85%; padding: 8px 12px; border-radius: 8px;
  font-size: 0.85rem; line-height: 1.5; position: relative;
}
.wa-msg p { margin-bottom: 2px; }
.wa-msg-in {
  background: white; align-self: flex-start;
  border-top-left-radius: 2px;
}
.wa-msg-out {
  background: #dcf8c6; align-self: flex-end;
  border-top-right-radius: 2px;
}
.wa-time {
  display: block; text-align: right; font-size: 0.65rem;
  color: #999; margin-top: 2px;
}
.wa-small { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

.wa-quote {
  background: rgba(0,0,0,0.04); border-radius: 6px;
  padding: 8px 10px; margin: 6px 0; font-size: 0.82rem;
}
.wa-quote-header {
  font-weight: 700; font-size: 0.8rem; margin-bottom: 6px;
  color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 4px;
}
.wa-quote-row {
  display: flex; justify-content: space-between; padding: 3px 0;
  font-size: 0.82rem;
}
.wa-quote-best { color: var(--green-dark); font-weight: 600; }

/* WA message animation */
.wa-msg {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-msg-visible { opacity: 1; transform: translateY(0); }

/* WA typing indicator */
.wa-typing {
  display: inline-flex; gap: 4px; align-items: center;
  background: white; padding: 10px 14px; border-radius: 8px;
  border-top-left-radius: 2px; align-self: flex-start;
  opacity: 0; transition: opacity 0.2s;
}
.wa-typing-visible { opacity: 1; }
.wa-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #999;
  animation: typingDot 1.2s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ═══ CATEGORIES ═══ */
.categories-section { padding: 80px 0; background: var(--bg-alt); }
.categories-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 800px; margin: 0 auto;
}
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-chip { cursor: pointer; }
.cat-chip:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.cat-emoji { font-size: 1.1rem; }

/* ═══ FORM SECTION ═══ */
.form-section { padding: 80px 0 100px; background: var(--bg); }
.form-wrapper {
  max-width: 640px; margin: 0 auto; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.form-header { text-align: center; margin-bottom: 24px; }
.form-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-header p { color: var(--text-secondary); font-size: 0.95rem; }

.waitlist-badge {
  display: inline-block; padding: 4px 14px; font-size: 0.75rem; font-weight: 700;
  color: var(--orange); background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2); border-radius: var(--radius-full);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* Role tabs */
.role-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 28px; background: var(--bg-alt);
  border-radius: var(--radius); padding: 4px;
}
.role-tab {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border: none; border-radius: var(--radius-sm);
  background: transparent; cursor: pointer; font-weight: 600;
  font-size: 0.9rem; color: var(--text-muted); transition: all 0.2s;
}
.role-tab svg { flex-shrink: 0; }
.role-tab.active {
  background: var(--bg-card); color: var(--text);
  box-shadow: var(--shadow-sm);
}
.role-tab:hover:not(.active) { color: var(--text-secondary); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.optional { font-weight: 400; color: var(--text-muted); }

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg); color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input.error, .form-group select.error {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

.form-success { text-align: center; padding: 32px 0; }
.success-icon { margin: 0 auto 20px; }
.success-icon svg { margin: 0 auto; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.form-success p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.form-success a { color: var(--blue); font-weight: 600; }
.success-sub { margin-top: 16px; font-size: 0.9rem !important; }

/* ═══ WAITLIST COUNTER ═══ */
.waitlist-counter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15); border-radius: var(--radius-full);
  font-size: 0.9rem; color: var(--text-secondary); margin-top: 24px;
}
.counter-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ═══ BEFORE vs AFTER ═══ */
.compare-section { padding: 80px 0; background: var(--bg-alt); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 840px; margin: 0 auto; }
.compare-card {
  border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border);
  background: var(--bg-card);
}
.compare-before { border-color: rgba(239,68,68,0.2); }
.compare-after { border-color: rgba(34,197,94,0.2); background: linear-gradient(135deg, rgba(34,197,94,0.02), rgba(59,130,246,0.02)); }

.compare-label {
  display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 700;
  border-radius: var(--radius-full); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.compare-label-red { background: rgba(239,68,68,0.08); color: var(--red); }
.compare-label-green { background: rgba(34,197,94,0.08); color: var(--green-dark); }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; line-height: 1.5;
}
.compare-list li svg { flex-shrink: 0; margin-top: 3px; }

/* ═══ FAQ ═══ */
.faq-section { padding: 80px 0; background: var(--bg); }
.faq-list { max-width: 700px; margin: 32px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 1rem; font-weight: 600;
  cursor: pointer; list-style: none; color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q::after {
  content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--text-muted);
  transition: transform 0.2s;
}
details[open] .faq-q::after { content: '−'; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a {
  padding: 0 0 18px; font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ STICKY MOBILE CTA ═══ */
.sticky-cta {
  display: none; /* hidden by default, shown on mobile via JS */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  padding: 12px 16px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
.sticky-cta .btn { border-radius: var(--radius-sm); }

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.revealed { opacity: 1; transform: translateY(0); }

/* ═══ SWITCH FADE ═══ */
.role-content { transition: opacity 0.2s ease; }
.role-content.fading { opacity: 0; }
.role-content.fading-in { animation: fadeIn 0.4s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ MICRO CTA ═══ */
.micro-cta { text-align: center; margin-top: 32px; }
.micro-cta a {
  color: var(--blue); font-weight: 600; font-size: 0.95rem;
  transition: color 0.2s;
}
.micro-cta a:hover { color: var(--purple); }

/* ═══ FOOTER ═══ */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 48px 0 24px; }
.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: white; margin-bottom: 8px; }
.footer-brand p { font-size: 0.9rem; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.social-link:hover { color: white; }
.footer-bottom { padding-top: 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-proof { flex-direction: column; align-items: center; gap: 10px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-lg { width: 100%; max-width: 320px; }
  .how-split { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .mockup-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .sticky-cta.visible { display: block; }
  .footer { padding-bottom: 80px; } /* space for sticky CTA */
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.75rem; }
  .categories-grid { gap: 8px; }
  .cat-chip { padding: 8px 14px; font-size: 0.82rem; }
  .role-tab { font-size: 0.82rem; padding: 10px 12px; }
}
