/* Styles spécifiques à la page d'accueil */

/* Variables spécifiques à la homepage */
:root {
    --vert-clair: #6b9479;
}

/* Styles de body spécifiques à la homepage */
body {
    font-family: 'Arial', sans-serif;
    color: var(--vert-principal);
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(
            circle at 50% 50%, 
            #f8f9fa 0%, 
            #f2f6f9 30%, 
            #e8f4fd 60%, 
            #e3f2fd 100%
        ),
        linear-gradient(135deg, #f5f7fa 0%, #e0f1fc 100%);
    background-size: 250% 250%, 100% 100%;
    animation: lightGlide 20s ease-in-out infinite;
    padding: 120px 0 60px;
    margin-top: 70px;
}

@keyframes lightGlide {
    0% {
        background-position: 0% 0%, 0% 0%;
    }
    12.5% {
        background-position: 25% 10%, 0% 0%;
    }
    25% {
        background-position: 50% 0%, 0% 0%;
    }
    37.5% {
        background-position: 75% 10%, 0% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 0%;
    }
    62.5% {
        background-position: 90% 75%, 0% 0%;
    }
    75% {
        background-position: 50% 100%, 0% 0%;
    }
    87.5% {
        background-position: 10% 75%, 0% 0%;
    }
    100% {
        background-position: 0% 0%, 0% 0%;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    opacity: 0;
    animation: modernSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--vert-principal);
    opacity: 0;
    animation: modernSlideInStagger 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    opacity: 0;
    animation: modernSlideInStagger 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    animation: modernSlideInStagger 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.logos-composition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: modernFadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.logo-vba {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0;
    animation: logoSlideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.logo-excel {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0;
    animation: logoSlideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.multiplication-sign {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--vert-principal);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: symbolPop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s forwards;
    transform: rotate(0deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 148, 121, 0.1) 0%, rgba(107, 148, 121, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 148, 121, 0.2);
    box-shadow: 
        0 8px 32px rgba(107, 148, 121, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Effets de hover supprimés */

/* Animation de clic supprimée */

/* Keyframes d'animation supprimées */

@keyframes spinMultiplication {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animations modernes avec des effets sophistiqués */
@keyframes modernSlideIn {
    0% {
        opacity: 0;
        transform: translateY(60px) translateX(-10px);
        filter: blur(10px);
    }
    30% {
        opacity: 0.6;
        filter: blur(5px);
    }
    60% {
        opacity: 0.9;
        transform: translateY(20px) translateX(-2px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
        filter: blur(0);
    }
}

@keyframes modernFadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.6) rotateY(15deg) rotateX(10deg);
        filter: blur(8px);
    }
    25% {
        opacity: 0.4;
        transform: scale(0.8) rotateY(8deg) rotateX(5deg);
        filter: blur(4px);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.05) rotateY(-2deg) rotateX(-1deg);
        filter: blur(1px);
    }
    80% {
        opacity: 0.95;
        transform: scale(1.02) rotateY(0deg) rotateX(0deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) rotateX(0deg);
        filter: blur(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modernSlideInStagger {
    0% {
        opacity: 0;
        transform: translateY(40px) translateX(-5px);
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
        filter: blur(0);
    }
}

@keyframes logoSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) rotateY(-30deg) scale(0.8);
        filter: blur(8px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px) rotateY(5deg) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

@keyframes logoSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(80px) rotateY(30deg) scale(0.8);
        filter: blur(8px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-5px) rotateY(-5deg) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

@keyframes symbolPop {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3) rotate(-90deg);
        filter: blur(3px);
    }
    75% {
        opacity: 0.9;
        transform: scale(0.9) rotate(10deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-vba:hover,
.logo-excel:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--vert-principal), var(--vert-moyen));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 85, 48, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--vert-principal);
    border: 2px solid var(--vert-principal);
}

.btn-secondary:hover {
    background: var(--vert-principal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(44, 85, 48, 0.2);
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdfa 0%, #ffffff 50%, #f0fdf4 100%);
    position: relative;
}

/* Background tableau Excel uniquement pour la page d'accueil */
.homepage .value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 850 1515"><defs><pattern id="excelGrid" width="25" height="15" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 15" fill="none" stroke="%23059669" stroke-width="0.6" opacity="0.2"/></pattern></defs><rect x="25" y="15" width="825" height="1500" fill="url(%23excelGrid)"/><rect x="0" y="0" width="25" height="1515" fill="%23e8eaed" opacity="0.9"/><rect x="0" y="0" width="850" height="15" fill="%23e8eaed" opacity="0.9"/><polygon points="18,13 23,13 23,9" fill="%23059669" opacity="0.15"/><line x1="25" y1="0" x2="25" y2="1515" stroke="%23059669" stroke-width="1.5" opacity="0.3"/><line x1="0" y1="15" x2="850" y2="15" stroke="%23059669" stroke-width="1.5" opacity="0.3"/><g fill="%23059669" opacity="0.4" font-family="Arial, sans-serif" font-size="8" font-weight="bold"><text x="37" y="10" text-anchor="middle">A</text><text x="62" y="10" text-anchor="middle">B</text><text x="87" y="10" text-anchor="middle">C</text><text x="112" y="10" text-anchor="middle">D</text><text x="137" y="10" text-anchor="middle">E</text><text x="162" y="10" text-anchor="middle">F</text><text x="187" y="10" text-anchor="middle">G</text><text x="212" y="10" text-anchor="middle">H</text><text x="237" y="10" text-anchor="middle">I</text><text x="262" y="10" text-anchor="middle">J</text><text x="287" y="10" text-anchor="middle">K</text><text x="312" y="10" text-anchor="middle">L</text><text x="337" y="10" text-anchor="middle">M</text><text x="362" y="10" text-anchor="middle">N</text><text x="387" y="10" text-anchor="middle">O</text><text x="412" y="10" text-anchor="middle">P</text><text x="437" y="10" text-anchor="middle">Q</text><text x="462" y="10" text-anchor="middle">R</text><text x="487" y="10" text-anchor="middle">S</text><text x="512" y="10" text-anchor="middle">T</text><text x="537" y="10" text-anchor="middle">U</text><text x="562" y="10" text-anchor="middle">V</text><text x="587" y="10" text-anchor="middle">W</text><text x="612" y="10" text-anchor="middle">X</text><text x="637" y="10" text-anchor="middle">Y</text><text x="662" y="10" text-anchor="middle">Z</text><text x="687" y="10" text-anchor="middle">AA</text><text x="712" y="10" text-anchor="middle">AB</text><text x="737" y="10" text-anchor="middle">AC</text><text x="762" y="10" text-anchor="middle">AD</text><text x="787" y="10" text-anchor="middle">AE</text><text x="812" y="10" text-anchor="middle">AF</text><text x="837" y="10" text-anchor="middle">AG</text><text x="12" y="24" text-anchor="middle">1</text><text x="12" y="39" text-anchor="middle">2</text><text x="12" y="54" text-anchor="middle">3</text><text x="12" y="69" text-anchor="middle">4</text><text x="12" y="84" text-anchor="middle">5</text><text x="12" y="99" text-anchor="middle">6</text><text x="12" y="114" text-anchor="middle">7</text><text x="12" y="129" text-anchor="middle">8</text><text x="12" y="144" text-anchor="middle">9</text><text x="12" y="159" text-anchor="middle">10</text><text x="12" y="174" text-anchor="middle">11</text><text x="12" y="189" text-anchor="middle">12</text><text x="12" y="204" text-anchor="middle">13</text><text x="12" y="219" text-anchor="middle">14</text><text x="12" y="234" text-anchor="middle">15</text><text x="12" y="249" text-anchor="middle">16</text><text x="12" y="264" text-anchor="middle">17</text><text x="12" y="279" text-anchor="middle">18</text><text x="12" y="294" text-anchor="middle">19</text><text x="12" y="309" text-anchor="middle">20</text><text x="12" y="324" text-anchor="middle">21</text><text x="12" y="339" text-anchor="middle">22</text><text x="12" y="354" text-anchor="middle">23</text><text x="12" y="369" text-anchor="middle">24</text><text x="12" y="384" text-anchor="middle">25</text><text x="12" y="399" text-anchor="middle">26</text><text x="12" y="414" text-anchor="middle">27</text><text x="12" y="429" text-anchor="middle">28</text><text x="12" y="444" text-anchor="middle">29</text><text x="12" y="459" text-anchor="middle">30</text><text x="12" y="474" text-anchor="middle">31</text><text x="12" y="489" text-anchor="middle">32</text><text x="12" y="504" text-anchor="middle">33</text><text x="12" y="519" text-anchor="middle">34</text><text x="12" y="534" text-anchor="middle">35</text><text x="12" y="549" text-anchor="middle">36</text><text x="12" y="564" text-anchor="middle">37</text><text x="12" y="579" text-anchor="middle">38</text><text x="12" y="594" text-anchor="middle">39</text><text x="12" y="609" text-anchor="middle">40</text><text x="12" y="624" text-anchor="middle">41</text><text x="12" y="639" text-anchor="middle">42</text><text x="12" y="654" text-anchor="middle">43</text><text x="12" y="669" text-anchor="middle">44</text><text x="12" y="684" text-anchor="middle">45</text><text x="12" y="699" text-anchor="middle">46</text><text x="12" y="714" text-anchor="middle">47</text><text x="12" y="729" text-anchor="middle">48</text><text x="12" y="744" text-anchor="middle">49</text><text x="12" y="759" text-anchor="middle">50</text><text x="12" y="774" text-anchor="middle">51</text><text x="12" y="789" text-anchor="middle">52</text><text x="12" y="804" text-anchor="middle">53</text><text x="12" y="819" text-anchor="middle">54</text><text x="12" y="834" text-anchor="middle">55</text><text x="12" y="849" text-anchor="middle">56</text><text x="12" y="864" text-anchor="middle">57</text><text x="12" y="879" text-anchor="middle">58</text><text x="12" y="894" text-anchor="middle">59</text><text x="12" y="909" text-anchor="middle">60</text><text x="12" y="924" text-anchor="middle">61</text><text x="12" y="939" text-anchor="middle">62</text><text x="12" y="954" text-anchor="middle">63</text><text x="12" y="969" text-anchor="middle">64</text><text x="12" y="984" text-anchor="middle">65</text><text x="12" y="999" text-anchor="middle">66</text><text x="12" y="1014" text-anchor="middle">67</text><text x="12" y="1029" text-anchor="middle">68</text><text x="12" y="1044" text-anchor="middle">69</text><text x="12" y="1059" text-anchor="middle">70</text><text x="12" y="1074" text-anchor="middle">71</text><text x="12" y="1089" text-anchor="middle">72</text><text x="12" y="1104" text-anchor="middle">73</text><text x="12" y="1119" text-anchor="middle">74</text><text x="12" y="1134" text-anchor="middle">75</text><text x="12" y="1149" text-anchor="middle">76</text><text x="12" y="1164" text-anchor="middle">77</text><text x="12" y="1179" text-anchor="middle">78</text><text x="12" y="1194" text-anchor="middle">79</text><text x="12" y="1209" text-anchor="middle">80</text><text x="12" y="1224" text-anchor="middle">81</text><text x="12" y="1239" text-anchor="middle">82</text><text x="12" y="1254" text-anchor="middle">83</text><text x="12" y="1269" text-anchor="middle">84</text><text x="12" y="1284" text-anchor="middle">85</text><text x="12" y="1299" text-anchor="middle">86</text><text x="12" y="1314" text-anchor="middle">87</text><text x="12" y="1329" text-anchor="middle">88</text><text x="12" y="1344" text-anchor="middle">89</text><text x="12" y="1359" text-anchor="middle">90</text><text x="12" y="1374" text-anchor="middle">91</text><text x="12" y="1389" text-anchor="middle">92</text><text x="12" y="1404" text-anchor="middle">93</text><text x="12" y="1419" text-anchor="middle">94</text><text x="12" y="1434" text-anchor="middle">95</text><text x="12" y="1449" text-anchor="middle">96</text><text x="12" y="1464" text-anchor="middle">97</text><text x="12" y="1479" text-anchor="middle">98</text><text x="12" y="1494" text-anchor="middle">99</text><text x="12" y="1509" text-anchor="middle">100</text></g></svg>');
    pointer-events: none;
    opacity: 0.9;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}

.value-content {
    text-align: center;
    margin-bottom: 60px;
}

.value-content h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--vert-principal), var(--vert-moyen));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out 1.5s both;
}

.vba-explanation {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 auto 50px auto;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out 1.6s both;
}

.vba-explanation strong {
    color: var(--vert-principal);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease-out;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vert-clair), var(--vert-moyen));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    border-color: var(--vert-tres-clair);
}

.emoji-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.benefit-item:hover .emoji-icon,
.service-card:hover .emoji-icon,
.approach-card:hover .emoji-icon {
    transform: scale(1.2);
}

.example-card:hover .emoji-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item.visible:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    border-color: var(--vert-tres-clair);
}

.benefit-item:nth-child(1) { transition-delay: 0s; }
.benefit-item:nth-child(2) { transition-delay: 0.1s; }
.benefit-item:nth-child(3) { transition-delay: 0.2s; }
.benefit-item:nth-child(4) { transition-delay: 0.3s; }

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Examples Section */
.examples-section {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.examples-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.examples-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 600;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.example-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease-out;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vert-clair), var(--vert-moyen));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.example-card:hover::before {
    transform: scaleX(1);
}

.example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    border-color: var(--vert-tres-clair);
}

.example-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--vert-principal);
    position: relative;
    z-index: 2;
}

.example-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Category sections */
.category-section {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.5rem;
    color: var(--vert-principal);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--vert-clair), var(--vert-moyen));
    border-radius: 2px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vert-principal);
    margin-bottom: 20px;
}

.scroll-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.scroll-arrows i {
    font-size: 1.5rem;
    color: var(--vert-moyen);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-arrows .arrow-2 {
    animation-delay: 0.2s;
}

.scroll-arrows .arrow-3 {
    animation-delay: 0.4s;
}

.scroll-arrows i:hover {
    color: var(--vert-principal);
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Solutions Approach Section */
.solutions-approach {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--vert-tres-clair) 0%, #f0f8f0 100%);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.solutions-approach.visible {
    opacity: 1;
    transform: translateY(0);
}

.solutions-approach h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--vert-principal);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.solutions-approach h3.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.approach-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.approach-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--vert-tres-clair);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.approach-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vert-clair), var(--vert-moyen));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
    border-color: var(--vert-moyen);
}

.approach-icon {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1);
}

.approach-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--vert-principal);
    text-align: center;
    position: relative;
    z-index: 2;
}

.approach-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.approach-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-benefits li {
    margin-bottom: 1rem;
    color: var(--vert-principal);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.approach-benefits li:hover {
    transform: translateX(5px);
}

.approach-benefits li i {
    color: var(--vert-moyen);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: var(--vert-principal);
    border: 2px solid var(--vert-principal);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-outline:hover {
    background: var(--vert-principal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.2);
}

.approach-note {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1rem;
    border-left: 4px solid var(--vert-moyen);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.3s;
}

.approach-note.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-note p {
    margin: 0;
    color: var(--vert-principal);
    font-size: 1rem;
    text-align: center;
}

.approach-note i {
    color: var(--vert-moyen);
    margin-right: 8px;
}

/* Services Section */
.services-section {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.services-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--vert-principal);
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease-out;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vert-clair), var(--vert-moyen));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    border-color: var(--vert-tres-clair);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--vert-principal);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Animations */
.animated-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animated-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-card:nth-child(1) { transition-delay: 0s; }
.animated-card:nth-child(2) { transition-delay: 0.1s; }
.animated-card:nth-child(3) { transition-delay: 0.2s; }
.animated-card:nth-child(4) { transition-delay: 0.3s; }
.animated-card:nth-child(5) { transition-delay: 0.4s; }
.animated-card:nth-child(6) { transition-delay: 0.5s; }

/* Add non-homepage specific styles */
body:not(.homepage) .benefit-item {
    opacity: 1;
    transform: translateY(0);
}

body:not(.homepage) .examples-section {
    opacity: 1;
    transform: translateY(0);
}

body:not(.homepage) .services-section {
    opacity: 1;
    transform: translateY(0);
}

body:not(.homepage) .solutions-approach {
    opacity: 1;
    transform: translateY(0);
}

body:not(.homepage) .animated-card {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design spécifique à la homepage */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .logos-composition {
        gap: 30px;
        padding: 0 20px;
    }
    
    .logo-vba, .logo-excel {
        height: 80px;
        max-width: 80px;
        object-fit: contain;
    }
    
    .multiplication-sign {
        font-size: 2.2rem;
        width: 55px;
        height: 55px;
        line-height: 55px;
        flex-shrink: 0;
    }
    
    /* Fond uni moderne pour mobile - transition douce hero → footer */
    .homepage .value-proposition::before {
        background: linear-gradient(
            180deg, 
            rgba(248, 249, 250, 0.9) 0%, 
            rgba(242, 246, 249, 0.8) 15%,
            rgba(232, 244, 253, 0.6) 35%,
            rgba(240, 248, 245, 0.4) 65%,
            rgba(245, 251, 247, 0.3) 85%,
            rgba(248, 252, 249, 0.2) 100%
        );
        opacity: 1;
    }
    
    .value-content {
        padding: 0 15px;
    }
    
    .value-content h2 {
        font-size: 2.2rem;
    }
    
    .vba-explanation {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .examples-section {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        height: auto;
        min-height: 450px;
        padding: 2rem 1.5rem;
    }
    
    .approach-benefits {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .btn-outline {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: auto;
    }
    
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-arrows i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .logos-composition {
        gap: 25px;
        padding: 0 15px;
    }
    
    .logo-vba, .logo-excel {
        height: 70px;
        max-width: 70px;
        object-fit: contain;
    }
    
    .multiplication-sign {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
        flex-shrink: 0;
    }
    
    .value-content h2 {
        font-size: 1.8rem;
    }
    
    .emoji-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .examples-section h3 {
        font-size: 1.8rem;
    }
    
    .example-card h4 {
        font-size: 1.1rem;
    }
    
    .approach-card {
        height: auto;
        min-height: 400px;
        padding: 1.5rem 1rem;
    }
    
    .approach-card h4 {
        font-size: 1.3rem;
    }
    
    .approach-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .approach-benefits {
        margin-bottom: 1.5rem;
    }
    
    .approach-benefits li {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-outline {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
} 