/* WooCommerce Converter Pro - Public Styles */

:root {
    --wcp-primary: #7c3aed;
    --wcp-primary-dark: #6d28d9;
    --wcp-secondary: #10b981;
    --wcp-danger: #ef4444;
    --wcp-warning: #f59e0b;
    --wcp-dark: #1f2937;
    --wcp-gray: #6b7280;
    --wcp-light: #f3f4f6;
    --wcp-border: #e5e7eb;
    --wcp-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Container principal */
.wcp-public-converter {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Hero Section */
.wcp-public-hero {
    background: linear-gradient(135deg, var(--wcp-primary) 0%, var(--wcp-primary-dark) 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    color: white;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.wcp-public-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: wcp-pulse 8s ease-in-out infinite;
}

@keyframes wcp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.wcp-public-hero-content {
    position: relative;
    z-index: 1;
}

.wcp-public-hero h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.2;
}

.wcp-public-hero p {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
}

/* Auth Prompt */
.wcp-auth-prompt {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--wcp-shadow);
    margin-bottom: 40px;
}

.wcp-auth-prompt h2 {
    font-size: 32px;
    color: var(--wcp-dark);
    margin: 0 0 16px;
}

.wcp-auth-prompt p {
    font-size: 16px;
    color: var(--wcp-gray);
    margin-bottom: 30px;
}

.wcp-auth-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wcp-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wcp-btn-primary {
    background: linear-gradient(135deg, var(--wcp-primary) 0%, var(--wcp-primary-dark) 100%);
    color: white;
}

.wcp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.wcp-btn-secondary {
    background: white;
    color: var(--wcp-primary);
    border: 2px solid var(--wcp-primary);
}

.wcp-btn-secondary:hover {
    background: var(--wcp-light);
}

/* Benefits */
.wcp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.wcp-benefit {
    text-align: center;
    padding: 24px;
}

.wcp-benefit-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.wcp-benefit h3 {
    font-size: 18px;
    color: var(--wcp-dark);
    margin: 0 0 8px;
}

.wcp-benefit p {
    font-size: 14px;
    color: var(--wcp-gray);
    margin: 0;
}

/* User Dashboard */
.wcp-user-dashboard {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--wcp-shadow);
}

.wcp-user-dashboard h2 {
    font-size: 24px;
    margin: 0 0 24px;
    color: var(--wcp-dark);
}

.wcp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.wcp-stat-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid var(--wcp-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.wcp-stat-card.pro {
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    border-color: #c4b5fd;
}

.wcp-stat-label {
    display: block;
    font-size: 14px;
    color: var(--wcp-gray);
    margin-bottom: 8px;
}

.wcp-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--wcp-primary);
}

.wcp-stat-value.unlimited {
    font-size: 48px;
}

/* Upload Form */
.wcp-upload-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--wcp-shadow);
    margin-bottom: 30px;
}

.wcp-upload-container h2 {
    font-size: 28px;
    color: var(--wcp-dark);
    margin: 0 0 24px;
    text-align: center;
}

.wcp-upload-zone {
    border: 3px dashed var(--wcp-border);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.wcp-upload-zone:hover,
.wcp-upload-zone.dragover {
    border-color: var(--wcp-primary);
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    transform: scale(1.02);
}

.wcp-upload-icon {
    font-size: 64px;
    color: var(--wcp-primary);
    margin-bottom: 16px;
}

.wcp-upload-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--wcp-dark);
    margin: 0 0 8px;
}

.wcp-upload-subtitle {
    font-size: 14px;
    color: var(--wcp-gray);
    margin: 8px 0;
}

.wcp-submit-btn {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    font-size: 18px;
}

/* Pricing Section */
.wcp-pricing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.wcp-pricing-section h2 {
    font-size: 36px;
    text-align: center;
    color: var(--wcp-dark);
    margin: 0 0 48px;
}

.wcp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.wcp-pricing-card {
    background: white;
    border: 2px solid var(--wcp-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.wcp-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wcp-shadow);
}

.wcp-pricing-card.featured {
    border-color: var(--wcp-primary);
    background: linear-gradient(135deg, #ede9fe 0%, #ffffff 100%);
}

.wcp-pricing-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--wcp-primary) 0%, var(--wcp-primary-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.wcp-pricing-plan {
    font-size: 20px;
    font-weight: 700;
    color: var(--wcp-dark);
    margin: 0 0 16px;
}

.wcp-pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--wcp-primary);
    margin: 0;
}

.wcp-pricing-price small {
    font-size: 16px;
    color: var(--wcp-gray);
}

.wcp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.wcp-pricing-features li {
    padding: 12px 0;
    color: var(--wcp-dark);
    border-bottom: 1px solid var(--wcp-light);
}

.wcp-pricing-features li:last-child {
    border-bottom: none;
}

/* Alerts */
.wcp-alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wcp-alert-info {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.wcp-alert-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.wcp-alert-error {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.wcp-alert-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

/* Loading */
.wcp-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: wcp-spin 0.8s linear infinite;
}

@keyframes wcp-spin {
    to { transform: rotate(360deg); }
}

/* Section URLs Images */
.wcp-image-urls-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.wcp-image-urls-section .wcp-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.wcp-image-urls-section .wcp-section-header .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--wcp-primary);
}

.wcp-image-urls-section .wcp-section-header h3 {
    font-size: 22px;
    color: var(--wcp-dark);
    margin: 10px 0 0;
}

.wcp-section-description {
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    border-left: 4px solid var(--wcp-primary);
}

.wcp-section-description p {
    margin: 0;
    color: var(--wcp-dark);
    line-height: 1.6;
}

.wcp-section-description code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--wcp-primary);
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
}

.wcp-url-fields {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.wcp-field-group {
    margin-bottom: 20px;
}

.wcp-field-group:last-of-type {
    margin-bottom: 0;
}

.wcp-field-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--wcp-dark);
    font-size: 15px;
}

.wcp-input,
.wcp-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--wcp-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.wcp-input:focus,
.wcp-textarea:focus {
    border-color: var(--wcp-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    outline: none;
}

.wcp-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Monaco', 'Courier New', monospace;
}

.wcp-field-help {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--wcp-gray);
}

.wcp-example-box {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #bbf7d0;
    border-radius: 12px;
}

.wcp-example-box strong {
    display: block;
    margin-bottom: 16px;
    color: var(--wcp-dark);
    font-size: 15px;
}

.wcp-example-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wcp-example-step {
    flex: 1;
    min-width: 180px;
    background: white;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wcp-step-num {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--wcp-primary) 0%, var(--wcp-primary-dark) 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wcp-step-content strong {
    display: block;
    font-size: 13px;
    color: var(--wcp-gray);
    margin-bottom: 6px;
}

.wcp-step-content code {
    display: block;
    background: #f9fafb;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--wcp-primary);
    word-break: break-all;
}

.wcp-example-arrow {
    font-size: 24px;
    color: var(--wcp-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .wcp-public-converter {
        padding: 20px 15px;
    }

    .wcp-public-hero {
        padding: 40px 24px;
    }

    .wcp-public-hero h1 {
        font-size: 32px;
    }

    .wcp-auth-buttons {
        flex-direction: column;
    }

    .wcp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .wcp-upload-zone {
        padding: 40px 24px;
    }

    .wcp-example-flow {
        flex-direction: column;
    }

    .wcp-example-arrow {
        transform: rotate(90deg);
    }

    .wcp-example-step {
        width: 100%;
    }
}

/* ==================== TUTORIEL FRONT-OFFICE ==================== */

.wcp-tutorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px;
}

.wcp-tutorial-section {
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Hero Tutoriel */
.wcp-tutorial-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px -12px rgba(245, 158, 11, 0.3);
}

.wcp-tutorial-hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: wcp-float 3s ease-in-out infinite;
}

@keyframes wcp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wcp-tutorial-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
}

.wcp-tutorial-hero-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

/* Étapes du tutoriel */
.wcp-tutorial-steps {
    max-width: 800px;
    margin: 0 auto;
}

.wcp-tutorial-step {
    margin-bottom: 50px;
}

.wcp-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.wcp-step-content h3 {
    font-size: 24px;
    color: #1f2937;
    margin: 0 0 16px;
    font-weight: 700;
}

.wcp-step-tip {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #3b82f6;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.wcp-faq-item {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.wcp-faq-item[open] {
    background: white;
    border-color: #7c3aed;
}

/* ========================================
   COMPACT TUTORIAL STYLES
   ======================================== */

/* Étapes compactes - Ultra compact */
.wcp-tutorial-steps-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.wcp-step-compact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-left: 3px solid var(--wcp-primary);
    transition: all 0.2s ease;
}

.wcp-step-compact:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(124,58,237,0.12);
}

.wcp-step-number-compact {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--wcp-primary) 0%, var(--wcp-primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.wcp-step-content-compact {
    flex: 1;
}

.wcp-step-content-compact h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--wcp-dark);
    font-weight: 600;
}

.wcp-step-content-compact p {
    margin: 0;
    font-size: 13px;
    color: var(--wcp-gray);
    line-height: 1.4;
}

.wcp-step-content-compact code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--wcp-primary);
    font-weight: 500;
}

/* FAQ compacte */
.wcp-tutorial-faq-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.wcp-faq-item-compact {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wcp-faq-item-compact:hover {
    border-color: var(--wcp-primary);
}

.wcp-faq-item-compact[open] {
    background: white;
    border-color: var(--wcp-primary);
    box-shadow: 0 4px 12px rgba(124,58,237,0.1);
}

.wcp-faq-item-compact summary {
    font-weight: 600;
    font-size: 13px;
    color: var(--wcp-dark);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.wcp-faq-item-compact summary::-webkit-details-marker {
    display: none;
}

.wcp-faq-item-compact summary::marker {
    display: none;
}

.wcp-faq-item-compact summary::after {
    content: '▼';
    font-size: 9px;
    color: var(--wcp-gray);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.wcp-faq-item-compact[open] summary::after {
    transform: rotate(180deg);
}

.wcp-faq-item-compact p {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--wcp-gray);
    line-height: 1.6;
}

.wcp-faq-item-compact code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--wcp-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .wcp-tutorial-container {
        padding: 16px 12px;
    }

    .wcp-tutorial-section {
        padding: 12px;
        margin-bottom: 16px !important;
    }

    .wcp-tutorial-steps-compact {
        gap: 6px;
    }

    .wcp-step-compact {
        padding: 8px 12px;
    }

    .wcp-step-number-compact {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .wcp-step-content-compact h4 {
        font-size: 14px;
    }

    .wcp-step-content-compact p {
        font-size: 12px;
    }

    .wcp-tutorial-faq-compact {
        gap: 4px;
    }

    .wcp-faq-item-compact {
        padding: 6px 10px;
    }
}

/* CTA compact */
.wcp-tutorial-cta {
    background: linear-gradient(135deg, var(--wcp-primary) 0%, var(--wcp-primary-dark) 100%);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    margin-top: 12px;
}

.wcp-tutorial-cta h3 {
    color: white;
    font-size: 18px;
    margin: 0 0 6px;
}

.wcp-tutorial-cta p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 12px;
    font-size: 13px;
}

.wcp-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.wcp-btn-large {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .wcp-tutorial-cta {
        padding: 16px;
    }

    .wcp-tutorial-cta h3 {
        font-size: 16px;
    }

    .wcp-tutorial-cta p {
        font-size: 12px;
    }

    .wcp-btn-large {
        padding: 8px 20px !important;
        font-size: 13px !important;
    }
}

/* ========================================
   REFINED FRONT-OFFICE SKIN
   ======================================== */

:root {
    --wcp-primary: #6ec1e4;
    --wcp-primary-dark: #4ea7d0;
    --wcp-secondary: #61ce70;
    --wcp-danger: #d94b5c;
    --wcp-warning: #f4b740;
    --wcp-dark: #120033;
    --wcp-gray: #5f6280;
    --wcp-gray-strong: #3f4663;
    --wcp-code-text: #0f4f74;
    --wcp-code-bg: #edf5fb;
    --wcp-code-border: #c9dceb;
    --wcp-light: #f5f8fc;
    --wcp-border: #d9e5f2;
    --wcp-surface: #ffffff;
    --wcp-surface-soft: #eef6fb;
    --wcp-surface-strong: #e7dbfd;
    --wcp-shadow: 0 24px 60px -32px rgba(18, 0, 51, 0.28);
}

.wcp-public-wrapper,
.wcp-tutorial-container {
    color: var(--wcp-dark);
}

.wcp-public-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 16px 56px;
}

.wcp-user-stats,
.wcp-public-converter,
.wcp-public-result,
.wcp-tutorial-section,
.wcp-pricing-section {
    width: 100%;
    max-width: 100%;
}

.wcp-public-hero,
.wcp-tutorial-hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 34%),
        radial-gradient(circle at bottom right, rgba(110, 193, 228, 0.18), transparent 28%),
        linear-gradient(135deg, #4f4ee8 0%, #6265f2 42%, #76aef3 100%);
    box-shadow: var(--wcp-shadow);
}

.wcp-public-hero {
    padding: 42px clamp(24px, 5vw, 54px);
    margin-bottom: 28px;
    text-align: left;
}

.wcp-public-hero::before,
.wcp-tutorial-hero-card::before {
    content: '';
    position: absolute;
    inset: auto -12% -38% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
}

.wcp-public-hero-content,
.wcp-tutorial-hero-copy,
.wcp-tutorial-hero-aside {
    position: relative;
    z-index: 1;
}

.wcp-public-hero-eyebrow,
.wcp-panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 0, 51, 0.06);
    color: var(--wcp-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wcp-public-hero-eyebrow,
.wcp-tutorial-hero-card .wcp-panel-kicker {
    background: rgba(34, 33, 94, 0.2);
    color: #f8fcff;
}

.wcp-public-hero-title,
.wcp-public-hero h1 {
    max-width: 760px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.05;
}

.wcp-public-hero-subtitle,
.wcp-public-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(247, 250, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.wcp-public-hero-meta,
.wcp-public-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.wcp-public-meta-pill,
.wcp-public-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(35, 32, 98, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.wcp-public-feature {
    background: rgba(35, 32, 98, 0.16);
}

.wcp-public-auth-required,
.wcp-public-converter,
.wcp-public-result,
.wcp-public-tools,
.wcp-pricing-section,
.wcp-tutorial-section,
.wcp-tutorial-cta {
    border: 1px solid rgba(18, 0, 51, 0.08);
    box-shadow: var(--wcp-shadow);
}

.wcp-auth-box,
.wcp-public-converter,
.wcp-public-result,
.wcp-public-tools,
.wcp-tutorial-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
    border-radius: 24px;
}

.wcp-public-auth-required {
    background: transparent;
    box-shadow: none;
}

.wcp-auth-box {
    padding: 34px;
}

.wcp-auth-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(110, 193, 228, 0.14);
    color: var(--wcp-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wcp-auth-box h2,
.wcp-public-panel-head h2,
.wcp-public-tools-head h2,
.wcp-tutorial-hero-card h1 {
    margin: 0 0 10px;
    color: var(--wcp-dark);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.08;
}

.wcp-auth-box > p,
.wcp-public-panel-head p,
.wcp-public-tools-head p,
.wcp-tutorial-hero-card p,
.wcp-tutorial-section-head p {
    color: var(--wcp-gray);
    font-size: 16px;
    line-height: 1.65;
}

.wcp-auth-benefits {
    margin: 24px 0 28px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.1), rgba(97, 206, 112, 0.08));
    border: 1px solid rgba(110, 193, 228, 0.22);
}

.wcp-auth-benefits h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
}

.wcp-auth-benefits ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--wcp-gray);
}

.wcp-auth-benefits li + li {
    margin-top: 8px;
}

.wcp-btn {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.wcp-btn-primary {
    background: linear-gradient(135deg, var(--wcp-dark), #3b2376);
    color: #fff;
    border-color: rgba(18, 0, 51, 0.9);
    box-shadow: 0 18px 40px -24px rgba(18, 0, 51, 0.9);
}

.wcp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -24px rgba(18, 0, 51, 0.66);
}

.wcp-btn-secondary {
    background: #fff;
    color: var(--wcp-dark);
    border: 1px solid rgba(18, 0, 51, 0.12);
}

.wcp-btn-secondary:hover {
    background: var(--wcp-light);
    border-color: rgba(18, 0, 51, 0.2);
}

.wcp-user-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.wcp-stat-card,
.wcp-tool-card {
    background: linear-gradient(180deg, #fff, #f7fbff);
    border: 1px solid rgba(18, 0, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 42px -32px rgba(18, 0, 51, 0.32);
}

.wcp-stat-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
}

.wcp-stat-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.18), rgba(97, 206, 112, 0.2));
    font-size: 24px;
}

.wcp-stat-label {
    margin-bottom: 6px;
    color: var(--wcp-gray);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wcp-stat-value {
    color: var(--wcp-dark);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.wcp-stat-total {
    color: var(--wcp-gray);
    font-size: 14px;
    font-weight: 600;
}

.wcp-stat-upgrade {
    background: linear-gradient(135deg, rgba(97, 206, 112, 0.14), rgba(110, 193, 228, 0.16));
}

.wcp-upgrade-link {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.wcp-public-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 20px;
}

.wcp-notice-error {
    background: linear-gradient(135deg, rgba(217, 75, 92, 0.09), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(217, 75, 92, 0.18);
    color: #8a2535;
}

.wcp-notice-error .dashicons {
    color: var(--wcp-danger);
}

.wcp-notice-warning {
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(244, 183, 64, 0.14), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(244, 183, 64, 0.26);
    color: #8a6400;
}

.wcp-notice-warning .dashicons {
    color: var(--wcp-warning);
}

.wcp-public-converter {
    padding: 30px;
    margin-bottom: 24px;
}

.wcp-public-converter--support {
    margin-bottom: 24px;
}

.wcp-public-converter--main {
    width: 100%;
    padding: 38px;
}

.wcp-public-panel-head,
.wcp-public-tools-head,
.wcp-tutorial-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}

.wcp-public-panel-head {
    margin-bottom: 24px;
}

.wcp-public-panel-head h2,
.wcp-public-tools-head h2,
.wcp-tutorial-section-head h2 {
    font-size: 30px;
}

.wcp-public-flow {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.wcp-public-flow span,
.wcp-tutorial-hero-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--wcp-surface-soft);
    color: var(--wcp-dark);
    font-size: 13px;
    font-weight: 700;
}

.wcp-public-form {
    display: grid;
    gap: 22px;
}

.wcp-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.wcp-public-converter--main .wcp-public-form {
    max-width: 980px;
    margin: 0 auto;
}

.wcp-user-stats,
.wcp-public-converter--support,
.wcp-public-converter--main,
.wcp-tutorial-section,
.wcp-pricing-section {
    margin-left: auto;
    margin-right: auto;
}

.wcp-public-upload-zone {
    position: relative;
    border: 1.5px dashed rgba(18, 0, 51, 0.16);
    border-radius: 24px;
    padding: 46px 28px 30px;
    background:
        radial-gradient(circle at top right, rgba(110, 193, 228, 0.16), transparent 28%),
        linear-gradient(180deg, #fff, #f7fbff);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.wcp-public-upload-zone:hover,
.wcp-public-upload-zone.dragover {
    border-color: rgba(110, 193, 228, 0.8);
    box-shadow: 0 20px 46px -34px rgba(18, 0, 51, 0.42);
    transform: translateY(-2px);
}

.wcp-upload-icon {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.18), rgba(97, 206, 112, 0.16));
}

.wcp-upload-icon .dashicons {
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: var(--wcp-dark);
}

.wcp-upload-title {
    margin-bottom: 6px;
    color: var(--wcp-dark);
    font-size: 28px;
    font-weight: 800;
}

.wcp-upload-or {
    margin: 6px 0 14px;
    color: var(--wcp-gray);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wcp-upload-info {
    margin-top: 18px;
    color: var(--wcp-gray);
    font-size: 14px;
}

.wcp-public-file-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.14), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(110, 193, 228, 0.2);
}

.wcp-public-file-preview .dashicons {
    width: 42px;
    height: 42px;
    font-size: 42px;
    color: var(--wcp-dark);
}

.wcp-file-details {
    flex: 1;
}

.wcp-file-name {
    margin: 0 0 4px;
    color: var(--wcp-dark);
    font-size: 16px;
    font-weight: 700;
}

.wcp-file-size {
    margin: 0;
    color: var(--wcp-gray);
    font-size: 13px;
}

.wcp-file-remove {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(18, 0, 51, 0.06);
    color: var(--wcp-dark);
}

.wcp-image-urls-section {
    padding: 28px;
    margin: 0;
    border: 1px solid rgba(110, 193, 228, 0.2);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(110, 193, 228, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(239, 247, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.wcp-image-urls-section .wcp-section-header {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
    text-align: left;
}

.wcp-image-urls-section .wcp-section-header .dashicons {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.wcp-image-urls-section .wcp-section-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.wcp-section-description {
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(18, 0, 51, 0.08);
    border-left: 4px solid var(--wcp-primary);
    border-radius: 16px;
}

.wcp-url-fields {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 0, 51, 0.06);
    box-shadow: none;
}

.wcp-input,
.wcp-textarea {
    border: 1px solid rgba(18, 0, 51, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    color: var(--wcp-dark);
}

.wcp-input:focus,
.wcp-textarea:focus {
    border-color: rgba(110, 193, 228, 0.9);
    box-shadow: 0 0 0 4px rgba(110, 193, 228, 0.14);
}

.wcp-field-help {
    margin-top: 8px;
    color: var(--wcp-gray-strong);
}

.wcp-example-box {
    margin-top: 22px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(97, 206, 112, 0.22);
    background: linear-gradient(135deg, rgba(97, 206, 112, 0.12), rgba(255, 255, 255, 0.9));
}

.wcp-example-flow {
    gap: 12px;
}

.wcp-example-step {
    background: #ffffff;
    border: 1px solid rgba(18, 0, 51, 0.06);
    border-radius: 16px;
    box-shadow: none;
}

.wcp-step-num {
    background: linear-gradient(135deg, var(--wcp-dark), #2f1964);
}

.wcp-example-box strong,
.wcp-step-content strong {
    color: var(--wcp-dark);
}

.wcp-step-content strong {
    font-weight: 700;
}

.wcp-step-content code,
.wcp-step-content-compact code,
.wcp-faq-item-compact code,
.wcp-section-description code {
    background: var(--wcp-code-bg);
    border: 1px solid var(--wcp-code-border);
    color: var(--wcp-code-text);
    font-weight: 600;
}

.wcp-step-content code {
    padding: 10px 12px;
}

.wcp-example-arrow {
    color: #2b6d94;
}

.wcp-public-submit {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wcp-btn-hero {
    min-width: min(100%, 420px);
    justify-content: center;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
}

.wcp-public-result {
    margin-bottom: 24px;
    padding: 28px 30px;
}

.wcp-result-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.wcp-result-header .dashicons {
    width: 42px;
    height: 42px;
    font-size: 42px;
    color: var(--wcp-secondary);
}

.wcp-result-header h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
}

.wcp-result-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.wcp-result-stat {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(110, 193, 228, 0.12), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(110, 193, 228, 0.16);
}

.wcp-result-stat-label {
    display: block;
    margin-bottom: 8px;
    color: var(--wcp-gray);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wcp-result-stat-value {
    color: var(--wcp-dark);
    font-size: 30px;
    font-weight: 800;
}

.wcp-result-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.wcp-result-download-hint {
    margin: 12px 0 0;
    color: var(--wcp-gray);
    font-size: 14px;
    text-align: center;
}

.wcp-mapping-panel {
    margin-top: 24px;
}

.wcp-mapping-grid {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.wcp-mapping-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(18, 0, 51, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.wcp-mapping-source {
    color: var(--wcp-dark);
    font-weight: 700;
    word-break: break-word;
}

.wcp-result-advanced {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(18, 0, 51, 0.03);
}

.wcp-result-advanced summary {
    font-weight: 700;
    cursor: pointer;
}

.wcp-result-advanced-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.wcp-result-advanced-links a {
    font-weight: 700;
}

.wcp-public-tools {
    padding: 30px;
}

.wcp-public-tools-head {
    margin-bottom: 20px;
}

.wcp-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.wcp-tool-card {
    display: block;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.wcp-tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(110, 193, 228, 0.34);
    box-shadow: 0 24px 48px -34px rgba(18, 0, 51, 0.34);
}

.wcp-tool-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.16), rgba(97, 206, 112, 0.14));
    font-size: 28px;
}

.wcp-tool-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 800;
}

.wcp-tool-card p {
    margin: 0;
    color: var(--wcp-gray);
}

.wcp-public-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.wcp-public-resource-table {
    margin-top: 22px;
    overflow: auto;
    border: 1px solid rgba(18, 0, 51, 0.08);
    border-radius: 18px;
    background: #fff;
}

.wcp-resource-table {
    width: 100%;
    border-collapse: collapse;
}

.wcp-resource-table th,
.wcp-resource-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(18, 0, 51, 0.06);
    text-align: left;
    vertical-align: middle;
}

.wcp-resource-table th {
    background: rgba(110, 193, 228, 0.08);
    color: var(--wcp-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wcp-resource-table tbody tr:last-child td {
    border-bottom: none;
}

.wcp-resource-table code {
    color: var(--wcp-dark);
    background: rgba(110, 193, 228, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.wcp-url-input {
    width: 100%;
    min-width: 320px;
    border: 1px solid rgba(18, 0, 51, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    background: #f9fcff;
    color: var(--wcp-dark);
}

.wcp-hidden-export {
    position: absolute;
    left: -99999px;
    opacity: 0;
    pointer-events: none;
}

.wcp-pricing-section {
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(110, 193, 228, 0.18), transparent 28%),
        linear-gradient(180deg, #fff, #f4f9fd);
    text-align: center;
}

.wcp-pricing-section h2 {
    color: var(--wcp-dark);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
}

.wcp-pricing-grid {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    justify-content: center;
}

.wcp-pricing-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.wcp-pricing-header p {
    margin: 10px auto 0;
    color: var(--wcp-gray);
    text-align: center;
}

.wcp-pricing-card {
    border-radius: 24px;
    box-shadow: 0 24px 56px -40px rgba(18, 0, 51, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wcp-pricing-card.featured {
    background: linear-gradient(180deg, rgba(231, 219, 253, 0.72), rgba(255, 255, 255, 0.96));
    border-color: rgba(128, 58, 255, 0.22);
}

.wcp-pricing-card.featured::before {
    background: linear-gradient(135deg, var(--wcp-dark), #3b2376);
}

.wcp-pricing-price {
    color: var(--wcp-dark);
}

.wcp-pricing-card-header {
    width: 100%;
    text-align: center;
}

.wcp-pricing-card h3,
.wcp-pricing-plan {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wcp-pricing-features {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.wcp-pricing-features li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.wcp-pricing-badge {
    margin-bottom: 10px;
    text-align: center;
}

.wcp-btn-block {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.wcp-pricing-guarantee {
    margin-top: 26px;
    text-align: center;
}

.wcp-pricing-guarantee p {
    margin: 0 auto;
    text-align: center;
}

.wcp-tutorial-container {
    max-width: 1180px;
    padding: 28px 16px 56px;
}

.wcp-tutorial-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 24px;
    padding: 34px;
    margin-bottom: 22px;
}

.wcp-tutorial-hero-card h1,
.wcp-tutorial-hero-card p,
.wcp-tutorial-hero-card .wcp-panel-kicker {
    color: #fff;
}

.wcp-tutorial-hero-card p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.wcp-tutorial-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.wcp-tutorial-hero-pills span {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.wcp-tutorial-hero-aside {
    display: grid;
    gap: 14px;
    align-content: center;
}

.wcp-tutorial-hero-stat {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.wcp-tutorial-hero-stat strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 18px;
}

.wcp-tutorial-hero-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.wcp-tutorial-section {
    padding: 24px;
}

.wcp-tutorial-section-head {
    margin-bottom: 14px;
    align-items: start;
}

.wcp-tutorial-video-placeholder {
    display: grid;
    place-items: center;
    min-height: 280px;
    padding: 28px;
    border: 1px dashed rgba(18, 0, 51, 0.14);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(110, 193, 228, 0.14), transparent 30%),
        linear-gradient(180deg, #fff, #f6fbfe);
    text-align: center;
}

.wcp-video-icon {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    margin-bottom: 14px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.18), rgba(97, 206, 112, 0.14));
    font-size: 34px;
}

.wcp-video-title {
    margin: 0 0 6px;
    color: var(--wcp-dark);
    font-size: 22px;
    font-weight: 800;
}

.wcp-video-subtitle {
    margin: 0;
    color: var(--wcp-gray);
}

.wcp-tutorial-steps-compact,
.wcp-tutorial-faq-compact {
    gap: 12px;
}

.wcp-step-compact {
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(18, 0, 51, 0.06);
    border-left: 4px solid var(--wcp-primary);
    border-radius: 18px;
    box-shadow: none;
}

.wcp-step-compact:hover {
    transform: translateX(4px);
    box-shadow: 0 20px 40px -34px rgba(18, 0, 51, 0.38);
}

.wcp-step-number-compact {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--wcp-dark), #3b2376);
}

.wcp-step-content-compact h4 {
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 800;
}

.wcp-step-content-compact p,
.wcp-faq-item-compact p {
    color: var(--wcp-gray);
    font-size: 14px;
}

.wcp-step-content-compact code,
.wcp-faq-item-compact code {
    background: rgba(110, 193, 228, 0.14);
    color: var(--wcp-dark);
}

.wcp-faq-item-compact {
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(18, 0, 51, 0.08);
    background: linear-gradient(180deg, #fbfdff, #fff);
}

.wcp-faq-item-compact:hover,
.wcp-faq-item-compact[open] {
    border-color: rgba(110, 193, 228, 0.35);
    box-shadow: 0 22px 44px -36px rgba(18, 0, 51, 0.34);
}

.wcp-faq-item-compact summary {
    font-size: 14px;
}

.wcp-tutorial-cta {
    padding: 28px;
    margin-top: 20px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #120033 0%, #38256f 52%, #4ea7d0 100%);
}

.wcp-tutorial-cta h3 {
    font-size: 28px;
    font-weight: 800;
}

.wcp-tutorial-cta p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.wcp-image-check-meta {
    margin-bottom: 18px;
    color: #120033;
    font-size: 15px;
    text-align: center;
}

.wcp-image-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0 24px;
}

.wcp-image-check-card {
    padding: 18px;
    border: 1px solid rgba(17, 32, 89, 0.14);
    border-radius: 18px;
    background: #fff;
    text-align: left;
}

.wcp-image-check-card h3 {
    margin: 0 0 12px;
    color: #120033;
    font-size: 18px;
}

.wcp-image-check-card ul {
    margin: 0;
    padding-left: 18px;
}

.wcp-image-check-card li {
    margin-bottom: 8px;
    color: #22315d;
}

.wcp-image-check-card code {
    color: #13315c;
    background: #eef7fc;
    border: 1px solid rgba(110, 193, 228, 0.25);
    border-radius: 10px;
    padding: 3px 8px;
    word-break: break-word;
}

.wcp-image-check-form {
    max-width: 760px;
    margin: 0 auto;
}

.wcp-image-check-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 24px;
    color: #120033;
    font-weight: 600;
}

.wcp-image-check-consent input {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .wcp-user-stats,
    .wcp-tools-grid,
    .wcp-public-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wcp-tutorial-hero-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wcp-public-wrapper,
    .wcp-tutorial-container {
        padding: 20px 12px 40px;
    }

    .wcp-public-hero,
    .wcp-auth-box,
    .wcp-public-converter,
    .wcp-public-result,
    .wcp-public-tools,
    .wcp-pricing-section,
    .wcp-tutorial-section,
    .wcp-tutorial-hero-card,
    .wcp-tutorial-cta {
        border-radius: 22px;
    }

    .wcp-public-hero {
        padding: 28px 20px;
    }

    .wcp-public-hero-title,
    .wcp-public-hero h1,
    .wcp-auth-box h2,
    .wcp-public-panel-head h2,
    .wcp-public-tools-head h2,
    .wcp-tutorial-hero-card h1 {
        font-size: 30px;
    }

    .wcp-public-panel-head,
    .wcp-public-tools-head,
    .wcp-tutorial-section-head,
    .wcp-result-downloads {
        flex-direction: column;
        align-items: stretch;
    }

    .wcp-user-stats,
    .wcp-result-stats,
    .wcp-tools-grid,
    .wcp-public-resource-grid,
    .wcp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .wcp-public-flow {
        justify-content: flex-start;
    }

    .wcp-public-upload-zone {
        padding: 32px 18px 24px;
    }

    .wcp-upload-title {
        font-size: 22px;
    }

    .wcp-image-urls-section,
    .wcp-url-fields,
    .wcp-public-converter,
    .wcp-public-result,
    .wcp-public-tools,
    .wcp-tutorial-section,
    .wcp-tutorial-hero-card {
        padding: 20px;
    }

    .wcp-mapping-row {
        grid-template-columns: 1fr;
    }

    .wcp-public-file-preview {
        align-items: flex-start;
    }

    .wcp-example-flow {
        flex-direction: column;
    }

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

    .wcp-image-check-consent {
        align-items: flex-start;
    }
}
