/* ===================================
   TheSecureNote - Share Feature Styles
   Premium Modern UI - No Emojis
   =================================== */

/* ===== Share Page Layout ===== */
.share-page-main {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(180deg, #f8faff 0%, #eef2ff 40%, var(--bg-secondary) 100%);
    position: relative;
}

.share-content {
    width: 100%;
    max-width: 720px;
    text-align: center;
}

/* ===== Share Hero ===== */
.share-hero {
    margin-bottom: var(--space-8);
}

.share-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 14px;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.share-badge svg {
    opacity: 0.9;
}

.share-hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.share-tagline {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-4);
}

.share-tagline .tl-1 {
    color: #2563eb;
}

.share-tagline .tl-2 {
    color: #7c3aed;
}

.share-tagline .tl-3 {
    color: #dc2626;
}

.share-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Share Editor ===== */
.share-editor-container {
    background: var(--bg-primary);
    border: 1.5px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 25px 50px -12px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.share-editor-container:focus-within {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.08),
        0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 25px 50px -12px rgba(37, 99, 235, 0.12);
}

.share-editor {
    width: 100%;
    min-height: 360px;
    padding: var(--space-6) var(--space-6);
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-primary);
    resize: none;
}

.share-editor:focus {
    outline: none;
}

.share-editor::placeholder {
    color: var(--text-tertiary);
}

.share-editor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #f1f5f9 100%);
    border-top: 1px solid var(--border-light);
}

.char-count {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.share-create-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 24px;
    background: var(--brand-primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.share-create-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.share-create-btn:active {
    transform: translateY(0);
}

.share-create-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== Trust Badges ===== */
.share-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-10);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--brand-primary-light);
    border-radius: 8px;
}

.trust-icon svg {
    color: var(--brand-primary);
}

/* ===== Settings Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    z-index: 1000;
    animation: fadeIn 0.2s ease-out;
}

.modal-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.settings-modal {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: var(--space-8);
    width: 100%;
    max-width: 440px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.25s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.modal-logo {
    height: 36px;
    width: auto;
}

.modal-header h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-label svg {
    color: var(--text-tertiary);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px var(--brand-primary-light);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

/* Password Input */
.password-wrapper {
    position: relative;
}

.password-wrapper .form-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.password-toggle:hover {
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

.form-error {
    color: var(--error);
    font-size: 0.8125rem;
    margin-top: var(--space-2);
    font-weight: 500;
}

/* Burn Option Toggle */
.burn-option {
    margin-bottom: var(--space-6);
}

.burn-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.burn-toggle:hover {
    background: var(--bg-tertiary);
}

.burn-toggle input {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--border-medium);
    border-radius: 12px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.burn-toggle input:checked+.toggle-switch {
    background: #f97316;
}

.burn-toggle input:checked+.toggle-switch::after {
    transform: translateX(20px);
}

.burn-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex: 1;
}

.burn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff7ed;
    border-radius: 8px;
}

.burn-icon svg {
    color: #f97316;
}

.burn-text {
    display: flex;
    flex-direction: column;
}

.burn-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.burn-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
    margin-top: var(--space-2);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 20px;
    background: var(--brand-primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--border-medium);
}

.btn-ghost {
    padding: 12px 16px;
    background: transparent;
    color: var(--text-tertiary);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: color 0.15s ease;
}

.btn-ghost:hover {
    color: var(--text-secondary);
}

/* ===== Success State ===== */
.success-state {
    display: none;
}

.success-state.active {
    display: block;
}

#formState.hidden {
    display: none;
}

.success-header {
    margin-bottom: var(--space-8);
}

.success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #10b981;
    border-radius: 20px;
    margin-bottom: var(--space-5);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.success-icon-wrapper svg {
    color: white;
}

.success-state h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

/* Share Result Card */
.share-result-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: var(--space-6);
    margin: var(--space-6) 0;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.share-url-section {
    margin-bottom: var(--space-5);
}

.share-url-section label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: var(--space-2);
}

.share-url-box {
    display: flex;
    gap: var(--space-2);
}

.share-url-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.875rem;
    font-family: inherit;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 18px;
    background: #3b82f6;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.2);
}

.copy-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.copy-btn.copied {
    background: #10b981;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

/* Password Section */
.share-password-section {
    margin-bottom: var(--space-5);
}

.share-password-section label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: var(--space-2);
}


/* Password input with inline eye toggle */
.input-with-toggle {
    position: relative;
    flex: 1;
}

.input-with-toggle .share-url-input {
    width: 100%;
    padding-right: 36px;
}

.eye-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    border-radius: 6px;
    transition: color 0.15s ease;
}

.eye-btn:hover {
    color: var(--text-primary);
}

/* Share Meta */
.share-meta {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-4);
}

.share-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.meta-icon.expiry {
    background: var(--brand-primary-light);
}

.meta-icon.expiry svg {
    color: var(--brand-primary);
}

.meta-icon.burn {
    background: #fff7ed;
}

.meta-icon.burn svg {
    color: #f97316;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.meta-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Security Note */
.share-security-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 10px;
    font-size: 0.8125rem;
    color: #92400e;
    line-height: 1.5;
}

.share-security-note svg {
    flex-shrink: 0;
    color: #f59e0b;
    margin-top: 1px;
}

/* Success Actions */
.success-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== View Page States ===== */
.loading-state,
.password-state,
.content-state,
.notfound-state,
.error-state {
    display: none;
}

.loading-state.active,
.password-state.active,
.content-state.active,
.notfound-state.active,
.error-state.active {
    display: block;
}

/* Loading Spinner */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-light);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-4);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* View Page Card */
.share-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: var(--space-8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.share-card-header {
    margin-bottom: var(--space-6);
}

.share-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--brand-primary-light);
    border-radius: 16px;
    margin-bottom: var(--space-4);
}

.share-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-primary);
}

.share-card-icon.success {
    background: var(--success-bg);
}

.share-card-icon.success svg {
    color: var(--success);
}

.share-card-icon.error {
    background: var(--error-bg);
}

.share-card-icon.error svg {
    color: var(--error);
}

.share-card-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.share-card-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Decrypted Content */
.decrypted-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--space-5);
    min-height: 200px;
    max-height: 500px;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-break: break-word;
    text-align: left;
    margin-bottom: var(--space-4);
}

.burn-notice {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #991b1b;
    margin-bottom: var(--space-4);
}

.burn-notice svg {
    flex-shrink: 0;
    color: #ef4444;
}

.expiry-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: var(--space-5);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .share-page-main {
        padding: var(--space-4);
        justify-content: flex-start;
        padding-top: var(--space-6);
    }

    /* Compact Hero Sizes */
    .success-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: var(--space-3);
        border-radius: 12px;
    }

    .success-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .success-state h1 {
        font-size: 1.5rem;
        margin-bottom: var(--space-2);
    }

    .share-subtitle {
        font-size: 0.9375rem;
        margin-bottom: var(--space-4);
    }

    .share-hero {
        margin-bottom: var(--space-5);
    }

    .share-hero h1 {
        font-size: 1.75rem;
    }

    .share-tagline {
        font-size: 1.125rem;
        margin-bottom: var(--space-3);
    }

    .share-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .share-badge {
        font-size: 0.6875rem;
        padding: 5px 12px;
        margin-bottom: var(--space-4);
    }

    .share-editor {
        min-height: 240px;
        padding: var(--space-4);
        font-size: 1rem;
    }

    .share-editor-footer {
        flex-direction: column;
        gap: var(--space-3);
        padding: var(--space-4);
        align-items: stretch;
    }

    .share-create-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        /* Larger touch target */
    }

    .share-editor-container {
        border-radius: 14px;
    }

    .share-trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-4);
        margin-top: var(--space-6);
        width: 100%;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .trust-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .trust-icon svg {
        width: 14px;
        height: 14px;
    }

    .settings-modal {
        padding: var(--space-5);
        margin: var(--space-4);
        width: calc(100% - var(--space-8));
        max-height: calc(100vh - var(--space-8));
        overflow-y: auto;
        border-radius: 16px;
    }

    .modal-actions {
        flex-direction: column-reverse;
        /* Put Primary action (last in HTML) on top */
        gap: var(--space-3);
    }

    .modal-actions button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .share-url-box {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2);
    }

    .share-url-box .copy-btn {
        width: auto;
        justify-content: center;
        padding: 10px;
        flex-shrink: 0;
    }

    .copy-label {
        display: none;
    }


    .share-meta {
        flex-direction: column;
        gap: var(--space-3);
        align-items: flex-start;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions button {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .share-result-card,
    .share-card {
        padding: var(--space-5);
    }

    /* Better text wrapping for toggles */
    .burn-toggle {
        padding: var(--space-4);
    }

    .burn-content {
        display: flex;
        /* Ensure flex is active */
        flex-wrap: nowrap;
        /* Prevent wrapping */
        align-items: center;
        /* Align icon and text vertically */
        gap: var(--space-3);
    }

    .burn-icon {
        flex-shrink: 0;
        /* Prevent icon from shrinking */
    }
}

/* ===== SEO Content Sections ===== */
.share-seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-6) var(--space-10);
}

.seo-section {
    padding: var(--space-10) 0;
    border-top: 1px solid var(--border-light);
}

.seo-section h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.step-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.share-seo-content .step-card .step-number {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--brand-primary);
    color: white !important;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: var(--space-4);
    letter-spacing: 0;
}

.share-seo-content .step-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.share-seo-content .step-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Use Cases & Security Grid */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.usecase-card {
    padding: var(--space-5);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
}

.usecase-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.usecase-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.usecase-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.faq-item summary {
    padding: var(--space-5);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-tertiary);
    flex-shrink: 0;
    margin-left: var(--space-4);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 var(--space-5) var(--space-5);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Reviews Marquee */
.reviews-section {
    padding: var(--space-10) 0;
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}

.reviews-section h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1.125rem;
}

.reviews-track-wrapper {
    position: relative;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.reviews-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.reviews-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.reviews-track {
    display: flex;
    gap: var(--space-5);
    animation: scrollReviews 40s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    padding: var(--space-5);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: var(--space-3);
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-3);
}

.review-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-role {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* SEO Responsive */
@media (max-width: 768px) {
    .share-seo-content {
        padding: 0 var(--space-4) var(--space-8);
    }

    .seo-section {
        padding: var(--space-8) 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .usecases-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .faq-item summary {
        padding: var(--space-4);
        font-size: 0.9375rem;
    }

    .faq-item p {
        padding: 0 var(--space-4) var(--space-4);
        font-size: 0.875rem;
    }

    .review-card {
        width: 260px;
        padding: var(--space-4);
    }

    .review-text {
        font-size: 0.875rem;
    }

    .reviews-section {
        padding: var(--space-8) 0;
    }

    .reviews-section h2 {
        font-size: 1.5rem;
    }

    .reviews-rating-summary {
        font-size: 0.8125rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .seo-section h2 {
        font-size: 1.375rem;
        margin-bottom: var(--space-6);
    }

    .step-card {
        padding: var(--space-4);
    }

    .usecase-card {
        padding: var(--space-4);
    }

    .usecase-card h3 {
        font-size: 0.875rem;
    }

    .usecase-card p {
        font-size: 0.8125rem;
    }
}