/**
 * CNA Reciprocity Tool - CSS
 * Version 3.0 - Mobile-first responsive design with email unlock functionality
 */

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

.cna-reciprocity-tool-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.cna-reciprocity-tool-container * {
    box-sizing: border-box;
}

/* ==========================================================================
   TOOL CONTAINER
   ========================================================================== */

.tool-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 768px) {
    .tool-container {
        padding: 20px;
    }
}

/* ==========================================================================
   TOOL HEADER
   ========================================================================== */

.tool-header {
    text-align: center;
    margin-bottom: 30px;
}

.tool-header h2 {
    color: #2c5aa0;
    font-size: 24px;
    margin: 0 0 10px 0;
}

@media (min-width: 768px) {
    .tool-header h2 {
        font-size: 32px;
    }
}

.tool-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (min-width: 768px) {
    .tool-header p {
        font-size: 16px;
    }
}

/* ==========================================================================
   PROGRESS BAR
   ========================================================================== */

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0 0%, #4a7bc8 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* ==========================================================================
   STEPS
   ========================================================================== */

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.step-header strong {
    color: #2c5aa0;
    font-size: 16px;
}

@media (min-width: 768px) {
    .step-header strong {
        font-size: 18px;
    }
}

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.state-dropdown {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.state-dropdown:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* ==========================================================================
   INTENT BUTTONS
   ========================================================================== */

.intent-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .intent-buttons {
        flex-direction: row;
        gap: 20px;
    }
}

.intent-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    flex: 1;
}

.intent-btn:hover {
    border-color: #2c5aa0;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intent-btn.selected {
    border-color: #2c5aa0;
    background: #e3f2fd;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.intent-text {
    flex: 1;
}

.intent-title {
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 4px;
    font-size: 15px;
}

@media (min-width: 768px) {
    .intent-title {
        font-size: 16px;
    }
}

.intent-desc {
    color: #666;
    font-size: 13px;
}

@media (min-width: 768px) {
    .intent-desc {
        font-size: 14px;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #234a85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    min-width: auto;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-link {
    background: none;
    border: none;
    color: #2c5aa0;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    min-width: auto;
    font-size: 14px;
    font-weight: normal;
}

.btn-link:hover {
    color: #234a85;
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   PROCESSING ANIMATION
   ========================================================================== */

.processing {
    text-align: center;
    padding: 60px 20px;
}

.processing-animation {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing h3 {
    color: #2c5aa0;
    margin: 0 0 10px 0;
    font-size: 20px;
}

@media (min-width: 768px) {
    .processing h3 {
        font-size: 24px;
    }
}

.processing p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .processing p {
        font-size: 16px;
    }
}

/* ==========================================================================
   RESULTS DISPLAY
   ========================================================================== */

.results {
    animation: fadeIn 0.4s ease;
}

.result-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.result-header h3 {
    color: #2c5aa0;
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .result-header h3 {
        font-size: 24px;
    }
}

.result-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

@media (max-width: 767px) {
    .result-header-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

.social-proof-header {
    color: #666;
    font-size: 12px;
    font-style: italic;
}

@media (min-width: 768px) {
    .social-proof-header {
        font-size: 13px;
    }
}

.result-header-buttons {
    display: flex;
    gap: 8px;
}

@media (max-width: 767px) {
    .result-header-buttons {
        align-self: flex-end;
    }
}

.result-header .btn {
    margin-left: 0;
}

/* ==========================================================================
   RESULT SECTIONS
   ========================================================================== */

.result-section {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.result-section:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header {
    background: #f8f9fa;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
}

.section-header h4 {
    margin: 0;
    color: #2c5aa0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .section-header h4 {
        font-size: 18px;
    }
}

.section-content {
    padding: 15px;
}

.lock-icon {
    font-size: 18px;
    color: #999;
}

/* ==========================================================================
   OVERVIEW SECTION
   ========================================================================== */

.overview-section {
    border: 2px solid #2c5aa0;
    background: #f8f9ff;
}

.summary-header {
    margin: 0 0 10px 0;
    color: #2c5aa0;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .summary-header {
        font-size: 20px;
    }
}

.transfer-summary {
    margin-bottom: 15px;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.transfer-summary p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .transfer-summary p {
        font-size: 15px;
    }
}

.scroll-hint {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 12px 0 0 0;
    font-style: italic;
}

.scroll-hint a {
    color: #2c5aa0;
    text-decoration: none;
    cursor: pointer;
}

.scroll-hint a:hover {
    text-decoration: underline;
}

.warning-inline {
    margin-top: 15px;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.warning-inline strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.warning-inline p {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    font-weight: normal;
}

@media (min-width: 768px) {
    .warning-inline p {
        font-size: 14px;
    }
}

.warning-inline p:last-child {
    margin-bottom: 0;
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 15px 0;
    text-align: center;
}

.disclaimer-section p {
    margin: 5px 0;
    color: #666;
}

.disclaimer-section a {
    color: #2c5aa0;
    text-decoration: none;
}

.disclaimer-section a:hover {
    text-decoration: underline;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

@media (min-width: 600px) {
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    background: white;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 12px;
    }
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #2c5aa0;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 20px;
    }
}

.cost-note {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    font-weight: normal;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cost-note {
        font-size: 12px;
    }
}

.top-requirements {
    background: white;
    padding: 12px;
    border-radius: 6px;
}

.top-requirements strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
}

.top-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.top-requirements li {
    margin-bottom: 5px;
    font-size: 13px;
}

@media (min-width: 768px) {
    .top-requirements li {
        font-size: 14px;
    }
}

.unlock-teaser {
    margin-top: 12px;
    padding: 10px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    font-size: 13px;
    color: #856404;
}

/* ==========================================================================
   WARNING SECTION
   ========================================================================== */

.warning-section {
    border-color: #ffc107;
    background: #fff9e6;
    margin-bottom: 20px;
}

.warning-content p {
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-size: 13px;
    font-weight: 600;
    color: #856404;
}

@media (min-width: 768px) {
    .warning-content p {
        font-size: 14px;
    }
}

.warning-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   LOCKED/UNLOCKED SECTIONS
   ========================================================================== */

.locked-section .locked-content {
    display: block;
}

.locked-section .unlocked-content {
    display: none;
}

.locked-message {
    color: #999;
    font-style: italic;
    margin: 0;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .locked-message {
        font-size: 15px;
    }
}

/* Remove locked styling when unlocked */
.result-section:not(.locked-section) .lock-icon {
    display: none;
}

.result-section:not(.locked-section) .locked-content {
    display: none;
}

.result-section:not(.locked-section) .unlocked-content {
    display: block;
}

/* ==========================================================================
   EMAIL CAPTURE SECTION
   ========================================================================== */

.email-capture-section {
    margin: 15px 0;
}

.email-capture {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(44, 90, 160, 0.2);
}

@media (min-width: 768px) {
    .email-capture {
        padding: 20px 25px;
    }
}

.email-capture h3 {
    margin: 0 0 6px 0;
    font-size: 17px;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .email-capture h3 {
        font-size: 20px;
    }
}

.email-capture p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.value-bullets {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 10px 8px 25px;
    border-radius: 5px;
    margin-bottom: 12px;
    margin-left: 0;
    line-height: 1.4;
    font-size: 11px;
    list-style: disc;
    list-style-position: inside;
}

@media (min-width: 768px) {
    .value-bullets {
        font-size: 14px;
        padding-left: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.value-bullets li {
    margin-bottom: 2px;
}

.email-form {
    margin-top: 10px;
}

.form-row {
    margin-bottom: 6px;
}

.form-row label {
    font-size: 14px;
}

@media (min-width: 768px) {
    .form-row label {
        font-size: 15px;
    }
}

.email-input {
    width: 100%;
    padding: 9px 11px;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-bottom: 6px;
    background: white;
    color: #333;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.email-input::placeholder {
    color: #999;
}

.experience-selection {
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 5px;
}

.experience-selection label:first-child {
    color: white;
    font-size: 14px;
}

@media (min-width: 768px) {
    .experience-selection label:first-child {
        font-size: 15px;
    }
}

.radio-label {
    display: block;
    margin: 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

@media (min-width: 768px) {
    .radio-label {
        font-size: 14px;
    }
}

.radio-label input[type="radio"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 10px 0;
    cursor: pointer;
    font-size: 11px;
}

@media (min-width: 768px) {
    .checkbox-label {
        font-size: 13px;
    }
}

.checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-email-submit {
    display: block;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 0;
    background: #1a4078 !important;
}

.btn-email-submit:hover {
    background: #153461 !important;
}

.email-capture .privacy-note {
    margin-top: 20px !important;
    margin-bottom: 0;
    font-size: 10px;
    opacity: 0.9;
    text-align: center;
}

@media (min-width: 768px) {
    .email-capture .privacy-note {
        font-size: 11px;
    }
}

.email-capture .privacy-note a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* ==========================================================================
   LOCKED SECTIONS PREVIEW
   ========================================================================== */

.locked-sections-preview {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (min-width: 600px) {
    .locked-sections-preview {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 8px;
    border-radius: 6px;
    text-align: center;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.preview-icon {
    font-size: 16px;
    opacity: 0.8;
}

.preview-text {
    font-size: 10px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .preview-text {
        font-size: 11px;
    }
}

/* ==========================================================================
   EMAIL SAVED COMPACT BUTTON
   ========================================================================== */

.email-saved-compact {
    margin: 20px 0;
    text-align: center;
}

/* ==========================================================================
   COST BREAKDOWN
   ========================================================================== */

.cost-breakdown-table {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-label {
    color: #666;
    font-size: 13px;
}

@media (min-width: 768px) {
    .cost-label {
        font-size: 14px;
    }
}

.cost-value {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 14px;
}

@media (min-width: 768px) {
    .cost-value {
        font-size: 15px;
    }
}

.cost-total {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid #2c5aa0;
    border-bottom: none;
}

.cost-total .cost-value {
    font-size: 16px;
    color: #2c5aa0;
}

@media (min-width: 768px) {
    .cost-total .cost-value {
        font-size: 18px;
    }
}

.cost-notes {
    margin-top: 12px;
    padding: 10px;
    background: #fff3cd;
    border-radius: 4px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .cost-notes {
        font-size: 13px;
    }
}

.cost-notes p {
    margin: 0;
    color: #856404;
}

.expedited-option {
    margin-top: 12px;
    padding: 12px;
    background: #e3f2fd;
    border-left: 3px solid #2c5aa0;
    border-radius: 4px;
}

.expedited-option h5 {
    margin: 0 0 6px 0;
    color: #2c5aa0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .expedited-option h5 {
        font-size: 15px;
    }
}

.expedited-option p {
    margin: 0;
    font-size: 12px;
}

@media (min-width: 768px) {
    .expedited-option p {
        font-size: 13px;
    }
}

/* ==========================================================================
   REQUIREMENTS CHECKLIST
   ========================================================================== */

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .requirements-list li {
        font-size: 14px;
    }
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li small {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 12px;
}

.additional-requirements {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.additional-requirements h5 {
    margin: 0 0 8px 0;
    color: #2c5aa0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .additional-requirements h5 {
        font-size: 15px;
    }
}

.additional-requirements p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .additional-requirements p {
        font-size: 14px;
    }
}

/* ==========================================================================
   APPLICATION PROCESS
   ========================================================================== */

.process-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.process-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-item h5 {
    margin: 0 0 8px 0;
    color: #2c5aa0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .process-item h5 {
        font-size: 15px;
    }
}

.process-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .process-item p {
        font-size: 14px;
    }
}

.process-item ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.process-item li {
    margin-bottom: 4px;
    font-size: 13px;
}

@media (min-width: 768px) {
    .process-item li {
        font-size: 14px;
    }
}

.process-managed {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #999;
}

/* ==========================================================================
   RESOURCES
   ========================================================================== */

.resource-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .resource-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.resource-btn {
    display: block;
    padding: 12px 15px;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13px;
}

@media (min-width: 768px) {
    .resource-btn {
        font-size: 14px;
    }
}

.resource-btn:hover {
    background: #234a85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    color: white;
}

.resource-btn:visited {
    color: white;
}

.resource-btn:active {
    color: white;
}

/* ==========================================================================
   CONTACT INFORMATION
   ========================================================================== */

.contact-info-block {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.contact-info-block p {
    margin: 8px 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .contact-info-block p {
        font-size: 15px;
    }
}

.contact-info-block a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SALARY COMPARISON - ACTIONABLE
   ========================================================================== */

.salary-comparison-actionable {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.salary-intro {
    margin: 0 0 12px 0;
    text-align: center;
    color: #2c5aa0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .salary-intro {
        font-size: 15px;
    }
}

.salary-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.salary-block {
    text-align: center;
}

.salary-label-sm {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .salary-label-sm {
        font-size: 12px;
    }
}

.salary-value-lg {
    font-size: 18px;
    font-weight: bold;
    color: #2c5aa0;
}

@media (min-width: 768px) {
    .salary-value-lg {
        font-size: 20px;
    }
}

.salary-arrow {
    font-size: 20px;
    color: #ccc;
}

.salary-difference-text {
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
}

@media (min-width: 768px) {
    .salary-difference-text {
        font-size: 14px;
    }
}

.salary-footnote {
    text-align: center;
    margin: 0;
    color: #999;
}

/* ==========================================================================
   FREE STATES GRID
   ========================================================================== */

.free-states-results {
    animation: fadeIn 0.4s ease;
}

.free-states-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 600px) {
    .free-states-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .free-states-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.free-state-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.free-state-card:hover {
    border-color: #2c5aa0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.free-state-card h4 {
    margin: 0 0 8px 0;
    color: #2c5aa0;
    font-size: 16px;
}

@media (min-width: 768px) {
    .free-state-card h4 {
        font-size: 18px;
    }
}

.free-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .free-badge {
        font-size: 13px;
    }
}

.state-summary {
    color: #666;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .state-summary {
        font-size: 12px;
    }
}

.state-stats {
    margin-bottom: 12px;
}

.state-stats .stat {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 9px;
}

@media (min-width: 768px) {
    .state-stats .stat {
        font-size: 10px;
    }
}

.state-stats .stat:last-child {
    border-bottom: none;
}

.state-stats .stat-label {
    color: #666;
    font-size: 9px;
}

@media (min-width: 768px) {
    .state-stats .stat-label {
        font-size: 10px;
    }
}

.state-stats .stat-value {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

@media (min-width: 768px) {
    .state-stats .stat-value {
        font-size: 14px;
    }
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 767px) {
    .tool-container {
        padding: 15px;
    }
    
    .result-section {
        border-radius: 8px;
    }
    
    .section-header {
        padding: 12px 15px;
    }
    
    .section-content {
        padding: 15px;
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

*:focus-visible {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .btn,
    .email-capture,
    .processing,
    .progress-bar,
    .lock-icon {
        display: none !important;
    }
    
    .locked-section .unlocked-content {
        display: block !important;
    }
    
    .locked-section .locked-content {
        display: none !important;
    }
    
    .result-section {
        page-break-inside: avoid;
    }
}

/* Container with border around stats + note */
.overview-stats-container {
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background-color: #ffffff;
}

/* Stats grid - no changes to layout */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;  /* Remove bottom margin since it's inside container */
}

/* Cost note - now inside the container */
.cost-note-below {
    margin-top: 16px;  /* Space from stats above */
    padding: 12px 16px;
    background-color: #f8f9fa;  /* Subtle grey background */
    border-radius: 6px;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.6;
}

.cost-note-below small {
    font-size: 13px;
}

.cost-note-below p {
    margin: 0;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
}

/* Simple Unlock CTA */
.unlock-cta-simple {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    text-align: center;
}

.unlock-cta-simple h4 {
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.unlock-cta-simple .lock-icon {
    font-size: 20px;
}

/* Simple Unlock CTA */
.unlock-cta-simple {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    text-align: center;
}

.unlock-cta-simple h4 {
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.unlock-cta-simple .lock-icon {
    font-size: 20px;
    margin-right: 6px;
}

.btn-unlock-simple {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-unlock-simple:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.btn-unlock-simple .arrow-down {
    display: inline-block;
    animation: bounce 2s infinite;
    font-size: 16px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .unlock-cta-simple h4 {
        font-size: 16px;
    }
    
    .btn-unlock-simple {
        padding: 10px 24px;
        font-size: 14px;
    }
}

