/* ==============================
   VARIABLES & RESET
   ============================== */

:root {
    --green: #5a5b4c;
    --beige: #d9cdb0;
    --beige-light: #e8dcc3;
    --coral: #e8683a;
    --coral-hover: #d55a2e;
    --bg: #FFFFFF;
    --text: #111111;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-large: 20px;
    --font-title: 'Roboto', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==============================
   UTILITIES
   ============================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 400;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
}

.btn-primary {
    background-color: var(--coral);
    color: white;
    border-color: var(--coral);
}

.btn-primary:hover {
    background-color: var(--coral-hover);
    border-color: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.btn-primary-large {
    background-color: var(--coral);
    color: white;
    border-color: var(--coral);
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-primary-large:hover {
    background-color: var(--coral-hover);
    border-color: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.btn-primary-small {
    background-color: var(--coral);
    color: white;
    border-color: var(--coral);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    background-color: var(--coral-hover);
    border-color: var(--coral-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-secondary:hover {
    background-color: var(--coral);
    border-color: var(--coral);
    color: white;
}

/* ==============================
   HEADER
   ============================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo a {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--green);
}

.nav-link:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ==============================
   HERO
   ============================== */

.hero {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-photo-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-large);
    box-shadow: 0 8px 32px var(--shadow-hover);
    border: 3px solid var(--green);
    display: block;
}

.hero-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(90, 91, 76, 0.95) 0%, rgba(90, 91, 76, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 0 0 var(--radius-large) var(--radius-large);
    color: white;
    text-align: left;
}

.hero-badge-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.hero-badge-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--beige);
    letter-spacing: 0.3px;
}

.hero-badge-experience {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-badge-experience svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--beige);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid var(--green);
}

.badge svg {
    color: var(--green);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--text);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-promise {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-proofs {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 500;
}

.proof-item svg {
    color: var(--green);
    flex-shrink: 0;
}

/* ==============================
   FORFAITS
   ============================== */

.forfaits {
    background-color: #fafafa;
}

.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.forfait-card {
    background-color: var(--beige-light);
    border: 2px solid var(--green);
    border-radius: var(--radius-large);
    padding: 32px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.forfait-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.forfait-featured {
    border-color: var(--green);
    border-width: 3px;
}

.forfait-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.forfait-header {
    margin-bottom: 24px;
}

.forfait-name {
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 12px;
}

.forfait-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.forfait-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pricing-col {
    background-color: white;
    border: 1px solid var(--green);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.pricing-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}

.pricing-rate {
    font-size: 0.85rem;
    color: var(--text-light);
}

.forfaits-avantages {
    background-color: var(--beige-light);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.forfaits-avantages h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--green);
}

.forfaits-avantages ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forfaits-avantages li {
    color: var(--text);
    font-weight: 500;
}

/* ==============================
   PONCTUEL
   ============================== */

.ponctuel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.ponctuel-card {
    background-color: var(--beige-light);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow);
    transition: var(--transition);
}

.ponctuel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.ponctuel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: white;
    border: 2px solid var(--green);
    border-radius: 50%;
    margin-bottom: 20px;
}

.ponctuel-icon svg {
    color: var(--green);
}

.ponctuel-name {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 20px;
}

.ponctuel-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ponctuel-hours {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.ponctuel-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
}

.ponctuel-rate {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==============================
   METHODE / TIMELINE
   ============================== */

.methode {
    background-color: #fafafa;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.timeline-step {
    text-align: center;
    padding: 32px;
    background-color: var(--beige-light);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px var(--shadow);
    transition: var(--transition);
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 12px;
}

.timeline-desc {
    color: var(--text-light);
    line-height: 1.6;
}

.methode-cta {
    text-align: center;
}

/* ==============================
   CTA FINAL
   ============================== */

.cta-final {
    background: linear-gradient(135deg, var(--beige) 0%, #fef9c3 100%);
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==============================
   FOOTER
   ============================== */

.footer {
    background-color: var(--text);
    color: #ffffff;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--beige);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #cccccc;
}

.footer-contact h4 {
    color: var(--beige);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.footer-contact svg {
    color: var(--beige);
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--beige);
}

.footer-legal p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-credit {
    font-size: 0.85rem;
    font-style: italic;
    color: #999999;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 24px;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Header Mobile */
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-top: 16px;
    }

    .nav-list {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn-primary-small {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Hero Mobile */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-photo-container {
        max-width: 100%;
        margin: 0 auto 32px;
    }

    .hero-badge-overlay {
        padding: 16px 20px;
    }

    .hero-badge-name {
        font-size: 1.25rem;
    }

    .hero-badge-title {
        font-size: 0.85rem;
    }

    .hero-badge-experience {
        font-size: 0.75rem;
    }

    .logo img {
        height: 50px;
    }

    .logo a {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-promise {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-proofs {
        gap: 24px;
    }

    /* Forfaits Mobile */
    .forfaits-grid {
        grid-template-columns: 1fr;
    }

    .forfait-pricing {
        grid-template-columns: 1fr;
    }

    /* Ponctuel Mobile */
    .ponctuel-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline Mobile */
    .timeline {
        grid-template-columns: 1fr;
    }

    /* CTA Mobile */
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .btn-primary-large {
        font-size: 1rem;
        padding: 16px 32px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .pricing-value {
        font-size: 1.75rem;
    }

    .ponctuel-price {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}
