*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,sans-serif;color:#222}
.container{width:90%;max-width:1200px;margin:auto}
header{border-bottom:1px solid #eee;background:#fff}
.nav{display:flex;align-items:center;justify-content:space-between;padding:15px 0}
.logo{display:flex;align-items:center;gap:10px}
.logo img{height:60px}
.logo span{color:#ff6a00}
.menu{display:flex;gap:20px;list-style:none}
.menu a{text-decoration:none;color:#222}
.btn,.play-btn{background:#ff6a00;color:#fff;padding:12px 20px;border-radius:8px;text-decoration:none}
:root {
    --primary: #FF5500;
    --primary-hover: #e04b00;
    --dark-blue: #0A192F;
    --light-bg: #F8F9FA;
    --text-color: #333333;
    --gray-text: #666666;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-orange {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.badge-google {
    height: 50px;
    transition: transform 0.2s ease;
}
.badge-google:hover {
    transform: scale(1.05);
}

/* --- HEADER & NAV --- */
header {
    background-color: var(--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: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, #FFF5F0 60%, #FFA575 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

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

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.h-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.h-feat i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-images {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.image-stack-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.h-img-1 { width: 180px; height: 130px; }
.h-img-2 { width: 180px; height: 160px; }
.phone-mockup { width: 190px; height: auto; filter: drop-shadow(0px 15px 20px rgba(0,0,0,0.15)); }

/* --- PROBLEMS SECTION --- */
.problems {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.prob-card {
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #EAEAEA;
}

.prob-info {
    padding: 20px;
    flex: 1;
}

.prob-info i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.prob-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.prob-info p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.prob-img {
    width: 110px;
    height: 100%;
    object-fit: cover;
}

/* --- WHY CHOOSE US & CATEGORIES --- */
.why-and-cats {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.main-flex-container {
    display: flex;
    gap: 40px;
}

.why-section {
    flex: 2;
}

.cats-section {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.why-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.why-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
    list-style: none;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.cat-item i {
    color: var(--primary);
    width: 15px;
}

.btn-outline-cats {
    display: block;
    text-align: center;
    border: 1px solid #E0E0E0;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-cats:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- CTA BANNER --- */
.cta-banner {
    background: linear-gradient(90deg, #FF6611 0%, #FF8844 100%);
    padding: 40px 0;
    color: var(--white);
    position: relative;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.worker-img {
    height: 120px;
    margin-top: -60px;
    margin-bottom: -40px;
    object-fit: contain;
}

.cta-text h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-blue);
    color: #A0AEC0;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-grid, .problems-grid, .main-flex-container {
        grid-template-columns: 1fr;
    }
    .main-flex-container {
        flex-direction: column;
    }
    .problems-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-features {
        justify-content: center;
    }
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .cta-left {
        flex-direction: column;
    }
    .worker-img {
        display: none;
    }
}

/*
PowerExperts Connect - style.css
Version avec optimisation mobile sans modifier l'architecture HTML
*/

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,sans-serif;color:#222}
.container{width:90%;max-width:1200px;margin:auto}
header{border-bottom:1px solid #eee;background:#fff}
.nav{display:flex;align-items:center;justify-content:space-between;padding:15px 0}
.logo{display:flex;align-items:center;gap:10px}
.logo img{height:60px}
.logo span{color:#ff6a00}
.menu{display:flex;gap:20px;list-style:none}
.menu a{text-decoration:none;color:#222}
.btn,.play-btn{background:#ff6a00;color:#fff;padding:12px 20px;border-radius:8px;text-decoration:none}

:root {
    --primary: #FF5500;
    --primary-hover: #e04b00;
    --dark-blue: #0A192F;
    --light-bg: #F8F9FA;
    --text-color: #333333;
    --gray-text: #666666;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-orange {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

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

.hero-content h1 {
    font-size:2.8rem;
    line-height:1.2;
}

.hero-images {
    display:flex;
    gap:15px;
    align-items:center;
    justify-content:center;
}

.image-stack-left {
    display:flex;
    flex-direction:column;
    gap:15px;
}

.phone-mockup {
    width:190px;
    height:auto;
}

.problems-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.main-flex-container {
    display:flex;
    gap:40px;
}

.why-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

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

/* TABLETTE */
@media (max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .problems-grid{
        grid-template-columns:1fr;
    }

    .main-flex-container{
        flex-direction:column;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

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

/* MOBILE OPTIMISÉ */
@media (max-width:768px){

    nav{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:10px 12px;
        gap:10px;
    }

    .logo{
        gap:6px;
        max-width:55%;
    }

    .logo img{
        height:30px;
    }

    .logo h2{
        font-size:1.2rem;
        line-height:1.1;
    }

    .nav-links,
    .menu-toggle{
        display:none;
    }

    .btn-orange{
        padding:8px 12px;
        font-size:0.75rem;
        white-space:nowrap;
    }

    .hero{
        padding:40px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

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

    .hero-content h1{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:1rem;
    }

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

    .h-feat{
        width:100%;
        max-width:300px;
    }

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

    .image-stack-left{
        display:none;
    }

    .phone-mockup{
        width:180px;
        max-width:80%;
    }

    .why-grid,
    .footer-grid,
    .problems-grid{
        grid-template-columns:1fr;
    }

    .cat-list{
        grid-template-columns:1fr;
    }

    .cta-flex,
    .cta-left{
        flex-direction:column;
        text-align:center;
    }

    .worker-img{
        display:none;
    }
}
