/* Website Request Modal Wizard Styles - Compact, Frictionless & No-Scroll Edition */
.dtw-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    padding: 16px; box-sizing: border-box;
}
.dtw-backdrop {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.dtw-box {
    position: relative; z-index: 2; width: 100%; max-width: 740px;
    max-height: 95vh; overflow-y: auto;
    background: #ffffff; border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(0,0,0,0.3);
    padding: 24px 30px; box-sizing: border-box;
    animation: dtwScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes dtwScaleIn {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.dtw-close-btn {
    position: absolute; top: 16px; right: 18px; width: 32px; height: 32px;
    border-radius: 50%; border: none; background: #f1f5f9;
    color: #334155; font-size: 20px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.dtw-close-btn:hover { background: #e2e8f0; color: #0f172a; transform: scale(1.05); }

/* Lisa AI Banner - Compact & Single-Line */
.dtw-lisa-banner {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid #86efac; border-radius: 12px;
    padding: 8px 14px; margin-bottom: 14px;
}
.dtw-lisa-avatar {
    position: relative; width: 32px; height: 32px; border-radius: 50%;
    background: #10b981; color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}
.dtw-lisa-avatar svg { width: 16px; height: 16px; }
.dtw-lisa-pulse {
    position: absolute; top: -1px; right: -1px; width: 9px; height: 9px;
    border-radius: 50%; background: #22c55e; border: 2px solid #fff;
    animation: dtwPulse 1.8s infinite;
}
@keyframes dtwPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.dtw-lisa-text { font-size: 12.5px; line-height: 1.35; color: #065f46; }
.dtw-lisa-text strong { display: inline-block; font-size: 12.5px; color: #047857; font-weight: 800; margin-right: 4px; }
.dtw-lisa-text p { margin: 0; display: inline; }
.dtw-lisa-tel {
    display: inline-block; font-weight: 800; font-size: 13px; color: #047857;
    text-decoration: underline; text-underline-offset: 2px; margin-left: 3px;
}

/* Progress Bar */
.dtw-progress-wrap {
    width: 100%; height: 6px; background: #f1f5f9; border-radius: 99px;
    overflow: hidden; margin-bottom: 5px;
}
.dtw-progress-bar {
    height: 100%; background: #1d4ed8; border-radius: 99px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dtw-step-indicator {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.05em; color: #64748b; margin-bottom: 14px;
}

/* Step Typography */
.dtw-step h2 {
    font-size: 17px; font-weight: 800; color: #0f172a; margin: 0 0 4px; letter-spacing: -0.02em;
}
.dtw-sub {
    font-size: 13px; color: #64748b; margin: 0 0 14px; line-height: 1.4; font-weight: 450;
}

/* Card Selectors - Compact & Clean */
.dtw-type-selector {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px;
}
.dtw-type-card {
    position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 10px 12px; border: 1.5px solid #e2e8f0; border-radius: 12px;
    background: #fff; cursor: pointer; transition: all 0.18s ease;
}
.dtw-type-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.dtw-type-card.active {
    border-color: #1d4ed8; background: #eff6ff;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.12);
}
.dtw-type-icon { font-size: 20px; margin-bottom: 3px; }
.dtw-type-card strong { font-size: 13.5px; color: #0f172a; margin-bottom: 2px; font-weight: 700; }
.dtw-type-card small { font-size: 11px; color: #64748b; line-height: 1.25; }

/* Form Fields - Compact Spacing */
.dtw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dtw-field { margin-bottom: 10px; text-align: left; }
.dtw-field label {
    display: block; font-size: 12.5px; font-weight: 700; color: #1e293b; margin-bottom: 4px;
}
.dtw-field input[type="text"],
.dtw-field input[type="email"],
.dtw-field input[type="tel"],
.dtw-field select,
.dtw-field textarea {
    width: 100%; padding: 8px 11px; border: 1.5px solid #cbd5e1; border-radius: 9px;
    font-size: 13.5px; color: #0f172a; background: #fff; box-sizing: border-box;
    font-family: inherit; font-weight: 500;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.dtw-field textarea { min-height: 60px; resize: vertical; }
.dtw-field input:focus,
.dtw-field select:focus,
.dtw-field textarea:focus {
    outline: none; border-color: #1d4ed8; box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.dtw-field input[type="file"] {
    display: block; width: 100%; padding: 7px 10px; border: 1.5px dashed #94a3b8;
    border-radius: 9px; background: #f8fafc; font-size: 12.5px; cursor: pointer;
}

/* Domain Input Group */
.dtw-domain-input-group { display: flex; gap: 8px; }
.dtw-domain-input-group input { flex: 1; font-size: 13.5px; font-weight: 600; }
.dtw-domain-input-group button { white-space: nowrap; padding: 0 14px; font-size: 12.5px; font-weight: 700; border-radius: 9px; }
.dtw-domain-status-box {
    margin-top: 6px; font-size: 12.5px; font-weight: 600; border-radius: 8px;
    padding: 6px 10px; display: none; line-height: 1.35;
}
.dtw-domain-status-box.avail { display: block; background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.dtw-domain-status-box.taken { display: block; background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* Email tags */
.dtw-email-sug-box {
    margin-top: 8px; padding: 8px 12px; border-radius: 9px; background: #f8fafc; border: 1px solid #e2e8f0;
}
.dtw-sug-title { display: block; font-size: 12px; font-weight: 700; color: #334155; margin-bottom: 5px; }
.dtw-email-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.dtw-tag {
    padding: 2px 8px; border-radius: 5px; background: #fff; border: 1px solid #cbd5e1;
    font-size: 11.5px; font-family: monospace; color: #0f172a; font-weight: 700;
}

/* Summary Box */
.dtw-summary-box {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px;
    padding: 12px; margin-bottom: 12px; font-size: 13px;
}
.dtw-sum-row {
    display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed #cbd5e1;
}
.dtw-sum-row:last-child { border-bottom: none; }
.dtw-sum-row dt { color: #64748b; font-weight: 500; }
.dtw-sum-row dd { color: #0f172a; font-weight: 700; margin: 0; text-align: right; }

/* Price Card */
.dtw-price-card {
    background: #eff6ff; border: 1.5px solid #93c5fd; border-radius: 10px;
    padding: 12px; margin-bottom: 12px;
}
.dtw-price-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px;
}
.dtw-price-header span { font-size: 13.5px; font-weight: 750; color: #1e3a8a; }
.dtw-price-val { font-size: 17px; font-weight: 900; color: #1d4ed8; }
.dtw-price-note { font-size: 11px; color: #64748b; text-align: right; margin-bottom: 4px; font-weight: 600; }
.dtw-price-disclaimer {
    font-size: 11.5px; color: #1e40af; line-height: 1.4; background: #dbeafe;
    padding: 6px 9px; border-radius: 7px; margin-top: 5px; font-weight: 500;
}

/* Consent */
.dtw-consent-wrap { margin-bottom: 14px; }
.dtw-checkbox-lbl {
    display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: #1e293b;
    line-height: 1.4; cursor: pointer; font-weight: 500;
}
.dtw-checkbox-lbl input { width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; }

/* Success */
.dtw-success-icon {
    width: 50px; height: 50px; border-radius: 50%; background: #dcfce7; color: #16a34a;
    font-size: 24px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}
.dtw-track-card {
    background: #f1f5f9; border: 1.5px dashed #94a3b8; border-radius: 10px;
    padding: 12px; margin-top: 12px;
}
.dtw-track-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .08em; color: #64748b; margin-bottom: 3px; }
.dtw-track-num { font-size: 19px; font-weight: 900; color: #0f172a; letter-spacing: .05em; }

/* Navigation Buttons */
.dtw-nav-buttons {
    display: flex; justify-content: space-between; gap: 8px; margin-top: 14px;
    padding-top: 12px; border-top: 1px solid #e2e8f0;
}
.dtw-nav-buttons button { padding: 9px 22px; font-size: 13.5px; font-weight: 700; border-radius: 9px; }
.dtw-error-box {
    margin-top: 10px; padding: 8px 12px; border-radius: 8px;
    background: #fee2e2; border: 1px solid #fca5a5; color: #b91c1c; font-size: 12.5px; font-weight: 700;
}

@media(max-width: 680px) {
    .dtw-box { padding: 16px 12px; max-height: 96vh; }
    .dtw-grid-2 { grid-template-columns: 1fr; gap: 8px; }
    .dtw-type-selector { grid-template-columns: 1fr; gap: 8px; }
    .dtw-domain-input-group { flex-direction: column; gap: 6px; }
    .dtw-domain-input-group button { width: 100%; padding: 8px; }
}
