    /* Inter already loaded via header.php */
    @font-face {
        font-family: 'YOURFONTMEDIUM';
        src: url('/assets/fonts/MartinaPlantijn-Medium.ttf') format('truetype');
        font-weight: normal; font-style: normal; font-display: swap;
    }

    /* === TOKENS === */
    #tl-quote {
        --bg: #ffffff;
        --surface: #f8f8f8;
        --text: #1a1a1a;
        --text-mid: #555555;
        --muted: #999999;
        --border: #e0e0e0;
        --border-hover: #aaaaaa;
        --salmon: #E87030;
        --salmon-light: rgba(232,112,48,0.06);
        --error: #c00;
        --serif: 'YOURFONTMEDIUM', Georgia, serif;
        --sans: 'Inter', -apple-system, sans-serif;
    }

    /* === BASE === */
    #tl-quote {
        position: relative !important;
        width: 100% !important;
        min-height: calc(100dvh - 80px) !important;
        background: var(--bg) !important; color: var(--text) !important;
        font-family: var(--sans) !important;
        font-size: 15px !important; line-height: 1.55 !important;
        -webkit-font-smoothing: antialiased;
        display: flex !important; flex-direction: column !important;
        z-index: 10 !important;
    }
    #tl-quote *, #tl-quote *::before, #tl-quote *::after {
        box-sizing: border-box !important;
    }

    /* === PROGRESS BAR (thin top bar) === */
    #tl-quote .tq-progress-bar {
        position: fixed !important; top: 0 !important; left: 0 !important;
        width: 100% !important; height: 3px !important;
        background: transparent !important; z-index: 9999 !important;
    }
    #tl-quote .tq-progress-bar-fill {
        height: 100% !important; width: 0% !important;
        background: var(--salmon) !important;
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-radius: 0 2px 2px 0 !important;
    }

    /* === CARD WRAPPER (centered column) === */
    #tl-quote .tq-card-wrap {
        display: flex !important; flex-direction: column !important;
        width: 100% !important; flex: 1 !important;
        max-width: 640px !important;
        margin: 0 auto !important;
        padding: 0 24px !important;
        overflow: visible !important;
    }

    /* === HORIZONTAL STEP INDICATOR === */
    #tl-quote .tq-progress {
        display: flex !important; flex-direction: row !important;
        align-items: center !important; justify-content: center !important;
        gap: 0 !important; padding: 32px 0 28px !important;
        flex-shrink: 0 !important;
        background: transparent !important;
        width: auto !important; border: none !important;
        margin: 0 auto !important;
    }
    #tl-quote .tq-progress-title, #tl-quote .tq-progress-subtitle { display: none !important; }
    #tl-quote .tq-progress-steps {
        display: flex !important; flex-direction: row !important;
        align-items: center !important; gap: 0 !important;
    }
    #tl-quote .tq-progress-step {
        display: flex !important; align-items: center !important; gap: 0 !important;
        padding: 0 !important;
        font-size: 0 !important; font-weight: 400 !important;
        color: var(--muted) !important;
        transition: all 0.3s; cursor: pointer;
        white-space: nowrap !important;
        font-family: var(--sans) !important;
        position: relative !important;
    }
    #tl-quote .tq-progress-step .tq-step-num {
        width: 32px !important; height: 32px !important; border-radius: 50% !important;
        border: 1.5px solid var(--border) !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
        font-size: 12px !important; font-weight: 500 !important;
        flex-shrink: 0 !important; transition: all 0.3s;
        background: transparent !important; color: var(--muted) !important;
    }
    #tl-quote .tq-progress-step .tq-step-label {
        font-size: 11px !important; font-weight: 500 !important; color: var(--muted) !important;
        position: absolute !important; top: 38px !important; left: 50% !important;
        transform: translateX(-50%) !important; white-space: nowrap !important;
        transition: color 0.3s !important; pointer-events: none !important;
    }
    #tl-quote .tq-progress-step.tq-done { color: var(--text-mid) !important; }
    #tl-quote .tq-progress-step.tq-done .tq-step-num {
        background: var(--salmon) !important; border-color: var(--salmon) !important;
        color: #fff !important; font-size: 11px !important;
    }
    #tl-quote .tq-progress-step.tq-done .tq-step-label { color: var(--text-mid) !important; }
    #tl-quote .tq-progress-step.tq-current .tq-step-label { color: var(--text) !important; }
    #tl-quote .tq-progress-step.tq-current { color: var(--text) !important; font-weight: 500 !important; }
    #tl-quote .tq-progress-step.tq-current .tq-step-num {
        border-color: var(--salmon) !important; color: var(--salmon) !important;
        background: rgba(212,131,107,0.08) !important;
    }
    /* Connector lines between dots */
    #tl-quote .tq-progress-step:not(:last-child)::after {
        content: '' !important; position: relative !important;
        display: block !important; width: 40px !important; height: 1.5px !important;
        background: var(--border) !important;
        margin: 0 8px !important; flex-shrink: 0 !important;
    }
    #tl-quote .tq-progress-step.tq-done:not(:last-child)::after {
        background: var(--salmon) !important;
    }

    /* === MAIN CONTENT (steps + nav stacked vertically) === */
    #tl-quote .tq-main { display: flex !important; flex-direction: column !important; flex: 1 !important; min-width: 0 !important; }

    /* === STEPS === */
    #tl-quote .tq-steps { flex: 1 !important; position: relative !important; overflow: hidden !important; }
    #tl-quote .tq-step {
        position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
        overflow-y: auto !important; overflow-x: hidden !important; -webkit-overflow-scrolling: touch;
        padding: 48px 0 160px 0 !important;
        opacity: 0; pointer-events: none;
    }
    #tl-quote .tq-step.tq-active { opacity: 1; pointer-events: auto; }
    #tl-quote .tq-step-inner { max-width: 100% !important; margin: 0 auto !important; width: 100% !important; }

    /* === NAVIGATION === */
    #tl-quote .tq-nav {
        display: flex !important; justify-content: center !important; align-items: center !important;
        padding: 20px 0 !important;
        background: var(--bg) !important;
        border-top: 1px solid var(--border) !important;
        flex-shrink: 0 !important;
    }
    #tl-quote .tq-nav-inner {
        width: 100% !important; max-width: 100% !important; margin: 0 !important;
        display: flex !important; justify-content: space-between !important; align-items: center !important;
    }
    #tl-quote .tq-back {
        background: none !important; border: 1.5px solid var(--border) !important; color: var(--text-mid) !important;
        font-family: var(--sans) !important; font-size: 13px !important; font-weight: 500 !important;
        padding: 12px 28px !important; border-radius: 8px !important; cursor: pointer;
        transition: all 0.2s;
    }
    #tl-quote .tq-back:hover { border-color: var(--text) !important; color: var(--text) !important; }
    #tl-quote .tq-back.tq-hidden { opacity: 0 !important; pointer-events: none !important; }
    #tl-quote .tq-next {
        background: var(--text) !important; color: var(--bg) !important;
        font-family: var(--sans) !important; font-size: 13px !important; font-weight: 500 !important;
        padding: 12px 36px !important; border: none !important; border-radius: 8px !important;
        cursor: pointer; transition: all 0.2s; margin-left: auto !important;
        letter-spacing: 0.01em !important;
    }
    #tl-quote .tq-next:hover { background: #444 !important; }
    #tl-quote .tq-next:disabled { opacity: 0.25 !important; cursor: not-allowed !important; }

    /* === TYPOGRAPHY === */
    #tl-quote .tq-step-title {
        font-family: var(--serif) !important; font-size: clamp(32px, 4vw, 48px) !important; font-weight: 300 !important;
        color: var(--text) !important; margin-bottom: 8px !important;
        letter-spacing: -0.01em !important; line-height: 1.05 !important;
        word-wrap: break-word !important; overflow-wrap: break-word !important;
        padding: 0 !important;
    }
    #tl-quote .tq-step-subtitle {
        font-size: 15px !important; color: var(--muted) !important; margin-bottom: 56px !important;
        line-height: 1.6 !important; font-weight: 300 !important;
        font-family: var(--sans) !important; padding: 0 !important;
    }
    #tl-quote .tq-section-label {
        font-size: 10px !important; font-weight: 600 !important;
        letter-spacing: 0.1em !important; text-transform: uppercase !important;
        color: var(--salmon) !important;
        margin-bottom: 32px !important; margin-top: 56px !important;
        padding: 0 !important; font-family: var(--sans) !important;
    }

    /* === FIELDS === */
    #tl-quote .tq-field { margin-bottom: 40px !important; padding: 0 !important; }
    #tl-quote .tq-label {
        display: block !important; font-size: 12px !important; font-weight: 500 !important;
        color: var(--text-mid) !important; margin-bottom: 12px !important;
        letter-spacing: 0.02em !important; text-transform: uppercase !important;
        font-family: var(--sans) !important; padding: 0 !important;
        line-height: 1.4 !important;
    }
    #tl-quote .tq-label span {
        font-weight: 400 !important; color: var(--muted) !important;
        text-transform: none !important; letter-spacing: 0 !important; font-size: 12px !important;
    }
    #tl-quote .tq-input, #tl-quote .tq-textarea {
        width: 100% !important; background: transparent !important;
        border: none !important; border-bottom: 1.5px solid var(--border) !important;
        color: var(--text) !important; font-family: var(--sans) !important; font-size: 17px !important;
        font-weight: 300 !important; padding: 14px 0 !important; outline: none !important;
        transition: border-color 0.3s ease;
        border-radius: 0 !important; -webkit-appearance: none !important;
        line-height: 1.5 !important; margin: 0 !important;
    }
    #tl-quote .tq-input:focus, #tl-quote .tq-textarea:focus { border-bottom-color: var(--salmon) !important; }
    #tl-quote .tq-input::placeholder, #tl-quote .tq-textarea::placeholder { color: var(--muted) !important; font-weight: 300 !important; }
    #tl-quote .tq-textarea {
        resize: vertical; min-height: 100px !important;
        border: 1.5px solid var(--border) !important; border-radius: 10px !important;
        padding: 16px 18px !important; background: var(--surface) !important;
        margin-top: 4px !important;
    }
    #tl-quote .tq-textarea:focus { border-color: var(--salmon) !important; }
    #tl-quote input[type="number"].tq-input { max-width: 120px !important; }
    #tl-quote input[type="date"].tq-input { color-scheme: light; }
    #tl-quote input[type="file"].tq-input {
        border: 2px dashed var(--border) !important; border-radius: 10px !important;
        padding: 32px 18px !important; cursor: pointer; font-size: 13px !important;
        background: var(--surface) !important; text-align: center !important; margin-top: 4px !important;
    }
    #tl-quote input[type="file"].tq-input:hover { border-color: var(--salmon) !important; }
    #tl-quote .tq-error-msg { color: var(--error) !important; font-size: 13px !important; margin-top: 8px !important; display: none; padding: 0 !important; }
    #tl-quote .tq-field.tq-has-error .tq-error-msg { display: block !important; }
    #tl-quote .tq-field.tq-has-error .tq-input,
    #tl-quote .tq-field.tq-has-error .tq-textarea { border-color: var(--error) !important; }

    /* === PILLS === */
    #tl-quote .tq-pills { display: flex !important; flex-wrap: wrap !important; gap: 10px !important; margin-top: 4px !important; }
    #tl-quote .tq-pill {
        padding: 11px 24px !important; border: 1.5px solid var(--border) !important;
        border-radius: 100px !important; font-size: 13px !important; font-weight: 400 !important;
        color: var(--text-mid) !important; cursor: pointer;
        transition: all 0.2s ease; user-select: none;
        background: transparent !important;
        font-family: var(--sans) !important;
        line-height: 1.4 !important;
        display: inline-block !important;
    }
    #tl-quote .tq-pill:hover { border-color: var(--salmon) !important; color: var(--text) !important; }
    #tl-quote .tq-pill.tq-selected {
        background: var(--salmon) !important; color: #fff !important;
        border-color: var(--salmon) !important; font-weight: 500 !important;
    }

    /* === CARDS === */
    #tl-quote .tq-cards { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
    #tl-quote .tq-card {
        background: var(--surface) !important; border: none !important;
        border-radius: 14px !important; padding: 28px 22px !important; cursor: pointer;
        transition: all 0.25s ease; user-select: none;
        position: relative !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
    }
    #tl-quote .tq-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    #tl-quote .tq-card.tq-selected {
        background: var(--salmon-light) !important;
        box-shadow: 0 2px 12px rgba(212,131,107,0.12);
    }
    #tl-quote .tq-card.tq-selected::before {
        content: '' !important; position: absolute !important;
        top: 0 !important; left: 0 !important; bottom: 0 !important; width: 3px !important;
        background: var(--salmon) !important;
        border-radius: 14px 0 0 14px !important;
        padding: 0 !important; margin: 0 !important;
    }
    #tl-quote .tq-card.tq-selected::after {
        content: '✓' !important; position: absolute !important; top: 16px !important; right: 16px !important;
        width: 22px !important; height: 22px !important; border-radius: 50% !important;
        background: var(--salmon) !important; color: #fff !important;
        font-size: 11px !important; font-weight: 600 !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
        padding: 0 !important; margin: 0 !important;
    }
    #tl-quote .tq-card-icon { font-size: 20px !important; margin-bottom: 14px !important; opacity: 0.2; padding: 0 !important; }
    #tl-quote .tq-card.tq-selected .tq-card-icon { opacity: 0.5; }
    #tl-quote .tq-card-title { font-size: 14px !important; font-weight: 500 !important; color: var(--text) !important; margin-bottom: 4px !important; padding: 0 !important; font-family: var(--sans) !important; }
    #tl-quote .tq-card-desc { font-size: 12px !important; color: var(--muted) !important; line-height: 1.5 !important; padding: 0 !important; font-family: var(--sans) !important; }

    /* === TOOLTIP === */
    #tl-quote .tq-tip {
        display: inline-flex !important; align-items: center !important; justify-content: center !important;
        width: 16px !important; height: 16px !important; border-radius: 50% !important;
        font-size: 9px !important; color: var(--salmon) !important; border: 1.5px solid var(--salmon) !important;
        cursor: help; margin-left: 6px !important; vertical-align: middle !important;
        position: relative !important; font-style: normal !important; font-weight: 600 !important;
        padding: 0 !important;
    }
    #tl-quote .tq-tip-pop {
        display: none; position: absolute !important; bottom: calc(100% + 10px) !important; left: 50% !important;
        transform: translateX(-50%); width: 300px !important;
        background: var(--surface) !important; border-radius: 12px !important;
        padding: 18px 20px !important; font-size: 13px !important; color: var(--text-mid) !important;
        line-height: 1.6 !important; z-index: 200 !important; pointer-events: none;
        font-family: var(--sans) !important;
        box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
    }
    #tl-quote .tq-tip:hover .tq-tip-pop { display: block !important; }
    #tl-quote .tq-tip-pop strong { color: var(--salmon) !important; font-weight: 500 !important; }

    /* === CONDITIONAL === */
    #tl-quote .tq-conditional { display: none !important; }
    #tl-quote .tq-conditional.tq-visible { display: block !important; }

    /* === SUMMARY === */
    #tl-quote .tq-summary-section {
        margin-bottom: 16px !important; padding: 24px 28px !important;
        background: var(--surface) !important; border-radius: 14px !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }
    #tl-quote .tq-summary-header {
        display: flex !important; justify-content: space-between !important; align-items: center !important;
        margin-bottom: 16px !important; padding-bottom: 12px !important; border-bottom: 1px solid var(--border) !important;
    }
    #tl-quote .tq-summary-header span {
        font-family: var(--serif) !important; font-size: 18px !important; font-weight: 400 !important;
        color: var(--text) !important; padding: 0 !important; margin: 0 !important;
    }
    #tl-quote .tq-summary-edit {
        font-size: 12px !important; color: var(--salmon) !important; cursor: pointer;
        background: none !important; border: none !important;
        font-family: var(--sans) !important; font-weight: 500 !important;
        letter-spacing: 0.02em; transition: opacity 0.2s;
        padding: 0 !important;
    }
    #tl-quote .tq-summary-edit:hover { opacity: 0.7; }
    #tl-quote .tq-summary-row {
        display: flex !important; justify-content: space-between !important;
        padding: 8px 0 !important; font-size: 14px !important; gap: 20px !important;
    }
    #tl-quote .tq-summary-row .tq-sr-label { color: var(--muted) !important; flex-shrink: 0 !important; }
    #tl-quote .tq-summary-row .tq-sr-value { color: var(--text) !important; text-align: right !important; font-weight: 500 !important; }

    /* === THANK YOU === */
    #tl-quote .tq-thankyou {
        display: flex !important; flex-direction: column !important; align-items: center !important;
        justify-content: center !important; text-align: center !important;
        min-height: 60vh !important; padding: 48px !important;
    }
    #tl-quote .tq-thankyou h2 {
        font-family: var(--serif) !important; font-size: 52px !important; font-weight: 300 !important;
        margin-bottom: 16px !important; letter-spacing: -0.01em !important;
    }
    #tl-quote .tq-thankyou p { font-size: 16px !important; color: var(--muted) !important; margin-bottom: 40px !important; line-height: 1.6 !important; font-weight: 300 !important; }
    #tl-quote .tq-thankyou a {
        display: inline-block !important; padding: 14px 40px !important;
        background: var(--text) !important; color: var(--bg) !important;
        text-decoration: none !important; border-radius: 8px !important;
        font-size: 13px !important; font-weight: 500 !important; transition: all 0.2s;
    }
    #tl-quote .tq-thankyou a:hover { background: #444 !important; }

    /* === ERROR === */
    #tl-quote .tq-submit-error {
        display: none; background: #fef2f2 !important;
        border: 1px solid rgba(204,68,68,0.15) !important;
        border-radius: 10px !important; padding: 16px !important; margin-top: 24px !important;
        font-size: 14px !important; color: var(--error) !important; text-align: center !important;
    }

    #tl-quote .tq-pdf-btn {
        display: inline-flex !important; align-items: center !important; gap: 8px !important;
        margin-top: 24px !important; padding: 14px 28px !important;
        background: #1a1a1a !important; color: #f0ede8 !important;
        border: none !important; border-radius: 8px !important; cursor: pointer !important;
        font-family: Inter, sans-serif !important; font-size: 14px !important; font-weight: 500 !important;
        transition: background 0.2s ease !important;
    }
    #tl-quote .tq-pdf-btn:hover { background: #333 !important; }
    #tl-quote .tq-pdf-btn:disabled { opacity: 0.5 !important; cursor: wait !important; }

    /* === TYPE CATEGORY LABELS === */
    #tl-quote .tq-type-category {
        font-size: 11px !important; font-weight: 600 !important;
        letter-spacing: 0.06em !important; text-transform: uppercase !important;
        color: var(--muted) !important; margin: 20px 0 8px !important;
        padding: 0 !important; font-family: var(--sans) !important;
    }
    #tl-quote .tq-type-category:first-child { margin-top: 0 !important; }

    /* === VISUAL TYPE CARDS (chart/map pickers) === */
    #tl-quote .tq-type-grid {
        display: grid !important; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 12px !important; margin-top: 4px !important;
    }
    #tl-quote .tq-type-card {
        border: 1.5px solid var(--border) !important; border-radius: 12px !important;
        padding: 16px 14px 14px !important; cursor: pointer; transition: all 0.2s ease;
        background: var(--surface) !important; text-align: center !important;
        user-select: none; position: relative !important;
    }
    #tl-quote .tq-type-card:hover { border-color: var(--salmon) !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
    #tl-quote .tq-type-card.tq-selected {
        border-color: var(--salmon) !important; background: var(--salmon-light) !important;
    }
    #tl-quote .tq-type-card.tq-selected::after {
        content: '✓' !important; position: absolute !important; top: 8px !important; right: 8px !important;
        width: 18px !important; height: 18px !important; border-radius: 50% !important;
        background: var(--salmon) !important; color: #fff !important;
        font-size: 10px !important; display: flex !important; align-items: center !important;
        justify-content: center !important; padding: 0 !important;
    }
    #tl-quote .tq-type-card svg {
        width: 64px !important; height: 48px !important; margin: 0 auto 10px !important;
        display: block !important;
    }
    #tl-quote .tq-type-card-label {
        font-size: 11px !important; font-weight: 500 !important; color: var(--text) !important;
        font-family: var(--sans) !important; line-height: 1.3 !important;
    }
    #tl-quote .tq-type-card-desc {
        font-size: 10px !important; font-weight: 400 !important; color: var(--muted) !important;
        font-family: var(--sans) !important; line-height: 1.4 !important;
        margin-top: 4px !important; padding: 0 !important;
    }
    #tl-quote .tq-type-card-data {
        font-size: 9px !important; font-weight: 500 !important; color: var(--salmon) !important;
        font-family: var(--sans) !important; line-height: 1.3 !important;
        margin-top: 4px !important; padding: 0 !important; opacity: 0.8;
        letter-spacing: 0.02em !important;
    }

    /* === PROJECT PROMPT === */
    #tl-quote .tq-project-prompt {
        text-align: center !important; padding: 40px 20px !important;
        max-width: 360px !important; margin: 0 auto !important;
    }
    #tl-quote .tq-project-prompt-icon { margin-bottom: 20px !important; }
    #tl-quote .tq-project-prompt-title {
        font-family: var(--serif) !important; font-size: 20px !important;
        font-weight: 400 !important; color: var(--text) !important;
        margin-bottom: 8px !important;
    }
    #tl-quote .tq-project-prompt-desc {
        font-size: 13px !important; color: var(--muted) !important;
        line-height: 1.5 !important; margin-bottom: 24px !important;
    }
    #tl-quote .tq-project-prompt-form .tq-input {
        text-align: center !important; font-size: 16px !important;
    }
    #tl-quote .tq-detail-active .tq-project-prompt { display: none !important; }

    /* === DELIVERABLES BUILDER === */
    #tl-quote .tq-del-empty {
        text-align: center !important; padding: 32px 24px !important;
        border: 1.5px dashed var(--border) !important; border-radius: 12px !important;
        color: var(--muted) !important; font-size: 13px !important;
        margin-bottom: 16px !important; line-height: 1.6 !important;
    }
    #tl-quote .tq-del-list { display: flex !important; flex-direction: column !important; gap: 10px !important; margin-bottom: 20px !important; }
    #tl-quote .tq-detail-active .tq-del-list,
    #tl-quote .tq-detail-active .tq-del-add-btn,
    #tl-quote .tq-detail-active .tq-del-note,
    #tl-quote .tq-detail-active .tq-del-empty,
    #tl-quote .tq-detail-active #tqDelError,
    #tl-quote .tq-detail-active .tq-del-panel-overlay { display: none !important; }
    #tl-quote .tq-del-item {
        display: flex !important; align-items: center !important; gap: 14px !important;
        padding: 14px 18px !important; background: var(--surface) !important;
        border: 1.5px solid var(--border) !important; border-radius: 12px !important;
        transition: all 0.2s;
    }
    #tl-quote .tq-del-item:hover { border-color: var(--border-hover) !important; }
    #tl-quote .tq-del-item-icon { flex-shrink: 0 !important; width: 40px !important; height: 30px !important; opacity: 0.7; }
    #tl-quote .tq-del-item-icon svg { width: 100% !important; height: 100% !important; }
    #tl-quote .tq-del-item-info { flex: 1 !important; min-width: 0 !important; }
    #tl-quote .tq-del-item-type {
        font-size: 13px !important; font-weight: 500 !important; color: var(--text) !important;
        font-family: var(--sans) !important;
    }
    #tl-quote .tq-del-item-specs {
        font-size: 11px !important; color: var(--muted) !important; margin-top: 2px !important;
        font-family: var(--sans) !important; white-space: nowrap !important;
        overflow: hidden !important; text-overflow: ellipsis !important;
    }
    #tl-quote .tq-del-item-cat {
        font-size: 9px !important; font-weight: 600 !important; text-transform: uppercase !important;
        letter-spacing: 0.06em !important; color: var(--salmon) !important;
        background: var(--salmon-light) !important; padding: 3px 8px !important;
        border-radius: 4px !important; flex-shrink: 0 !important;
    }
    #tl-quote .tq-del-item-actions { display: flex !important; gap: 4px !important; flex-shrink: 0 !important; }
    #tl-quote .tq-del-item-actions button {
        background: none !important; border: none !important; cursor: pointer;
        width: 28px !important; height: 28px !important; border-radius: 6px !important;
        font-size: 13px !important; color: var(--muted) !important; transition: all 0.15s;
        display: flex !important; align-items: center !important; justify-content: center !important;
        padding: 0 !important;
    }
    #tl-quote .tq-del-item-actions button:hover { background: rgba(0,0,0,0.04) !important; color: var(--text) !important; }
    #tl-quote .tq-del-item-actions button.tq-del-remove:hover { color: var(--error) !important; }

    #tl-quote .tq-del-add-btn.tq-hidden { display: none !important; }
    #tl-quote .tq-del-add-btn {
        display: flex !important; align-items: center !important; justify-content: center !important;
        gap: 8px !important; width: 100% !important; padding: 16px !important;
        border: 2px dashed var(--border) !important; border-radius: 12px !important;
        background: none !important; color: var(--text-mid) !important;
        font-family: var(--sans) !important; font-size: 13px !important; font-weight: 500 !important;
        cursor: pointer; transition: all 0.2s; margin-bottom: 16px !important;
    }
    #tl-quote .tq-del-add-btn:hover { border-color: var(--salmon) !important; color: var(--salmon) !important; }
    #tl-quote .tq-del-add-btn span { font-size: 18px !important; font-weight: 300 !important; }

    /* === DELIVERABLE PANEL — fixed overlay modal === */
    #tl-quote .tq-del-panel-overlay {
        position: fixed !important; inset: 0 !important; z-index: 9999 !important;
        background: rgba(0,0,0,0.35) !important; backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
        opacity: 0 !important; pointer-events: none !important;
        transition: opacity 0.25s ease !important;
    }
    #tl-quote .tq-del-panel-overlay.tq-panel-open {
        opacity: 1 !important; pointer-events: auto !important;
    }
    #tl-quote .tq-detail-active .tq-del-panel-overlay.tq-panel-open {
        opacity: 0 !important; pointer-events: none !important;
    }
    #tl-quote .tq-del-panel {
        background: #ffffff !important; border: 1.5px solid var(--border) !important;
        border-radius: 16px !important; padding: 0 !important;
        display: flex !important; flex-direction: column !important;
        width: min(640px, calc(100vw - 32px)) !important;
        max-height: calc(100vh - 48px) !important; overflow: hidden !important;
        box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08) !important;
        transform: translateY(16px) scale(0.97) !important; opacity: 0 !important;
        transition: transform 0.25s ease, opacity 0.25s ease !important;
    }
    #tl-quote .tq-del-panel-overlay.tq-panel-open .tq-del-panel {
        transform: translateY(0) scale(1) !important; opacity: 1 !important;
    }
    #tl-quote .tq-del-panel-body {
        flex: 1 !important; overflow-y: auto !important; padding: 24px 28px 16px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    #tl-quote .tq-del-panel-header {
        display: flex !important; justify-content: space-between !important; align-items: center !important;
        padding: 24px 28px 0 !important; flex-shrink: 0 !important;
    }
    #tl-quote .tq-del-panel-header span {
        font-family: var(--serif) !important; font-size: 20px !important; font-weight: 400 !important;
        color: var(--text) !important;
    }
    #tl-quote .tq-del-panel-close {
        background: none !important; border: none !important; cursor: pointer;
        width: 32px !important; height: 32px !important; border-radius: 8px !important;
        font-size: 16px !important; color: var(--muted) !important; transition: all 0.15s;
        display: flex !important; align-items: center !important; justify-content: center !important;
        padding: 0 !important;
    }
    #tl-quote .tq-del-panel-close:hover { background: rgba(0,0,0,0.06) !important; color: var(--text) !important; }
    #tl-quote .tq-del-panel .tq-field { margin-bottom: 24px !important; }
    #tl-quote .tq-del-panel .tq-type-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important; }

    /* === CATEGORY CARDS GRID === */
    #tl-quote .tq-del-cat-grid {
        display: flex !important; flex-wrap: wrap !important; gap: 8px !important;
    }
    #tl-quote .tq-del-cat-card {
        border: 1.5px solid var(--border) !important; border-radius: 10px !important;
        padding: 12px 16px !important; cursor: pointer !important; transition: all 0.2s !important;
        background: var(--surface) !important; user-select: none !important;
        display: flex !important; align-items: center !important; gap: 10px !important;
        flex: 0 0 auto !important;
    }
    #tl-quote .tq-del-cat-card:hover { border-color: var(--salmon) !important; }
    #tl-quote .tq-del-cat-card.tq-selected {
        border-color: var(--salmon) !important; background: var(--salmon-light) !important;
    }
    #tl-quote .tq-del-cat-card svg { width: 24px !important; height: 18px !important; flex-shrink: 0 !important; display: block !important; }
    #tl-quote .tq-del-cat-card-label {
        font-size: 12px !important; font-weight: 500 !important; color: var(--text) !important;
        font-family: var(--sans) !important; white-space: nowrap !important;
    }
    #tl-quote .tq-del-cat-card-desc { display: none !important; }

    /* === DRAG & DROP === */
    #tl-quote .tq-del-drag {
        cursor: grab !important; width: 16px !important; flex-shrink: 0 !important;
        color: var(--border) !important; font-size: 14px !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
        opacity: 0.4 !important; transition: opacity 0.2s !important;
    }
    #tl-quote .tq-del-item:hover .tq-del-drag { opacity: 0.8 !important; }
    #tl-quote .tq-del-item.tq-dragging { opacity: 0.4 !important; }
    #tl-quote .tq-del-item.tq-drag-over { border-top: 2px solid var(--salmon) !important; }

    /* === REVISION NOTE === */
    #tl-quote .tq-del-note {
        font-size: 11px !important; color: var(--muted) !important; text-align: center !important;
        margin: 8px 0 16px !important; font-style: italic !important;
    }
    #tl-quote .tq-del-confirm {
        display: none !important; gap: 10px !important;
        padding: 16px 28px !important; border-top: 1px solid var(--border) !important;
        background: #f8f8f8 !important; flex-shrink: 0 !important;
        border-radius: 0 0 16px 16px !important;
    }
    #tl-quote .tq-del-confirm.tq-visible {
        display: flex !important;
    }
    #tl-quote .tq-del-confirm .tq-next { flex: 1 !important; }
    #tl-quote .tq-del-specs-row {
        display: flex !important; gap: 16px !important; flex-wrap: wrap !important;
    }
    #tl-quote .tq-del-specs-row .tq-field { flex: 1 !important; min-width: 120px !important; }

    /* === EDIT PANEL === */
    #tl-quote .tq-del-edit {
        background: none !important; border: none !important;
        color: var(--salmon) !important; font-size: 11px !important;
        font-family: var(--sans) !important; cursor: pointer !important;
        padding: 2px 6px !important; text-transform: uppercase !important;
        letter-spacing: 0.05em !important; font-weight: 500 !important;
        opacity: 0 !important; transition: opacity 0.2s !important;
    }
    #tl-quote .tq-del-item:hover .tq-del-edit { opacity: 1 !important; }
    /* === NEW PROJECT TOP BUTTON === */
    #tl-quote .tq-new-project-top {
        display: flex !important; align-items: center !important; justify-content: center !important;
        gap: 10px !important; width: 100% !important; padding: 14px 20px !important;
        background: none !important; border: none !important; border-bottom: 1px solid var(--border) !important;
        color: var(--salmon) !important; font-family: var(--sans) !important;
        font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.03em !important;
        cursor: pointer; transition: all 0.2s !important; margin-bottom: 20px !important;
        border-radius: 0 !important;
    }
    #tl-quote .tq-new-project-top:hover { color: var(--text) !important; border-color: var(--salmon) !important; }
    #tl-quote .tq-new-project-plus {
        display: flex !important; align-items: center !important; justify-content: center !important;
        width: 28px !important; height: 28px !important; border-radius: 50% !important;
        background: var(--salmon) !important; color: #fff !important;
        font-size: 20px !important; font-weight: 300 !important; line-height: 1 !important;
    }
    #tl-quote .tq-detail-active .tq-new-project-top { display: none !important; }
    /* === DETAIL WIZARD === */
    #tl-quote .tq-del-detail-progress {
        font-size: 11px !important; font-weight: 600 !important;
        text-transform: uppercase !important; letter-spacing: 0.1em !important;
        color: var(--salmon) !important; margin-bottom: 8px !important;
    }
    #tl-quote .tq-del-detail-bar {
        width: 100% !important; height: 4px !important; background: var(--border) !important;
        border-radius: 4px !important; overflow: hidden !important; margin-bottom: 20px !important;
    }
    #tl-quote .tq-del-detail-bar-fill {
        height: 100% !important; background: var(--salmon) !important;
        border-radius: 4px !important; transition: width 0.4s ease !important;
    }
    #tl-quote .tq-del-detail-title {
        display: flex !important; align-items: center !important; gap: 16px !important;
        margin-bottom: 32px !important; padding-bottom: 24px !important;
        border-bottom: 1px solid var(--border) !important;
    }
    #tl-quote .tq-del-detail-icon {
        width: 56px !important; height: 56px !important; flex-shrink: 0 !important;
        background: var(--salmon-light) !important; border-radius: 12px !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
    }
    #tl-quote .tq-del-detail-icon svg { width: 36px !important; height: 28px !important; }
    #tl-quote .tq-del-detail-name {
        font-family: var(--serif) !important; font-size: 22px !important;
        font-weight: 400 !important; color: var(--text) !important;
        line-height: 1.2 !important;
    }
    #tl-quote .tq-del-detail-cat {
        font-size: 12px !important; color: var(--salmon) !important;
        text-transform: uppercase !important; letter-spacing: 0.05em !important;
        font-weight: 500 !important; margin-top: 4px !important;
    }
    #tl-quote .tq-del-detail-fields .tq-field { margin-bottom: 24px !important; }

    /* === GROUPS === */
    #tl-quote .tq-del-group { margin-bottom: 20px !important; }
    #tl-quote .tq-del-group-header {
        display: flex !important; align-items: center !important; gap: 10px !important;
        padding: 10px 0 8px !important; margin-bottom: 8px !important;
        border-bottom: 1.5px solid var(--border) !important;
    }
    #tl-quote .tq-del-group-name {
        font-family: var(--serif) !important; font-size: 16px !important;
        font-weight: 400 !important; color: var(--text) !important;
        outline: none !important; cursor: text !important;
        padding: 2px 4px !important; border-radius: 4px !important;
        transition: background 0.2s !important; min-width: 40px !important;
    }
    #tl-quote .tq-del-group-name:hover { background: rgba(0,0,0,0.03) !important; }
    #tl-quote .tq-del-group-name:focus { background: rgba(212,131,107,0.08) !important; }
    #tl-quote .tq-del-group-count {
        font-size: 11px !important; color: var(--muted) !important;
        font-weight: 400 !important; flex: 1 !important;
    }
    #tl-quote .tq-del-group-remove {
        background: none !important; border: none !important;
        color: var(--muted) !important; font-size: 16px !important;
        cursor: pointer !important; padding: 2px 6px !important;
        opacity: 0 !important; transition: opacity 0.2s !important;
        line-height: 1 !important;
    }
    #tl-quote .tq-del-group-header:hover .tq-del-group-remove { opacity: 0.6 !important; }
    #tl-quote .tq-del-group-remove:hover { opacity: 1 !important; color: var(--error) !important; }
    #tl-quote .tq-del-group-items { display: flex !important; flex-direction: column !important; gap: 8px !important; }
    #tl-quote .tq-del-drop-zone {
        min-height: 4px !important; border-radius: 4px !important;
        transition: all 0.2s !important;
    }
    #tl-quote .tq-del-drop-zone.tq-drag-over {
        min-height: 40px !important; background: rgba(212,131,107,0.06) !important;
        border: 1.5px dashed var(--salmon) !important;
    }
    #tl-quote .tq-del-group-btn {
        background: none !important; border: 1.5px dashed var(--border) !important;
        border-radius: 10px !important; padding: 10px 20px !important;
        color: var(--muted) !important; font-size: 13px !important;
        font-family: var(--sans) !important; cursor: pointer !important;
        transition: all 0.2s !important; width: 100% !important;
        margin-top: 8px !important;
    }
    #tl-quote .tq-del-group-btn:hover {
        border-color: var(--salmon) !important; color: var(--salmon) !important;
    }
    #tl-quote .tq-del-new-group-input {
        display: flex !important; gap: 8px !important; align-items: center !important;
        margin-bottom: 12px !important;
    }
    #tl-quote .tq-del-new-group-input .tq-input { flex: 1 !important; }
    #tl-quote .tq-detail-active .tq-del-actions { display: none !important; }

    /* === ACTION BUTTONS ROW === */
    #tl-quote .tq-del-actions {
        display: flex !important; gap: 10px !important; margin-bottom: 12px !important;
    }
    #tl-quote .tq-del-actions .tq-del-add-btn {
        flex: 1 !important; margin-bottom: 0 !important; margin-top: 0 !important;
    }
    /* === PER-PROJECT TIMELINE === */
    #tl-quote .tq-timeline-project {
        border: 1px solid var(--border) !important; border-radius: 12px !important;
        padding: 20px 24px !important; margin-bottom: 12px !important;
        background: var(--surface) !important;
    }
    #tl-quote .tq-timeline-project-name {
        font-family: var(--serif) !important; font-size: 16px !important;
        font-weight: 400 !important; color: var(--text) !important;
        margin-bottom: 4px !important;
    }
    #tl-quote .tq-timeline-project-count {
        font-size: 11px !important; color: var(--muted) !important;
        margin-bottom: 12px !important;
    }
    #tl-quote .tq-timeline-project .tq-input {
        margin-top: 0 !important;
    }

    /* === DETAIL STATUS INDICATORS === */
    #tl-quote .tq-del-edit-needed {
        opacity: 1 !important; color: var(--salmon) !important;
        font-weight: 600 !important; font-size: 12px !important;
        background: rgba(212,131,107,0.08) !important;
        padding: 4px 10px !important; border-radius: 6px !important;
        border: 1px solid rgba(212,131,107,0.2) !important;
        text-transform: none !important; letter-spacing: 0 !important;
    }
    #tl-quote .tq-del-edit-done {
        opacity: 0.4 !important;
    }
    #tl-quote .tq-del-item:hover .tq-del-edit-done { opacity: 1 !important; }
    #tl-quote .tq-del-detail-group {
        font-size: 11px !important; color: var(--muted) !important;
        margin-bottom: 4px !important;
    }

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
        #tl-quote .tq-card-wrap { padding: 0 16px !important; }
        #tl-quote .tq-progress { padding: 20px 0 4px !important; }
        #tl-quote .tq-progress-step .tq-step-num { width: 28px !important; height: 28px !important; font-size: 11px !important; }
        #tl-quote .tq-progress-step .tq-step-label { font-size: 9px !important; top: 34px !important; }
        #tl-quote .tq-progress-step:not(:last-child)::after { width: 24px !important; margin: 0 4px !important; }
        #tl-quote .tq-step { padding: 32px 0 140px !important; }
        #tl-quote .tq-step-title { font-size: 32px !important; }
        #tl-quote .tq-nav { padding: 16px 0 !important; }
        #tl-quote .tq-cards { grid-template-columns: 1fr !important; }
        #tl-quote .tq-pill { padding: 12px 20px !important; min-height: 48px !important; display: flex !important; align-items: center !important; }
        #tl-quote .tq-card { padding: 22px 18px !important; }
        #tl-quote .tq-tip-pop { left: 0 !important; transform: none !important; width: 260px !important; }
        #tl-quote .tq-type-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important; gap: 8px !important; }
        #tl-quote .tq-type-card { padding: 12px 10px 10px !important; }
        #tl-quote .tq-type-card svg { width: 48px !important; height: 36px !important; margin-bottom: 6px !important; }
        /* Modal goes full-screen on mobile */
        #tl-quote .tq-del-panel {
            width: 100vw !important; height: 100vh !important; max-height: 100vh !important;
            border-radius: 0 !important; border: none !important;
        }
        #tl-quote .tq-del-panel-overlay {
            align-items: stretch !important; justify-content: stretch !important;
        }
        #tl-quote .tq-del-confirm { border-radius: 0 !important; padding: 14px 20px !important; }
        #tl-quote .tq-del-panel-body { padding: 20px 20px 16px !important; }
        #tl-quote .tq-del-panel-header { padding: 20px 20px 0 !important; }
    }

    /* === WHITE PAGE OVERRIDE === */
    .quote-page {
        background: #ffffff !important;
        color: #1a1a1a !important;
    }

    .quote-page .tl-nav {
        border-bottom: 1px solid #eee;
    }

    .quote-page .tl-nav-brand,
    .quote-page .tl-nav-links a {
        color: #1a1a1a;
    }

    .quote-page .tl-nav-links a {
        color: rgba(0, 0, 0, 0.4);
    }

    .quote-page .tl-nav-links a:hover {
        color: #1a1a1a;
        background: rgba(0, 0, 0, 0.04);
    }

    .quote-page .tl-nav-links a.tl-nav-client {
        border-color: rgba(0, 0, 0, 0.12);
    }

    .quote-page .tl-footer {
        border-top-color: #eee;
        color: rgba(0, 0, 0, 0.3);
    }

    .quote-page .tl-footer-links a {
        color: rgba(0, 0, 0, 0.3);
    }

/* ─── PREFILL BANNER ─── */
.tq-prefill-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--surface, #f8f8f8);
    border: 1px solid var(--border, #e0e0e0);
    border-radius: 10px;
    margin-bottom: 24px;
}
.tq-prefill-info {
    font-size: 14px;
    color: var(--text, #1a1a1a);
}
.tq-prefill-name { font-weight: 600; }
.tq-prefill-org { color: var(--text-mid, #555); }
.tq-prefill-edit {
    font-size: 11px;
    color: var(--text-mid, #555);
    background: none;
    border: 1px solid var(--border, #e0e0e0);
    border-radius: 6px;
    padding: 5px 14px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.tq-prefill-edit:hover { border-color: var(--text, #1a1a1a); color: var(--text, #1a1a1a); }

/* ─── BILLING SECTION ─── */
.tq-section-divider {
    position: relative;
    text-align: center;
    margin: 32px 0 20px;
}
.tq-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border, #e0e0e0);
}
.tq-section-divider span {
    position: relative;
    background: var(--bg, #ffffff);
    padding: 0 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted, #999);
    font-weight: 600;
}
.tq-field-row {
    display: flex;
    gap: 12px;
}
.tq-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.tq-checkbox-field {
    margin-top: 4px;
}
.tq-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-mid, #555);
    cursor: pointer;
    line-height: 1.5;
}
.tq-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--salmon, #D4836B);
}

/* ─── STEP 6: BOOKING INTEGRATION ─── */
.tq-step6-divider {
    position: relative;
    text-align: center;
    margin: 40px 0 32px;
}
.tq-step6-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border, #e0e0e0);
}
.tq-step6-divider span {
    position: relative;
    background: var(--bg, #ffffff);
    padding: 0 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted, #999);
    font-weight: 500;
}

.tq-step6 {
    margin-top: 0;
    padding: 0;
}
.tq-step6-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text, #1a1a1a);
    margin-bottom: 8px;
    font-family: var(--serif, 'Inter', sans-serif);
}
.tq-step6-desc {
    font-size: 13px;
    color: var(--text-mid, #555);
    margin-bottom: 20px;
    line-height: 1.6;
}
#tqAvailabilityEmbed {
    margin-bottom: 16px;
}
.tq-step6-skip {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border, #e0e0e0);
    border-radius: 6px;
    color: var(--muted, #999);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--sans, 'Inter', sans-serif);
}
.tq-step6-skip:hover {
    border-color: var(--border-hover, #aaa);
    color: var(--text-mid, #555);
}
