﻿:root {
    --primary-color: #70C75C;
    --primary-dark: #70C75C;
    --secondary-color: #70C75C;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --border-color: #E0E0E0;
    --accent-orange: #FF8D3A;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #fff;
}

/* ── Header ── */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.95;
    }

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Stats ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* ── Formation cards ── */
.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.formation-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .formation-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

.card-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

    .card-header h2 {
        font-size: 1.5rem;
        color: var(--secondary-color);
        font-weight: 700;
        margin-bottom: 0.4rem;
    }

    .card-header .client {
        font-size: 0.95rem;
        color: var(--accent-orange);
        font-weight: 600;
    }

.card-content h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.card-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

    .card-content ul li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-light);
    }

        .card-content ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

/* ── Highlight box ── */
.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .highlight-box strong {
        color: var(--secondary-color);
        font-weight: 600;
    }

/* ── Tags ── */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.2rem 0;
}

.tag {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .tag:hover {
        background: var(--primary-color);
        color: white;
    }

/* ── Benefits ── */
.benefits {
    background: var(--bg-light);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2.2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Approach cards ── */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.approach-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.approach-card h3 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.approach-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

    .btn-secondary:hover {
        background: white;
        color: var(--primary-color);
    }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

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

    .formation-card {
        padding: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}
