* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf5f0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -30px -30px 20px -30px;
    padding: 40px;
    background-color: rgb(251, 246, 239);
    border-radius: 12px 12px 0 0;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.tagline {
    text-align: center;
    font-size: 18px;
    color: #4a3a2a;  /* Improved contrast from #5a4a3a */
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #3a2317;
}

h2, h3 {
    margin-bottom: 15px;
    color: #3a2317;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    position: relative;
    z-index: 10;
}

.btn:hover {
    background: #2980b9;
}

.btn-primary {
    background: #f39c12;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.actions {
    text-align: center;
    margin: 30px 0;
}

.features {
    margin-top: 40px;
}

.features ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-note {
    background: #fff9e6;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    border: 1px solid #f0e6d2;
}

.upload-area {
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
    transition: border-color 0.3s;
}

.upload-area.dragover {
    border-color: #3498db;
    background: #ecf0f1;
}

.link-btn {
    background: none;
    border: none;
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

.file-info, .bundle-info {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.file-list {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
}

.file-list-item {
    padding: 4px 0;
    color: #444;  /* Improved contrast from #555 */
    word-break: break-all;
}

.file-info details {
    margin-top: 10px;
}

.file-info summary {
    cursor: pointer;
    color: #3498db;
    font-size: 14px;
}

.file-info summary:hover {
    text-decoration: underline;
}

.bundle-form {
    margin: 20px 0;
}

.bundle-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.bundle-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
}

.share-link {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.share-link h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    text-align: center;
}

.share-link-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.share-link input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
    font-size: 13px;
    background: #f8f9fa;
    color: #495057;
    transition: all 0.2s;
}

.share-link input:focus {
    outline: none;
    border-color: #3498db;
    background: #fff;
}

.share-link .btn {
    padding: 12px 24px;
    white-space: nowrap;
    font-weight: 500;
}

.transfer-progress {
    margin: 20px 0;
}

.progress-bar {
    height: 20px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: #27ae60;
    width: 0;
    transition: width 0.5s ease-out;
}

.waiting-message {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
    font-size: 15px;
}

.waiting-message p {
    margin: 0;
}

.expiration-info {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-radius: 6px;
    padding: 12px 20px;
    margin: 20px 0 20px 0;
    text-align: center;
}

.expiration-warning {
    color: #f57c00;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.expiration-warning span {
    font-weight: 600;
    color: #e65100;
}

/* Expiring soon state (less than 5 minutes) */
.expiration-info.expiring-soon {
    background: #ffebee;
    border-color: #ffcdd2;
    animation: pulse 2s ease-in-out infinite;
}

.expiration-info.expiring-soon .expiration-warning {
    color: #d32f2f;
}

.expiration-info.expiring-soon .expiration-warning span {
    color: #b71c1c;
}

/* Expired state */
.expiration-info.expired {
    background: #f44336;
    border-color: #d32f2f;
}

.expiration-info.expired .expiration-warning {
    color: white;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Expired bundle display */
.expired-bundle {
    text-align: center;
    padding: 40px 20px;
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 8px;
}

.expired-bundle h2 {
    color: #c62828;
    margin-bottom: 20px;
    font-size: 28px;
}

.expired-bundle p {
    color: #424242;
    font-size: 16px;
    margin: 10px 0;
}

.error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.connecting {
    text-align: center;
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
    margin: 20px 0;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.notification.success {
    border-left: 4px solid #27ae60;
}

.notification.error {
    border-left: 4px solid #e74c3c;
}

.notification.warning {
    border-left: 4px solid #f39c12;
}

.notification.info {
    border-left: 4px solid #3498db;
}

.notification-icon {
    font-size: 20px;
    margin-right: 12px;
}

.notification.success .notification-icon {
    color: #27ae60;
}

.notification.error .notification-icon {
    color: #e74c3c;
}

.notification.warning .notification-icon {
    color: #f39c12;
}

.notification.info .notification-icon {
    color: #3498db;
}

.notification-content {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    margin-left: 12px;
    opacity: 0.8;  /* Increased from 0.6 */
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

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

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

.notification.removing {
    animation: slideOut 0.3s ease-in forwards;
}

/* Inline validation messages */
.form-field {
    margin-bottom: 15px;
}

.validation-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.validation-message.show {
    display: block;
}

/* Progress bar status messages */
.progress-status {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
}

.progress-status.success {
    color: #27ae60;
}

.progress-status.error {
    color: #e74c3c;
}

/* Transfer stats (speed and ETA) */
.transfer-stats {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
}

.transfer-stats span {
    font-weight: 500;
}

/* Modal for critical confirmations */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-title {
    font-size: 20px;
    color: #3a2317;
    margin: 0;
}

.modal-body {
    margin-bottom: 25px;
    color: #4a3a2a;  /* Improved contrast from #5a4a3a */
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-secondary {
    background: #6f7f80;  /* Improved contrast from #95a5a6 */
}

.btn-secondary:hover {
    background: #5f6c6d;  /* Improved contrast from #7f8c8d */
}

/* Landing Page Styles */
.hero-section {
    background: linear-gradient(135deg, #faf5f0 0%, #fff9f5 100%);
    padding: 60px 0;
}

.hero-container {
    text-align: center;
    max-width: 900px;
}

.hero-headline {
    font-size: 48px;
    line-height: 1.2;
    color: #3a2317;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 22px;
    color: #4a3a2a;  /* Improved contrast from #5a4a3a */
    margin-bottom: 30px;
    line-height: 1.5;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    color: #27ae60;
    font-size: 16px;
    font-weight: 500;
}

.btn-hero {
    font-size: 18px;
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #3a2317;
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li {
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
}

.solution-list li {
    color: #2c3e50;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fafafa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-before {
    color: #6f7f80;  /* Improved contrast from #95a5a6 */
    font-size: 15px;
    margin-bottom: 10px;
    font-style: italic;
}

.feature-after {
    color: #27ae60;
    font-size: 16px;
    font-weight: 500;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.testimonial {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-author {
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
    font-size: 15px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #5f6c6d;  /* Improved contrast from #7f8c8d */
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fafafa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3a2317;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a3a2a;  /* Improved contrast from #5a4a3a */
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf5f0 0%, #fff9f5 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 5c8.3 0 15 6.7 15 15s-6.7 15-15 15-15-6.7-15-15 6.7-15 15-15z' fill='rgba(243,156,18,0.05)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: #3a2317;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a3a2a;  /* Improved contrast from #5a4a3a */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.final-cta .btn-primary {
    background: #f39c12;
    color: white;
    font-size: 20px;
    padding: 18px 40px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.final-cta .btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

/* Footer */
.footer {
    background: white;  /* White background as per actual rendering */
    color: #333;  /* Dark text for white background */
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-column h4,
.footer-heading {
    color: #333;  /* Dark text for white background */
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    display: block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #495057;  /* Darker gray for better contrast on white */
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;  /* Light border for white background */
    color: #666;  /* Darker gray for better contrast on white */
    font-size: 14px;
}

/* Animation for CTA section */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(243, 156, 18, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    }
}

.final-cta .btn-primary {
    animation: pulse 2s infinite;
}

.final-cta .btn-primary:hover {
    animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 20px;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
    
    .final-cta .btn-primary {
        font-size: 18px;
        padding: 15px 30px;
    }
}

/* Header Section Styles */
.header-section {
    background: linear-gradient(135deg, #faf5f0 0%, #fff9f5 100%);
    padding: 30px 0;
    margin-bottom: 40px;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    text-decoration: none;
}

.header-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Ensure btn-secondary doesn't conflict with header layout */
.header-nav .btn-secondary {
    white-space: nowrap;
    margin-left: 20px;
}

/* Content section for template pages */
.content-section {
    padding: 0 20px 60px;
}

.content-section .container {
    max-width: 900px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Page title styling */
.page-title {
    font-size: 42px;
    color: #3a2317;
    margin-bottom: 20px;
    text-align: center;
}

.page-subtitle {
    font-size: 20px;
    color: #4a3a2a;  /* Improved contrast from #5a4a3a */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-logo {
        max-width: 150px;
    }
    
    .header-nav .btn-secondary {
        margin-left: 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
}

/* How It Works Page Styles */
.process-overview {
    margin: 60px 0;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #f39c12, #e67e22);
    transform: translateX(-50%);
    z-index: 0;
}

.how-it-works-steps {
    display: grid;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-card:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 0;
}

.step-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.step-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.step-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 15px 0;
    color: #3a2317;
    font-size: 24px;
    font-weight: 600;
}

.step-content p {
    margin: 0 0 20px 0;
    color: #4a3a2a;
    font-size: 16px;
    line-height: 1.6;
}

.step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

/* Technology Section Styles */
.tech-explanation {
    margin: 80px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
}

.tech-intro {
    text-align: center;
    font-size: 18px;
    color: #4a3a2a;
    margin-bottom: 30px;
}

.tech-toggle {
    display: block;
    margin: 0 auto 30px;
    padding: 15px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-toggle:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.tech-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.tech-details.expanded {
    max-height: 1000px;
}

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

.tech-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tech-item h3 {
    color: #3a2317;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.tech-item p {
    color: #4a3a2a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tech-highlight {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

/* Privacy Section Styles */
.privacy-section {
    margin: 80px 0;
    padding: 50px;
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-radius: 16px;
    border: 2px solid #f39c12;
}

.privacy-highlight {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.privacy-highlight h3 {
    color: #3a2317;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-highlight p {
    color: #4a3a2a;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.guarantee-text {
    font-size: 16px;
    font-weight: 500;
    color: #3a2317;
}

.privacy-comparison {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-comparison h4 {
    color: #3a2317;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-table {
    display: grid;
    gap: 15px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.comparison-label {
    font-weight: 600;
    color: #3a2317;
    font-size: 16px;
}

.comparison-traditional {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 500;
}

.comparison-burrito {
    color: #27ae60;
    font-size: 14px;
    font-weight: 500;
}

/* Enhanced CTA Section */
.cta-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    border-radius: 16px;
    text-align: center;
}

.cta-content h2 {
    color: #3a2317;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: #4a3a2a;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.badge-icon {
    font-size: 16px;
}

.btn-primary.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(243, 156, 18, 0.4);
}

.btn-icon {
    font-size: 18px;
}

.btn-arrow {
    font-size: 16px;
    margin-left: 4px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-size: 16px;
    font-weight: 500;
}

.feature-check {
    font-size: 18px;
    color: #27ae60;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    font-size: 14px;
    color: #4a3a2a;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 16px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .step-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .step-card:nth-child(even) {
        flex-direction: column;
    }
    
    .step-badge {
        flex-direction: row;
        align-self: flex-start;
        margin-left: 10px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-icon {
        font-size: 28px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .tech-explanation {
        padding: 20px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-section {
        padding: 30px 20px;
    }
    
    .privacy-guarantees {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Security Page Styles */
.security-hero {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0 60px 0;
    text-align: center;
    border: 2px solid #f39c12;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(243, 156, 18, 0.15);
}

/* Security Benefits Overview */
.security-benefits-overview {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #f39c12;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    color: #3a2317;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.benefit-content p {
    color: #4a3a2a;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.security-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.security-statement {
    position: relative;
    z-index: 1;
}

.security-statement .security-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.security-statement h2 {
    color: #3a2317;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.security-statement p {
    color: #4a3a2a;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.security-badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.security-principles {
    margin: 60px 0;
}

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

.principle-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.principle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.principle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-radius: 20px 20px 0 0;
}

.principle-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.principle-tier {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.principle-tier.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.principle-card h3 {
    color: #3a2317;
    font-size: 24px;
    margin: 0 30px 15px;
    font-weight: 600;
}

.principle-card p {
    color: #4a3a2a;
    margin: 0 30px 20px;
    line-height: 1.6;
    font-size: 16px;
}

.principle-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 30px 30px;
}

.tech-security-section {
    margin: 80px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
}

.tech-security-section .tech-intro {
    text-align: center;
    font-size: 18px;
    color: #4a3a2a;
    margin-bottom: 30px;
}

.transparency-section {
    margin: 80px 0;
    padding: 50px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 16px;
    border: 2px solid #27ae60;
}

.transparency-content {
    text-align: center;
}

.transparency-intro {
    margin-bottom: 40px;
}

.transparency-intro .transparency-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.transparency-intro h3 {
    color: #3a2317;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.transparency-intro p {
    color: #4a3a2a;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.knowledge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.knowledge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.knowledge-item .knowledge-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
}

.knowledge-item .knowledge-text {
    font-size: 16px;
    color: #3a2317;
    font-weight: 500;
    line-height: 1.5;
}

.transparency-guarantee {
    margin-top: 30px;
}

.guarantee-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
}

.guarantee-highlight .guarantee-icon {
    font-size: 24px;
}

.security-tips {
    margin: 80px 0;
}

.tips-intro {
    text-align: center;
    margin-bottom: 40px;
}

.tips-intro p {
    color: #4a3a2a;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tip-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.tip-card.good::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-radius: 20px 20px 0 0;
}

.tip-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tip-priority {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tip-priority.high {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.tip-priority.medium {
    background: linear-gradient(135deg, #f39c12, #d68910);
    color: white;
}

.tip-card h3 {
    color: #3a2317;
    font-size: 24px;
    margin: 0 30px 15px;
    font-weight: 600;
}

.tip-card p {
    color: #4a3a2a;
    margin: 0 30px 20px;
    line-height: 1.6;
    font-size: 16px;
}

.tip-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 30px 30px;
}

.comparison-table-wrapper .browser-col.burrito {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.comparison-table-wrapper .browser-col.cloud {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

/* Enhanced Privacy Comparison Cards */
.comparison-cards-wrapper {
    margin-top: 40px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.comparison-card.burrito-card {
    border-color: #27ae60;
}

.comparison-card.cloud-card {
    border-color: #e74c3c;
}

.comparison-card .card-header {
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #3a2317;
}

.card-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.excellent {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.card-badge.warning {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.comparison-card .card-content {
    padding: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-card .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.comparison-card .feature-item:last-child {
    border-bottom: none;
}

.comparison-card .feature-icon {
    font-size: 16px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
}

.comparison-card .feature-item.excellent .feature-text {
    color: #27ae60;
}

.comparison-card .feature-item.limited .feature-text {
    color: #e74c3c;
}

.comparison-card .feature-item.warning .feature-text {
    color: #f39c12;
}

/* Mobile Responsive Styles for Security Page */
@media (max-width: 768px) {
    .security-hero {
        padding: 30px 20px;
    }
    
    .security-benefits-overview {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-card .card-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .card-logo {
        width: 100%;
        justify-content: center;
    }
    
    .card-badge {
        align-self: center;
    }
    
    .comparison-card .card-content {
        padding: 20px;
    }
    
    .security-statement .security-icon {
        font-size: 48px;
    }
    
    .security-statement h2 {
        font-size: 28px;
    }
    
    .security-statement p {
        font-size: 18px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principle-header {
        padding: 20px 20px 15px;
    }
    
    .principle-card h3 {
        margin: 0 20px 15px;
        font-size: 20px;
    }
    
    .principle-card p {
        margin: 0 20px 15px;
    }
    
    .principle-benefits {
        margin: 15px 20px 20px;
    }
    
    .tech-security-section {
        padding: 20px;
    }
    
    .transparency-section {
        padding: 30px 20px;
    }
    
    .transparency-intro .transparency-icon {
        font-size: 48px;
    }
    
    .transparency-intro h3 {
        font-size: 24px;
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .knowledge-item {
        padding: 15px;
    }
    
    .guarantee-highlight {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-header {
        padding: 20px 20px 15px;
    }
    
    .tip-card h3 {
        margin: 0 20px 15px;
        font-size: 20px;
    }
    
    .tip-card p {
        margin: 0 20px 15px;
    }
    
    .tip-benefits {
        margin: 15px 20px 20px;
    }
}

/* Compatibility Page Styles */
.compatibility-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0 60px 0;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 10px;
    display: block;
}

.stat-item .stat-label {
    font-size: 16px;
    color: #4a3a2a;
    font-weight: 600;
}

.browser-overview {
    margin: 60px 0;
}

.browser-tier-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tier-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: #4a3a2a;
    font-weight: 500;
}

.tier-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tier-dot.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.tier-dot.good {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.browser-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.browser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.browser-card.featured {
    border: 2px solid #f39c12;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.2);
}

.browser-card.featured::before {
    content: '🏆 RECOMMENDED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.browser-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.browser-card.tier-premium::after {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.browser-card.tier-good::after {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-radius: 20px 20px 0 0;
}

.browser-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.browser-info h3 {
    margin: 0;
    font-size: 20px;
    color: #3a2317;
    font-weight: 600;
}

.browser-info .version {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.tier-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-indicator {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-indicator.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.tier-indicator.good {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.browser-content {
    padding: 0 30px 30px;
}

.performance-score {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.score-value {
    font-size: 18px;
    line-height: 1;
}

.score-label {
    font-size: 10px;
    opacity: 0.9;
}

.performance-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 12px;
    color: #4a3a2a;
    font-weight: 600;
    min-width: 60px;
}

.bar-track {
    flex: 1;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 3px;
    transition: width 0.8s ease;
}

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

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

.feature-item.excellent {
    color: #27ae60;
}

.feature-item.warning {
    color: #f39c12;
}

.feature-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.browser-recommendation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.recommendation-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.recommendation-text {
    font-size: 14px;
    color: #3a2317;
    font-weight: 600;
    font-style: italic;
}

.browser-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.benefit-badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.2);
}

.benefit-badge.good {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.browser-note {
    color: #4a3a2a;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

/* Mobile Section Styles */
.mobile-section {
    margin: 80px 0;
}

.mobile-overview {
    margin-top: 40px;
}

.mobile-intro {
    text-align: center;
    color: #4a3a2a;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mobile-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mobile-card.ios {
    border-left: 4px solid #007aff;
}

.mobile-card.android {
    border-left: 4px solid #3ddc84;
}

.mobile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-bottom: 1px solid #e9ecef;
}

.mobile-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-title {
    flex: 1;
}

.mobile-card h3 {
    color: #3a2317;
    font-size: 24px;
    margin: 0 0 8px 0;
}

.mobile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    font-size: 14px;
    color: #f39c12;
}

.rating-score {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.mobile-features {
    margin-bottom: 20px;
    text-align: left;
    padding: 0 30px;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4a3a2a;
    padding: 8px 0;
}

.mobile-recommendation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 30px 30px;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.rec-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.rec-text {
    font-size: 14px;
    color: #3a2317;
    font-weight: 600;
    font-style: italic;
}

.mobile-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.benefit-badge.ios {
    background: linear-gradient(135deg, #007aff, #5856d6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.benefit-badge.android {
    background: linear-gradient(135deg, #3ddc84, #4caf50);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(61, 220, 132, 0.2);
}

/* Feature Comparison Styles */
.feature-comparison {
    margin: 80px 0;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-intro p {
    color: #4a3a2a;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.comparison-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: #4a3a2a;
    font-weight: 500;
}

.highlight-icon {
    font-size: 16px;
}

.highlight-text {
    color: #4a3a2a;
    font-weight: 500;
}

.tier-icon {
    font-size: 14px;
    margin-right: 2px;
}

.toggle-text {
    font-weight: 600;
}

.toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.trust-text {
    color: #4a3a2a;
    font-weight: 500;
}

.comparison-toggle {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.comparison-toggle:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.comparison-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.comparison-container.expanded {
    max-height: 800px;
}

.comparison-table-wrapper {
    margin-top: 30px;
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.modern-comparison-table th {
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: #3a2317;
    border-bottom: 2px solid #f0f0f0;
}

.modern-comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-col {
    width: 25%;
    font-weight: 600;
}

.browser-col {
    width: 18.75%;
    text-align: center;
}

.browser-col.chrome {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.browser-col.firefox {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.browser-col.safari {
    background: linear-gradient(135deg, #007aff, #5856d6);
    color: white;
}

.browser-col.brave {
    background: linear-gradient(135deg, #fb542b, #ff6b35);
    color: white;
}

.feature-name {
    font-weight: 600;
    color: #3a2317;
}

.support-excellent {
    color: #27ae60;
    font-weight: 600;
}

.support-good {
    color: #3498db;
    font-weight: 600;
}

.support-warning {
    color: #f39c12;
    font-weight: 600;
}

.support-limited {
    color: #e74c3c;
    font-weight: 600;
}

.support-icon {
    margin-right: 8px;
}

/* Troubleshooting Styles */
.troubleshooting {
    margin: 80px 0;
}

.troubleshooting-intro {
    text-align: center;
    margin-bottom: 40px;
}

.troubleshooting-intro p {
    color: #4a3a2a;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.help-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.help-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    min-width: 120px;
}

.help-stat .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 8px;
}

.help-stat .stat-desc {
    font-size: 14px;
    color: #4a3a2a;
    font-weight: 500;
}

.tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tip-card.update {
    border-left: 4px solid #3498db;
}

.tip-card.extensions {
    border-left: 4px solid #e74c3c;
}

.tip-card.network {
    border-left: 4px solid #f39c12;
}

.tip-card.performance {
    border-left: 4px solid #27ae60;
}

.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-bottom: 1px solid #e9ecef;
}

.tip-icon {
    font-size: 32px;
    padding: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tip-priority {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tip-priority.high {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.tip-priority.medium {
    background: linear-gradient(135deg, #f39c12, #d68910);
    color: white;
}

.tip-priority.low {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.tip-card h3 {
    color: #3a2317;
    font-size: 20px;
    margin: 20px 30px 15px;
}

.tip-card p {
    margin: 0 30px 20px;
    line-height: 1.6;
}

.tip-actions {
    margin: 20px 30px;
}

.tip-success-rate {
    margin: 20px 30px 30px;
    padding: 12px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 8px;
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
    text-align: center;
}

.tip-card p {
    color: #4a3a2a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tip-actions {
    margin-top: 20px;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tip-link:hover {
    color: #2980b9;
}

.tip-highlight {
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #4a3a2a;
    font-weight: 600;
    border-left: 3px solid #f39c12;
}

/* Responsive Design for Compatibility Page */
@media (max-width: 768px) {
    .compatibility-hero {
        padding: 20px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item .stat-number {
        font-size: 36px;
    }
    
    .browser-tier-legend {
        flex-direction: column;
        gap: 15px;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-header {
        padding: 20px 20px 15px;
    }
    
    .browser-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .browser-icon {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
    
    .browser-content {
        padding: 0 20px 20px;
    }
    
    .performance-score {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .score-circle {
        width: 50px;
        height: 50px;
    }
    
    .score-value {
        font-size: 16px;
    }
    
    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-header {
        padding: 20px;
    }
    
    .mobile-features {
        padding: 0 20px;
    }
    
    .mobile-recommendation {
        margin: 20px 20px 20px;
    }
    
    .comparison-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .comparison-table-wrapper {
        font-size: 12px;
    }
    
    .modern-comparison-table th,
    .modern-comparison-table td {
        padding: 10px 8px;
    }
    
    .help-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .tip-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-header {
        padding: 15px 20px;
    }
    
    .tip-card h3 {
        margin: 15px 20px 10px;
        font-size: 18px;
    }
    
    .tip-card p {
        margin: 0 20px 15px;
    }
    
    .tip-actions {
        margin: 15px 20px;
    }
    
    .tip-success-rate {
        margin: 15px 20px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .browser-benefits,
    .mobile-benefits {
        justify-content: flex-start;
    }
    
    .btn-primary.btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* WeTransfer Comparison Page Styles */
.comparison-header {
    margin: 60px 0;
}

.comparison-cards-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.comparison-cards {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    border: 2px solid transparent;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.comparison-card.burrito-card {
    border-color: #27ae60;
}

.comparison-card.cloud-card {
    border-color: #f39c12;
}

.comparison-card .card-header {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    border-radius: 16px 16px 0 0;
    border-bottom: 2px solid #f0f0f0;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3a2317;
}

.card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.excellent {
    background: #27ae60;
    color: white;
}

.card-badge.warning {
    background: #f39c12;
    color: white;
}

.comparison-card .card-content {
    padding: 30px 25px;
}

.comparison-card .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.comparison-card .feature-item:last-child {
    border-bottom: none;
}

.comparison-card .feature-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.comparison-card .feature-item.excellent .feature-text {
    color: #27ae60;
    font-weight: 600;
}

.comparison-card .feature-item.limited .feature-text {
    color: #e74c3c;
    font-weight: 600;
}

.comparison-card .feature-item.warning .feature-text {
    color: #f39c12;
    font-weight: 600;
}

.vs-divider {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

/* Detailed Comparison Table */
.detailed-comparison {
    margin: 80px 0;
}

.comparison-table-wrapper .browser-col.burrito {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.comparison-table-wrapper .browser-col.cloud {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

/* Use Cases Section */
.use-cases {
    margin: 80px 0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.use-case-card.burrito-advantages {
    border-color: #27ae60;
}

.use-case-card.wetransfer-scenarios {
    border-color: #f39c12;
}

.use-case-card .card-header {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    border-radius: 16px 16px 0 0;
    border-bottom: 2px solid #f0f0f0;
}

.use-case-card .card-content {
    padding: 30px 25px;
}

.use-case-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.use-case-item:last-child {
    border-bottom: none;
}

.use-case-icon {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.use-case-item.excellent {
    color: #27ae60;
    font-weight: 600;
}

.use-case-item.good {
    color: #3498db;
    font-weight: 600;
}

.use-case-item.warning {
    color: #f39c12;
    font-weight: 600;
}

.use-case-item.limited {
    color: #e74c3c;
    font-weight: 600;
}

/* Privacy Comparison Section */
.privacy-comparison {
    margin: 80px 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.privacy-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.privacy-card.burrito-privacy {
    border-color: #27ae60;
}

.privacy-card.wetransfer-privacy {
    border-color: #f39c12;
}

.privacy-header {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    border-radius: 16px 16px 0 0;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.privacy-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3a2317;
}

.privacy-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-badge.excellent {
    background: #27ae60;
    color: white;
}

.privacy-badge.warning {
    background: #f39c12;
    color: white;
}

.privacy-content {
    padding: 30px 25px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #4a3a2a;
}

.privacy-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.privacy-highlight:last-child {
    border-bottom: none;
}

.highlight-icon {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.privacy-highlight.excellent {
    color: #27ae60;
    font-weight: 600;
}

.privacy-highlight.warning {
    color: #f39c12;
    font-weight: 600;
}

.privacy-highlight.limited {
    color: #e74c3c;
    font-weight: 600;
}

/* Switching Guide Section */
.switching-guide {
    margin: 80px 0;
}

.switch-intro {
    text-align: center;
    font-size: 18px;
    color: #4a3a2a;
    margin-bottom: 40px;
}

.switch-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.switch-step {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: #3498db;
}

.switch-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.switch-step .step-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.switch-step .step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.switch-step .step-icon {
    font-size: 24px;
}

.switch-step .step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3a2317;
}

.switch-step .step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.switch-step .benefit-badge {
    background: #e8f5e8;
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Enhanced CTA Section */
.cta-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    border-radius: 16px;
    text-align: center;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #3a2317;
    font-weight: 600;
}

.cta-highlight .highlight-icon {
    font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .comparison-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .vs-divider {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .use-case-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .switch-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .comparison-card .card-header,
    .use-case-card .card-header,
    .privacy-header {
        padding: 20px;
    }
    
    .comparison-card .card-content,
    .use-case-card .card-content,
    .privacy-content {
        padding: 25px 20px;
    }
}

/* Enhanced WeTransfer Comparison Page Styles */
.comparison-hero {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #faf5f0 0%, #fff9f5 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.comparison-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.comparison-cards-wrapper {
    position: relative;
    z-index: 1;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.comparison-card.burrito-card {
    border-color: #27ae60;
}

.comparison-card.burrito-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.comparison-card.cloud-card {
    border-color: #f39c12;
}

.comparison-card.cloud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.comparison-card .card-header {
    padding: 30px;
    background: linear-gradient(135deg, #fafbfc, #f8f9fa);
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 32px;
    font-weight: 800;
    color: #3a2317;
    margin: 0;
}

.card-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-badge.excellent {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.card-badge.warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.comparison-card .card-content {
    padding: 40px 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-card .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.comparison-card .feature-item:hover {
    background: #f0f2f5;
    transform: translateX(5px);
}

.comparison-card .feature-item.excellent {
    border-left-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.comparison-card .feature-item.warning {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.comparison-card .feature-item.limited {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.comparison-card .feature-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.comparison-card .feature-text {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.comparison-card .feature-item.excellent .feature-text {
    color: #27ae60;
}

.comparison-card .feature-item.warning .feature-text {
    color: #f39c12;
}

.comparison-card .feature-item.limited .feature-text {
    color: #e74c3c;
}

.card-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-card {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-note {
    color: #6c757d;
    font-size: 14px;
    font-style: italic;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 200px;
}

.vs-text {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 2;
}

.vs-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    z-index: 1;
}

/* Why Switch Section */
.why-switch {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
}

.switch-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.reason-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.reason-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.reason-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3a2317;
    margin-bottom: 15px;
}

.reason-card p {
    color: #4a3a2a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reason-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Comparison Toggle */
.comparison-toggle-container {
    text-align: center;
    margin: 30px 0;
}

.comparison-toggle {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.comparison-toggle:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
}

.toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.comparison-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.comparison-container.expanded {
    max-height: 1000px;
}

.comparison-intro {
    text-align: center;
    color: #4a3a2a;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Enhanced Use Cases */
.use-case-intro {
    text-align: center;
    color: #4a3a2a;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.use-case-item:hover {
    background: #f0f2f5;
    transform: translateX(5px);
}

.use-case-item.excellent {
    border-left-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.use-case-item.warning {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.use-case-item.limited {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.use-case-item.good {
    border-left-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.use-case-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.use-case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.use-case-title {
    font-size: 16px;
    font-weight: 700;
    color: #3a2317;
    line-height: 1.3;
}

.use-case-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

/* Enhanced Privacy Section */
.privacy-intro {
    text-align: center;
    color: #4a3a2a;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.privacy-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.privacy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.privacy-highlight:hover {
    background: #f0f2f5;
    transform: translateX(5px);
}

.privacy-highlight.excellent {
    border-left-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.privacy-highlight.warning {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.privacy-highlight.limited {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.highlight-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlight-title {
    font-size: 16px;
    font-weight: 700;
    color: #3a2317;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

/* Enhanced Switch Timeline */
.switch-timeline {
    position: relative;
    margin: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3498db, #2980b9);
    z-index: 1;
}

.switch-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.switch-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.switch-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.step-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
}

.step-icon {
    font-size: 32px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3a2317;
    margin-bottom: 15px;
}

.step-content p {
    color: #4a3a2a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-benefits {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.benefit-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-badge.excellent {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

/* Enhanced CTA Section */
.cta-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)" /></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Ensure CTA links are clickable */
.cta-section a.btn {
    position: relative;
    z-index: 100;
    display: inline-block;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    background: #6f7f80;
    color: white;
    border: 2px solid #6f7f80;
}

.btn-secondary:hover {
    background: #5f6c6d;
    border-color: #5f6c6d;
    transform: translateY(-2px);
}

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cta-highlight .highlight-content {
    flex: 1;
    text-align: left;
}

.cta-highlight .highlight-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.cta-highlight .highlight-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .comparison-hero {
        margin: 40px 0;
        padding: 20px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        order: 2;
        min-height: 60px;
    }
    
    .vs-text {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .card-icon {
        font-size: 48px;
        width: 60px;
        height: 60px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .comparison-card .card-header {
        padding: 20px;
    }
    
    .comparison-card .card-content {
        padding: 25px 20px;
    }
    
    .switch-reasons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .switch-step {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .step-badge {
        flex-direction: row;
        gap: 15px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .cta-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Dropbox Comparison Page Enhanced Styles */
.comparison-hero {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #faf5f0 0%, #fff9f5 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.comparison-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.05), rgba(39, 174, 96, 0.05));
    pointer-events: none;
}

/* Enhanced Comparison Table */
.modern-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.modern-comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    color: #3a2317;
}

.modern-comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
    font-size: 15px;
}

.modern-comparison-table tr:last-child td {
    border-bottom: none;
}

.modern-comparison-table tr:nth-child(even) {
    background: #fafafa;
}

.modern-comparison-table tr:hover {
    background: #f8f9fa;
}

.feature-label {
    font-weight: 600;
    color: #3a2317;
    min-width: 150px;
}

.feature-excellent {
    color: #27ae60;
    font-weight: 600;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    padding: 8px 15px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.feature-warning {
    color: #f39c12;
    font-weight: 600;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 8px 15px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.feature-limited {
    color: #e74c3c;
    font-weight: 600;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    padding: 8px 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.feature-neutral {
    color: #6c757d;
    font-weight: 500;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 8px 15px;
    border-radius: 8px;
    border-left: 4px solid #6c757d;
}

/* Enhanced Key Differences Section */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.principle-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.principle-option {
    padding: 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.principle-option.burrito {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: #27ae60;
}

.principle-option.competitor {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-color: #e74c3c;
}

.principle-option h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #3a2317;
}

.principle-option p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Enhanced Use Case Cards */
.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.use-case-card.burrito-advantages .use-case-item {
    border-left-color: #27ae60;
}

.use-case-card.wetransfer-scenarios .use-case-item {
    border-left-color: #f39c12;
}

.use-case-icon {
    font-size: 24px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.use-case-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.use-case-text strong {
    color: #3a2317;
    font-weight: 600;
}

/* Enhanced Real-World Scenario */
.scenario-showcase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

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

.scenario-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.scenario-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3a2317;
    margin-bottom: 10px;
}

.scenario-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.scenario-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.scenario-card.burrito-scenario {
    border-color: #27ae60;
}

.scenario-card.dropbox-scenario {
    border-color: #f39c12;
}

.scenario-card-header {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #faf5f0, #fff9f5);
    border-bottom: 2px solid #f0f0f0;
}

.scenario-logo {
    font-size: 32px;
    margin-bottom: 10px;
}

.scenario-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3a2317;
    margin-bottom: 10px;
}

.scenario-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scenario-badge.excellent {
    background: #27ae60;
    color: white;
}

.scenario-badge.warning {
    background: #f39c12;
    color: white;
}

.scenario-steps {
    padding: 25px;
}

.scenario-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.step-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.step-icon.excellent {
    color: #27ae60;
}

.step-icon.warning {
    color: #f39c12;
}

.step-icon.limited {
    color: #e74c3c;
}

.step-icon.neutral {
    color: #6c757d;
}

.step-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.scenario-summary {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.scenario-summary.excellent {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-top-color: #27ae60;
}

.scenario-summary.limited {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-top-color: #e74c3c;
}

.summary-time, .summary-cost {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.summary-time {
    color: #3a2317;
}

.summary-cost {
    color: #666;
}

/* Enhanced CTA Section */
.cta-container {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.3);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cta-highlight span {
    font-weight: 600;
    font-size: 14px;
}

.cta-actions {
    margin-top: 20px;
}

.cta-button {
    font-size: 18px;
    padding: 16px 40px;
    background: #f39c12;
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
    display: inline-block;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive Styles for Dropbox Comparison */
@media (max-width: 768px) {
    .comparison-hero {
        padding: 20px;
        margin: 40px 0;
    }
    
    .comparison-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .vs-divider {
        width: 60px;
        height: 60px;
        font-size: 16px;
        align-self: center;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .modern-comparison-table th,
    .modern-comparison-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principle-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .scenario-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scenario-showcase {
        padding: 20px;
    }
    
    .scenario-header h3 {
        font-size: 24px;
    }
    
    .cta-container {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-highlight {
        justify-content: center;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* Speed Calculator Modern Styling */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-header .page-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.calculator-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 1rem;
}

.input-with-unit {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-unit input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.3s ease;
}

.input-with-unit input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.input-with-unit select {
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    background: white;
    min-width: 80px;
    transition: border-color 0.3s ease;
}

.input-with-unit select:focus {
    outline: none;
    border-color: #3498db;
}

.calculate-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.calculator-results {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e8ecf0;
}

.calculator-results h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-card.primary {
    border-left: 4px solid #27ae60;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.result-card.comparison {
    border-left: 4px solid #f39c12;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.result-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.advantage-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.disadvantage-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.transfer-time {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
}

.transfer-note {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.benefits, .drawbacks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.benefit-tag {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.drawback-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.time-saved {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
}

.savings-highlight h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.savings-time {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
}

.savings-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.speed-presets {
    margin-bottom: 60px;
}

.speed-presets h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.preset-btn {
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.preset-btn:hover {
    transform: translateY(-3px);
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.preset-btn:active {
    transform: translateY(-1px);
}

.preset-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.preset-btn strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.preset-speeds {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.transfer-factors {
    margin-bottom: 60px;
}

.transfer-factors h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.factor-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

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

.factor-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.factor-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.factor-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.speed-comparison-section {
    margin-bottom: 60px;
}

.speed-comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Space Grotesk', sans-serif;
}

.comparison-table th {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    text-align: left;
}

.comparison-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.comparison-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.comparison-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e8ecf0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.fast-speed {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-weight: 600;
}

.optimization-tips {
    margin-bottom: 60px;
}

.optimization-tips h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

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

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-check {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for Speed Calculator */
@media (max-width: 768px) {
    .page-header .page-title {
        font-size: 2rem;
    }
    
    .calculator-container {
        gap: 20px;
    }
    
    .calculator-card {
        padding: 20px;
    }
    
    .input-with-unit {
        flex-direction: column;
        gap: 10px;
    }
    
    .input-with-unit input,
    .input-with-unit select {
        width: 100%;
    }
    
    .preset-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .factors-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .benefits,
    .drawbacks {
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Upload cards responsive */
    .file-info-card,
    .bundle-form-card,
    .share-link-card {
        max-width: 100%;
        margin: 20px auto;
    }
}

/* Home page hero section styles */
.hero-section {
    background: linear-gradient(135deg, #faf5f0 0%, #f5f0e8 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-section .container {
    max-width: 800px;
    background: transparent;
    box-shadow: none;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a4a3a;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #3a2317;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    white-space: nowrap;
}

/* Upload section styles */
.upload-section {
    padding: 60px 0;
    background: #faf5f0;
}

.upload-section .container {
    max-width: 700px;
}

.upload-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.upload-header {
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.upload-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.upload-header p {
    color: #5a4a3a;
    font-size: 1.1rem;
    margin: 0;
}

.upload-area {
    margin: 0;
    padding: 50px 40px;
    border: 2px dashed #e0e0e0;
    border-radius: 0;
    background: #fafafa;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.upload-area.dragover {
    border-color: #f39c12;
    background: #fff9e6;
}

.upload-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 1.1rem;
    color: #5a4a3a;
    margin: 0;
}

.upload-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.upload-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-icon {
    font-size: 1.1rem;
}

/* File info card styles */
.file-info-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px auto;
    overflow: hidden;
    max-width: 600px;
}

.file-info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.file-info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.file-info-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.file-info-subtitle {
    color: #5a4a3a;
    margin: 0;
    font-size: 1rem;
}

.file-info-details {
    padding: 30px;
}

.file-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.file-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
}

.detail-value {
    color: #5a4a3a;
    font-weight: 500;
}

.folder-contents {
    margin-top: 20px;
}

.file-list-details {
    margin-top: 15px;
}

.file-list-summary {
    cursor: pointer;
    color: #3498db;
    font-weight: 500;
    padding: 10px 0;
}

.file-list-summary:hover {
    color: #2980b9;
}

/* Bundle form card styles */
.bundle-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px auto;
    overflow: hidden;
    max-width: 500px;
}

.bundle-form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.bundle-form-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bundle-form-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.bundle-form-subtitle {
    color: #5a4a3a;
    margin: 0;
    font-size: 1rem;
}

.bundle-form-content {
    padding: 30px;
}

.bundle-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.bundle-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.bundle-input:focus {
    outline: none;
    border-color: #3498db;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

/* Share link card styles */
.share-link-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px auto;
    overflow: hidden;
    max-width: 600px;
}

.share-link-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.share-link-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.share-link-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.share-link-subtitle {
    color: #5a4a3a;
    margin: 0;
    font-size: 1rem;
}

.share-link-content {
    padding: 30px;
}

.share-link-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.share-link-input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
}

.btn-copy {
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.expiration-info {
    margin-bottom: 20px;
}

.expiration-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff3e0;
    border: 1px solid #ffd54f;
    border-radius: 8px;
    color: #ff8f00;
}

.warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.waiting-message {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
    color: #3498db;
}

.waiting-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.waiting-text {
    margin: 0;
    font-weight: 500;
}

/* Transfer progress card styles */
.transfer-progress-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
    overflow: hidden;
}

.transfer-progress-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.transfer-progress-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.transfer-progress-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.transfer-progress-subtitle {
    color: #5a4a3a;
    margin: 0;
    font-size: 1rem;
}

.transfer-progress-content {
    padding: 30px;
}

.progress-bar {
    height: 12px;
    background: #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.transfer-stats {
    color: #5a4a3a;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive design for home page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .upload-header,
    .upload-area {
        padding: 30px 20px;
    }
    
    .upload-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .upload-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .file-info-header,
    .bundle-form-header,
    .share-link-header,
    .transfer-progress-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .file-info-details,
    .bundle-form-content,
    .share-link-content,
    .transfer-progress-content {
        padding: 20px;
    }
    
    .share-link-input-group {
        flex-direction: column;
    }
    
    .progress-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* iOS Download Button Styles */
.ios-download-container {
    display: none;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    animation: slideInUp 0.5s ease-out;
}

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

.ios-download-content {
    text-align: center;
    color: white;
}

.ios-download-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.ios-file-info {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.ios-file-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}

.ios-instructions {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.ios-download-btn {
    background: white !important;
    color: #667eea !important;
    padding: 20px 50px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ios-download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa !important;
}

.ios-download-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ios-note {
    font-size: 14px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Mobile-specific adjustments for iOS download */
@media (max-width: 768px) {
    .ios-download-container {
        padding: 20px;
        margin: 20px -15px;
        border-radius: 0;
    }
    
    .ios-download-content h3 {
        font-size: 24px;
    }
    
    .ios-file-info {
        font-size: 16px;
    }
    
    .ios-download-btn {
        padding: 18px 40px !important;
        font-size: 18px !important;
        width: 100%;
        max-width: 300px;
    }
}