* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f0f4ff;
  color: #1e293b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ──────────────────────────────────────────── */
.header { background: linear-gradient(135deg, #4f46e5, #7c3aed); color: white; padding: 20px 20px 16px; }
.logo { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.tagline { font-size: 14px; opacity: 0.85; margin-top: 6px; text-align: center; }

/* ── STEPS BAR ───────────────────────────────────────── */
.steps-bar { display: flex; justify-content: center; align-items: center; gap: 12px; padding: 16px; background: white; border-bottom: 1px solid #e2e8f0; flex-wrap: wrap; }
.step { font-size: 13px; font-weight: 600; color: #94a3b8; padding: 6px 16px; border-radius: 20px; }
.step.active { background: #eef2ff; color: #4f46e5; }
.step-divider { color: #cbd5e1; font-size: 16px; }

/* ── SCREENS ─────────────────────────────────────────── */
.screen { padding: 40px 20px; max-width: 900px; margin: 0 auto; width: 100%; flex: 1; }
.hidden { display: none !important; }

/* ── CARD GRID ───────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 24px; }
.card { background: white; border-radius: 20px; padding: 28px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-icon { font-size: 44px; margin-bottom: 12px; }
.card h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: #64748b; margin-bottom: 20px; line-height: 1.6; }
.note { font-size: 12px; color: #94a3b8; margin-top: 10px; }
.privacy-note { text-align: center; font-size: 13px; color: #94a3b8; margin-top: 8px; }

/* ── UPLOAD NOTES ────────────────────────────────────── */
.upload-privacy-note {
  margin-top: 14px; padding: 10px 14px;
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: 10px; font-size: 12px; color: #166534;
  line-height: 1.5; text-align: left;
}
.upload-warning-note {
  margin-top: 10px; padding: 10px 14px;
  background: #fffbeb; border: 1px solid #fcd34d;
  border-radius: 10px; font-size: 12px; color: #92400e;
  line-height: 1.5; text-align: left;
}

/* ── LINK BUTTON ─────────────────────────────────────── */
.link-btn {
  background: none; border: none; color: #4f46e5;
  cursor: pointer; font-size: inherit; font-family: inherit;
  text-decoration: underline; padding: 0;
}
.link-btn:hover { color: #3730a3; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn { padding: 12px 28px; border-radius: 10px; border: none; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.btn-primary { background: linear-gradient(135deg, #6366f1, #4f46e5); color: white; box-shadow: 0 4px 14px rgba(99,102,241,0.35); }
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(99,102,241,0.45); }
.btn-primary:disabled { background: #cbd5e1 !important; box-shadow: none !important; cursor: not-allowed !important; transform: none !important; opacity: 0.7; }
.btn-outline { background: white; color: #4f46e5; border: 2px solid #4f46e5; }
.btn-outline:hover { background: #eef2ff; }
.btn-ghost { background: transparent; color: #64748b; }
.btn-ghost:hover { background: #f1f5f9; }

/* ── FORM ────────────────────────────────────────────── */
.form-container { max-width: 700px; margin: 0 auto; }
.form-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.fy-badge { font-size: 13px; background: #eef2ff; color: #4f46e5; padding: 4px 12px; border-radius: 20px; font-weight: 600; }

/* ── SECTION CARDS ───────────────────────────────────── */
.section-card { background: white; border-radius: 16px; margin-bottom: 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); overflow: hidden; }
.section-header { display: flex; align-items: center; gap: 8px; padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: 15px; user-select: none; background: white; }
.section-header:hover { background: #f8fafc; }
.section-limit { margin-left: auto; font-size: 12px; color: #64748b; font-weight: 500; margin-right: 8px; }
.toggle-icon { margin-left: auto; color: #94a3b8; font-size: 12px; }
.section-body { padding: 8px 20px 20px; border-top: 1px solid #f1f5f9; }
.section-body.collapsed { display: none; }

/* ── FIELDS ──────────────────────────────────────────── */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 4px; }
.field { margin-top: 14px; position: relative; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #64748b; margin-bottom: 6px; }
.input-wrap { position: relative; }
.prefix { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-weight: 600; font-size: 14px; }
input[type="number"], input[type="text"], input[type="tel"], input[type="email"], select {
  width: 100%; padding: 11px 14px 11px 28px;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: 14px; font-family: inherit; color: #1e293b;
  background: #f8fafc; outline: none; transition: border-color 0.2s;
}
input[type="text"], input[type="tel"], input[type="email"], select { padding-left: 14px; }
input:focus, select:focus { border-color: #6366f1; background: white; }
input:disabled { cursor: not-allowed; background: #f1f5f9 !important; opacity: 0.6; }

/* ── TOOLTIP ─────────────────────────────────────────── */
.info-btn { background: none; border: none; cursor: pointer; font-size: 13px; padding: 0 2px; vertical-align: middle; line-height: 1; }
.tooltip { display: none; position: absolute; background: #1e293b; color: white; font-size: 12px; font-weight: 400; padding: 10px 14px; border-radius: 8px; width: 260px; line-height: 1.5; z-index: 200; left: 0; top: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.tooltip.visible { display: block; }
.tooltip::before { content: ''; position: absolute; top: -6px; left: 16px; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid #1e293b; }
.field-hint { display: block; font-size: 11px; font-weight: 400; color: #94a3b8; margin-top: 2px; line-height: 1.4; }
.field-note { margin-top: 16px; padding: 12px 16px; background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 10px; font-size: 13px; color: #0369a1; line-height: 1.5; }

/* ── AUTO-FILL BADGE ─────────────────────────────────── */
.ai-filled { border-color: #3b82f6 !important; background: #eff6ff !important; border-width: 2px !important; }
.ai-badge { display: inline-block; font-size: 10px; font-weight: 700; color: #1e40af; background: #dbeafe; border: 1px solid #3b82f6; padding: 2px 8px; border-radius: 20px; margin-left: 8px; vertical-align: middle; }

.sec80c-total { margin-top: 14px; font-size: 13px; font-weight: 600; color: #4f46e5; text-align: right; }
.form-actions { display: flex; justify-content: space-between; margin-top: 24px; padding-bottom: 40px; }

/* ── RESULTS ─────────────────────────────────────────── */
.results-container { max-width: 700px; margin: 0 auto; }
.results-header { text-align: center; margin-bottom: 28px; }
.results-header h2 { font-size: 28px; font-weight: 800; }
.results-sub { color: #64748b; font-size: 14px; margin-top: 6px; }

.recommendation-banner { display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1.5px solid #10b981; border-radius: 16px; padding: 24px; margin-bottom: 24px; }
.recommendation-banner.old-better { background: linear-gradient(135deg, #eff6ff, #dbeafe); border-color: #3b82f6; }
.rec-icon { font-size: 40px; }
.rec-text h3 { font-size: 18px; font-weight: 700; color: #065f46; }
.recommendation-banner.old-better .rec-text h3 { color: #1e3a8a; }
.rec-text p { font-size: 14px; color: #64748b; margin-top: 4px; }

.comparison-grid { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.regime-card { flex: 1; background: white; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 2px solid transparent; }
.regime-card.winner { border-color: #10b981; }
.regime-label { font-size: 13px; font-weight: 700; color: #64748b; margin-bottom: 8px; }
.regime-tax { font-size: 28px; font-weight: 800; color: #1e293b; }
.regime-details { font-size: 12px; color: #94a3b8; margin-top: 8px; line-height: 1.8; }
.vs-divider { font-size: 18px; font-weight: 800; color: #cbd5e1; }

.tds-summary { background: white; border-radius: 16px; padding: 20px 24px; margin-bottom: 20px; font-size: 14px; line-height: 2; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.disclaimer { background: #fffbeb; border: 1px solid #fcd34d; border-radius: 12px; padding: 16px 20px; font-size: 13px; color: #92400e; margin-bottom: 24px; line-height: 1.6; }
.results-actions { display: flex; justify-content: space-between; padding-bottom: 40px; }

/* ── LOADING ─────────────────────────────────────────── */
.loading-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 999; }
.loading-box { background: white; border-radius: 20px; padding: 40px; text-align: center; }
.spinner { width: 48px; height: 48px; border: 4px solid #e2e8f0; border-top-color: #6366f1; border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-box p { font-weight: 700; font-size: 16px; }
.loading-box small { color: #64748b; }

/* ── BOOKING ─────────────────────────────────────────── */
.booking-section { background: linear-gradient(135deg, #f0f4ff, #faf5ff); border: 1.5px solid #c7d2fe; border-radius: 20px; padding: 24px; margin-bottom: 20px; }
.booking-card { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.booking-icon { font-size: 36px; }
.booking-text h3 { font-size: 17px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.booking-text p { font-size: 13px; color: #64748b; }
.booking-price { margin-left: auto; font-size: 28px; font-weight: 800; color: #4f46e5; }
.booking-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.booking-btn { text-align: center; text-decoration: none; display: block; padding: 13px 20px; }
.btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit; }
.btn-whatsapp:hover { background: #20bd5a; }

/* ── DOWNLOAD ────────────────────────────────────────── */
.download-section { background: white; border-radius: 16px; padding: 24px; margin-bottom: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.download-title { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 16px; }
.download-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-download-sheet { background: #003366; color: white; border: none; border-radius: 10px; padding: 13px 16px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.btn-download-sheet:hover { background: #004080; }
.btn-download-guide { background: #FF6600; color: white; border: none; border-radius: 10px; padding: 13px 16px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.btn-download-guide:hover { background: #e55a00; }

/* ── TOAST ───────────────────────────────────────────── */
#toast-container { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 10px; align-items: center; width: 90%; max-width: 520px; pointer-events: none; }
.toast { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-size: 14px; font-weight: 500; font-family: inherit; width: 100%; animation: toastIn 0.3s ease; pointer-events: all; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.toast-error   { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; }
.toast-warning { background: #fffbeb; border: 1.5px solid #fcd34d; color: #92400e; }
.toast-success { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }
.toast-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.toast-body { flex: 1; line-height: 1.5; }
.toast-title { font-weight: 700; margin-bottom: 2px; }
.toast-msg { font-size: 13px; opacity: 0.85; }
.toast-close { background: none; border: none; cursor: pointer; font-size: 16px; color: inherit; opacity: 0.6; padding: 0; flex-shrink: 0; }
.toast-close:hover { opacity: 1; }

/* ── MODALS (shared base) ────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: white; border-radius: 20px; max-width: 600px; width: 100%; max-height: 95vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #e2e8f0; flex-shrink: 0; }
.modal-header h2 { font-size: 20px; font-weight: 800; color: #1e293b; }
.modal-close { background: #f1f5f9; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: #e2e8f0; }
.modal-body { padding: 24px; overflow-y: auto; }
.modal-updated { font-size: 12px; color: #94a3b8; margin-bottom: 20px; }
.modal-body h3 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 20px 0 8px; }
.modal-body h3:first-of-type { margin-top: 0; }
.modal-body p { font-size: 13px; color: #475569; line-height: 1.7; }
.modal-body a { color: #4f46e5; }
.modal-footer-note { margin-top: 24px; padding: 14px 16px; background: #f0fdf4; border: 1px solid #86efac; border-radius: 10px; font-size: 13px; color: #166534; font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: #1e293b; color: #94a3b8; text-align: center; padding: 24px 20px; font-size: 13px; line-height: 2; margin-top: auto; }
.site-footer .link-btn { color: #a5b4fc; font-size: 13px; }
.site-footer .link-btn:hover { color: #c7d2fe; }
.footer-disclaimer { font-size: 11px; color: #64748b; margin-top: 4px; line-height: 1.5; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════
   NEW STYLES — all additions below, nothing above changed
   ════════════════════════════════════════════════════════ */

/* ── HEADER: logo as button + nav ────────────────────── */
.header-inner { max-width: 900px; margin: 0 auto; width: 100%; }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.logo-btn {
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  line-height: 1;
  transition: opacity 0.15s;
}
.logo-btn:hover { opacity: 0.85; }

.header-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.28); }

/* ── TOP NAVIGATION BAR (screens 2 & 3) ─────────────── */
.top-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.top-nav-btn {
  font-size: 13px;
  padding: 8px 16px;
}

/* ── FOOTER NAV ──────────────────────────────────────── */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 12px;
  font-size: 12px;
}
.footer-nav span { color: #64748b; }

/* ── CA INCLUSIONS (booking section) ─────────────────── */
.ca-inclusions {
  background: #f0f4ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 4px;
}

.ca-inclusions-title {
  font-size: 13px;
  font-weight: 700;
  color: #3730a3;
  margin-bottom: 10px;
}

.ca-inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.ca-item {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
}

/* ── BEFORE FILING CHECKLIST ─────────────────────────── */
.checklist-card { margin-bottom: 20px; }

.other-income-note {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.6;
  margin-bottom: 14px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  line-height: 1.5;
}

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  margin-top: 1px;
  accent-color: #4f46e5;
  cursor: pointer;
  border: none;
  background: none;
}

.check-item span { flex: 1; }

.checklist-cta {
  font-size: 13px;
  color: #475569;
  text-align: center;
  padding: 12px 16px;
  background: #f0f4ff;
  border-radius: 8px;
  line-height: 1.5;
}

/* ── HOW IT WORKS — modal steps ──────────────────────── */
.how-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.how-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #4f46e5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.how-step-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  margin-top: 0;
}

.how-step-content p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ACCORDION ───────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  background: white;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { background: #f8fafc; }
.faq-q span:first-child { flex: 1; line-height: 1.4; }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: #94a3b8;
  flex-shrink: 0;
  line-height: 1;
}

.faq-a {
  padding: 12px 16px 14px;
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.faq-hidden { display: none; }

/* ── LEAD CAPTURE MODAL ──────────────────────────────── */
.modal-sm { max-width: 540px; }

.lead-inclusions {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.lead-inclusions-title {
  font-size: 12px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
}

.lead-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
}

.lead-inclusions-list li {
  font-size: 12px;
  color: #166534;
  line-height: 1.5;
}

.lead-form .field { margin-top: 12px; }

.lead-form .field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}

.lead-form input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input:focus { border-color: #6366f1; background: white; }

.lead-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
}

/* ── MOBILE RESPONSIVE ───────────────────────────────── */
@media (max-width: 600px) {
  .header { padding: 16px 16px 12px; }

  .header-top { flex-direction: row; align-items: center; justify-content: flex-start; }
  .header-nav { display: none; }
.logo-btn { font-size: 22px; }
  .nav-link { font-size: 11px; padding: 4px 10px; }
  .tagline { font-size: 13px; text-align: left; }

  .steps-bar { gap: 6px; padding: 12px 8px; }
  .step { font-size: 11px; padding: 4px 10px; }
  .screen { padding: 20px 16px; }

  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px 20px; }
  .card-icon { font-size: 36px; }

  .form-title { font-size: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .section-header { font-size: 14px; padding: 14px 16px; }
  .section-body { padding: 8px 16px 16px; }

  .comparison-grid { flex-direction: column; gap: 12px; }
  .vs-divider { display: none; }
  .regime-card { width: 100%; }
  .regime-tax { font-size: 24px; }
  .recommendation-banner { flex-direction: column; text-align: center; gap: 12px; }

  .form-actions { flex-direction: column; gap: 12px; }
  .form-actions .btn { width: 100%; text-align: center; }
  .results-actions { flex-direction: column; gap: 12px; }
  .results-actions .btn { width: 100%; text-align: center; }
  .results-header h2 { font-size: 22px; }

  .booking-card { flex-wrap: wrap; }
  .booking-price { margin-left: 0; }
  .booking-buttons { grid-template-columns: 1fr; }
  .download-buttons { grid-template-columns: 1fr; }

  .tooltip { width: 220px; }
  .modal-box { max-height: 90vh; }
  .modal-sm { max-width: 100%; }

  .ca-inclusions-grid { grid-template-columns: 1fr; }
  .lead-inclusions-list { grid-template-columns: 1fr; }

  .top-bar { flex-wrap: wrap; }
  .top-nav-btn { font-size: 12px; padding: 7px 12px; }

  .footer-nav { gap: 4px 8px; font-size: 11px; }

  .how-step { gap: 12px; }
  .how-step-num { width: 28px; height: 28px; min-width: 28px; font-size: 13px; }
}

/* Header logo image */
.logo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.header-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
}

@media (max-width: 600px) {
  .header-logo-img { width: 30px; height: 30px; }
  .header-logo-text { font-size: 18px; }
}