/* ===== VARIABLES ===== */
:root {
    --blue-dark: #0A2540;
    --blue: #4A90E2;
    --orange: #FF6B4A;
    --white: #FFFFFF;
    --light: #F8FAFE;
    --gray: #5A6B7A;
    --border: #E5E9F0;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(74,144,226,0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--blue-dark);
    line-height: 1.5;
    background: var(--white);
}

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

/* ===== TYPO ===== */
.text-orange {
    color: var(--orange);
}

/* ===== SCROLL DOUX ===== */
html {
    scroll-behavior: smooth;
}

/* ===== HEADER ===== */
.header {
    background: var(--blue-dark);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ===== LOGO ===== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo {    height:90px !important; /* Hauteur maximale pour un header de 80px */    width: auto !important;   /* Conserve les proportions d'origine */    display: block;    transition: transform 0.3s ease, opacity 0.3s ease;}
.logo:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

/* ===== MENU ===== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: block;
    transition: color 0.3s;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s;
}

.nav-menu > li > a:hover {
    color: white;
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

/* ===== SOUS-MENU ===== */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 4px;
}

.nav-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--blue-dark);
    font-size: 14px;
    transition: all 0.2s;
}

.sub-menu li a:hover {
    background: var(--light);
    color: var(--blue);
    padding-left: 30px;
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 5px 15px rgba(74,144,226,0.3);
}

.btn-primary:hover {
    background: #3A7BCE;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74,144,226,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
}

.btn-large {
    padding: 12px 32px;
    font-size: 15px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    padding: 50px 0 60px;
    background: var(--light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background: rgba(74,144,226,0.1);
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--blue-dark);
}

.hero-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    padding: 8px;
}

.hero-img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
}

/* ===== PROCESS ===== */
.process {
    padding: 60px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: var(--light);
    transition: transform 0.3s;
}

.process-item:hover {
    transform: translateY(-5px);
}

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

.process-item h3 {
    font-size: 20px;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.process-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== PRODUITS ===== */
.products {
    padding: 40px 0 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
}

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

.product-card {
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-blue {
    background: linear-gradient(145deg, white, #F0F7FF);
    border: 1px solid rgba(74,144,226,0.2);
}

.product-orange {
    background: linear-gradient(145deg, white, #FFF4F0);
    border: 1px solid rgba(255,107,74,0.2);
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-blue .product-category {
    color: var(--blue);
}

.product-orange .product-category {
    color: var(--orange);
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--blue-dark);
}

.product-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.product-features li {
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-blue .product-features li::before {
    content: '✓';
    color: var(--blue);
    font-weight: bold;
}

.product-orange .product-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: bold;
}

.product-price {
    background: rgba(0,0,0,0.02);
    padding: 15px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-right: 5px;
}

.price-note {
    font-size: 12px;
    color: var(--gray);
}

.price-renew {
    display: block;
    font-size: 12px;
    color: var(--orange);
    margin-top: 5px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--blue-dark);
    color: white;
    padding: 30px 0 20px;
    width: 100%;
}

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

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-row.center {
    justify-content: center;
    margin-bottom: 0;
}

.footer-address {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.5;
}

.footer-support {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-support a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.footer-support a:hover {
    text-decoration: underline;
}

.footer-links {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 2px;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-payments {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    height: 25px;
    width: auto;
    transition: transform 0.3s;
    display: block;
}

.payment-icon:hover {
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    text-align: center;
}

/* ===== PAGE PRODUIT EasyDash ===== */

/* Product Hero */
.product-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-hero-content {
    max-width: 500px;
}

.product-hero-badge {
    display: inline-block;
    background: rgba(255,107,74,0.1);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--blue-dark);
}

.product-hero-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-hero-actions {
    display: flex;
    gap: 15px;
}

.product-hero-image {
    display: flex;
    justify-content: center;
}

.product-image-frame {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    padding: 10px;
}

.product-hero-img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    font-size: 20px;
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CARTES AVEC BORDURES ===== */
.card-section {
    padding: 30px 0;
    background: var(--light);
}

/* Carte texte */
.info-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card h2 {
    font-size: 36px;
    color: var(--blue-dark);
    margin-bottom: 20px;
    text-align: center;
}

.card-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

/* Liste des fonctionnalités - style moderne */
.feature-list {
    list-style: none;
    margin: 30px 0 35px;
}

.feature-list li {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.feature-list li:hover {
    background: rgba(74,144,226,0.02);
    padding-left: 10px;
}

.feature-title {
    font-weight: 700;
    color: var(--blue);
    min-width: 200px;
    font-size: 16px;
}

.feature-desc {
    color: var(--blue-dark);
    font-size: 15px;
    flex: 1;
    line-height: 1.5;
}

/* Bloc prix */
.price-block {
    background: linear-gradient(135deg, rgba(74,144,226,0.05), rgba(255,107,74,0.05));
    padding: 25px;
    border-radius: 20px;
    margin: 25px 0 30px;
    text-align: center;
    border: 1px solid rgba(74,144,226,0.15);
}

.price-block .price-label {
    font-size: 15px;
    color: var(--gray);
    margin-right: 12px;
}

.price-block .price-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-right: 8px;
}

.price-block .price-period {
    font-size: 15px;
    color: var(--gray);
    margin-right: 8px;
}

.price-block .price-renewal {
    display: inline-block;
    font-size: 14px;
    color: var(--orange);
    font-weight: 500;
    margin-left: 5px;
}

/* Bouton centré */
.button-center {
    text-align: center;
    margin-top: 10px;
}

/* Carte image */
.image-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Compatibility */
.compatibility {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.compatibility-content h2 {
    font-size: 32px;
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.compatibility-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.brand-tag {
    background: var(--light);
    color: var(--blue-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
}

.compatibility-note {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 80px 0;
    background: var(--light);
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.legal-card h1 {
    font-size: 42px;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.legal-date {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-card h2 {
    font-size: 24px;
    color: var(--blue-dark);
    margin: 35px 0 15px;
}

.legal-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-card ul {
    margin: 15px 0 25px 25px;
}

.legal-card li {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-card a {
    color: var(--blue);
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .legal-card {
        padding: 30px 25px;
    }
    
    .legal-card h1 {
        font-size: 32px;
    }
    
    .legal-card h2 {
        font-size: 20px;
    }
}







/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid,
    .product-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-buttons,
    .product-hero-actions {
        justify-content: center;
    }
    
    .process-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .info-card h2 {
        font-size: 28px;
    }
    
    .feature-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .feature-title {
        min-width: auto;
    }
    
    .price-block .price-amount {
        font-size: 32px;
    }
    
    .price-block .price-renewal {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 15px 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .process-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-hero-content h1 {
        font-size: 32px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payments {
        justify-content: center;
    }
    
    .brands-grid {
        gap: 10px;
    }
    
    .brand-tag {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card h2 {
        font-size: 24px;
    }
    
    .price-block {
        padding: 18px;
    }
    
    .price-block .price-amount {
        font-size: 28px;
    }
    
    .feature-list li {
        padding: 12px 0;
    }
}