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

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

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: #2c3e50;
}

.logo-domain {
    color: #dc2626; /* Rouge principal */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: #dc2626; /* Rouge principal */
}

.login-btn {
    color: #666;
    font-size: 0.9rem;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c); /* Rouge principal */
    color: white;
    text-align: center;
    padding: 12px;
    position: relative;
}

.promo-banner .close-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Character Illustrations */
.hero-illustrations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.character {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.character-1 { top: 20%; left: 10%; animation-delay: 0s; }
.character-2 { top: 40%; right: 15%; animation-delay: 1s; }
.character-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.character-4 { bottom: 30%; right: 10%; animation-delay: 0.5s; }

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

/* Filter Buttons */
.filter-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #dc2626; /* Rouge principal */
    color: #dc2626;
    background: #fef2f2; /* Rouge clair */
}

.sub-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sub-filter {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
}

.sub-filter.active,
.sub-filter:hover {
    background: #dc2626; /* Rouge principal */
    color: white;
    border-color: #dc2626;
}

/* Certificate Cards */
.certificates-section {
    padding: 3rem 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cert-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12); /* Ombre rouge */
}

.cert-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
}

.cert-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cert-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 0.9rem;
}

.cert-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc2626; /* Rouge principal */
}

.price-period {
    font-size: 0.9rem;
    color: #666;
}

.cert-body {
    padding: 0;
}

/* Certificate Types with Colors */
.cert-card.dv .cert-body,
.cert-card.wildcard .cert-body,
.cert-card.multi .cert-body {
    background: #5a6c7d;
    color: white;
}

.cert-card.ev .cert-body,
.cert-card.ev-multi .cert-body {
    background: #dc2626; /* Rouge principal pour EV */
    color: white;
}

.cert-card.premium .cert-body,
.cert-card.instant .cert-body,
.cert-card.unified .cert-body {
    background: #4a90e2;
    color: white;
}

.cert-features {
    padding: 1.5rem;
    list-style: none;
}

.cert-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.cert-buttons {
    padding: 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #dc2626; /* Rouge principal */
    color: white;
}

.btn-primary:hover {
    background: #b91c1c; /* Rouge foncé */
}

.btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

/* Save & Win Section */
.save-win-section {
    background: linear-gradient(135deg, #dc2626, #b91c1c); /* Rouge principal */
    color: white;
    padding: 4rem 0;
}

.save-win-content {
    text-align: center;
}

.save-win-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.save-win-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.comparison-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-side {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.score {
    font-size: 4rem;
    font-weight: bold;
    margin: 0 2rem;
}

.competitors-grid {
    background: white;
    color: #333;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.competitor-logo {
    padding: 1rem;
    opacity: 0.7;
    font-weight: 600;
    color: #666;
}

.price-comparison {
    background: linear-gradient(45deg, #dc2626, #b91c1c); /* Rouge principal */
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    text-align: center;
}

.price-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 6px;
}

.price-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.zania-highlight {
    background: #dc2626 !important; /* Rouge principal */
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: white;
}

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

.benefits-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.newsletter-input {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #dc2626; /* Rouge principal */
}

.newsletter-btn {
    background: #dc2626; /* Rouge principal */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #b91c1c; /* Rouge foncé */
}

/* Order Form */
.order-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 2rem auto;
}

.order-step {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626; /* Rouge principal */
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.payment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Success Modal */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.success-modal {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    transform: scale(0);
    transition: transform 0.5s ease;
}

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

.success-icon {
    font-size: 4rem;
    color: #dc2626; /* Rouge principal */
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 2px solid #dc2626; /* Rouge principal */
    padding-top: 0.5rem;
    margin-top: 1rem;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Login Section Styles */
.login-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-form-container,
.signup-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.login-form-container h1,
.signup-form-container h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-form-container p,
.signup-form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.login-form,
.signup-form {
    margin-bottom: 2rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.forgot-password {
    color: #dc2626; /* Rouge principal */
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-google,
.btn-microsoft {
    background: white;
    border: 2px solid #e9ecef;
    color: #333;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google:hover,
.btn-microsoft:hover {
    border-color: #dc2626; /* Rouge principal */
    background: #fef2f2;
}

.signup-link,
.signin-link {
    text-align: center;
}

.signup-link a,
.signin-link a {
    color: #dc2626; /* Rouge principal */
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover,
.signin-link a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: white;
}

.dmca-badge {
    background: #dc2626; /* Rouge principal */
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .certificates-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .character {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .score {
        margin: 1rem 0;
    }

    .form-row {
        flex-direction: column;
    }

    .form-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .order-form {
        margin: 1rem;
        padding: 1.5rem;
    }

    .login-form-container,
    .signup-form-container {
        margin: 1rem;
        padding: 2rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

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

.notification {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #dc2626;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    max-width: 100%;
    word-wrap: break-word;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left-color: #16a34a;
}

.notification.warning {
    border-left-color: #f59e0b;
}

.notification.error {
    border-left-color: #dc2626;
}

.notification.info {
    border-left-color: #3b82f6;
}

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

.notification-title {
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #374151;
}

.notification-message {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.notification-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.notification-btn.primary {
    background: #dc2626;
    color: white;
}

.notification-btn.primary:hover {
    background: #b91c1c;
}

.notification-btn.secondary {
    background: #f3f4f6;
    color: #374151;
}

.notification-btn.secondary:hover {
    background: #e5e7eb;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    margin-top: 1rem;
    font-weight: 500;
}

/* Modal Improvements */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-content {
    line-height: 1.6;
    color: #374151;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Page Content for Footer Links */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.page-content-text {
    line-height: 1.8;
    color: #374151;
}

.page-content-text h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.page-content-text h3 {
    color: #374151;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.page-content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content-text li {
    margin-bottom: 0.5rem;
}

.page-content-text p {
    margin-bottom: 1rem;
}

/* Contact Info Styling */
.contact-info {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
}

.contact-icon {
    font-size: 1.2rem;
    color: #dc2626;
    min-width: 24px;
}

.contact-text {
    color: #374151;
}

.contact-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification-container {
        left: 20px;
        right: 20px;
        top: 20px;
        max-width: none;
    }

    .notification {
        margin-bottom: 0.5rem;
    }

    .modal {
        margin: 1rem;
        max-width: none;
        max-height: none;
        height: calc(100vh - 2rem);
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-align: center;
    padding: 12px;
    position: relative;
}

.promo-banner .close-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Character Illustrations */
.hero-illustrations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.character {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.character-1 { top: 20%; left: 10%; animation-delay: 0s; }
.character-2 { top: 40%; right: 15%; animation-delay: 1s; }
.character-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.character-4 { bottom: 30%; right: 10%; animation-delay: 0.5s; }

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

/* Filter Buttons */
.filter-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #3498db;
    color: #3498db;
    background: #f8f9fa;
}

.sub-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sub-filter {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
}

.sub-filter.active,
.sub-filter:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Certificate Cards */
.certificates-section {
    padding: 3rem 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cert-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

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

.cert-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
}

.cert-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cert-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 0.9rem;
}

.cert-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
}

.cert-body {
    padding: 0;
}

/* Certificate Types with Colors */
.cert-card.dv .cert-body,
.cert-card.wildcard .cert-body,
.cert-card.multi .cert-body {
    background: #5a6c7d;
    color: white;
}

.cert-card.ev .cert-body,
.cert-card.ev-multi .cert-body {
    background: #52c4a0;
    color: white;
}

.cert-card.premium .cert-body,
.cert-card.instant .cert-body,
.cert-card.unified .cert-body {
    background: #4a90e2;
    color: white;
}

.cert-features {
    padding: 1.5rem;
    list-style: none;
}

.cert-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.cert-buttons {
    padding: 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

/* Save & Win Section */
.save-win-section {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 4rem 0;
}

.save-win-content {
    text-align: center;
}

.save-win-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.save-win-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.comparison-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-side {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.score {
    font-size: 4rem;
    font-weight: bold;
    margin: 0 2rem;
}

.competitors-grid {
    background: white;
    color: #333;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.competitor-logo {
    padding: 1rem;
    opacity: 0.7;
    font-weight: 600;
    color: #666;
}

.price-comparison {
    background: linear-gradient(45deg, #e67e22, #d35400);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    text-align: center;
}

.price-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 6px;
}

.price-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.zania-highlight {
    background: #52c4a0 !important;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: white;
}

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

.benefits-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.newsletter-input {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #c0392b;
}

/* Order Form */
.order-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 2rem auto;
}

.order-step {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.payment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Success Modal */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.success-modal {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    transform: scale(0);
    transition: transform 0.5s ease;
}

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

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 2px solid #3498db;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Login Section Styles */
.login-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-form-container,
.signup-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.login-form-container h1,
.signup-form-container h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-form-container p,
.signup-form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.login-form,
.signup-form {
    margin-bottom: 2rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-google,
.btn-microsoft {
    background: white;
    border: 2px solid #e9ecef;
    color: #333;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google:hover,
.btn-microsoft:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.signup-link,
.signin-link {
    text-align: center;
}

.signup-link a,
.signin-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover,
.signin-link a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: white;
}

.dmca-badge {
    background: #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .certificates-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .character {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .score {
        margin: 1rem 0;
    }

    .form-row {
        flex-direction: column;
    }

    .form-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .order-form {
        margin: 1rem;
        padding: 1.5rem;
    }

    .login-form-container,
    .signup-form-container {
        margin: 1rem;
        padding: 2rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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