/* Design Moderne - IT Cares - FOND BLANC */

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

:root {
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --accent: #10b981;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

.cart-btn {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.cart-count {
    background: white;
    color: var(--primary);
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--text-dark);
}

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-small {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-small h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero-small p {
    color: var(--text-gray);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 14px;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    background: var(--bg-main);
}

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

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 16px;
}

/* CATEGORY CARDS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* STEPS - Comment ça marche */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border: 2px solid #4a5568;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    color: white;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border-color: #667eea;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.step-card p {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.6;
}

/* PRICING CARDS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pricing-card.popular {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-nouveau {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    white-space: nowrap;
}

.price-note {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.description {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* SERVICES CARDS - Design Blanc */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card-white {
    background: #ffffff;
    border: 2px solid #e0e7ff;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #c7d2fe;
}

.service-card-white .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5b5bd6, #6366f1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(91, 91, 214, 0.3);
}

.service-card-white .service-icon i {
    font-size: 36px;
    color: white;
}

.service-card-white h3 {
    color: #1e293b;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-white .service-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.feature-list li {
    color: #475569;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

.price-large {
    font-size: 48px;
    font-weight: 900;
    color: #5b5bd6;
    margin-bottom: 25px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-large .monthly {
    font-size: 18px;
    font-weight: 600;
    color: #5b5bd6;
    margin-top: 5px;
}

.service-card-white .btn {
    width: 100%;
    background: linear-gradient(135deg, #5b5bd6, #6366f1);
    color: white;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
}

.service-card-white .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 91, 214, 0.4);
}

/* BUTTONS */
.btn {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.btn-buy, .btn-service {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-block {
    width: 100%;
}

/* CONTACT BOX */
.contact-box {
    background: white;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.contact-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-box p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-gray);
}

/* FOOTER - Design Moderne */
footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 20px 30px;
    margin-top: 0;
    color: #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-brand .logo-footer {
    font-size: 24px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .logo-footer i {
    color: #a78bfa;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #7c3aed;
    transform: translateY(-3px);
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #c4b5fd;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.footer-contact-item i {
    color: #c4b5fd;
    width: 20px;
}

.footer-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
}

.footer-bottom a {
    color: #a78bfa;
    text-decoration: none;
}

/* FAQ Section - Design Moderne */
.faq-section {
    background: #ffffff;
    padding: 80px 20px;
    color: var(--text-dark);
}

.faq-section .section-title {
    color: var(--text-dark);
}

.faq-section .section-subtitle {
    color: var(--text-gray);
}

.faq-help-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.faq-help-icon {
    font-size: 60px;
}

.faq-help-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-help-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.faq-help-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.faq-help-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.faq-help-stats i {
    color: #fbbf24;
}

.faq-help-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.faq-help-buttons .btn-phone {
    background: #7c3aed;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.faq-help-buttons .btn-phone:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.faq-help-buttons .btn-email {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.faq-help-buttons .btn-email:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.05);
    color: #7c3aed;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-accordion {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-accordion:hover {
    border-color: #7c3aed;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
}

.faq-question i {
    color: #7c3aed;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 30px 24px;
    color: var(--text-gray);
    line-height: 1.7;
    display: none;
}

.faq-item-accordion.active .faq-answer {
    display: block;
}

/* Contact Page */
.contact-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.contact-info-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    font-size: 24px;
    color: white;
}

.contact-info-item .info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-item .info p,
.contact-info-item .info a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
}

.contact-info-item .info a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.contact-form-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-form-card .form-group textarea {
    width: 100%;
    padding: 14px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 150px;
}

.contact-form-card .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--text-dark);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 32px;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cart-item {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-info p {
    color: var(--text-gray);
    font-size: 14px;
}

.cart-item-price {
    font-size: 20px;
    color: var(--accent);
    font-weight: 800;
}

.remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 15px;
}

.cart-total {
    padding: 20px 0;
    border-top: 2px solid var(--primary);
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 800;
}

.cart-total span {
    color: var(--accent);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.payment-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.payment-info i {
    color: var(--accent);
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .category-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 30px; }
    nav a { margin-left: 15px; font-size: 14px; }
}
