/* Strategy Page Styles */

/* Existing Strategies Section */
.existing-strategies-section {
    background: #f8f9fa;
    padding: 60px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.existing-strategies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.existing-strategies-header {
    text-align: center;
    margin-bottom: 40px;
}

.existing-strategies-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.existing-strategies-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.strategies-table-container {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.strategies-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.strategies-table thead {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.strategies-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.strategies-table th:last-child {
    text-align: center;
}

.strategies-table th.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.strategies-table th.sortable:hover {
    background: #f1f5f9;
}

.sort-icon {
    opacity: 0.3;
    margin-left: 8px;
    transition: opacity 0.2s ease;
}

.strategies-table th.sortable:hover .sort-icon {
    opacity: 0.6;
}

.strategies-table th.sortable.sorted .sort-icon {
    opacity: 1;
}

.strategies-table th.sortable.sorted.desc .sort-icon {
    transform: rotate(180deg);
}

.strategies-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.strategies-table tbody tr:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.strategies-table tbody tr:last-child {
    border-bottom: none;
}

.strategies-table td {
    padding: 16px 20px;
    vertical-align: top;
}

.strategy-name-cell {
    cursor: pointer;
    min-width: 250px;
}

.strategy-name-cell:hover .strategy-table-title {
    color: #000;
    text-decoration: underline;
}

.strategy-table-title[contenteditable="true"]:hover {
    background: #f8fafc;
    cursor: text;
}

.strategy-name-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.strategy-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.strategy-table-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
}

.strategy-table-title.editing {
    background: #f0f9ff;
    border: 2px solid #3b82f6;
    outline: none;
}

.strategy-table-title:focus {
    background: #f0f9ff;
    border: 2px solid #3b82f6;
    outline: none;
}

.strategy-table-description {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shared-badge {
    font-size: 12px;
    color: #059669;
    font-weight: 500;
    background: #D1FAE5;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.owner-info {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
    margin-left: 4px;
}

/* Removed status column styles */

.strategy-content-cell {
    width: 200px;
}

.content-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.content-stat {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid transparent;
}

.content-stat.pillar {
    background-color: #D1FAE5;
    color: #065F46;
    border-color: #A7F3D0;
}

.content-stat.magnet {
    background-color: #FEF3C7;
    color: #B45309;
    border-color: #FDE68A;
}

.content-stat.post {
    background-color: #E0F2FE;
    color: #0284C7;
    border-color: #BAE6FD;
}

.content-stat.email {
    background-color: #EDE9FE;
    color: #5B21B6;
    border-color: #DDD6FE;
}

.content-stat.empty {
    background-color: #f3f4f6;
    color: #6b7280;
    border-color: #e5e7eb;
}

.strategy-time-cell {
    width: 120px;
    text-align: center;
}

.time-ago {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.strategy-actions-cell {
    width: 100px;
    text-align: center;
}

.table-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.table-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f9fafb;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.table-action-btn:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.table-action-btn.rename:hover {
    background: #f0f9ff;
    color: #1e40af;
    border-color: #3b82f6;
}

.table-action-btn.edit:hover {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #3b82f6;
}

.table-action-btn.delete:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #ef4444;
}

.table-action-btn.share:hover {
    background: #ecfdf5;
    color: #059669;
    border-color: #10b981;
}

.empty-strategies-row {
    background: none !important;
}

.empty-strategies-cell {
    padding: 60px 20px !important;
    text-align: center;
    border: none !important;
}

.loading-strategies-row {
    background: none !important;
}

.loading-strategies-cell {
    padding: 40px 20px !important;
    text-align: center;
    border: none !important;
}

.loading-strategies-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6b7280;
    font-size: 14px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.strategies-actions {
    text-align: center;
}

.create-new-strategy-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.create-new-strategy-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.empty-strategies-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    grid-column: 1 / -1; /* Span full width of grid */
    max-width: 500px;
    margin: 0 auto;
}

.empty-strategies-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.empty-strategies-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.empty-strategies-message p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.empty-strategies-message .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.empty-strategies-message .action-btn.primary {
    background: #000;
    color: white;
}

.empty-strategies-message .action-btn.primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Mobile responsive for strategies section */
@media (max-width: 768px) {
    .existing-strategies-section {
        padding: 40px 16px;
    }

    .existing-strategies-header h2 {
        font-size: 24px;
    }

    .strategies-table-container {
        border-radius: 12px;
        overflow-x: auto;
    }

    .strategies-table {
        min-width: 600px; /* Ensure table doesn't get too cramped */
    }

    .strategies-table th,
    .strategies-table td {
        padding: 12px 16px;
    }

    .strategies-table th {
        font-size: 12px;
    }

    .strategy-table-title {
        font-size: 15px;
    }

    .strategy-table-description {
        font-size: 12px;
        -webkit-line-clamp: 1; /* Show only 1 line on mobile */
        line-clamp: 1;
    }

    .content-stats {
        gap: 2px;
    }

    .content-stat {
        font-size: 11px;
        padding: 1px 6px;
    }

    /* Removed status column mobile styles */

    .time-ago {
        font-size: 12px;
    }

    .table-action-btn {
        width: 28px;
        height: 28px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .strategies-table {
        min-width: 500px;
    }

    .strategy-name-cell {
        min-width: 180px;
    }

    .strategy-content-cell {
        width: 150px;
    }

    .strategy-time-cell {
        width: 80px;
    }

    .strategy-actions-cell {
        width: 80px;
    }
}

.strategy-hero {
    background: linear-gradient(135deg, #f9f1ea 0%, #f0e6d8 100%);
    padding: 80px 24px 60px;
    text-align: center;
}

.strategy-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.strategy-hero-content {
    text-align: left;
}

.strategy-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.strategy-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.strategy-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.strategy-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.benefit-icon {
    font-size: 20px;
}

.benefit-item span {
    font-weight: 500;
    color: #333;
}

.strategy-start-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.strategy-start-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.strategy-hero-visual {
    display: flex;
    justify-content: center;
}

.strategy-flow-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.flow-icon {
    font-size: 32px;
    background: #f9f1ea;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.flow-arrow {
    font-size: 20px;
    color: #666;
}

/* Strategy Builder */
.strategy-builder {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Strategy Navigation */
.strategy-nav {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 10;
}

.back-to-hero-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1f2937;
}

.back-to-hero-btn svg {
    transition: transform 0.2s ease;
}

.back-to-hero-btn:hover svg {
    transform: translateX(-2px);
}

/* Prefetch Loading Indicator */
#prefetch-loading {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    z-index: 10;
}

.prefetch-loading-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.prefetch-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid #e5e5e5;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: prefetch-spin 1s linear infinite;
}

@keyframes prefetch-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Prefetch Success Indicator */
#prefetch-success {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(0, 255, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    z-index: 10;
    animation: prefetch-success-fade 0.3s ease;
}

.prefetch-success-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
}

.prefetch-checkmark {
    width: 12px;
    height: 12px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
}

@keyframes prefetch-success-fade {
    0% { opacity: 0; transform: translateY(-50%) translateX(20px); }
    100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* Progress Header */
.strategy-progress {
    margin-bottom: 40px;
    position: relative;
    margin-left: 0px; /* Make room for the back button */
    margin-right: 0px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #000;
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.progress-bar {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #000;
    width: 0%;
    transition: width 0.3s ease;
}

/* Step Content */
.strategy-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.strategy-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.step-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* LinkedIn Import */
.linkedin-import {
    margin-bottom: 40px;
}

.import-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.import-option {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.import-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.option-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.option-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.option-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.linkedin-input-group {
    display: flex;
    gap: 12px;
}

.linkedin-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
}

.linkedin-input:focus {
    outline: none;
    border-color: #000;
}

.import-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.import-btn:hover {
    background: #333;
}

.import-btn:disabled {
    background: #e5e5e5;
    cursor: not-allowed;
}

.manual-btn {
    background: white;
    color: #000;
    border: 1px solid #e5e5e5;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.manual-btn:hover {
    background: #f9f9f9;
    border-color: #000;
}

.import-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
    height: 20px;
}

.import-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

.import-divider span {
    background: white;
    padding: 4px 12px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

/* LinkedIn Profile Confirmation Section */
.linkedin-confirmation {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 16px;
}

.confirmation-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.confirmation-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.confirmation-header p {
    color: #666;
    font-size: 13px;
}

.confirmation-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 16px;
}

.confirmation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.confirmation-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.confirmation-avatar img.loaded {
    opacity: 1;
}

.confirmation-avatar {
    position: relative;
}

.avatar-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.avatar-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.confirmation-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #000;
}

.confirmation-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.confirmation-url {
    font-size: 11px;
}

.linkedin-url-link {
    color: #0077b5;
    text-decoration: none;
    display: inline-block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.linkedin-url-link:hover {
    text-decoration: underline;
}

.confirmation-actions {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.confirmation-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

.confirmation-btn.primary {
    background: #000;
    color: white;
}

.confirmation-btn.primary:hover {
    background: #333;
}

.confirmation-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

.confirmation-btn.secondary:hover {
    background: #e0e0e0;
}

.confirmation-btn.tertiary {
    background: white;
    color: #666;
    border: 1px solid #e5e5e5;
}

.confirmation-btn.tertiary:hover {
    background: #f9f9f9;
    border-color: #000;
}

/* Import Preview */
.import-preview {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    margin-bottom: 16px;
}

.preview-header h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #000;
}

.profile-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.profile-stats {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #6b7280;
}

.profile-stats span {
    font-size: 11px;
    color: #6b7280;
}

/* Audience Form */
.audience-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.form-section {
    margin-bottom: 32px;
}

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

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.form-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
}

.challenge-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.size-option,
.challenge-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
}

.size-option.button-card,
.challenge-option.button-card {
    display: block;
    padding: 0;
    margin-bottom: 0;
}

.size-option.button-card input[type="checkbox"],
.challenge-option.button-card input[type="checkbox"] {
    display: none;
}

.size-option.button-card .option-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 16px 18px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: white;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
    height: 70px;
    box-sizing: border-box;
    line-height: 0.9;
}

.challenge-option.button-card .option-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: white;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
    height: 70px;
    line-height: 1.4;
    box-sizing: border-box;
    flex-direction: column;
}

.size-option.button-card:hover .option-label {
    border-color: #000;
    background: #f9f9f9;
}

.challenge-option.button-card:hover .option-label {
    border-color: #000;
    background: #f9f9f9;
}

.size-option.button-card input[type="checkbox"]:checked + .option-label {
    border-color: #000;
    background: #000;
    color: white;
}

.challenge-option.button-card input[type="checkbox"]:checked + .option-label {
    border-color: #000;
    background: #000;
    color: white;
}

.size-option.button-card input[type="checkbox"]:checked + .option-label strong,
.challenge-option.button-card input[type="checkbox"]:checked + .option-label strong {
    color: white;
}

.size-option.button-card input[type="checkbox"]:checked + .option-label small,
.challenge-option.button-card input[type="checkbox"]:checked + .option-label small {
    color: rgba(255, 255, 255, 0.8);
}

.size-option input[type="radio"],
.challenge-option:not(.button-card) input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.option-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.option-label strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.option-label small {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}

.industry-input {
    position: relative;
    margin-top: 8px;
}

.selected-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 24px;
}

/* Reduce spacing when no industries are selected */
.selected-industries:empty {
    margin-bottom: 0;
    min-height: 0;
}

/* Decision Maker Role Input Styles */
.decision-maker-input {
    position: relative;
    margin-top: 8px;
}

.selected-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 24px;
}

/* Reduce spacing when no roles are selected */
.selected-roles:empty {
    margin-bottom: 0;
    min-height: 0;
}

.role-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #000;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.role-tag .remove-role {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.role-tag .remove-role:hover {
    background: rgba(255, 255, 255, 0.3);
}

.role-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s ease;
}

.role-field:focus {
    outline: none;
    border-color: #000;
}

.role-field::placeholder {
    color: #999;
    font-size: 14px;
}

.role-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.role-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.role-suggestion-item:hover {
    background: #f9f9f9;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #000;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.industry-tag .remove-tag {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    margin-left: 4px;
}

.industry-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

.industry-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s ease;
}

.industry-field:focus {
    outline: none;
    border-color: #000;
}

.industry-field::placeholder {
    color: #999;
    font-size: 14px;
}

.industry-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background: #f9f9f9;
}

/* Generation Process */
.generation-process {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.process-steps {
    margin-bottom: 32px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step.active {
    opacity: 1;
}

.process-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.process-content p {
    font-size: 14px;
    color: #666;
}

.process-status {
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.process-step.active .process-status {
    color: #000;
}

/* Canvas Navigation */
.canvas-navigation {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #e1e5e9;
    position: sticky;
    top: 72px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.back-to-builder-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.back-to-builder-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.strategy-canvas-container {
    min-height: calc(100vh - 200px);
    background: #f8f9fa;
}

/* Strategy Canvas Layout */
.strategy-canvas {
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
}

/* Canvas Header */
.strategy-canvas-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 12px;
    /*border: 1px solid #e1e5e9;*/
}

.canvas-celebration {
    margin-bottom: 40px;
}

.celebration-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.strategy-canvas-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.strategy-canvas-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.canvas-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Canvas Sections */
.canvas-section {
    margin-bottom: 80px;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #e1e5e9;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.canvas-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Canvas Flow Lines */
.canvas-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #e1e5e9);
}

.canvas-section:first-child::before {
    display: none;
}

/* Canvas Grid Background */
.strategy-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

/* Component Handles for Movable Sections */
.canvas-section::after {
    content: '⋮⋮';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 16px;
    color: #999;
    cursor: grab;
    opacity: 0;
    transition: opacity 0.2s ease;
    user-select: none;
}

.canvas-section:hover::after {
    opacity: 1;
}

.canvas-section:active::after {
    cursor: grabbing;
}

/* Canvas Navigation Dots */
.canvas-nav-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.canvas-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.canvas-nav-dot:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
}

.canvas-nav-dot.active {
    background: #000;
    border-color: #000;
    transform: scale(1.3);
}

.canvas-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Strategy Overview Section */
.strategy-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.overview-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.overview-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.overview-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.overview-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overview-item {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

/* Content Pillars Section */
.content-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pillar-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.pillar-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    padding-top: 8px;
}

.pillar-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pillar-subfacets {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e1e5e9;
}

.pillar-subfacets h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.pillar-subfacets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-subfacets li {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.pillar-subfacets li:before {
    content: "•";
    color: #6366f1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Top of Funnel Section */
.lead-magnets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.magnet-showcase {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e1e5e9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.magnet-header {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.magnet-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magnet-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.magnet-description {
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
}

.magnet-pillar {
    font-size: 12px;
    color: #6366f1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.magnet-details {
    padding: 0 24px 24px 24px;
}

.magnet-details h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 16px 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.magnet-problem p,
.magnet-why-fit p {
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.magnet-delivers ul,
.magnet-method ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.magnet-delivers li,
.magnet-method li {
    color: #555;
    line-height: 1.5;
    margin-bottom: 6px;
    font-size: 14px;
    position: relative;
}

.magnet-delivers li:before,
.magnet-method li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: -20px;
    top: 0;
}

.magnet-description p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.magnet-promotion {
    padding: 24px;
}

.magnet-promotion h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

/* Middle of Funnel Section */
.email-sequence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.email-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.email-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.email-card-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-number {
    font-size: 14px;
    font-weight: 600;
}

.email-type {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
}

.email-subject-line {
    padding: 16px 20px 12px 20px;
    background: transparent;
    border-bottom: none;
}

.email-preview-content {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    line-height: 1.6;
    color: #333;
}

.email-timing {
    padding: 16px 20px;
    background: #f0f8ff;
    border-top: 1px solid #e1e5e9;
    text-align: center;
}

.timing-badge {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Next Steps Section */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.next-step-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.next-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.next-step-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.next-step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Canvas */
@media (max-width: 768px) {
    .strategy-canvas {
        padding: 16px;
        margin: 0;
        border-radius: 0;
    }

    .strategy-canvas-header {
        padding: 24px 16px;
        margin-bottom: 40px;
    }

    .strategy-canvas-header h2 {
        font-size: 28px;
    }

    .canvas-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .canvas-section {
        margin-bottom: 40px;
        padding: 24px 16px;
    }

    .canvas-section h3 {
        font-size: 24px;
    }

    .content-pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .email-sequence-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lead-magnets-grid {
        gap: 24px;
    }

    .next-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .next-step-card {
        padding: 16px;
    }

    .magnet-header {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .magnet-description,
    .magnet-promotion {
        padding: 16px;
    }
}

/* Canvas Actions */
.canvas-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e1e5e9;
}

.download-strategy-btn,
.book-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.download-strategy-btn {
    background: #000;
    color: white;
    border: 1px solid #000;
}

.download-strategy-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.book-call-btn {
    background: white;
    color: #000;
    border: 1px solid #e1e5e9;
}

.book-call-btn:hover {
    background: #f8f9fa;
    border-color: #000;
    transform: translateY(-2px);
}

/* No Data Message */
.no-data-message {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-data-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.no-data-message h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.no-data-message p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.create-strategy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.create-strategy-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Mobile Responsive for Canvas Navigation */
@media (max-width: 768px) {
    .canvas-navigation {
        padding: 12px 16px;
        top: 60px;
    }

    .back-to-builder-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .canvas-actions {
        flex-direction: column;
        gap: 12px;
    }

    .download-strategy-btn,
    .book-call-btn {
        width: 100%;
        justify-content: center;
    }

    .no-data-message {
        padding: 40px 20px;
    }

    .no-data-icon {
        font-size: 48px;
    }

    .no-data-message h2 {
        font-size: 24px;
    }
}

/* Strategy Preview (legacy - keeping for compatibility) */
.strategy-preview {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
}

.preview-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.preview-header p {
    color: #666;
    margin-bottom: 24px;
}

.strategy-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.result-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.result-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.result-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

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

.result-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.post-count,
.email-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Implementation Section */
.implementation-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.value-summary {
    margin-bottom: 40px;
}

.value-summary h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.value-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
}

.value-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.value-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.value-content span {
    font-size: 14px;
    color: #666;
}

.implementation-path h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
    text-align: center;
}

.path-option {
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.path-option:hover {
    border-color: #000;
}

.premium-path {
    border-color: #000;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
}

.premium-path .path-header {
    color: white;
}

.path-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.path-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.path-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.path-content p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.path-price {
    margin-left: auto;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.premium-path .path-price {
    color: white;
}

.path-features {
    margin-bottom: 20px;
}

.feature-item {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.path-cta {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.path-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.self-service-path .path-cta {
    background: white;
    color: #000;
    border: 1px solid #e5e5e5;
}

.self-service-path .path-cta:hover {
    background: #f9f9f9;
}

.implementation-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.implementation-cta h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.implementation-cta p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta {
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.primary-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.secondary-cta {
    background: white;
    color: #000;
    border: 1px solid #e5e5e5;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-cta:hover {
    background: #f9f9f9;
    border-color: #000;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.step-actions-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.back-btn {
    background: white;
    color: #000;
    border: 1px solid #e5e5e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: #f9f9f9;
    border-color: #000;
}

.next-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.next-btn:disabled {
    background: #e5e5e5;
    cursor: not-allowed;
    transform: none;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .strategy-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .strategy-hero-content {
        text-align: center;
    }

    .strategy-title {
        font-size: 36px;
    }

    .strategy-flow-preview {
        padding: 24px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .progress-steps {
        flex-direction: column;
        gap: 16px;
    }

    /* Mobile adjustments for back button positioning */
    .strategy-nav {
        position: static;
        margin-bottom: 20px;
        left: auto;
        top: auto;
    }

    .strategy-progress {
        margin-left: 0;
        margin-right: 0;
    }

    .back-to-hero-btn {
        font-size: 12px;
        padding: 6px 10px;
    }

    .step-actions {
        flex-direction: column;
        gap: 12px;
    }

    .step-actions-right {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .step-actions-right .next-btn {
        width: 100%;
    }

    .linkedin-input-group {
        flex-direction: column;
    }

    .value-items {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
    }

    /* Login Modal Mobile Styles */
    .login-modal-overlay {
        padding: 20px;
        align-items: flex-start;
        padding-top: 60px;
    }

    .login-modal {
        width: 100%;
        max-width: none;
        border-radius: 12px;
        max-height: calc(100vh - 80px);
    }

    .login-modal-header {
        padding: 20px 20px 0;
    }

    .login-modal-content {
        padding: 20px;
    }

    .login-modal-actions {
        flex-direction: column;
        gap: 16px;
    }

    .login-btn {
        width: 100%;
        justify-content: center;
    }
}

/* LinkedIn Confirmation Modal */
.linkedin-confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.linkedin-confirm-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.linkedin-confirm-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linkedin-confirm-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.linkedin-confirm-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.linkedin-confirm-close:hover {
    background: #f9f9f9;
    color: #000;
}

.linkedin-confirm-content {
    padding: 24px;
}

.linkedin-confirm-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 20px;
}

.linkedin-confirm-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.linkedin-confirm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkedin-confirm-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.linkedin-confirm-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.linkedin-confirm-url {
    font-size: 12px;
    color: #0077b5;
    text-decoration: none;
    display: inline-block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.linkedin-confirm-url:hover {
    text-decoration: underline;
}

.linkedin-confirm-question {
    text-align: center;
    margin-bottom: 24px;
}

.linkedin-confirm-question p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.linkedin-confirm-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.linkedin-confirm-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 14px;
}

.linkedin-confirm-yes {
    background: #000;
    color: white;
}

.linkedin-confirm-yes:hover {
    background: #333;
}

.linkedin-confirm-edit {
    background: #f0f0f0;
    color: #333;
}

.linkedin-confirm-edit:hover {
    background: #e0e0e0;
}

.linkedin-confirm-skip {
    background: white;
    color: #666;
    border: 1px solid #e5e5e5;
}

.linkedin-confirm-skip:hover {
    background: #f9f9f9;
}

/* Auto Import Notifications */
.auto-import-loading,
.auto-import-success,
.auto-import-error {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    min-width: 300px;
}

/* Import Notifications */
.import-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    min-width: 300px;
}

.import-notification-content {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
}

.import-success .import-notification-content {
    border-left: 4px solid #10b981;
}

.import-error .import-notification-content {
    border-left: 4px solid #ef4444;
}

.auto-import-loading-content,
.auto-import-success-content,
.auto-import-error-content {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
}

.auto-import-success-content {
    border-left: 4px solid #10b981;
}

.auto-import-error-content {
    border-left: 4px solid #ef4444;
}

.auto-import-spinner,
.import-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.auto-import-checkmark,
.import-checkmark {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
}

.auto-import-error-icon,
.import-error-icon {
    font-size: 20px;
}

.auto-import-loading-content p,
.auto-import-success-content p,
.auto-import-error-content p,
.import-notification-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.strategy-step.active {
    animation: fadeInUp 0.3s ease;
}

/* LinkedIn Setup Prompt */
.linkedin-setup-prompt {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2500;
    min-width: 300px;
}

.linkedin-setup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #0077b5;
    animation: slideInRight 0.3s ease;
}

.linkedin-setup-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.linkedin-setup-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.linkedin-setup-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.linkedin-setup-actions {
    display: flex;
    justify-content: flex-end;
}

.linkedin-setup-skip {
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.linkedin-setup-skip:hover {
    background: #e0e0e0;
    color: #333;
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .linkedin-confirm-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .linkedin-confirm-profile {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .linkedin-confirm-info {
        text-align: center;
    }

    .linkedin-confirm-actions {
        flex-direction: column;
    }

    .auto-import-loading,
    .auto-import-success,
    .auto-import-error,
    .linkedin-setup-prompt {
        left: 20px;
        right: 20px;
        min-width: auto;
    }

    .linkedin-setup-content {
        padding: 16px;
    }
}

/* Content Preview Styles */
.content-previews-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.content-previews-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.content-preview-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e9ecef;
}

.preview-tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.preview-tab:hover {
    background: #f0f0f0;
    color: #333;
}

.preview-tab.active {
    background: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.content-preview-content {
    position: relative;
}

.preview-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-content.active {
    display: block;
    opacity: 1;
}

.content-preview-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.content-preview-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.content-preview-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.content-preview-text {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    white-space: pre-line;
}

.email-subject {
    font-weight: 600;
    color: #007bff;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Enhanced Content Pillar and Magnet Styles */
.content-pillar-item,
.lead-magnet-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.content-pillar-item:hover,
.lead-magnet-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.pillar-title,
.magnet-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.pillar-description,
.magnet-preview {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    white-space: pre-line;
}

/* Company Info Display */
.company-info-display {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #b8d4f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.company-icon {
    font-size: 24px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
}

.company-info-text {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Enhanced Industry Input */
.industry-field {
    position: relative;
}

.industry-field:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Mobile Responsive for Content Previews */
@media (max-width: 768px) {
    .content-previews-section {
        padding: 20px;
        margin-top: 20px;
    }

    .content-preview-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .preview-tab {
        text-align: center;
        padding: 10px 16px;
    }

    .content-preview-item {
        padding: 16px;
    }

    .content-preview-text {
        font-size: 13px;
    }

    .company-info-display {
        padding: 16px;
        margin-bottom: 20px;
    }

    .company-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .company-name {
        font-size: 16px;
    }
}

/* LinkedIn Post Preview Styles */
.linkedin-post-preview {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 600px;
    transition: all 0.2s ease;
}

.linkedin-post-preview:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.linkedin-post-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.linkedin-profile-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.linkedin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e1e5e9;
}

.linkedin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkedin-user-details {
    flex: 1;
    min-width: 0;
}

.linkedin-name {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-bottom: 2px;
    text-decoration: none;
    display: block;
}

.linkedin-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
    line-height: 1.3;
}

.linkedin-timestamp {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.linkedin-globe {
    font-size: 10px;
}

.linkedin-more-options {
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.linkedin-more-options:hover {
    background-color: #f0f2f5;
}

.linkedin-post-content {
    margin-bottom: 12px;
}

.linkedin-post-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    word-wrap: break-word;
}

.linkedin-post-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 8px;
}

.linkedin-reactions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.linkedin-reaction-emoji {
    font-size: 10px;
}

.linkedin-reaction-count {
    font-weight: 500;
}

.linkedin-engagement-count {
    font-size: 12px;
    color: #666;
}

.linkedin-post-actions {
    display: flex;
    justify-content: space-around;
    padding: 4px 0;
}

.linkedin-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.linkedin-action-btn:hover {
    background-color: #f0f2f5;
}

.linkedin-action-icon {
    font-size: 16px;
}

.linkedin-action-text {
    font-size: 13px;
}

/* Email Preview Styles */
.email-preview {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 600px;
    transition: all 0.2s ease;
}

.email-preview:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.email-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e5e9;
}

.email-sender-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.email-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e1e5e9;
}

.email-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.email-sender-details {
    flex: 1;
    min-width: 0;
}

.email-sender-name {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-bottom: 2px;
    text-decoration: none;
    display: block;
}

.email-sender-title {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.email-timestamp {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    margin-left: 12px;
}

.email-subject-line {
    padding: 16px 20px 12px 20px;
    background: transparent;
    border-bottom: none;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-bottom: 0;
}

.email-subject-line strong {
    color: #000;
    font-weight: 600;
}

.email-preview-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    word-wrap: break-word;
    padding: 0 20px;
}

.email-signature {
    border-top: 1px solid #e9ecef;
    padding: 16px 20px;
    margin-bottom: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 16px 20px 16px 20px;
}

.signature-content {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.signature-content strong {
    color: #000;
    font-weight: 600;
}

.signature-content p {
    margin: 8px 0;
}

.email-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.email-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #e1e5e9;
    background: white;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.email-action-btn:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.email-reply:hover {
    background-color: #e3f2fd;
    border-color: #2196f3;
    color: #2196f3;
}

.email-forward:hover {
    background-color: #f3e5f5;
    border-color: #9c27b0;
    color: #9c27b0;
}

.email-archive:hover {
    background-color: #e8f5e8;
    border-color: #4caf50;
    color: #4caf50;
}

.email-star:hover {
    background-color: #fff3e0;
    border-color: #ff9800;
    color: #ff9800;
}

.email-action-icon {
    font-size: 14px;
}

/* Mobile Responsive for LinkedIn and Email Previews */
@media (max-width: 768px) {
    .linkedin-post-preview,
    .email-preview {
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
    }

    .linkedin-post-header,
    .email-header {
        flex-direction: column;
        gap: 8px;
    }

    .linkedin-user-details,
    .email-sender-details {
        margin-left: 0;
    }

    .linkedin-timestamp,
    .email-timestamp {
        margin-left: 0;
        margin-top: 4px;
    }

    .linkedin-post-actions {
        flex-wrap: wrap;
        gap: 4px;
    }

    .linkedin-action-btn {
        flex: 1;
        min-width: 80px;
        justify-content: center;
        padding: 6px 8px;
    }

    .email-actions {
        justify-content: center;
    }

    .email-action-btn {
        flex: 1;
        min-width: 70px;
        justify-content: center;
    }
}

/* Company Selection Styles */
.company-import-section {
    margin-bottom: 24px;
}

.company-import-section .section-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-import-section .section-title::before {
    content: "2.";
    color: #6b7280;
    font-weight: 500;
}

.company-selection {
    margin-top: 12px;
}

.company-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    color: #374151;
    transition: border-color 0.2s ease;
}

.company-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.company-select option {
    padding: 6px;
}

.selected-company-info {
    margin-top: 12px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.company-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.company-header {
    flex: 1;
}

.company-card h4 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.company-details p {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
}

.default-badge {
    display: inline-block;
    padding: 1px 6px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 500;
    border-radius: 8px;
    margin-left: 6px;
}

.company-input-group {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 8px;
}

.company-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.company-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.company-input:invalid {
    border-color: #ef4444;
}

/* Compact import options */
.import-option.compact {
    padding: 16px;
    border-radius: 8px;
}

.import-option.compact .option-content h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.import-option.compact .option-content p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #6b7280;
}

.import-option.compact .form-help {
    font-size: 12px;
    margin-top: 6px;
    color: #9ca3af;
}

/* Mobile responsive for company selection */
@media (max-width: 768px) {
    .company-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .company-input-group {
        flex-direction: column;
    }

    .company-input {
        width: 100%;
    }

    .company-import-section .import-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Strategy Progress Tracker Styles */
.strategy-progress-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.strategy-progress-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.strategy-progress-header p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.strategy-progress-fullwidth {
    width: 100%;
}

.progress-step-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 16px;
    width: 100%;
}

.progress-step-item:last-child {
    border-bottom: none;
}

.progress-step-item.active {
    background: transparent;
}

.progress-step-item:hover {
    background: transparent;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    flex-shrink: 0;
}

.progress-step-item.active .step-indicator {
    background: #3b82f6;
}

.step-number {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
}

.progress-step-item.active .step-number {
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.step-status {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.step-result {
    flex-shrink: 0;
    text-align: right;
}

.status-waiting {
    color: #64748b;
    font-size: 14px;
}

.status-in-progress {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-in-progress::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.status-complete {
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-drafted {
    color: #059669;
    font-size: 14px;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile styles for strategy progress tracker */
@media (max-width: 768px) {
    .strategy-progress-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .strategy-progress-header h3 {
        font-size: 20px;
    }

    .strategy-progress-header p {
        font-size: 14px;
    }

    .progress-step-item {
        padding: 16px 0;
        gap: 12px;
    }

    .step-indicator {
        width: 36px;
        height: 36px;
    }

    .step-number {
        font-size: 14px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-status {
        font-size: 13px;
    }

    .status-waiting,
    .status-in-progress,
    .status-complete,
    .status-drafted {
        font-size: 13px;
    }
}

/* Copy notification styles for strategy canvas */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.copy-notification-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-checkmark {
    font-size: 16px;
    font-weight: bold;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* LinkedIn posts section styles */
.linkedin-posts-section {
    margin-bottom: 2rem;
}

.linkedin-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.linkedin-post-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.post-number {
    background: #3b82f6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.post-meta {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.post-content {
    margin-bottom: 1rem;
}

.linkedin-post-text {
    line-height: 1.6;
    color: #1e293b;
    white-space: pre-wrap;
    font-size: 14px;
}

.post-actions {
    display: flex;
    justify-content: flex-end;
}

.copy-post-btn {
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-post-btn:hover {
    background: #e2e8f0;
    color: #334155;
}

/* Mobile responsiveness for LinkedIn posts */
@media (max-width: 768px) {
    .linkedin-posts-grid {
        gap: 1rem;
    }

    .linkedin-post-card {
        padding: 1rem;
    }

    .post-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .linkedin-post-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .copy-post-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
