/**
 * Opportunity Seak Onboarding Modal Styles
 * Exact match to Figma design specifications
 */

/* ========================================
   Variables & Base Styles
   ======================================== */

:root {
    --os-primary-blue: #166BEC;
    --os-primary-green: #0DB981;
    --os-gradient: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    --os-text-black: #000000;
    --os-text-dark: #1A1A1A;
    --os-text-gray: #666666;
    --os-text-light-gray: #999999;
    --os-bg-blue: #166BEC;
    --os-bg-light-blue: #E6F2FF;
    --os-bg-white: #FFFFFF;
    --os-border-gray: #E0E0E0;
    --os-border-blue: #166BEC;
    --os-green-bg: #0DB981;
    --os-shadow: rgba(0, 0, 0, 0.1);
    --os-button-gradient: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
}

* {
    box-sizing: border-box;
}

/* Remove borders for identity cards, but allow borders for interest and focus cards when selected */
.os-identity-card,
.os-identity-card.selected,
.os-identity-card:hover,
.os-identity-card:focus,
.os-identity-card:active,
.os-identity-card:focus-visible {
    border: none !important;
    border-color: transparent !important;
    border-width: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Interest and focus cards can have borders when selected */
.os-interest-card:hover,
.os-focus-card:hover,
.os-interest-card:focus,
.os-focus-card:focus,
.os-interest-card:active,
.os-focus-card:active,
.os-interest-card:focus-visible,
.os-focus-card:focus-visible {
    outline: none !important;
}

/* Remove any border that might be added by browser or other CSS */
.os-modal-container,
.os-step,
.os-step-content {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ========================================
   Modal Overlay & Container
   ======================================== */

.os-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

/* Registration page overlay - full screen gradient (more blue, less green) */
.os-registration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #166BEC 0%, #1BA3D4 70%, #0DB981 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

body.os-registration-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.os-registration-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.os-modal-container {
    background: var(--os-bg-blue);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
    border: none !important;
    outline: none !important;
}

/* Registration page container - white card on gradient */
.os-registration-overlay .os-modal-container {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin: auto;
    padding: 0;
}

.os-modal-container::-webkit-scrollbar {
    width: 8px;
}

.os-modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.os-modal-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* ========================================
   Step Content Container
   ======================================== */

.os-step {
    display: none;
}

.os-step.active {
    display: block;
}

.os-step-content {
    background: var(--os-bg-white);
    margin: 8px 0px;
    padding: 6px 12px;
    border-radius: 12px;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(95vh - 16px);
    min-height: auto;
    box-sizing: border-box;
    border: none !important;
    outline: none !important;
}

/* Ensure step 1 content fits without scrolling */
.os-step-1 .os-step-content {
    overflow-y: visible;
    max-height: none;
}

/* Ensure buttons and nav buttons stay within card */
.os-step-content form,
.os-step-content .os-nav-buttons {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Hide scrollbar but keep scrolling */
.os-step-content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.os-step-content::-webkit-scrollbar-track {
    background: transparent;
}

.os-step-content::-webkit-scrollbar-thumb {
    background: transparent;
}

/* For Firefox */
.os-step-content {
    scrollbar-width: none;
}

/* Success step has different background */
.os-step-success .os-step-content {
    background: linear-gradient(180deg, var(--os-bg-light-blue) 0%, var(--os-bg-white) 100%);
}

/* ========================================
   Logo
   ======================================== */

.os-logo {
    text-align: center;
    margin-bottom: 4px;
}

.os-logo-img {
    height: 28px;
    width: auto;
    max-width: 130px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .os-logo-img {
        height: 28px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .os-logo-img {
        height: 24px;
        max-width: 110px;
    }
}

.os-logo-icon {
    display: none;
}

/* ========================================
   Typography
   ======================================== */

.os-step-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    text-align: center;
    margin: 0 0 3px 0;
}

.os-step-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.3;
    color: #666666;
    text-align: center;
    margin: 0 0 6px 0;
}

.os-step-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--os-text-gray);
    text-align: center;
    margin: -20px 0 24px 0;
}

/* ========================================
   Progress Bar
   ======================================== */

.os-progress-container {
    margin-bottom: 6px;
}

.os-progress-bar {
    width: 100%;
    height: 4px;
    background-color: transparent;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
    display: flex;
    position: relative;
    gap: 0;
}

.os-progress-fill {
    height: 100%;
    border-radius: 0;
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.os-progress-fill:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.os-progress-fill:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.os-progress-blue {
    background-color: #166BEC;
}

.os-progress-green {
    background-color: #E6F8F3;
}

.os-progress-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #999999;
    text-align: center;
    margin: 0;
}

/* ========================================
   Feature Pills (Step 1)
   ======================================== */

.os-feature-pills {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.os-feature-pill {
    background: #E6F8F3 !important;
    color: #0DB981 !important;
    padding: 3px 6px;
    border-radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.os-feature-pill,
.os-feature-pill *,
.os-feature-pill span,
.os-feature-pill div {
    color: #0DB981 !important;
}

.os-feature-pill svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.os-feature-pill svg path,
.os-feature-pill svg circle {
    fill: #0DB981 !important;
    stroke: #0DB981 !important;
}

/* ========================================
   Form Styles (Step 1)
   ======================================== */

.os-onboarding-form {
    max-width: 100%;
}

.os-form-group {
    margin-bottom: 8px;
    position: relative;
}

.os-form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--os-text-dark);
    margin-bottom: 3px;
}

.os-form-group input {
    width: 100%;
    padding: 6px 8px;
    border: 1.5px solid var(--os-border-gray);
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: var(--os-text-dark);
    background: white;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

/* WhatsApp input needs extra padding for OTP button */
.os-form-group input#whatsapp {
    padding-right: 80px;
}

.os-form-group input:focus {
    outline: none;
    border-color: #E0E0E0 !important;
}

/* Cards should NEVER have blue borders - removed completely */
.os-identity-card input:focus,
.os-interest-card input:focus,
.os-focus-card input:focus {
    border: none !important;
    border-color: transparent !important;
    outline: none !important;
}

.os-identity-card:focus,
.os-interest-card:focus,
.os-focus-card:focus {
    border: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: 0 0 0 0 transparent !important;
}

.os-form-group input::placeholder {
    color: var(--os-text-light-gray);
}

.os-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.os-privacy-note {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: var(--os-primary-green);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.os-privacy-note svg {
    flex-shrink: 0;
}

.os-send-otp-btn {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%) !important;
    color: #FFFFFF !important;
    border: none;
    border-radius: 4px;
    font-size: 5.5px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    white-space: nowrap;
    z-index: 1;
    height: calc(100% - 8px);
    min-height: 18px;
    max-height: 20px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 4px;
    box-sizing: border-box;
    line-height: 1;
    overflow: hidden !important;
    letter-spacing: 0;
    width: auto;
    min-width: 60px;
    max-width: 75px;
    text-align: center !important;
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle;
}

.os-send-otp-btn,
.os-send-otp-btn *,
.os-send-otp-btn span,
.os-send-otp-btn div,
.os-send-otp-btn::before,
.os-send-otp-btn::after {
    color: #FFFFFF !important;
    text-align: center !important;
}

/* Ensure button text is centered like other buttons */
.os-send-otp-btn {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.os-send-otp-btn * {
    text-align: center !important;
    margin: 0;
    padding: 0;
}

/* Force white text on OTP button - override any inherited colors */
button.os-send-otp-btn,
button#os-send-otp-btn {
    color: #FFFFFF !important;
}

.os-send-otp-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.os-send-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Resend OTP button - slightly bigger but same position, moved up slightly */
.os-send-otp-btn.os-resend-otp-btn {
    position: absolute !important;
    right: 3px !important;
    top: 48% !important;
    transform: translateY(-50%) !important;
    min-width: 75px !important;
    max-width: 85px !important;
    font-size: 6.5px !important;
    padding: 0 7px !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: calc(100% - 8px) !important;
    min-height: 18px !important;
    max-height: 20px !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    overflow: hidden !important;
}

.os-send-otp-btn.os-resend-otp-btn:not(:disabled) {
    position: absolute !important;
    right: 3px !important;
    top: 48% !important;
    transform: translateY(-50%) !important;
    min-width: 75px !important;
    max-width: 85px !important;
    font-size: 6.5px !important;
    padding: 0 7px !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
    display: flex !important;
    height: calc(100% - 8px) !important;
    min-height: 18px !important;
    max-height: 20px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.os-send-otp-btn.os-resend-otp-btn:disabled {
    position: absolute !important;
    right: 3px !important;
    top: 48% !important;
    transform: translateY(-50%) !important;
    min-width: 75px !important;
    max-width: 85px !important;
    font-size: 6.5px !important;
    padding: 0 7px !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
    display: flex !important;
    opacity: 0.6 !important;
    height: calc(100% - 8px) !important;
    min-height: 18px !important;
    max-height: 20px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Ensure Resend OTP text is visible and centered */
.os-send-otp-btn.os-resend-otp-btn,
.os-send-otp-btn.os-resend-otp-btn * {
    color: #FFFFFF !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

/* OTP Timer */
.os-otp-timer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    margin-top: 4px;
    font-size: 9px;
    color: #666;
    font-weight: 500;
}

#os-otp-countdown {
    color: #166BEC;
    font-weight: 600;
}

#os-otp-group {
    margin-top: 4px;
    margin-bottom: 0;
}

#os-otp-group input {
    letter-spacing: 3px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 8px;
}

/* Ensure Continue button always stays visible in step 1 */
.os-step-1 .os-nav-buttons,
.os-step-1 .os-btn-continue {
    margin-top: 6px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1;
}

.os-step-1 .os-btn-continue {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* Reduce spacing in step 1 to fit everything */
.os-step-1 .os-form-group {
    margin-bottom: 6px;
}

.os-step-1 .os-otp-timer {
    margin-top: 2px;
    margin-bottom: 2px;
}

.os-step-1 #os-otp-group {
    margin-top: 2px;
    margin-bottom: 2px;
}

.os-step-1 .os-privacy-note {
    margin-top: 2px;
    margin-bottom: 2px;
}

.os-otp-status {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 500;
    color: var(--os-text-gray);
}

/* ========================================
   Daily Feed Preview (Step 1)
   ======================================== */

.os-feed-preview {
    background: #F5F5F5;
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 8px;
}

.os-feed-preview-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--os-text-dark);
    margin: 0 0 6px 0;
}

.os-feed-preview-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.os-feed-preview-list li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: var(--os-text-dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.os-feed-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.os-feed-dot.blue {
    background: var(--os-primary-blue);
}

.os-feed-dot.green {
    background: var(--os-primary-green);
}

/* ========================================
   Identity Cards (Step 2)
   ======================================== */

.os-identity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 6px;
    width: 100%;
    box-sizing: border-box;
}

.os-identity-grid .os-identity-card {
    min-width: 0;
    word-wrap: break-word;
}

.os-identity-card {
    background: white;
    border: none !important;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: none !important;
}

.os-identity-card:hover {
    background: #F5F5F5;
    border: none !important;
}

.os-identity-card.selected {
    border: none !important;
    background: #F0F7FF;
    box-shadow: none !important;
}

.os-identity-icon {
    font-size: 18px;
    margin-bottom: 4px;
}

.os-identity-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--os-text-dark);
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.os-identity-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 8px;
    font-weight: 400;
    color: var(--os-text-gray);
    margin: 0;
    line-height: 1.2;
}

.os-selected-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: var(--os-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Selection Counter (Step 3)
   ======================================== */

.os-selection-counter {
    background: var(--os-primary-blue);
    color: white;
    padding: 3px 8px;
    border-radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 6px;
}

/* ========================================
   Interest Cards (Step 3)
   ======================================== */

.os-interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 6px;
    width: 100%;
    box-sizing: border-box;
}

.os-interests-grid .os-interest-card {
    min-width: 0;
    word-wrap: break-word;
}

.os-interest-card {
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 5px 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    pointer-events: auto;
    box-shadow: none !important;
}

.os-interest-card:hover {
    background: #EEEEEE;
    border: 2px solid transparent;
}

.os-interest-card.selected {
    background: white;
    border: 2px solid #166BEC !important;
    box-shadow: none !important;
}

.os-interest-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #F5F5F5 !important;
    border: 2px solid transparent !important;
}

.os-interest-card.disabled:hover {
    background: #F5F5F5 !important;
    border: 2px solid transparent !important;
}

.os-interest-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.os-interest-card span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    font-weight: 500;
    color: var(--os-text-dark);
    flex: 1;
    line-height: 1.2;
}

.os-checkmark {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.os-interest-card.selected .os-checkmark {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ensure checkmarks are never visible */
.os-interest-card .os-checkmark,
.os-interest-card.selected .os-checkmark,
.os-interest-card.disabled .os-checkmark {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ========================================
   Example Opportunities (Step 3)
   ======================================== */

.os-example-opportunities {
    background: #F9F9F9;
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 6px;
}

.os-example-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--os-text-dark);
    margin: 0 0 6px 0;
}

.os-example-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.os-example-list li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: var(--os-text-dark);
    margin-bottom: 3px;
}

.os-promo-footer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: var(--os-text-dark);
    text-align: center;
    margin-top: 6px;
    margin-bottom: 0;
}

/* ========================================
   Focus Area Cards (Step 4)
   ======================================== */

.os-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 6px;
    width: 100%;
    box-sizing: border-box;
}

.os-focus-grid .os-focus-card {
    min-width: 0;
    word-wrap: break-word;
}

.os-focus-card {
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 6px 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
    text-align: center;
    pointer-events: auto;
    box-shadow: none !important;
}

.os-focus-card:hover {
    background: #EEEEEE;
    border: 2px solid transparent;
}

.os-focus-card.selected {
    background: #F0F7FF;
    border: 2px solid var(--os-primary-blue) !important;
    box-shadow: none !important;
}

.os-focus-icon {
    font-size: 18px;
}

.os-focus-card span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--os-text-dark);
}

.os-focus-card.selected .os-checkmark {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ========================================
   Buttons
   ======================================== */

.os-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    text-align: center !important;
    height: auto;
    min-height: 32px;
}

/* Single button (like Continue in step 1) - full width */
.os-btn-continue,
.os-step-1 .os-btn,
.os-step-1 form .os-btn {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Buttons in nav-buttons container */
.os-nav-buttons .os-btn {
    flex: 1;
    width: auto;
    min-width: 0;
    max-width: 100%;
}

.os-btn-primary {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%) !important;
    background-image: linear-gradient(90deg, #166BEC 0%, #0DB981 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-width: 0 !important;
    outline: none !important;
    text-align: center !important;
    justify-content: center !important;
}

.os-btn-primary,
.os-btn-primary * {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.os-btn-primary svg,
.os-btn-primary svg * {
    stroke: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.os-btn-primary span,
.os-btn-primary .os-btn-text {
    color: #FFFFFF !important;
}

.os-btn-primary:hover:not(:disabled) {
    background: linear-gradient(90deg, #1458c7 0%, #0ba370 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(22, 107, 236, 0.3);
}

.os-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%) !important;
}

.os-btn-back {
    background: white !important;
    color: #166BEC !important;
    border: 1px solid #E0E0E0 !important;
    border-width: 1px !important;
}

.os-btn-back * {
    color: #166BEC !important;
}

.os-btn-back svg,
.os-btn-back svg * {
    stroke: #166BEC !important;
}

.os-btn-back:hover {
    background: #F5F5F5 !important;
}


.os-nav-buttons {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.os-nav-buttons .os-btn {
    flex: 1;
    margin-top: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    justify-content: center !important;
    display: inline-flex !important;
    width: auto;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.os-btn-continue {
    width: 100% !important;
    margin-top: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.os-step-1 .os-btn-continue,
.os-step-4 .os-btn-continue {
    margin-top: 6px;
}

/* Ensure all button text is white on primary buttons */
.os-btn-primary,
.os-btn-primary *:not(svg) {
    color: #FFFFFF !important;
}

.os-btn-primary button,
.os-btn-primary span,
.os-btn-primary div,
.os-btn-primary p {
    color: #FFFFFF !important;
}

/* ========================================
   Success Screen (Step 5)
   ======================================== */

.os-success-content {
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 0 40px;
    max-width: 100%;
    box-sizing: border-box;
}

.os-success-content > * {
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Ensure logo respects padding */
.os-success-content .os-logo {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure title and subtitle respect padding */
.os-success-content .os-step-title,
.os-success-content .os-step-subtitle {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

.os-success-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.os-star, .os-confetti {
    position: absolute;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

.os-star {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.os-confetti {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.os-success-badge {
    background: var(--os-primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}

.os-success-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 20px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}

.os-success-feature {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.os-success-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.os-success-feature h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--os-text-dark);
    margin: 0 0 4px 0;
}

.os-success-feature p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--os-text-gray);
    margin: 0;
}

.os-btn-trial {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding: 12px 24px;
    font-size: 14px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.os-trial-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}

.os-trial-info p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: var(--os-text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.os-whatsapp-confirmation {
    background: var(--os-primary-green);
    color: white;
    padding: 10px 16px;
    border-radius: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Responsive Design
   ======================================== */

/* ========================================
   Force Remove All Blue Borders - COMPLETE REMOVAL
   ======================================== */

.os-identity-card,
.os-interest-card,
.os-focus-card,
.os-identity-card *,
.os-interest-card *,
.os-focus-card * {
    border: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.os-identity-card.selected,
/* Removed conflicting rule - interest cards should show borders when selected */
.os-focus-card.selected {
    border: 2px solid var(--os-primary-blue) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .os-modal-container {
        margin: 10px;
        max-width: calc(100% - 20px);
        max-height: 95vh;
    }
    
    .os-step-content {
        padding: 16px 12px;
        margin: 10px;
        max-height: calc(95vh - 20px);
    }
    
    .os-step-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .os-step-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .os-logo {
        margin-bottom: 16px;
    }
    
    .os-logo-img {
        height: 60px !important;
        max-width: 200px !important;
        width: auto !important;
    }
    
    .os-identity-grid,
    .os-interests-grid,
    .os-focus-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .os-btn,
    .os-btn-primary,
    .os-btn-back {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .os-success-features {
        grid-template-columns: 1fr;
    }
    
    .os-form-row {
        grid-template-columns: 1fr;
    }
    
    .os-feature-pills {
        flex-direction: column;
        gap: 6px;
    }
    
    .os-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .os-nav-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* Ensure content always fits */
.os-step-content {
    min-height: 0;
}

.os-modal-container {
    overflow: hidden;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.os-step.active {
    animation: fadeIn 0.3s ease;
}

/* Close button (optional) */
.os-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-weight: normal;
}

.os-modal-close span {
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 300;
    margin-top: -1px;
}

.os-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Dashboard Styles
   ======================================== */

.os-dashboard {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    overflow-y: auto;
}

/* For overlay mode (if needed) */
.os-dashboard-page .os-dashboard {
    position: relative;
    display: block;
}

/* Dashboard Navbar */
.os-dashboard-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 2px solid #E6F2FF;
    border-bottom: 1px solid #E0E0E0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* QA #18: Align nav bars - consistent height and sizing */
.os-dashboard-navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}

/* Logo */
.os-dashboard-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.os-dashboard-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.os-dashboard-logo-link:hover {
    opacity: 0.8;
}

.os-dashboard-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Links (immediately after logo) */
.os-dashboard-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 32px;
}

/* Action Buttons (on the far right) */
.os-dashboard-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.os-dashboard-nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.os-dashboard-nav-link:hover {
    color: #166BEC;
}

/* Nav Actions moved up - already defined above */

/* Trial Days Button - Light Green with Border */
.os-dashboard-trial-btn {
    background: #E8F8F3;
    border: 1px solid #0DB981;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0DB981;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.os-dashboard-trial-btn:hover {
    background: #D4F3E8;
    border-color: #0BA870;
}

.os-trial-label {
    color: #0DB981;
    font-weight: 500;
}

.os-trial-days {
    color: #0DB981;
    font-weight: 500;
}

/* Profile Button - White with Grey Border */
.os-dashboard-profile-btn {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 8px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.os-dashboard-profile-btn:hover {
    background: #F5F5F5;
    border-color: #CCCCCC;
}

/* Upgrade Button - Blue-Green Gradient */
.os-dashboard-upgrade-btn {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(22, 107, 236, 0.2);
}

.os-dashboard-upgrade-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(22, 107, 236, 0.3);
}

.os-dashboard-upgrade-btn:active {
    transform: translateY(0);
}

/* Dashboard Content - QA #18: Align with navbar (same max-width) */
#os-dashboard .os-dashboard-content {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.os-dashboard-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    width: 100%;
    box-sizing: border-box;
}

.os-dashboard-welcome {
    text-align: center;
    padding: 60px 20px;
}

.os-dashboard-welcome h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.os-dashboard-welcome p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .os-dashboard-navbar-container {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .os-dashboard-logo-img {
        height: 32px;
    }
    
    .os-dashboard-nav-actions {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .os-dashboard-nav-links {
        gap: 20px;
        flex-wrap: wrap;
        margin-left: 0;
        width: 100%;
        order: 3;
    }
    
    .os-dashboard-nav-link {
        font-size: 14px;
    }
    
    .os-dashboard-trial-btn,
    .os-dashboard-profile-btn,
    .os-dashboard-upgrade-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .os-dashboard-content {
        padding: 0 16px 24px 16px;
    }
    
    .os-hero-section {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
}

/* ========================================
   Hero Section
   ======================================== */

.os-hero-section {
    position: relative;
    background: #397CE8;
    border-radius: 0;
    padding: 40px 40px;
    margin-bottom: 40px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    min-height: 500px;
    overflow: visible;
    box-sizing: border-box;
}

.os-hero-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
    max-width: 60%;
    padding-right: 0;
}

.os-hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.os-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.os-tag-blue {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border: none;
    padding: 6px 16px;
}

.os-tag-green {
    background: #E8F8F3;
    border: 1px solid #0DB981;
    color: #0DB981;
}

.os-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #FFFFFF;
}

.os-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.95);
}

.os-hero-subtitle strong {
    font-weight: 600;
}

.os-hero-categories {
    display: flex;
    gap: 24px;
}

.os-hero-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.os-hero-categories {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 4px;
}

.os-hero-category {
    flex-shrink: 0;
    min-width: 0;
}

.os-hero-category-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.os-hero-category span {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

/* Hero Right Card */
.os-hero-right {
    position: absolute;
    top: 32px;
    right: 32px;
    bottom: 32px;
    width: 38%;
    max-width: 420px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.os-hero-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 13px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-sizing: border-box;
}

.os-hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
    gap: 7px;
    flex-shrink: 0;
}

.os-hero-stat {
    margin-bottom: 12px;
    flex-shrink: 0;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.os-hero-stat:last-of-type {
    margin-bottom: 0;
}

.os-hero-stat-header {
    margin-bottom: 5px;
}

.os-hero-stat-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    color: #1A1A1A;
    min-width: 0;
}

.os-hero-stat-title span:last-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.os-hero-stat-icon {
    font-size: 12px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6F2FF;
    border-radius: 4px;
    flex-shrink: 0;
}

.os-hero-stat-icon.os-icon-trial {
    font-size: 9.5px;
    font-weight: 700;
    background: #E8F8F3;
    color: #0DB981;
    padding: 2px 5px;
}

.os-hero-stat-value {
    font-size: 12.5px;
    font-weight: 600;
    color: #166BEC;
    margin-bottom: 2px;
}

.os-hero-stat-value strong {
    font-weight: 700;
    font-size: 14.5px;
}

.os-hero-stat-subtext {
    font-size: 10.5px;
    font-weight: 400;
    color: #999999;
}

.os-hero-progress-bar {
    position: relative;
    height: 4px;
    background: #E8F8F3;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2px;
}

.os-hero-progress-fill {
    height: 100%;
    background: #166BEC;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.os-hero-progress-upgrade {
    font-size: 8.5px;
    color: #999999;
    text-align: right;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.3;
}

.os-hero-summary {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #E0E0E0;
    flex-shrink: 0;
}

.os-hero-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 9px;
    color: #666666;
    gap: 5px;
    line-height: 1.3;
}

.os-hero-summary-item:last-child {
    margin-bottom: 0;
}

.os-hero-summary-icon {
    color: #0DB981;
    font-size: 12px;
    flex-shrink: 0;
}

.os-hero-summary-item span:not(.os-hero-summary-icon):not(.os-hero-summary-subtext) {
    flex: 1;
}

.os-hero-summary-item strong {
    font-size: 11.5px;
    font-weight: 700;
    color: #1A1A1A;
}

.os-hero-summary-subtext {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
}

/* ========================================
   Four Cards Section
   ======================================== */

.os-cards-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.os-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.os-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.os-card-white {
    background: #FFFFFF;
}

.os-card-gradient {
    background: linear-gradient(135deg, #166BEC 0%, #0DB981 100%);
    color: #FFFFFF;
}

.os-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.6;
}

.os-card-number {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 8px 0;
}

.os-card-number-white {
    color: #FFFFFF;
}

.os-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 4px;
}

.os-card-title-white {
    color: rgba(255, 255, 255, 0.9);
}

.os-card-description {
    font-size: 12px;
    color: #999999;
    margin-top: 4px;
}

.os-card-description-white {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Trial Tip + Daily Digest Section
   ======================================== */

.os-tip-digest-section {
    margin-bottom: 40px;
}

.os-trial-tip-card {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.os-trial-tip-icon {
    width: 48px;
    height: 48px;
    background: #E6F2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.os-trial-tip-content {
    flex: 1;
}

.os-trial-tip-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.os-trial-tip-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.os-trial-tip-link {
    font-size: 14px;
    color: #166BEC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.os-trial-tip-link:hover {
    color: #0DB981;
}

.os-digest-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.os-digest-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 2px solid;
}

.os-digest-whatsapp {
    border-color: #E8F8F3;
}

.os-digest-email {
    border-color: #E6F2FF;
}

.os-digest-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.os-digest-icon-green {
    background: #E8F8F3;
}

.os-digest-icon-blue {
    background: #E6F2FF;
}

.os-digest-content {
    flex: 1;
}

.os-digest-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.os-digest-sparkle {
    font-size: 14px;
    color: #0DB981;
}

.os-digest-email-icon {
    font-size: 14px;
    color: #999999;
}

.os-digest-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.os-digest-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.os-digest-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.os-digest-btn-green {
    background: #0DB981;
    color: #FFFFFF;
}

.os-digest-btn-green:hover {
    background: #0BA870;
}

.os-digest-btn-icon {
    font-size: 16px;
}

.os-digest-status {
    font-size: 12px;
    color: #999999;
}

.os-digest-status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.os-digest-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.os-digest-status-success {
    color: #0DB981;
}

.os-digest-status-info {
    color: #999999;
}

.os-digest-check {
    width: 20px;
    height: 20px;
    background: #0DB981;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.os-digest-bulb {
    font-size: 16px;
}

/* ========================================
   Opportunities Filter Bar
   ======================================== */

.os-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 32px;
    gap: 24px;
}

.os-filter-categories {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.os-filter-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: #F5F5F5;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.os-filter-btn-active {
    background: #E0E0E0;
    color: #1A1A1A;
}

.os-filter-btn:hover {
    background: #E8E8E8;
}

.os-filter-sparkle {
    font-size: 14px;
}

.os-filter-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.os-filter-link:hover {
    color: #166BEC;
}

.os-filter-link-icon {
    font-size: 16px;
}

.os-filter-link-locked {
    opacity: 0.6;
    position: relative;
}

.os-filter-lock {
    font-size: 12px;
    margin-left: 4px;
}

.os-filter-search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.os-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.os-search-icon {
    position: absolute;
    left: 12px;
    font-size: 16px;
    color: #666666;
    pointer-events: none;
}

.os-search-input {
    padding: 10px 16px 10px 40px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    width: 300px;
    color: #1A1A1A;
    transition: border-color 0.2s ease;
}

.os-search-input:focus {
    outline: none;
    border-color: #166BEC;
}

.os-search-input::placeholder {
    color: #666666;
}

.os-filter-btn-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.os-filter-btn-icon:hover {
    background: #F5F5F5;
    border-color: #CCCCCC;
}

.os-filter-icon {
    font-size: 16px;
    color: #666666;
    display: inline-block;
}

/* ========================================
   Opportunities List Section
   ======================================== */

.os-opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #F5F5F5;
    padding: 24px;
    border-radius: 12px;
}

.os-opportunity-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.os-opportunity-card:last-child {
    margin-bottom: 0;
}

.os-opportunity-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.os-opportunity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.os-opportunity-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.os-opportunity-type {
    background: #E6F2FF;
    color: #166BEC;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.os-opportunity-match {
    background: #E8F8F3;
    color: #0DB981;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.os-opportunity-match-locked {
    background: #F5F5F5;
    color: #999999;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #E0E0E0;
}

.os-match-lock-icon {
    font-size: 12px;
    display: inline-block;
}

.os-bookmark-btn-top {
    background: transparent;
    border: 1px solid #E0E0E0;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    flex-shrink: 0;
}

.os-bookmark-btn-top:hover {
    background: #F5F5F5;
    border-color: #CCCCCC;
}

.os-opportunity-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.os-opportunity-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.os-opportunity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.os-opportunity-tag {
    background: #E6F2FF;
    color: #166BEC;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.os-opportunity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E0E0E0;
}

.os-opportunity-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666666;
}

.os-meta-icon {
    font-size: 14px;
    display: inline-block;
}

.os-opportunity-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.os-bookmark-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-bookmark-btn:hover {
    background: #F5F5F5;
}

.os-apply-btn {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(22, 107, 236, 0.2);
}

.os-apply-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(22, 107, 236, 0.3);
}

.os-apply-btn:active {
    transform: translateY(0);
}

.os-apply-icon {
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

/* Responsive Design for Opportunities List */
@media (max-width: 768px) {
    .os-opportunities-list {
        padding: 16px;
    }
    
    .os-opportunity-card {
        padding: 20px;
    }
    
    .os-opportunity-title {
        font-size: 18px;
    }
    
    .os-opportunity-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .os-opportunity-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .os-apply-btn {
        width: 100%;
        justify-content: center;
    }
    
    .os-bookmark-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .os-opportunity-header {
        flex-wrap: wrap;
    }
    
    .os-opportunity-tags {
        gap: 6px;
    }
    
    .os-opportunity-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* Responsive Design for Dashboard Sections */
@media (max-width: 1200px) {
    .os-hero-section {
        position: relative;
        padding: 40px 32px;
    }
    
    .os-hero-left {
        max-width: 55%;
    }
    
    .os-hero-right {
        width: 40%;
        max-width: 450px;
    }
    
    .os-cards-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .os-digest-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .os-hero-left {
        padding: 32px 24px;
    }
    
    .os-hero-title {
        font-size: 32px;
    }
    
    .os-hero-categories {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .os-hero-card {
        padding: 24px;
    }
    
    .os-cards-section {
        grid-template-columns: 1fr;
    }
    
    .os-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .os-filter-categories {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .os-filter-search {
        width: 100%;
    }
    
    .os-search-input {
        width: 100%;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .os-hero-section {
        padding: 24px 16px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
    
    .os-hero-title {
        font-size: 28px;
    }
    
    .os-hero-card-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .os-hero-card-header .os-dashboard-trial-btn,
    .os-hero-card-header .os-dashboard-upgrade-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .os-dashboard-navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .os-dashboard-logo-nav {
        width: 100%;
    }
    
    .os-dashboard-nav-actions {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .os-dashboard-trial-btn {
        width: 100%;
        justify-content: center;
    }
    
    .os-dashboard-nav-links {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .os-dashboard-nav-link {
        font-size: 13px;
    }
}

/* ========================================
   Previous Opportunities Section
   ======================================== */

.os-previous-opportunities {
    margin-top: 40px;
    margin-bottom: 40px;
}

.os-previous-opportunities-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.os-previous-opportunities-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E0E0E0;
}

.os-previous-opportunities-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.os-previous-opportunities-icon {
    font-size: 18px;
    display: inline-block;
}

.os-previous-opportunities-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.os-previous-opportunities-tag {
    background: #F5F5F5;
    color: #666666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 400;
    display: inline-block;
}

.os-previous-opportunities-lock {
    font-size: 16px;
    color: #999999;
    display: inline-block;
    flex-shrink: 0;
}

.os-previous-opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.os-previous-opportunity-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
}

.os-previous-opportunity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.os-previous-opportunity-item:first-child {
    padding-top: 0;
}

.os-previous-opportunity-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.os-previous-opportunity-type {
    background: #F5F5F5;
    color: #1A1A1A;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.os-previous-opportunity-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.3;
}

.os-previous-opportunity-org {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #999999;
    margin: 0;
    line-height: 1.4;
}

.os-previous-opportunity-right {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-left: 16px;
}

.os-previous-opportunity-deadline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #999999;
    white-space: nowrap;
}

/* Responsive Design for Previous Opportunities */
@media (max-width: 768px) {
    .os-previous-opportunities-card {
        padding: 20px;
    }
    
    .os-previous-opportunities-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .os-previous-opportunities-header-left {
        width: 100%;
    }
    
    .os-previous-opportunities-lock {
        align-self: flex-end;
    }
    
    .os-previous-opportunity-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .os-previous-opportunity-right {
        margin-left: 0;
        align-self: flex-start;
    }
}

/* ========================================
   Free vs Pro Comparison Section
   ======================================== */

.os-comparison-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.os-comparison-container {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.os-comparison-header {
    text-align: center;
    margin-bottom: 32px;
}

.os-comparison-tag {
    background: #E8F8F3;
    color: #0DB981;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.os-comparison-tag-icon {
    font-size: 14px;
    display: inline-block;
}

.os-comparison-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.os-comparison-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.os-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.os-comparison-table-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 0;
    border-bottom: 2px solid #E0E0E0;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.os-comparison-col-feature,
.os-comparison-col-free,
.os-comparison-col-pro {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    padding: 0;
}

.os-comparison-col-free {
    text-align: center;
}

.os-comparison-col-pro {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.os-comparison-pro-icon {
    font-size: 14px;
    display: inline-block;
}

.os-comparison-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
}

.os-comparison-row:last-child {
    border-bottom: none;
}

.os-comparison-col-feature {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    text-align: left;
}

.os-comparison-col-free {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-comparison-col-pro {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-comparison-pro-value {
    color: #166BEC;
    font-weight: 500;
}

.os-comparison-check {
    color: #0DB981;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
}

.os-comparison-x {
    color: #FF4444;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
}

.os-comparison-cta {
    text-align: center;
    margin-bottom: 24px;
}

.os-comparison-upgrade-btn {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(22, 107, 236, 0.2);
}

.os-comparison-upgrade-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(22, 107, 236, 0.3);
}

.os-comparison-upgrade-btn:active {
    transform: translateY(0);
}


/* Responsive Design for Comparison Section */
@media (max-width: 768px) {
    .os-comparison-container {
        padding: 24px;
    }
    
    .os-comparison-title {
        font-size: 24px;
    }
    
    .os-comparison-subtitle {
        font-size: 14px;
    }
    
    .os-comparison-table-header,
    .os-comparison-row {
        grid-template-columns: 1fr 80px 80px;
    }
    
    .os-comparison-col-feature,
    .os-comparison-col-free,
    .os-comparison-col-pro {
        font-size: 12px;
    }
    
    .os-comparison-upgrade-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========================================
   Invite a Friend Section
   ======================================== */

.os-invite-section {
    margin-top: 40px;
    margin-bottom: 24px;
}

.os-invite-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.os-invite-content {
    flex: 1;
}

.os-invite-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.os-invite-icon {
    font-size: 20px;
    display: inline-block;
}

.os-invite-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.os-invite-btn {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.os-invite-btn:hover {
    background: #F5F5F5;
    border-color: #CCCCCC;
}

/* ========================================
   Trial Ends Banner Section
   ======================================== */

.os-trial-banner-section {
    margin-top: 24px;
    margin-bottom: 40px;
}

.os-trial-banner {
    background: #397CE8;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.os-trial-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.os-trial-banner-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.os-trial-banner-icon {
    font-size: 20px;
    display: inline-block;
}

.os-trial-banner-content {
    flex: 1;
}

.os-trial-banner-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.os-trial-banner-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.os-trial-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.os-trial-banner-compare-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.os-trial-banner-compare-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.os-trial-banner-upgrade-btn {
    background: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #397CE8;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.os-trial-banner-upgrade-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.os-trial-banner-upgrade-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Invite and Trial Banner */
@media (max-width: 768px) {
    .os-invite-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .os-invite-btn {
        width: 100%;
        text-align: center;
    }
    
    .os-trial-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    
    .os-trial-banner-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .os-trial-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .os-trial-banner-compare-btn,
    .os-trial-banner-upgrade-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Profile Settings Page
   ======================================== */

.os-profile-page {
    background: #F5F5F5;
    min-height: 100vh;
}

.os-profile-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Profile Title Section */
.os-profile-title-section {
    margin-bottom: 32px;
    padding-top: 24px;
}

.os-profile-main-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    padding: 0;
}

/* Profile Navbar - Logo and Save Button only */
.os-profile-page .os-dashboard-navbar-container {
    justify-content: space-between;
}

.os-profile-page .os-dashboard-logo-link {
    flex-shrink: 0;
}

.os-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 24px;
}

.os-profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.os-profile-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-profile-avatar svg {
    width: 100%;
    height: 100%;
}

.os-profile-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.os-profile-save-btn {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(22, 107, 236, 0.2);
    flex-shrink: 0;
}

.os-profile-save-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(22, 107, 236, 0.3);
}

.os-profile-save-btn:active {
    transform: translateY(0);
}

.os-profile-save-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.os-profile-form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.os-profile-section {
    margin-bottom: 40px;
}

.os-profile-section:last-child {
    margin-bottom: 0;
}

.os-profile-section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #E0E0E0;
}

.os-profile-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.os-profile-form-group {
    margin-bottom: 20px;
}

.os-profile-form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.os-profile-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.os-profile-input:focus {
    outline: none;
    border-color: #166BEC;
    box-shadow: 0 0 0 3px rgba(22, 107, 236, 0.1);
}

.os-profile-input::placeholder {
    color: #999999;
}

.os-profile-input select {
    cursor: pointer;
}

/* Responsive Design for Profile Page */
@media (max-width: 768px) {
    .os-profile-container {
        padding: 24px 16px;
    }
    
    .os-profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .os-profile-avatar-section {
        width: 100%;
    }
    
    .os-profile-save-btn {
        width: 100%;
        justify-content: center;
    }
    
    .os-profile-form {
        padding: 24px;
    }
    
    .os-profile-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .os-profile-title {
        font-size: 24px;
    }
}

/* ========================================
   Boost AI Match Score Section
   ======================================== */

.os-boost-match-section {
    background: #F5F5F5;
    padding: 24px 0;
    margin-bottom: 0;
}

.os-boost-match-section + .os-dashboard-content {
    padding-top: 0;
    margin-top: 0;
}

.os-boost-match-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.os-boost-match-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.os-boost-match-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.os-boost-match-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.os-boost-match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.os-boost-match-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.os-boost-match-bonus {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0DB981;
}

.os-boost-match-progress {
    margin-bottom: 12px;
}

.os-boost-match-progress-bar {
    width: 100%;
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
}

.os-boost-match-progress-fill {
    height: 100%;
    background: #166BEC;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.os-boost-match-footer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Boost Match Section */
@media (max-width: 768px) {
    .os-boost-match-section {
        padding: 24px 0;
    }
    
    .os-boost-match-container {
        padding: 0 16px;
    }
    
    .os-boost-match-title {
        font-size: 24px;
    }
    
    .os-boost-match-description {
        font-size: 14px;
    }
    
    .os-boost-match-card {
        padding: 20px;
    }
    
    .os-boost-match-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .os-boost-match-label {
        font-size: 14px;
    }
    
    .os-boost-match-bonus {
        font-size: 13px;
    }
}

/* ========================================
   Founder's Profile Form Section
   ======================================== */

.os-profile-form-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    margin-top: 0;
}

.os-profile-form-section:first-of-type {
    margin-top: 0;
}

.os-profile-form-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E0E0E0;
}

.os-profile-form-section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.os-profile-form-section-icon {
    font-size: 20px;
    display: inline-block;
}

.os-profile-form-section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.os-profile-form-section-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.os-profile-form-section-toggle:hover {
    opacity: 0.7;
}

.os-profile-form-section-toggle.collapsed {
    transform: rotate(180deg);
}

.os-profile-form-section-content {
    display: block;
}

.os-profile-form-section-content.collapsed {
    display: none;
}

.os-profile-required {
    color: #FF4444;
    font-weight: 600;
}

/* Ensure all buttons have white text */
.os-profile-radio-label input[type="radio"]:checked + .os-profile-radio-custom {
    color: #FFFFFF !important;
}

.os-profile-tag.selected {
    color: #FFFFFF !important;
}

.os-profile-tag.selected span {
    color: #FFFFFF !important;
}

.os-profile-save-btn,
.os-profile-save-continue-btn {
    color: #FFFFFF !important;
}

.os-profile-file-upload-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer !important;
    width: 100%;
}

.os-profile-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.os-profile-file-display {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #FFFFFF;
    cursor: pointer !important;
    transition: border-color 0.2s ease;
    position: relative;
    z-index: 1;
    user-select: none;
    pointer-events: auto !important;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    margin: 0;
}

.os-profile-file-display label {
    cursor: pointer !important;
}

.os-profile-file-display:hover {
    border-color: #166BEC;
}

.os-profile-file-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    flex: 1;
}

.os-profile-file-name.has-file {
    color: #1A1A1A;
    font-weight: 500;
}

.os-profile-file-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.os-profile-helper-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 6px 0 0 0;
    line-height: 1.4;
}

.os-profile-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.os-profile-textarea:focus {
    outline: none;
    border-color: #166BEC;
    box-shadow: 0 0 0 3px rgba(22, 107, 236, 0.1);
}

.os-profile-textarea::placeholder {
    color: #999999;
}

/* Radio Button Styles */
.os-profile-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.os-profile-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.os-profile-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.os-profile-radio-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    transition: all 0.2s ease;
    cursor: pointer;
}

.os-profile-radio-label input[type="radio"]:checked + .os-profile-radio-custom {
    border-color: #166BEC;
    background: #166BEC;
    color: #FFFFFF !important;
}

.os-profile-radio-label:hover .os-profile-radio-custom {
    border-color: #166BEC;
}

/* Select Dropdown Styles */
.os-profile-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    background: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.os-profile-select:focus {
    outline: none;
    border-color: #166BEC;
    box-shadow: 0 0 0 3px rgba(22, 107, 236, 0.1);
}

.os-profile-select:hover {
    border-color: #166BEC;
}

/* Tags/Pills Container */
.os-profile-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.os-profile-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #CCCCCC;
    border-radius: 20px;
    background: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #333333 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    position: relative;
    z-index: 0;
}

.os-profile-tag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.os-profile-tag:hover:not(.selected) {
    background: #F0F7FF;
    border-color: transparent;
}

.os-profile-tag:hover:not(.selected)::before {
    opacity: 1;
}

.os-profile-tag.selected {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    border: 2px solid transparent;
    color: #FFFFFF !important;
}

.os-profile-tag.selected:hover {
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    border-color: transparent;
}

.os-profile-tag:not(.selected) {
    color: #333333 !important;
    border-color: #CCCCCC !important;
}

.os-profile-tag:not(.selected) span {
    color: #333333 !important;
}

.os-profile-tag.selected::before {
    opacity: 0;
}

.os-profile-tag.selected span {
    color: #FFFFFF !important;
}

.os-profile-tag span {
    color: inherit;
    position: relative;
    z-index: 1;
}

.os-profile-tag-icon {
    font-size: 16px;
    display: inline-block;
}

/* Responsive Design for Founder's Profile Form */
@media (max-width: 768px) {
    .os-profile-form-section {
        padding: 20px;
    }
    
    .os-profile-form-section-title {
        font-size: 18px;
    }
    
    .os-profile-file-upload-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .os-profile-file-display {
        width: 100%;
    }
    
    .os-profile-radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .os-profile-radio-custom {
        width: 100%;
        justify-content: flex-start;
    }
    
    .os-profile-tags-container {
        gap: 8px;
    }
    
    .os-profile-tag {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ========================================
   Profile Impact Section
   ======================================== */

.os-profile-impact-section {
    background: #F5F5F5;
    padding: 40px 0;
    margin-top: 24px;
}

.os-profile-impact-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.os-profile-impact-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    flex: 0 0 280px;
}

.os-profile-impact-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #166BEC;
    margin: 0 0 20px 0;
}

.os-profile-impact-percentage-box {
    background: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
    text-align: center;
}

.os-profile-impact-percentage {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    display: block;
}

.os-profile-impact-status {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    text-align: center;
}

.os-profile-impact-bonus {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #0DB981;
    margin: 0;
    text-align: center;
}

.os-profile-impact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.os-profile-badges-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
}

.os-profile-badges-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.os-profile-badges-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.os-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.os-profile-badge-verified {
    background: #0DB981;
}

.os-profile-badge-startup {
    background: #999999;
}

.os-profile-badge-icon {
    font-size: 16px;
    display: inline-block;
    line-height: 1;
}

.os-profile-badge-text {
    display: inline-block;
}

.os-profile-pro-tips-card {
    background: #E6F2FF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #D0E5FF;
}

.os-profile-pro-tips-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #166BEC;
    margin: 0 0 12px 0;
}

.os-profile-pro-tips-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.6;
}

.os-profile-save-continue-btn {
    width: 100%;
    padding: 16px 24px;
    border: none !important;
    border-radius: 12px;
    background: linear-gradient(90deg, #166BEC 0%, #0DB981 100%);
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(22, 107, 236, 0.3);
    outline: none;
}

.os-profile-save-continue-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 107, 236, 0.4);
}

.os-profile-save-continue-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Profile Impact Section */
@media (max-width: 768px) {
    .os-profile-impact-section {
        padding: 24px 0;
    }
    
    .os-profile-impact-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 20px;
    }
    
    .os-profile-impact-card {
        flex: 1;
        width: 100%;
    }
    
    .os-profile-impact-percentage {
        font-size: 36px;
    }
    
    .os-profile-badges-container {
        flex-direction: column;
    }
    
    .os-profile-badge {
        width: 100%;
        justify-content: center;
    }
}

