/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-blue: #0b143a; /* Dark Blue */
    --secondary-blue: #141f4d; /* Slightly lighter dark blue */
    --accent-yellow: #cda85f; /* Discreet Gold */
    --accent-hover: #b58d45; /* Darker Gold */
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-graphite: #2a2e35;
    --whatsapp-green: #25D366;
    
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 110px; /* Offset para o header fixo */
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    width: 70%;
    margin: 0 auto;
    max-width: 1400px;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.8s ease forwards; }

.section-padding { padding: 80px 20px; }
.bg-graphite { background-color: var(--bg-graphite); color: #fff; }
.bg-blue { background-color: var(--primary-blue); color: #fff; }

.premium-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-hover));
    color: var(--primary-blue);
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(205, 168, 95, 0.3);
}
.premium-btn-outline {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
}
.premium-btn-outline:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 110px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    padding-left: 15%; /* Para alinhar com os 70% do container */
    flex: 0 0 auto;
    padding-right: 40px; /* Reduz o espaço em branco após a logo */
    background: #fff;
    position: relative;
    z-index: 2;
}

.logo-container img {
    max-height: 90px;
}

.nav-container {
    flex: 1;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15%; /* Para alinhar com os 70% */
    position: relative;
    /* Diagonal cut */
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

/* Evita quebras de menu e cortes no inicio em resoluções menores */
@media (max-width: 1450px) and (min-width: 993px) {
    .logo-container {
        padding-left: 5%;
        padding-right: 20px;
    }
    .nav-container {
        padding-right: 5%;
    }
}

.main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent-yellow);
}

.main-nav a.btn-highlight {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.main-nav a.btn-highlight:hover, .main-nav a.btn-highlight.active {
    background-color: var(--accent-hover);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--whatsapp-green);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn span.small-text {
    display: block;
    font-size: 10px;
    font-weight: normal;
    text-transform: none;
    margin-bottom: 2px;
}

.whatsapp-btn-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
}

/* Footer Info Bar */
.footer-info-bar {
    background-color: #f1f1f1;
    border-top: 2px solid var(--accent-yellow);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.footer-info-bar .item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content Area */
.page-content {
    padding: 60px 5%;
    min-height: 400px;
    background-color: #f4f7f6;
}

.page-title {
    color: var(--primary-blue);
    font-size: 36px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--accent-yellow);
    display: inline-block;
    padding-bottom: 10px;
}

/* Modules & Cards */
.module-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.module-title {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 15px;
}

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

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top-color: var(--accent-yellow);
}

.card h4 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 18px;
}

.list-items {
    list-style: none;
    padding: 0;
}

.list-items li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.list-items li::before {
    content: '✓';
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.art-box {
    background: #1e2b5e;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}
.art-box h4 { margin-top:0; color: var(--accent-yellow); }
.art-box ul { padding-left: 20px; }
.art-box ul li { margin-bottom: 8px; list-style-type: decimal; }

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #fff;
    margin-left: 15px;
    transition: background-color 0.3s;
}
.social-icon:hover { background-color: var(--accent-yellow); color: #1e2b5e; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: var(--accent-yellow);
    outline: none;
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}
.btn-submit:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

/* Responsive */


@media (max-width: 992px) {
    body { padding-top: 100px; }
    .container { width: 100%; padding: 0 20px; box-sizing: border-box; }
    
    .site-header { flex-direction: row; align-items: center; justify-content: space-between; height: 100px; padding: 0; width: 100%; box-sizing: border-box; }
    
    .logo-container { padding: 0 5%; flex: 1; display: flex; justify-content: space-between; align-items: center; width: 100%; box-sizing: border-box; }
    .logo-container img { max-height: 70px; } /* Ajuste de tamanho da logo para mobile */
    
    .mobile-menu-btn { display: block; background: none; border: none; font-size: 35px; color: var(--primary-blue); cursor: pointer; padding: 0; }
    
    .nav-container { 
        position: absolute; 
        top: 100px; 
        left: 0; 
        width: 100%; 
        background: var(--primary-blue); 
        clip-path: none; 
        padding: 0; 
        display: none; /* Escondido por padrão */
        flex-direction: column; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .nav-container.active-mobile { display: flex; }
    
    .main-nav { flex-direction: column; width: 100%; padding: 20px 0; gap: 15px; align-items: center; }
    .main-nav a { font-size: 16px; width: 100%; text-align: center; padding: 10px 0; }
    
    .hero-section { justify-content: flex-start; text-align: left; }
    .hero-content { text-align: left !important; align-items: flex-start; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .footer-info-bar { flex-direction: column; align-items: center; gap: 10px; }
}

/* ===================================
   PDF Compressor Page
   =================================== */

.compressor-page {
    background: var(--bg-light);
}

/* Hero */
.compressor-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2a6c 50%, #0b143a 100%);
    padding: 60px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.compressor-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(205, 168, 95, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.compressor-hero-content {
    position: relative;
    z-index: 2;
}
.compressor-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(205, 168, 95, 0.15);
    color: var(--accent-yellow);
    margin-bottom: 20px;
    border: 1px solid rgba(205, 168, 95, 0.25);
}
.compressor-hero h1 {
    color: #fff;
    font-size: 38px;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.compressor-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* Privacy Banner */
.privacy-banner {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(205, 168, 95, 0.2);
}
.privacy-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.privacy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    flex-shrink: 0;
}
.privacy-text {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.5;
}
.privacy-text strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
}
.privacy-text em {
    color: var(--accent-yellow);
    font-style: normal;
    font-weight: 600;
}

/* Compressor Workspace */
.compressor-workspace {
    max-width: 640px;
    margin: 0 auto 60px;
}

/* Upload Zone */
.upload-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 2px dashed #c5cad3;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.upload-zone:hover {
    border-color: var(--accent-yellow);
    background: rgba(205, 168, 95, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.upload-zone.drag-over {
    border-color: var(--accent-yellow);
    background: rgba(205, 168, 95, 0.08);
    box-shadow: 0 0 0 4px rgba(205, 168, 95, 0.15);
}
.upload-zone-content {
    text-align: center;
    padding: 40px 20px;
}
.upload-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 20, 58, 0.06) 0%, rgba(205, 168, 95, 0.08) 100%);
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.upload-zone h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--primary-blue);
}
.upload-zone p {
    margin: 0 0 12px;
    color: var(--text-gray);
    font-size: 15px;
}
.upload-limit {
    display: inline-block;
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}

/* File Info Card */
.file-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.file-info-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
}
.file-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    flex-shrink: 0;
}
.file-details {
    flex: 1;
    min-width: 0;
}
.file-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file-size {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 2px;
}
.remove-file-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
}
.remove-file-btn:hover {
    background: #fee;
    color: #dc3545;
}

/* Compression Options */
.compression-options {
    margin-bottom: 24px;
}
.option-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.compression-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.level-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 10px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.level-btn:hover {
    border-color: #ccc;
    background: #f5f5f5;
}
.level-btn.active {
    border-color: var(--accent-yellow);
    background: rgba(205, 168, 95, 0.06);
    box-shadow: 0 0 0 3px rgba(205, 168, 95, 0.12);
}
.level-icon {
    font-size: 24px;
    line-height: 1;
}
.level-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}
.level-desc {
    font-size: 11px;
    color: var(--text-gray);
}

/* Compress Button */
.compress-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2a6c 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.compress-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 20, 58, 0.35);
}
.compress-btn:active {
    transform: translateY(0);
}

/* Progress Card */
.progress-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    min-height: 200px;
}
.progress-spinner {
    margin-bottom: 20px;
}
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #eee;
    border-top-color: var(--accent-yellow);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.progress-text {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
}
.progress-bar-wrapper {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-hover) 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 0%;
}

/* Result Card */
.result-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    text-align: center;
}
.result-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    margin-bottom: 16px;
}
.result-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin: 0 0 24px;
}
.result-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}
.stat-item {
    text-align: center;
}
.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}
.stat-value.highlight {
    color: var(--primary-blue);
}
.stat-value.reduction {
    color: #25D366;
}
.stat-divider {
    color: #ccc;
    display: flex;
    align-items: center;
}
.result-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}
.new-file-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--text-gray);
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}
.new-file-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(11, 20, 58, 0.03);
}

/* How it Works */
.how-it-works {
    margin-bottom: 60px;
}
.section-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-yellow);
    margin: 12px auto 0;
    border-radius: 2px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(205, 168, 95, 0.4);
}
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(11, 20, 58, 0.06);
    color: var(--primary-blue);
    margin-bottom: 16px;
}
.step-card h4 {
    color: var(--text-dark);
    font-size: 17px;
    margin: 0 0 8px;
}
.step-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Security Features */
.security-features {
    margin-bottom: 20px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(11, 20, 58, 0.06);
    color: var(--primary-blue);
    flex-shrink: 0;
}
.feature-card h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin: 0 0 6px;
}
.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Compressor Page Responsive */
@media (max-width: 768px) {
    .compressor-hero h1 { font-size: 28px; }
    .compressor-subtitle { font-size: 15px; }
    .privacy-content { flex-direction: column; text-align: center; }
    .steps-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .result-stats { flex-direction: column; gap: 12px; }
    .stat-divider { transform: rotate(90deg); }
    .feature-card { flex-direction: column; text-align: center; align-items: center; }
    .compression-levels { grid-template-columns: 1fr; }
    .compressor-workspace { margin: 0 auto 40px; }
}
