/* ===== JPG to PNG Converter Page Styles ===== */
/* IMG FLY - converter.css */

:root {
    --primary-color: #333333;
    --primary-light: #F8F9FA;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --background-color: #FFFFFF;
    --card-background: #FFFFFF;
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --accent-yellow: #FFCC00;
    --accent-yellow-hover: #E6B800;
    --accent-yellow-light: rgba(255, 204, 0, 0.1);
    --success: #10B981;
    --error: #EF4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-primary);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== CONVERTER SECTION ===== */
.converter-section {
    padding: 3.5rem 0 0 0;
    background: var(--primary-light);
}

.converter-container {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* Page Header - Improved spacing */
.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.125rem; /* 18px */
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--accent-yellow-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.page-badge i {
    font-size: 0.625rem;
    color: var(--text-secondary);
}

/* Converter Card */
.converter-card {
    background: var(--card-background);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
}

/* Upload Area - exact ca originalul */
.upload-area {
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: linear-gradient(180deg, var(--card-background) 0%, var(--primary-light) 100%);
}

.upload-area::before {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    pointer-events: none;
}

.upload-area:hover::before,
.upload-area.drag-over::before {
    border-color: var(--accent-yellow);
    background: var(--accent-yellow-light);
}

.upload-area.drag-over {
    transform: scale(1.01);
}

.upload-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.upload-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFB800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(255, 204, 0, 0.3);
    transition: var(--transition);
}

.upload-area:hover .upload-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.4);
}

.upload-icon-wrapper i {
    font-size: 2rem;
    color: var(--text-primary);
}

.upload-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.upload-subtitle {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
}

.upload-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.upload-hint {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.upload-hint span {
    color: var(--accent-yellow);
    font-weight: 500;
}

.file-input {
    display: none;
}

/* Preview Area */
.preview-area {
    display: none;
    padding: 3rem;
}

.preview-area.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-count {
    background: var(--accent-yellow-light);
    color: var(--text-primary);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.add-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: 1px dashed var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.add-more-btn:hover {
    border-color: var(--accent-yellow);
    color: var(--text-primary);
    background: var(--accent-yellow-light);
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-item {
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    overflow: hidden;
    min-width: 0;
}

.preview-item:hover {
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.preview-item.converted {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.04);
}

.preview-image-container {
    width: 100%;
    height: 180px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.6rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.preview-info {
    text-align: center;
}

.preview-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.375rem;
}

.preview-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.format-tag {
    padding: 0.2rem 0.5rem;
    background: var(--accent-yellow);
    color: var(--text-primary);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.6875rem;
    text-transform: uppercase;
}

.format-tag.png {
    background: var(--success);
    color: white;
}

.format-tag.ppt {
    background: linear-gradient(135deg, #D24726 0%, #B7472A 100%);
    color: white;
}

.format-tag.pdf {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.preview-file-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: white;
    font-size: 3rem;
}

.preview-file-icon.ppt {
    background: linear-gradient(135deg, #D24726 0%, #B7472A 100%);
}

.preview-file-icon.pdf {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.status-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    flex-shrink: 0;
}

.status-icon.pending {
    background: var(--accent-yellow-light);
    color: var(--accent-yellow-hover);
}

.status-icon.done {
    background: var(--success);
    color: white;
}

.remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 0.625rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-item:hover .remove-btn {
    opacity: 1;
}

.remove-btn:hover {
    background: var(--error);
    border-color: var(--error);
    color: white;
}

/* Action Bar */
.action-bar {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.action-btn.convert {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFB800 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(255, 204, 0, 0.3);
}

.action-btn.convert:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 204, 0, 0.4);
}

.action-btn.convert:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-btn.download {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

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

.action-btn.reset {
    background: var(--border-light);
    color: var(--text-secondary);
    flex: 0.5;
}

.action-btn.reset:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
    border-radius: var(--radius-xl);
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent-yellow);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loading-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: var(--primary-light);
    padding: 3rem 0;
    margin-bottom: 0;
}

.benefits-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.benefits-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-yellow-light);
    color: var(--accent-yellow-hover);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== SEO CONTENT SECTIONS ===== */
.seo-section {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.seo-section.alt-bg {
    background-color: var(--primary-light);
}

.seo-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.seo-content.reverse {
    flex-direction: row-reverse;
}

.seo-image {
    flex: 1;
    position: relative;
    min-height: 350px;
}

.seo-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-image-main {
    width: 280px;
    height: 280px;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.seo-image-main i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
}

.seo-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.seo-image-float {
    position: absolute;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--card-background);
    padding: 0.75rem;
    animation: floatElement 4s ease-in-out infinite;
}

.seo-image-float.float-1 {
    top: -20px;
    right: -30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFCC00, #FFB100);
    animation-delay: 0s;
}

.seo-image-float.float-1 i {
    font-size: 2rem;
    color: var(--text-primary);
}

.seo-image-float.float-2 {
    bottom: -10px;
    left: -20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981, #059669);
    animation-delay: 1s;
}

.seo-image-float.float-2 i {
    font-size: 2.5rem;
    color: white;
}

.seo-image-float.float-3 {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    padding: 1rem 1.25rem;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    animation: floatElementAlt 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

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

@keyframes floatElementAlt {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 15px)); }
}

.seo-image-float.float-3 span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-image-float.float-3 i {
    color: var(--success);
}

.seo-text {
    flex: 1;
}

.seo-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.seo-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
}

.seo-text p:last-child {
    margin-bottom: 0;
}

/* Social icons floating */
.social-float {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: floatSocial 4s ease-in-out infinite;
}

.social-float i {
    font-size: 1.25rem;
    color: white;
}

.social-float.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.social-float.facebook {
    background: #1877f2;
    bottom: 25%;
    left: 0;
    animation-delay: 1s;
}

.social-float.tiktok {
    background: #000;
    top: 20%;
    right: -10%;
    animation-delay: 0.5s;
}

.social-float.pinterest {
    background: #e60023;
    bottom: 10%;
    right: 15%;
    animation-delay: 1.5s;
}

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

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--primary-light);
}

.faq-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-background);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--accent-yellow-hover);
}

.faq-question i {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer-content {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== RESPONSIVE - TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .seo-content {
        gap: 3rem;
    }

    .seo-image-main {
        width: 240px;
        height: 240px;
    }

    .seo-text h2 {
        font-size: 1.875rem;
    }
}

/* ===== RESPONSIVE - MOBILE (768px) ===== */
@media (max-width: 768px) {
    .converter-section {
        padding: 2.5rem 0 0 0;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-badge {
        font-size: 0.8125rem;
        padding: 0.35rem 0.875rem;
    }

    .upload-area {
        min-height: 260px;
        padding: 2rem 1rem;
    }

    .upload-area::before {
        inset: 1rem;
    }

    .upload-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .upload-icon-wrapper i {
        font-size: 1.5rem;
    }

    .upload-title {
        font-size: 1.125rem;
    }

    .upload-hint {
        font-size: 0.8125rem;
    }

    .preview-area {
        padding: 1.5rem;
    }

    .preview-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .preview-item {
        padding: 0.75rem;
    }

    .preview-image-container {
        height: 150px;
    }

    .preview-image {
        border-radius: 0.5rem;
    }

    .preview-name {
        font-size: 0.75rem;
    }

    .preview-meta {
        font-size: 0.6875rem;
        gap: 0.375rem;
    }

    .format-tag {
        font-size: 0.625rem;
        padding: 0.15rem 0.375rem;
    }

    .status-icon {
        width: 14px;
        height: 14px;
        font-size: 0.45rem;
    }

    .remove-btn {
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
        top: 0.3rem;
        right: 0.3rem;
        opacity: 1;
    }

    .action-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .action-btn {
        width: 100%;
        flex: none;
    }

    .action-btn.reset {
        flex: none;
    }

    /* Benefits */
    .benefits-section {
        padding: 2rem 0;
    }

    .benefits-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .benefits-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .benefit-card {
        padding: 1.5rem 1.2rem;
        border-radius: 0.8rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* SEO Sections */
    .seo-section {
        padding: 3.5rem 0;
    }

    .seo-content {
        flex-direction: column !important;
        gap: 2.5rem;
        text-align: center;
    }

    .seo-image {
        min-height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .seo-image-main {
        width: 220px;
        height: 220px;
    }

    .seo-image-main i {
        font-size: 4rem;
    }

    .seo-image-float.float-1 {
        top: -10px;
        right: 10%;
        width: 60px;
        height: 60px;
    }

    .seo-image-float.float-1 i {
        font-size: 1.5rem;
    }

    .seo-image-float.float-2 {
        bottom: 0;
        left: 10%;
        width: 70px;
        height: 70px;
    }

    .seo-image-float.float-2 i {
        font-size: 1.75rem;
    }

    .seo-image-float.float-3 {
        display: none;
    }

    .social-float {
        width: 38px;
        height: 38px;
    }

    .social-float i {
        font-size: 1rem;
    }

    .seo-text h2 {
        font-size: 1.625rem;
    }

    .seo-text p {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-answer-content {
        font-size: 0.9375rem;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
    .converter-section {
        padding: 2rem 0 0 0;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9375rem; /* 15px */
    }

    .page-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .converter-card {
        border-radius: var(--radius-lg);
    }

    .upload-title {
        font-size: 1.125rem;
    }

    .upload-hint {
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .preview-area {
        padding: 1rem;
    }

    .preview-grid {
        gap: 0.5rem;
    }

    .preview-item {
        padding: 0.5rem;
    }

    .preview-image-container {
        height: 120px;
        margin-bottom: 0.5rem;
    }

    .preview-image {
        border-radius: 0.4rem;
    }

    .preview-name {
        font-size: 0.6875rem;
        margin-bottom: 0.25rem;
    }

    .preview-meta {
        font-size: 0.625rem;
    }

    .format-tag {
        font-size: 0.5625rem;
        padding: 0.125rem 0.3rem;
    }

    .status-icon {
        width: 12px;
        height: 12px;
        font-size: 0.4rem;
    }

    .remove-btn {
        width: 18px;
        height: 18px;
        font-size: 0.45rem;
        top: 0.25rem;
        right: 0.25rem;
    }

    .action-bar {
        gap: 0.5rem;
    }

    .action-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    /* Benefits */
    .benefits-section {
        padding: 1.5rem 0;
    }

    .benefits-section h2 {
        font-size: 1.3rem;
    }

    .benefits-intro {
        font-size: 0.9rem;
    }

    /* SEO */
    .seo-section {
        padding: 2.5rem 0;
    }

    .seo-image-main {
        width: 180px;
        height: 180px;
    }

    .seo-image-main i {
        font-size: 3rem;
    }

    .seo-image-float.float-1 {
        width: 50px;
        height: 50px;
    }

    .seo-image-float.float-2 {
        width: 60px;
        height: 60px;
    }

    .seo-text h2 {
        font-size: 1.375rem;
    }

    .seo-text p {
        font-size: 0.9375rem;
    }

    /* FAQ */
    .faq-section {
        padding: 2.5rem 0;
    }

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

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-answer-content {
        font-size: 0.875rem;
    }
}
