/* =========================================
   BASE / GLOBAL
========================================= */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f4f6f8;
    color: #1f1f1f;
}

[hidden] {
    display: none !important;
}

/* =========================================
   LAYOUT
========================================= */
.center {
    max-width: 500px;
    margin: 80px auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 24px;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

label {
    font-weight: 500;
    display: block;
}

p {
    color: #555;
}

/* =========================================
   LINKS
========================================= */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #7b5cff;
}

/* =========================================
   BUTTONS
========================================= */
button, .button {
    background: #7b5cff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

button:hover, .button:hover {
    background: #5a3ee5;
}

button:disabled, .button:disabled {
    background: #b9c3cf;
    color: #f8fafc;
    cursor: not-allowed;
}

button:disabled:hover, .button:disabled:hover {
    background: #b9c3cf;
}

/* =========================================
   FORMS
========================================= */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #7b5cff;
}

.form-group {
    margin-bottom: 16px;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================================
   BRAND
========================================= */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    height: 20px;
}

.brand-primary {
    font-size: 14px;
    font-weight: 600;
}

.brand-separator {
    margin: 0 6px;
    color: #888;
}

.brand-secondary {
    font-size: 14px;
    color: #555;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    border: 1px solid #d6c9ff;
    border-radius: 999px;
    background: #f5f1ff;
    color: #5a3ee5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

/* =========================================
   NAV LINKS
========================================= */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-right: 16px;
    font-size: 14px;
}

.nav-links a:last-child {
    margin-right: 0;
}

.nav-links a:hover {
    color: #7b5cff;
}

.nav-referrals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 20px;
    border: none;
    background: #7b5cff;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.nav-referrals-btn:hover {
    background: #5a3ee5;
}

/* =========================================
   PROFILE BUTTON
========================================= */
.nav-profile {
    position: relative;
}

.profile-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 32px;
    padding: 0 14px;

    background: linear-gradient(135deg, #7b5cff, #5a3ee5);
    color: white;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    border-radius: 20px;

    cursor: pointer;

    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.profile-circle:hover {
    background: linear-gradient(135deg, #6a4eea, #4c33d4);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.profile-circle.circle {
    width: 32px;
    padding: 0;
    border-radius: 50%;
}

/* =========================================
   DROPDOWN
========================================= */
.profile-dropdown {
    position: absolute;
    top: 45px;
    right: 0;

    background: white;
    border-radius: 8px;
    width: 180px;

    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border: 1px solid #eee;

    display: none;
    flex-direction: column;

    overflow: hidden;
    z-index: 1001;
}

.profile-dropdown.show {
    display: flex;
}

.profile-dropdown a {
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
}

.profile-dropdown a:hover {
    background: #f5f5f5;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
}

/* =========================================
   HAMBURGER
========================================= */
.nav-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================
   TOOLTIP
========================================= */
.tooltip {
    position: relative;
    cursor: pointer;
    color: #7b5cff;
    font-weight: bold;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 260px;
    background: #333;
    color: white;

    padding: 6px;
    border-radius: 6px;

    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);

    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* =========================================
   WIZARD / ONBOARDING
========================================= */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
    color: #7b5cff;
    margin-bottom: 8px;
}

.wizard-shell {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 28px;
}

.wizard-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.wizard-header h1 {
    margin-top: 0;
}

.wizard-intro {
    max-width: 720px;
    color: #55606e;
    margin: 0;
}

.wizard-progress-card {
    min-width: 220px;
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    padding: 14px 16px;
}

.wizard-progress-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #667085;
    margin-bottom: 8px;
}

.wizard-progress-bar {
    width: 100%;
    height: 8px;
    background: #e6ecf5;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.wizard-progress-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #7b5cff, #b49cff);
    transition: width 0.2s ease;
}

.wizard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.wizard-sidebar {
    background: #faf7ff;
    border: 1px solid #eadfff;
    border-radius: 14px;
    padding: 16px;
}

.wizard-step-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wizard-step-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
    background: transparent;
}

.wizard-step-item.active {
    background: #f1ebff;
}

.wizard-step-item.completed {
    color: #0e7d45;
}

.wizard-step-badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    background: #9daab7;
    flex-shrink: 0;
}

.wizard-step-item.active .wizard-step-badge,
.wizard-step-item.completed .wizard-step-badge {
    background: #7b5cff;
}

.wizard-step-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.wizard-step-subtitle {
    font-size: 13px;
    color: #667085;
}

.wizard-card {
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    padding: 24px;
    background: #ffffff;
}

.wizard-card-header h2 {
    margin-top: 0;
    margin-bottom: 6px;
}

.wizard-card-header p {
    margin-top: 0;
    color: #55606e;
}

.wizard-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.wizard-form-grid-single {
    grid-template-columns: 1fr;
}

.wizard-form-grid .form-group:last-child {
    grid-column: 1 / -1;
}

.wizard-copy-card,
.wizard-summary-card {
    margin-top: 16px;
    background: #faf7ff;
    border: 1px solid #e8ddff;
    border-radius: 12px;
    padding: 16px 18px;
}

.wizard-lead {
    margin-top: 0;
    color: #334155;
}

.instruction-section {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid #e8ddff;
}

.instruction-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.instruction-section h3 {
    margin-top: 0;
    margin-bottom: 6px;
}

.instruction-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #475467;
}

.instruction-list li {
    margin-bottom: 8px;
}

.instruction-inline-copy {
    margin-top: 10px;
}

.wizard-numbered-list {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 12px;
}

.wizard-numbered-list-item {
    color: #334155;
}

.wizard-numbered-item-title {
    margin: 0 0 4px;
    font-weight: 700;
    color: #0f172a;
}

.wizard-numbered-item-subtext {
    margin: 0;
    color: #475467;
    line-height: 1.5;
}

.copy-grid {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.copy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e4d8ff;
    border-radius: 10px;
}

.copy-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #667085;
    margin-bottom: 4px;
}

.copy-value {
    font-weight: 600;
    color: #0f172a;
    word-break: break-word;
}

.copy-button {
    flex-shrink: 0;
    min-width: 88px;
}

.wizard-note {
    margin-top: 18px;
    padding: 14px 16px;
    background: #fff8e8;
    border: 1px solid #f2dfab;
    border-radius: 10px;
    color: #6b4f00;
}

.wizard-note-warning {
    background: #fff8e8;
    border-color: #f2dfab;
    color: #6b4f00;
}

.wizard-note-success {
    background: #e8f8ef;
    border: 1px solid #b9e3c8;
    color: #1b5e37;
}

.wizard-consent-note {
    margin-top: 14px;
}

.wizard-consent-label {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    width: 100%;
    font-weight: 500;
    color: #6b4f00;
    cursor: pointer;
}

.wizard-consent-label input[type="checkbox"] {
    justify-self: center;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #7b5cff;
}

.wizard-consent-label span {
    flex: 1 1 auto;
}

.wizard-consent-note-accepted .wizard-consent-label {
    color: #1b5e37;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e8eef6;
}

.summary-row:last-child {
    border-bottom: none;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

#nextBtn {
    margin-left: auto;
    width: 190px;
}

.wizard-pricing-section h3,
.wizard-provider-section h3 {
    margin: 0;
}

.pricing-list-grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
}

.pricing-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0;
}

.pricing-field-row label {
    min-width: 0;
    flex: 1 1 auto;
    margin: 0;
    text-align: left;
}

.pricing-field-row input {
    margin-top: 0;
    width: 170px;
    max-width: 170px;
    text-align: right;
}

.input-invalid {
    border-color: #b3261e !important;
    background: #fff2f1;
}

.input-optional {
    border-color: #d39d36 !important;
    background: #fff8e6;
}

.wizard-provider-section {
    margin-top: 14px;
}

.button-secondary {
    background: #f0f3f7;
    color: #1f1f1f;
}

.button-secondary:hover {
    background: #e4e9ef;
}

.wizard-status-card {
    margin-top: 24px;
    border: 1px solid #eadfff;
    background: #faf7ff;
    border-radius: 14px;
    padding: 18px 20px;
}

.wizard-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #f1ebff;
    color: #5a3ee5;
}

.status-success {
    background: #e8f8ef;
    color: #1b7d45;
}

.status-error {
    background: #fdecec;
    color: #b3261e;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.status-item {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #55606e;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7b5cff;
    flex-shrink: 0;
}

/* =========================================
   Analysis DASHBOARD
========================================= */
.Analysis-shell {
    max-width: 1120px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-loading,
.Analysis-loading {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 58px;
    z-index: 900;
    margin: 0;
    max-width: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(244, 246, 248, 0.92);
}

.page-loading-spinner,
.Analysis-loading-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid #ddd2ff;
    border-top-color: #7b5cff;
    border-radius: 50%;
    animation: page-loading-spin 0.8s linear infinite;
}

.page-loading-text,
.Analysis-loading-text {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #405468;
    background: #ffffff;
    border: 1px solid #e4eaf2;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(10, 32, 60, 0.05);
}

@keyframes page-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.Analysis-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.Analysis-summary-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.Analysis-kpi-card {
    background: #ffffff;
    border: 1px solid #e4eaf2;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(10, 32, 60, 0.05);
    text-align: center;
}

.Analysis-kpi-emphasis {
    border-color: #cbb7ff;
    background: linear-gradient(180deg, #faf7ff 0%, #f5f1ff 100%);
}

.Analysis-kpi-label {
    margin: 0 0 8px;
    font-size: 13px;
    color: #5e6a78;
    font-weight: 600;
}

.Analysis-kpi-value {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #15293f;
}

.Analysis-kpi-positive {
    color: #156d3a;
}

.Analysis-kpi-negative {
    color: #a52620;
}

.Analysis-table-section {
    background: #ffffff;
    border: 1px solid #e4eaf2;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(10, 32, 60, 0.05);
}

.Analysis-table-section h2 {
    margin: 0 0 14px;
}

.Analysis-table-wrap {
    overflow-x: auto;
}

.licensing-requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.licensing-requirements-grid .Analysis-table-wrap {
    overflow-x: visible;
}

.licensing-requirements-grid .Analysis-table {
    min-width: 0;
}

@media (max-width: 900px) {
    .licensing-requirements-grid {
        grid-template-columns: 1fr;
    }
}

.Analysis-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.Analysis-table th,
.Analysis-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid #e8eef6;
    font-size: 14px;
    vertical-align: middle;
}

.Analysis-table th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #607185;
    background: #faf7ff;
}

.Analysis-parent-row td {
    background: #f6f2ff;
    font-weight: 400;
    border-top: 2px solid #dfd2ff;
}

.Analysis-group-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.Analysis-group-toggle-locked {
    cursor: default;
    color: #526275;
}

.Analysis-group-chevron {
    display: inline-block;
    transition: transform 0.18s ease;
}

.Analysis-group-lock {
    display: inline-block;
    font-size: 14px;
}

.Analysis-parent-row[aria-expanded="false"] .Analysis-group-chevron {
    transform: rotate(-90deg);
}

.Analysis-parent-opportunity {
    cursor: pointer;
}

.Analysis-parent-row-locked .Analysis-parent-opportunity {
    cursor: default;
}

.Analysis-project-action {
    white-space: nowrap;
}

.Analysis-col-id {
    width: 56px;
    max-width: 56px;
}

.Analysis-col-implement {
    width: 150px;
}

.Analysis-table td.Analysis-col-implement,
.Analysis-table th.Analysis-col-implement {
    text-align: center;
}

.Analysis-table td.Analysis-col-users,
.Analysis-table th.Analysis-col-users,
.Analysis-table td.Analysis-col-delta,
.Analysis-table th.Analysis-col-delta,
.Analysis-table td.Analysis-col-savings,
.Analysis-table th.Analysis-col-savings {
    text-align: center;
}

.Analysis-col-delta {
    width: 92px;
    min-width: 92px;
    font-variant-numeric: tabular-nums;
}

.licensing-requirements-table {
    table-layout: fixed;
    width: 100%;
    min-width: 0;
}

.licensing-requirements-table th {
    white-space: nowrap;
}

.licensing-requirements-table .licensing-col-license {
    width: 52%;
}

.licensing-requirements-table .licensing-col-count,
.licensing-requirements-table .licensing-col-change,
.licensing-requirements-table .licensing-col-potential {
    width: 16%;
}

.licensing-requirements-table td:first-child {
    white-space: nowrap;
}

.licensing-requirements-table th:last-child,
.licensing-requirements-table td:last-child {
    padding-right: 20px;
}

.Analysis-implement-button {
    width: 104px;
    min-width: 104px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    padding: 10px 12px;
}

.Analysis-description-value,
.Analysis-savings-value {
    font-weight: 700;
}

.Analysis-cost-value {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.Analysis-detail-row td {
    padding: 0;
    border-bottom: none;
    background: #faf7ff;
}

.Analysis-link-button {
    padding: 0;
    border: none;
    background: transparent;
    color: #5a3ee5;
    font: inherit;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.Analysis-link-button:visited,
.Analysis-link-button:hover,
.Analysis-link-button:active {
    color: #5a3ee5;
}

.Analysis-link-button:focus-visible {
    outline: 2px solid #5a3ee5;
    outline-offset: 2px;
}

.Analysis-detail-panel {
    padding: 0 0 14px;
}

.Analysis-detail-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
    margin-top: 8px;
    background: #ffffff;
    border: 1px solid #e4daf8;
    border-radius: 10px;
    overflow: hidden;
}

.Analysis-detail-table th,
.Analysis-detail-table td {
    text-align: left;
    padding: 10px 10px;
    border-bottom: 1px solid #e8eef6;
    font-size: 14px;
    vertical-align: middle;
}

.Analysis-detail-table th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #607185;
    background: #faf7ff;
}

.Analysis-detail-row.is-hidden {
    display: none;
}

.Analysis-detail-table tr:last-child td {
    border-bottom: none;
}

.Analysis-modal-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 27, 43, 0.48);
    z-index: 1000;
}

.Analysis-modal-backdrop.is-hidden {
    display: none;
}

.Analysis-modal {
    width: min(760px, 100%);
    max-height: 80vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(10, 32, 60, 0.24);
}

.Analysis-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e6edf5;
}

.Analysis-modal-header h3 {
    margin: 0;
}

.Analysis-modal-close {
    border: 1px solid #d3c5ef;
    border-radius: 8px;
    padding: 8px 14px;
    background: #ffffff;
    color: #17324d;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.Analysis-modal-body {
    padding: 20px;
}

.Analysis-modal-table {
    width: 100%;
    border-collapse: collapse;
}

.Analysis-modal-table th,
.Analysis-modal-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid #e8eef6;
    font-size: 14px;
    vertical-align: top;
}

.Analysis-modal-table th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #607185;
    background: #faf7ff;
}

.Analysis-modal-table tr:last-child td {
    border-bottom: none;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-end;
    }

    .wizard-header,
    .wizard-actions {
        flex-direction: column;
    }

    .wizard-layout {
        grid-template-columns: 1fr;
    }

    .wizard-form-grid {
        grid-template-columns: 1fr;
    }

    .pricing-field-row {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-field-row label {
        min-width: 0;
    }

    .pricing-field-row input {
        max-width: none;
        width: 100%;
        text-align: left;
    }

    .Analysis-summary {
        grid-template-columns: 1fr;
    }

    .copy-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;

        flex-direction: column;
        width: 200px;

        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);

        display: none;
        padding: 10px 0;
    }

    .nav-links a {
        margin: 10px 20px;
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .center {
        margin: 40px 16px;
        padding: 24px;
    }

    .container {
        margin: 20px 16px;
    }
}

/* =========================================
   ✅ SELECT PARTNER STYLING (IMPROVED)
========================================= */

.select-wrapper {
    position: relative;
    margin-top: 12px;
}

/* ✅ increased right padding for arrow space */
.select-wrapper select {
    width: 100%;
    padding: 10px 36px 10px 14px;

    font-size: 14px;
    font-family: "Segoe UI", Arial, sans-serif;

    border-radius: 6px;
    border: 1px solid #ccc;

    background-color: white;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    transition: all 0.2s ease;
}

/* ✅ Fluent focus state */
.select-wrapper select:focus {
    outline: none;
    border-color: #7b5cff;
    box-shadow: 0 0 0 2px rgba(123, 92, 255, 0.2);
}

/* ✅ CLEAN triangle arrow */
.select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #777;

    pointer-events: none;
}

/* ✅ hover polish */
.select-wrapper select:hover {
    border-color: #999;
}
``