/* --- PALETTE POINT HOUR --- */
:root {
  --ph-bigstone: #122237;
  --ph-biscay: #1f3c70;
  --ph-fiord: #425570;
  --ph-danube: #608FCB;
  --ph-surfcamp: #2e8b94;
  --ph-gradient: linear-gradient(90deg, #1f3c70 0%, #122237 100%);
  --ph-font: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ph-font);
    line-height: 1.6;
    color: var(--ph-bigstone);
    background: #f7f8fa;
}

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

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--ph-font);
}

.btn-primary {
    background: var(--ph-biscay);
    color: #fff;
}

.btn-primary:hover {
    background: var(--ph-danube);
    color: #fff;
}

.btn-secondary {
    background: var(--ph-surfcamp);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--ph-danube);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--ph-biscay);
    color: #fff;
}

/* Header */
.header {
    background: linear-gradient(90deg, #1f3c70 0%, #122237 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(18,34,55,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* Suppression du blend-mode et du blur pour garder le fond bleu foncé */
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.logo h1 {
    font-size: 28px;
    color: #1a73e8;
    font-weight: 700;
}

.logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(18,34,55,0.10));
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.13em;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 4px 0 4px 0;
    border-bottom: 2.5px solid transparent;
    letter-spacing: 0.01em;
    margin: 0 10px;
}

.nav-menu a:hover, .nav-menu a:focus {
    color: var(--ph-danube);
    border-bottom: 2.5px solid var(--ph-danube);
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f3c70 0%, #122237 100%);
    padding: 120px 0 80px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-item .icon {
    font-size: 18px;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    background: white;
    color: #333;
    padding: 30px 20px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
    width: 280px;
    position: relative;
}

.phone-header {
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 30px;
    font-size: 18px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: #000;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-pattern {
    width: 80%;
    height: 80%;
    background: #000;
    position: relative;
}

.qr-pattern::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: white;
    border: 3px solid black;
}

.phone-mockup p {
    margin-bottom: 20px;
    color: #666;
}

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

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

.section-header h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

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

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

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

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon.blue { background: #e3f2fd; }
.feature-icon.yellow { background: #fff3e0; }
.feature-icon.green { background: #e8f5e8; }
.feature-icon.purple { background: #f3e5f5; }
.feature-icon.orange { background: #fff3e0; }
.feature-icon.teal { background: #e0f2f1; }

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Feature blocks, download, etc. */
.feature-block {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 32px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(31,60,112,0.04);
    border-left: 6px solid var(--ph-surfcamp);
}

.download-section {
    background: var(--ph-gradient) !important;
    color: #fff !important;
}

.download-section h2, .download-section h3 {
    color: #fff !important;
}

.download-section a {
    color: var(--ph-danube);
}

.download-section a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--ph-bigstone);
    color: #fff;
    padding: 32px 0 0;
    margin-top: 48px;
}

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

.footer-brand h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h5 {
    margin-bottom: 20px;
    font-size: 18px;
}

.link-group a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: white;
}

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

.footer a {
    color: var(--ph-danube);
}

.footer a:hover {
    color: #fff;
}

/* Accent icons, etc. */
.icon, .feature-icon {
    color: var(--ph-surfcamp);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .hamburger-menu {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #fff;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .hamburger-menu:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Responsive (existant conservé) */
@media (max-width: 700px) {
    .feature-block {padding: 18px 8px;}
}