@charset "UTF-8";
/*
 * Funnel SCSS — Invoice Funnel Feature
 * Standalone styles for /create-invoice
 * Uses the same design tokens as the public site (style.scss)
 * Compile to funnel.css manually — do NOT auto-compile.
 */
/* -----------------------------------------
   Google Fonts
----------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap");
/* -----------------------------------------
   Variables (mirrors style.scss tokens)
----------------------------------------- */
/* -----------------------------------------
   Reset / Base
----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.funnel-body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #131313;
  color: #1a1a2e;
  min-height: 100vh;
  overflow-x: hidden;
}

/* -----------------------------------------
   Funnel Card
----------------------------------------- */
.funnel-card {
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
  /* Ultra-wide screens */
}
@media (min-width: 2200px) {
  .funnel-card {
    max-width: 2200px;
    margin: 0 auto;
    border-radius: 16px;
  }
}
@media (max-width: 600px) {
  .funnel-card {
    border-radius: 0;
    min-height: 100vh;
    box-shadow: none;
  }
}

/* -----------------------------------------
   Card Header: Logo + Progress Bar
----------------------------------------- */
.funnel-card-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e2e5ea;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .funnel-card-header {
    padding: 1rem;
  }
}

.funnel-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.funnel-logo svg {
  height: 3rem;
  width: auto;
}

/* -----------------------------------------
   Step Progress Bar
----------------------------------------- */
.funnel-progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.funnel-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  cursor: default;
}
.funnel-step-dot .funnel-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #e2e5ea;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  position: relative;
}
.funnel-step-dot .funnel-step-circle .funnel-step-check {
  display: none;
  font-size: 12px;
}
.funnel-step-dot .funnel-step-label {
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s;
}
.funnel-step-dot.is-active .funnel-step-circle {
  border-color: #02c5c5;
  background: #02c5c5;
  color: #ffffff;
}
.funnel-step-dot.is-active .funnel-step-label {
  color: #02c5c5;
}
.funnel-step-dot.is-complete .funnel-step-circle {
  border-color: #02c5c5;
  background: #02c5c5;
  color: #ffffff;
}
.funnel-step-dot.is-complete .funnel-step-circle .funnel-step-num {
  display: none;
}
.funnel-step-dot.is-complete .funnel-step-circle .funnel-step-check {
  display: flex;
}
.funnel-step-dot.is-complete .funnel-step-label {
  color: #02c5c5;
}
@media (max-width: 480px) {
  .funnel-step-dot .funnel-step-label {
    display: none;
  }
  .funnel-step-dot .funnel-step-circle {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}

.funnel-step-connector {
  flex: 1;
  height: 2px;
  background: #e2e5ea;
  margin-bottom: 1.4rem;
  transition: background 0.25s;
}
.funnel-step-connector.is-active {
  background: #02c5c5;
}
@media (max-width: 480px) {
  .funnel-step-connector {
    margin-bottom: 0;
  }
}

/* -----------------------------------------
   Card Body
----------------------------------------- */
.funnel-card-body {
  padding: 2rem 2.5rem;
  flex: 1;
}
@media (max-width: 600px) {
  .funnel-card-body {
    padding: 1.25rem 1rem;
  }
}

/* -----------------------------------------
   Step Content Visibility
----------------------------------------- */
.funnel-step-content {
  display: none;
  animation: funnelFadeIn 200ms ease-out forwards;
}
.funnel-step-content.is-active {
  display: block;
}

@keyframes funnelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -----------------------------------------
   Step Heading
----------------------------------------- */
.funnel-step-heading {
  margin-bottom: 1.75rem;
}
.funnel-step-heading h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.funnel-step-heading p {
  font-size: 0.95rem;
  color: #6b7280;
}
@media (max-width: 480px) {
  .funnel-step-heading h2 {
    font-size: 1.2rem;
  }
}

/* -----------------------------------------
   STEP 1 — Invoice Type Cards
----------------------------------------- */
.funnel-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .funnel-type-grid {
    grid-template-columns: 1fr;
  }
}

.funnel-type-card {
  display: block;
  cursor: pointer;
  border-radius: 12px;
  border: 2px solid #e2e5ea;
  background: #ffffff;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.funnel-type-card input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.funnel-type-card .funnel-type-card-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}
.funnel-type-card .funnel-type-icon {
  font-size: 2rem;
  color: #9ca3af;
  transition: color 0.25s;
}
.funnel-type-card .funnel-type-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
}
.funnel-type-card .funnel-type-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  flex: 1;
}
.funnel-type-card .funnel-type-check {
  font-size: 1.25rem;
  color: #e2e5ea;
  transition: color 0.25s;
  align-self: flex-end;
}
.funnel-type-card:hover {
  border-color: rgba(2, 197, 197, 0.5);
  box-shadow: 0 4px 16px rgba(2, 197, 197, 0.1);
}
.funnel-type-card.is-selected {
  border-color: #02c5c5;
  box-shadow: 0 4px 20px rgba(2, 197, 197, 0.15);
}
.funnel-type-card.is-selected .funnel-type-icon {
  color: #02c5c5;
}
.funnel-type-card.is-selected .funnel-type-check {
  color: #02c5c5;
}
.funnel-type-card.funnel-type-card--ndis:hover {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 4px 16px rgba(138, 43, 226, 0.12);
}
.funnel-type-card.funnel-type-card--ndis.is-selected {
  border-color: #8a2be2;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.2);
}
.funnel-type-card.funnel-type-card--ndis.is-selected .funnel-type-icon {
  color: #8a2be2;
}
.funnel-type-card.funnel-type-card--ndis.is-selected .funnel-type-check {
  color: #8a2be2;
}

/* -----------------------------------------
   AGED CARE TOGGLE (Step 1)
----------------------------------------- */
.funnel-aged-care-toggle {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: #f0fafa;
  border: 1px solid rgba(2, 197, 197, 0.25);
  border-radius: 10px;
}
.funnel-aged-care-toggle .funnel-checkbox-label {
  margin-bottom: 0.25rem;
}
.funnel-aged-care-toggle .funnel-field-hint {
  margin-top: 0.25rem;
  padding-left: 1.75rem;
}
.funnel-aged-care-toggle:has(input:disabled) {
  opacity: 0.45;
  pointer-events: none;
}

/* -----------------------------------------
   STEP 2 — Line Items Table
----------------------------------------- */
.funnel-items-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  margin-bottom: 0;
  display: grid;
}

.funnel-items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.funnel-items-table thead tr {
  background: #f8f9fa;
  border-bottom: 1px solid #e2e5ea;
}
.funnel-items-table th {
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  white-space: nowrap;
}
.funnel-items-table td {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #e2e5ea;
  vertical-align: middle;
}
.funnel-items-table td:last-child {
  border-bottom: none;
}
.funnel-items-table tbody tr:last-child td {
  border-bottom: none;
}
.funnel-items-table .col-del {
  width: 36px;
  text-align: center;
}
.funnel-items-table .col-desc {
  min-width: 180px;
}
.funnel-items-table .col-date {
  width: 130px;
}
.funnel-items-table .col-qty {
  width: 85px;
}
.funnel-items-table .col-rate {
  width: 100px;
}
.funnel-items-table .col-total {
  width: 90px;
  text-align: right;
  font-weight: 700;
  color: #1a1a2e;
}
.funnel-items-table input[type=text],
.funnel-items-table input[type=date],
.funnel-items-table input[type=number] {
  width: 100%;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  color: #1a1a2e;
  background: #f4f5f7;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.funnel-items-table input[type=text]:focus,
.funnel-items-table input[type=date]:focus,
.funnel-items-table input[type=number]:focus {
  border-color: #02c5c5;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 197, 197, 0.18);
}
.funnel-items-table .funnel-item-del-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  font-size: 1rem;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-items-table .funnel-item-del-btn:hover {
  color: #d62424;
}
.funnel-items-table .funnel-item-row-total {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .funnel-items-table .col-date,
  .funnel-items-table th.col-date {
    display: none;
  }
}

.funnel-add-item-row {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-top: 1px solid #e2e5ea;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}

.funnel-add-item-btn {
  background: none;
  border: 1px dashed #02c5c5;
  color: #02c5c5;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.funnel-add-item-btn:hover {
  background: rgba(2, 197, 197, 0.08);
}

.funnel-running-total {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 0 0.25rem;
  border-top: 2px solid #e2e5ea;
  margin-top: 0.5rem;
}
.funnel-running-total .funnel-running-total-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.funnel-running-total .funnel-running-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #02c5c5;
  min-width: 100px;
  text-align: right;
}

/* -----------------------------------------
   Form Grid (Steps 3, 4, 5)
----------------------------------------- */
.funnel-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) {
  .funnel-form-grid {
    grid-template-columns: 1fr;
  }
}

.funnel-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.funnel-field.funnel-field-full {
  grid-column: 1/-1;
}
.funnel-field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a2e;
}
.funnel-field input[type=text],
.funnel-field input[type=email],
.funnel-field input[type=tel],
.funnel-field input[type=password],
.funnel-field input[type=date],
.funnel-field select,
.funnel-field textarea {
  width: 100%;
  border: 1.5px solid #e2e5ea;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #f4f5f7;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.funnel-field input[type=text]::-moz-placeholder, .funnel-field input[type=email]::-moz-placeholder, .funnel-field input[type=tel]::-moz-placeholder, .funnel-field input[type=password]::-moz-placeholder, .funnel-field input[type=date]::-moz-placeholder, .funnel-field select::-moz-placeholder, .funnel-field textarea::-moz-placeholder {
  color: #9ca3af;
}
.funnel-field input[type=text]::placeholder,
.funnel-field input[type=email]::placeholder,
.funnel-field input[type=tel]::placeholder,
.funnel-field input[type=password]::placeholder,
.funnel-field input[type=date]::placeholder,
.funnel-field select::placeholder,
.funnel-field textarea::placeholder {
  color: #9ca3af;
}
.funnel-field input[type=text]:focus,
.funnel-field input[type=email]:focus,
.funnel-field input[type=tel]:focus,
.funnel-field input[type=password]:focus,
.funnel-field input[type=date]:focus,
.funnel-field select:focus,
.funnel-field textarea:focus {
  border-color: #02c5c5;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 197, 197, 0.18);
}
.funnel-field select {
  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='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.funnel-field textarea {
  resize: vertical;
  min-height: 80px;
}

.funnel-required {
  color: #d62424;
  font-weight: 700;
}

.funnel-field-error {
  font-size: 0.8rem;
  color: #d62424;
  font-weight: 600;
  min-height: 1rem;
}

.funnel-field-hint {
  font-size: 0.8rem;
  color: #9ca3af;
}

.funnel-step-error {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #d62424;
  font-weight: 600;
  min-height: 1.2rem;
}

/* -----------------------------------------
   Checkbox Label
----------------------------------------- */
.funnel-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
}
.funnel-checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #02c5c5;
  cursor: pointer;
  flex-shrink: 0;
}

/* -----------------------------------------
   STEP 4 — Sub-step Bar
----------------------------------------- */
.funnel-substep-bar {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e2e5ea;
}

.funnel-substep-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.funnel-substep-item .funnel-substep-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e5ea;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.funnel-substep-item .funnel-substep-label {
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s;
}
.funnel-substep-item.is-active .funnel-substep-circle {
  border-color: #02c5c5;
  background: #02c5c5;
  color: #ffffff;
}
.funnel-substep-item.is-active .funnel-substep-label {
  color: #02c5c5;
}
.funnel-substep-item.is-complete .funnel-substep-circle {
  border-color: #02c5c5;
  background: rgba(2, 197, 197, 0.12);
  color: #02c5c5;
}
.funnel-substep-item.is-complete .funnel-substep-label {
  color: #02c5c5;
}
@media (max-width: 400px) {
  .funnel-substep-item .funnel-substep-label {
    display: none;
  }
}

.funnel-substep-connector {
  flex: 1;
  height: 2px;
  background: #e2e5ea;
  margin-bottom: 1.2rem;
}

/* Sub-step content visibility */
.funnel-substep-content {
  display: none;
  animation: funnelFadeIn 200ms ease-out forwards;
}
.funnel-substep-content.is-active {
  display: block;
}

/* -----------------------------------------
   ABN Field
----------------------------------------- */
.funnel-abn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.funnel-abn-wrapper input {
  width: 100%;
  padding-right: 7.5rem;
}

.funnel-abn-check-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.85rem;
  height: calc(100% - 8px);
  background: #02c5c5;
  color: #ffffff;
  border: none;
  border-radius: calc(8px - 2px);
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, opacity 0.25s;
  line-height: 1;
}
.funnel-abn-check-btn:hover {
  background: #026b6b;
}
.funnel-abn-check-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* -----------------------------------------
   Logo Upload
----------------------------------------- */
.funnel-logo-upload {
  border: 2px dashed #e2e5ea;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.funnel-logo-upload:hover {
  border-color: #02c5c5;
}

.funnel-logo-upload-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  color: #6b7280;
  cursor: pointer;
}
.funnel-logo-upload-inner i {
  font-size: 2rem;
  color: #9ca3af;
}
.funnel-logo-upload-inner span {
  font-size: 0.9rem;
}

.funnel-logo-hint {
  font-size: 0.78rem !important;
  color: #9ca3af !important;
}

.funnel-link-btn {
  background: none;
  border: none;
  color: #02c5c5;
  font-family: "Nunito", sans-serif;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.funnel-logo-preview {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.funnel-logo-preview img {
  max-height: 80px;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}

.funnel-logo-remove {
  background: #d62424;
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.funnel-logo-remove:hover {
  opacity: 0.85;
}

/* -----------------------------------------
   STEP 5 — Colour Picker
----------------------------------------- */
.funnel-colour-picker {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.funnel-colour-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.funnel-colour-swatch:hover {
  transform: scale(1.15);
}
.funnel-colour-swatch.is-selected {
  border-color: #1a1a2e;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1a1a2e;
  transform: scale(1.1);
}
.funnel-colour-swatch[data-colour="#ffffff"] {
  border-color: #e2e5ea;
  box-shadow: inset 0 0 0 1px #e2e5ea;
}
.funnel-colour-swatch[data-colour="#ffffff"].is-selected {
  border-color: #1a1a2e;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1a1a2e;
}

/* -----------------------------------------
   STEP 6 — Preview Panel
----------------------------------------- */
.funnel-preview-summary {
  margin-bottom: 0.5rem;
}

/* -----------------------------------------
   STEP 7 — Save Gate
----------------------------------------- */
.funnel-save-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 680px) {
  .funnel-save-gate {
    grid-template-columns: 1fr;
  }
}

.funnel-save-gate-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funnel-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.funnel-password-wrapper input {
  padding-right: 3rem;
}

.funnel-password-toggle {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.25s;
}
.funnel-password-toggle:hover {
  color: #1a1a2e;
}

.funnel-save-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(90deg, #026b6b 0%, #02c5c5 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.funnel-save-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
.funnel-save-btn:active {
  transform: translateY(0);
}

.funnel-save-gate-divider {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
  position: relative;
}
.funnel-save-gate-divider::before, .funnel-save-gate-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e2e5ea;
}
.funnel-save-gate-divider::before {
  left: 0;
}
.funnel-save-gate-divider::after {
  right: 0;
}

.funnel-download-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #6b7280;
  border: 1.5px solid #e2e5ea;
  border-radius: 30px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.funnel-download-btn:hover {
  border-color: #6b7280;
  color: #1a1a2e;
}

.funnel-download-note {
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.4;
}

.funnel-save-gate-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funnel-loss-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  color: #b45309;
  font-weight: 600;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}
.funnel-loss-warning i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #f59e0b;
}

.funnel-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.funnel-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}
.funnel-benefits-list li i {
  color: #2dca73;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

/* -----------------------------------------
   Card Footer: Navigation Buttons
----------------------------------------- */
.funnel-card-footer {
  background: #f8f9fa;
  border-top: 1px solid #e2e5ea;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .funnel-card-footer {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
}

.funnel-btn-back {
  background: none;
  border: 1.5px solid #e2e5ea;
  color: #6b7280;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.funnel-btn-back:hover {
  border-color: #6b7280;
  color: #1a1a2e;
}

.funnel-btn-continue {
  background: linear-gradient(90deg, #026b6b 0%, #02c5c5 100%);
  color: #ffffff;
  border: none;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.65rem 1.75rem;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.funnel-btn-continue:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
.funnel-btn-continue:active {
  transform: translateY(0);
}

@media (max-width: 350px) {
  .funnel-btn-back,
  .funnel-btn-continue {
    font-size: 0.78rem;
    padding: 0.6rem 0.9rem;
  }
}

.funnel-footer-total {
  margin-left: auto;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
}
.funnel-footer-total strong {
  color: #02c5c5;
  font-size: 1.05rem;
}

/* -----------------------------------------
   Remote Area Options (Step 2 — NDIS)
----------------------------------------- */
.funnel-remote-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.funnel-remote-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid #e2e5ea;
  border-radius: 30px;
  background: #f4f5f7;
  color: #6b7280;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.funnel-remote-option input[type=radio] {
  display: none;
}
.funnel-remote-option i {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.funnel-remote-option:hover {
  border-color: #02c5c5;
  color: #02c5c5;
  background: rgba(2, 197, 197, 0.06);
}
.funnel-remote-option:hover i {
  opacity: 1;
}
.funnel-remote-option[data-area=standard].is-selected {
  border-color: #6b7280;
  background: rgba(107, 114, 128, 0.1);
  color: #1a1a2e;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.12);
}
.funnel-remote-option[data-area=standard].is-selected i {
  opacity: 1;
}
.funnel-remote-option[data-area=remote].is-selected, .funnel-remote-option[data-area=very-remote].is-selected {
  border-color: #02c5c5;
  background: rgba(2, 197, 197, 0.1);
  color: #026b6b;
  box-shadow: 0 0 0 3px rgba(2, 197, 197, 0.15);
}
.funnel-remote-option[data-area=remote].is-selected i, .funnel-remote-option[data-area=very-remote].is-selected i {
  opacity: 1;
}

/* -----------------------------------------
   STEP 7 — Check Your Email Panel
----------------------------------------- */
.funnel-check-email {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.funnel-check-email h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0.75rem 0 0.5rem;
}
.funnel-check-email p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.funnel-check-email-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(2, 197, 197, 0.1);
  border: 2px solid rgba(2, 197, 197, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.funnel-check-email-icon i {
  font-size: 1.75rem;
  color: #02c5c5;
}

.funnel-check-email-resend {
  font-size: 0.85rem !important;
  color: #9ca3af !important;
  margin-top: 0.25rem !important;
}

/* -----------------------------------------
   ABN / GST block (Step 3 — top of services)
----------------------------------------- */
.funnel-step3-abn {
  margin-bottom: 1.5rem;
}

.funnel-step3-abn-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.5;
}
.funnel-step3-abn-label i {
  color: #02c5c5;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.funnel-step3-abn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) {
  .funnel-step3-abn-row {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   GST Badge (Step 3 — ABN lookup result)
----------------------------------------- */
.funnel-gst-badge {
  margin-top: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.funnel-gst-badge i {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.funnel-gst-badge.funnel-gst-badge--registered {
  background: rgba(45, 202, 115, 0.1);
  border: 1px solid rgba(45, 202, 115, 0.3);
  color: rgb(26.4170040486, 118.5829959514, 67.5101214575);
}
.funnel-gst-badge.funnel-gst-badge--registered i {
  color: #2dca73;
}
.funnel-gst-badge.funnel-gst-badge--unregistered {
  background: rgba(156, 163, 175, 0.08);
  border: 1px solid rgba(156, 163, 175, 0.25);
  color: #6b7280;
}
.funnel-gst-badge.funnel-gst-badge--unregistered i {
  color: #9ca3af;
}

/* -----------------------------------------
   GST Breakdown (Step 3 — below running total)
----------------------------------------- */
.funnel-gst-breakdown {
  margin-top: 0.5rem;
  border-top: 1px dashed #e2e5ea;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.funnel-gst-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
  padding: 0 0.25rem;
}
.funnel-gst-breakdown-row.funnel-gst-breakdown-total {
  font-weight: 800;
  font-size: 0.95rem;
  color: #1a1a2e;
  border-top: 1px solid #e2e5ea;
  margin-top: 0.25rem;
  padding-top: 0.4rem;
}

/* -----------------------------------------
   GST Checkbox Column (Step 3 — all invoice types)
----------------------------------------- */
.col-gst {
  width: 48px;
  text-align: center;
  white-space: nowrap;
}

.funnel-item-gst-cb {
  width: 18px;
  height: 18px;
  accent-color: #02c5c5;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
.funnel-item-gst-cb:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

/* -----------------------------------------
   GST Registered Warning (Step 3 — regular invoices)
----------------------------------------- */
.funnel-gst-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #92400e;
  line-height: 1.5;
}
.funnel-gst-warning i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #f59e0b;
  font-size: 0.9rem;
}

/* -----------------------------------------
   NDIS GST Disclaimer Note (Step 3 — NDIS only)
----------------------------------------- */
.funnel-ndis-gst-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(2, 197, 197, 0.05);
  border: 1px solid rgba(2, 197, 197, 0.2);
  border-radius: 8px;
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.5;
}
.funnel-ndis-gst-note i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #02c5c5;
  font-size: 0.9rem;
}
.funnel-ndis-gst-note strong {
  color: #1a1a2e;
}

/* -----------------------------------------
   NDIS Item Picker (Step 3 — NDIS)
----------------------------------------- */
.col-ndis-num {
  width: 160px;
  white-space: nowrap;
}

.col-ndis-name {
  min-width: 200px;
}

.funnel-ndis-item-num-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.funnel-ndis-item-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a2e;
  font-family: monospace;
  white-space: nowrap;
}

.funnel-ndis-item-name {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
}

.funnel-ndis-pick-btn {
  background: none;
  border: 1px solid #e2e5ea;
  border-radius: 6px;
  color: #02c5c5;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.funnel-ndis-pick-btn:hover {
  background: rgba(2, 197, 197, 0.08);
  border-color: #02c5c5;
}

.funnel-ndis-picker-panel {
  margin-top: 1rem;
  border: 1.5px solid #02c5c5;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.funnel-ndis-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e2e5ea;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
}

.funnel-ndis-picker-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem;
  transition: color 0.25s;
}
.funnel-ndis-picker-close:hover {
  color: #d62424;
}

.funnel-ndis-picker-search {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e5ea;
}
.funnel-ndis-picker-search input {
  width: 100%;
  border: 1.5px solid #e2e5ea;
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #1a1a2e;
  background: #f4f5f7;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.funnel-ndis-picker-search input:focus {
  border-color: #02c5c5;
  box-shadow: 0 0 0 3px rgba(2, 197, 197, 0.18);
  background: #ffffff;
}

.funnel-ndis-picker-list {
  max-height: 280px;
  overflow-y: auto;
}

.funnel-ndis-picker-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #e2e5ea;
  transition: background 0.25s;
}
.funnel-ndis-picker-item:last-child {
  border-bottom: none;
}
.funnel-ndis-picker-item:hover {
  background: rgba(2, 197, 197, 0.06);
}

.funnel-ndis-picker-item-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: #02c5c5;
  font-family: monospace;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
}

.funnel-ndis-picker-item-name {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
  flex: 1;
}

.funnel-ndis-picker-item-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #02c5c5;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.75rem;
  align-self: center;
}

/* Date availability warning row (item doesn't exist in selected pricing period) */
.funnel-ndis-date-warn-row .funnel-ndis-date-warn-cell {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: #92400e;
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
}
.funnel-ndis-date-warn-row .funnel-ndis-date-warn-cell i {
  margin-right: 0.3rem;
  color: #d97706;
}

/* Price cap warning — full-width row inserted after the offending NDIS item row */
.funnel-ndis-cap-row .funnel-ndis-cap-cell {
  padding: 0.3rem 0.75rem 0.45rem;
  background: rgba(214, 36, 36, 0.05);
  border-bottom: 1px solid rgba(214, 36, 36, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: #d62424;
  line-height: 1.4;
}
.funnel-ndis-cap-row .funnel-ndis-cap-cell i {
  margin-right: 0.35rem;
  font-size: 0.8rem;
}

.funnel-ndis-picker-loading,
.funnel-ndis-picker-empty {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}
.funnel-ndis-picker-loading i,
.funnel-ndis-picker-empty i {
  margin-right: 0.4rem;
}

/* -----------------------------------------
   Step 6 — Invoice Summary Card
   Deliberately styled as a data summary, NOT a real invoice.
   No coloured header, no "Tax Invoice" framing.
----------------------------------------- */
.funnel-invoice-preview {
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.875rem;
  color: #1a1a2e;
  background: #ffffff;
  position: relative;
  /* Diagonal "PREVIEW" watermark — appears in screenshots, signals this is not the final document */
}
.funnel-invoice-preview::after {
  content: "PREVIEW";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.055);
  transform: rotate(-35deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
@media (max-width: 480px) {
  .funnel-invoice-preview::after {
    font-size: 3rem;
  }
}
.funnel-invoice-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1rem 1.25rem 0;
  padding: 0.25rem 0.65rem;
  background: rgba(156, 163, 175, 0.1);
  border: 1px solid #e2e5ea;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}
.funnel-invoice-preview__badge i {
  font-size: 0.75rem;
}
.funnel-invoice-preview__meta {
  padding: 0.75rem 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-bottom: 1px solid #e2e5ea;
  margin-bottom: 0;
}
.funnel-invoice-preview__meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.funnel-invoice-preview__meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  min-width: 70px;
  flex-shrink: 0;
}
.funnel-invoice-preview__meta-value {
  color: #1a1a2e;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.funnel-invoice-preview__meta-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
}
.funnel-invoice-preview__items-section {
  padding: 0.75rem 1.25rem 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.funnel-invoice-preview__items-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}
.funnel-invoice-preview__items {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.funnel-invoice-preview__items thead tr {
  border-bottom: 2px solid #e2e5ea;
}
.funnel-invoice-preview__items th {
  padding: 0.4rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  white-space: nowrap;
}
.funnel-invoice-preview__items tbody tr {
  border-bottom: 1px solid #e2e5ea;
}
.funnel-invoice-preview__items tbody tr:last-child {
  border-bottom: none;
}
.funnel-invoice-preview__items tfoot tr {
  border-top: 1px solid #e2e5ea;
}
.funnel-invoice-preview__th-desc {
  text-align: left;
  width: 100%;
}
.funnel-invoice-preview__th-num {
  text-align: right;
  white-space: nowrap;
}
.funnel-invoice-preview__td-desc {
  padding: 0.5rem 0.5rem;
  color: #1a1a2e;
  line-height: 1.4;
  word-break: break-word;
}
.funnel-invoice-preview__td-num {
  padding: 0.5rem 0.5rem;
  text-align: right;
  white-space: nowrap;
  color: #6b7280;
}
.funnel-invoice-preview__td-total {
  font-weight: 600;
  color: #1a1a2e;
}
.funnel-invoice-preview__item-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #02c5c5;
  background: rgba(2, 197, 197, 0.08);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  margin-right: 0.3rem;
  white-space: nowrap;
}
.funnel-invoice-preview__gst-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #02c5c5;
  border-radius: 3px;
  padding: 0.1rem 0.3rem;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.funnel-invoice-preview__totals-label {
  padding: 0.4rem 0.5rem;
  text-align: right;
  font-size: 0.78rem;
  color: #6b7280;
}
.funnel-invoice-preview__totals-value {
  padding: 0.4rem 0.5rem;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
}
.funnel-invoice-preview__totals-grand .funnel-invoice-preview__totals-label,
.funnel-invoice-preview__totals-grand .funnel-invoice-preview__totals-value {
  font-size: 0.9rem;
  font-weight: 800;
  padding-top: 0.6rem;
}
.funnel-invoice-preview__notes {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #e2e5ea;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
}
.funnel-invoice-preview__notes strong {
  color: #1a1a2e;
}

/* -----------------------------------------
   Step 6 — Preview CTA callout
   "Your PDF is one step away" — shown below the preview card
----------------------------------------- */
.funnel-preview-cta {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  background: rgba(2, 197, 197, 0.05);
  border: 1px solid rgba(2, 197, 197, 0.2);
  border-radius: 8px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (max-width: 560px) {
  .funnel-preview-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.funnel-preview-cta__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(2, 197, 197, 0.12);
  border: 1.5px solid rgba(2, 197, 197, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-preview-cta__icon i {
  font-size: 1.1rem;
  color: #02c5c5;
}
@media (max-width: 560px) {
  .funnel-preview-cta__icon {
    display: none;
  }
}

.funnel-preview-cta__body {
  flex: 1;
}

.funnel-preview-cta__heading {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.funnel-preview-cta__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.funnel-preview-cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
}
.funnel-preview-cta__list li i {
  color: #02c5c5;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.78rem;
}

/* Area type note — prominent callout below the pills */
.funnel-area-type-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.5;
}
.funnel-area-type-note i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #f59e0b;
  font-size: 0.9rem;
}
.funnel-area-type-note strong {
  color: #78350f;
}/*# sourceMappingURL=funnel.css.map */