/* public/assets/css/style.css */
/* Styles de base */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --color-black: #000000;
    --color-periwinkle-blue: #5462E6;
    --color-blue: #3531AC;
    
    /* Couleurs neutres */
    --color-white: #FFFFFF;
    --color-whitesmoke: #F5F5F5;
    --color-light-gray: #DBDBDB;
    --color-dark-gray: #565656;
    
    /* Variables d'usage */
    --primary-color: var(--color-periwinkle-blue);
    --secondary-color: var(--color-blue);
    --text-color: var(--color-black);
    --text-secondary: var(--color-dark-gray);
    --bg-color: var(--color-white);
    --bg-alternative: var(--color-whitesmoke);
    --border-color: var(--color-light-gray);
    --container-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--bg-alternative);
}

/* Typographie */
h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.rt-hero-gap {
    background: linear-gradient(135deg, #0a0a0f 0%, var(--color-black) 50%, #0f0f1a 100%);
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 15px;
    min-height: 70vh;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(84, 98, 230, 0.15);
}

/* Hero pour les guides - hauteur adaptative */
.guide-page ~ .rt-hero-gap,
.rt-hero-gap:has(.guide-category-badge) {
    min-height: auto;
    padding-bottom: 3rem;
}

.rt-hero-gap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(84, 98, 230, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(84, 98, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: color-pulse 8s ease-in-out infinite;
}

.rt-hero-gap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(84, 98, 230, 0.15) 0%, rgba(84, 98, 230, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: color-wave 10s ease-in-out infinite;
}

@keyframes color-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes color-wave {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, 15px) scale(1.05);
        opacity: 1;
    }
}

.rt-hero-gap > * {
    position: relative;
    z-index: 1;
}

/* Hero Navbar */
.hero-navbar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
}

.hero-navbar-logo {
    flex-shrink: 0;
}

.hero-navbar-logo a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.hero-navbar-logo a:hover {
    color: var(--color-periwinkle-blue);
    transform: scale(1.05);
}

.hero-navbar-logo .logo-img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.hero-navbar-logo .logo-text {
    display: inline-block;
    white-space: nowrap;
}

.hero-navbar-logo a:hover .logo-img {
    transform: rotate(5deg) scale(1.1);
    filter: brightness(0) saturate(100%) invert(40%) sepia(89%) saturate(1352%) hue-rotate(221deg) brightness(95%) contrast(92%);
}

.hero-navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.hero-navbar-menu li {
    margin: 0;
}

.hero-navbar-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

.hero-navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-periwinkle-blue);
    transition: width 0.3s ease;
}

.hero-navbar-menu a:hover {
    color: var(--color-periwinkle-blue);
    transform: translateY(-2px);
}

.hero-navbar-menu a:hover::after {
    width: 100%;
}

.hero-navbar-cta {
    background: var(--color-white);
    color: var(--color-black) !important;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    border: none;
}

.hero-navbar-cta:hover {
    background: var(--color-blue);
    color: var(--color-white) !important;
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
    transform: translateY(-2px);
}

.hero-navbar-cta svg {
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.hero-navbar-cta:hover svg {
    transform: translateX(4px);
    stroke: var(--color-white);
}

/* Bouton burger pour mobile - caché par défaut */
.hero-navbar-burger {
    display: none !important;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hero-navbar-burger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hero-navbar-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hero-navbar-burger.active span:nth-child(2) {
    opacity: 0;
}

.hero-navbar-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu mobile - caché par défaut */
.hero-navbar-mobile {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-navbar-mobile.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: var(--color-black);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.hero-navbar-mobile.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /*margin-top: 4rem;*/
    margin-top: 2.5rem;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 0.75rem 0;
    display: block;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list a:hover {
    color: var(--color-periwinkle-blue);
}

/*.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    margin-top: auto;
    transition: all 0.3s ease;
}*/

.mobile-menu-cta{
  display: inline-flex;              /* au lieu de flex */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  background-color: var(--color-white);
  color: var(--color-black);

  padding: 0.8rem 1.2rem;            /* ✅ plus petit */
  border-radius: 14px;               /* ✅ moins “pill” */
  text-decoration: none;

  font-weight: 600;
  font-size: 14px;                   /* ✅ plus petit */

  margin-top: 14px;                  /* ✅ juste sous "A propos" */
  width: fit-content;                /* ✅ pas full width */
  transition: all 0.3s ease;
}


.mobile-menu-cta:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.mobile-menu-cta svg {
    transition: transform 0.3s ease;
}

.mobile-menu-cta:hover svg {
    transform: translateX(4px);
}

/* Hero Content Center */
.hero-content-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0;
}

.hero-content-center h1 {
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.hero-content-center p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    max-width: 600px;
    font-size: 16px;
    line-height: 26px;
}

.hero-search-form {
    width: 100%;
    max-width: 600px;
}

.hero-search-wrapper {
    display: flex;
    gap: 0;
    background: var(--color-white);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-search-wrapper:focus-within {
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 16px;
    line-height: 26px;
    outline: none;
    border-radius: 50px;
    color: var(--color-black);
    background: transparent;
}

.hero-search-input::placeholder {
    color: var(--color-dark-gray);
}

.hero-search-btn {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 1.25rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-search-btn:hover {
    background: var(--color-blue);
    transform: scale(1.05);
}

.hero-search-btn svg {
    transition: transform 0.3s ease;
}

.hero-search-btn:hover svg {
    transform: translateX(4px);
}

/* Jobs Search Form */
.jobs-search-form {
    width: 100%;
    max-width: 1000px;
    margin-top: 3rem;
}

.jobs-search-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 1rem;
    background-color: var(--color-white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.jobs-search-grid:focus-within {
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.jobs-search-field {
    display: flex;
    align-items: center;
}

.jobs-search-input,
.jobs-search-select {
    width: 100%;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    border-radius: 50px;
    color: var(--color-black);
    background: transparent;
    font-family: inherit;
}

.jobs-search-input::placeholder {
    color: var(--color-dark-gray);
}

.jobs-search-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23565656' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.jobs-search-btn {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    white-space: nowrap;
    flex-shrink: 0;
}

.jobs-search-btn:hover {
    background: var(--color-blue);
    transform: scale(1.05);
}

.jobs-search-btn svg {
    transition: transform 0.3s ease;
}

.jobs-search-btn:hover svg {
    transform: rotate(15deg);
}

/* Responsive Jobs Search */
@media (max-width: 968px) {
    .jobs-search-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
        padding: 1rem;
    }
    
    .jobs-search-input,
    .jobs-search-select {
        border-radius: 12px;
        border: 1px solid var(--border-color);
        background-color: var(--color-white);
    }
    
    .jobs-search-btn {
        width: 100%;
        border-radius: 12px;
    }
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background-color: var(--bg-alternative);
}

.jobs-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.job-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--color-periwinkle-blue);
}

.job-card-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--bg-alternative);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.job-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.job-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.job-card-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    letter-spacing: -0.01em;
}

.job-card-company {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

.job-card-location {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.job-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.job-card-cta:hover {
    background-color: var(--color-blue);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
}

.job-card-cta svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.job-card-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive Jobs List */
@media (max-width: 1200px) {
    .jobs-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .jobs-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jobs-section {
        padding: 3rem 0;
    }
    
    .jobs-list-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-card-logo {
        width: 56px;
        height: 56px;
    }
    
    .job-card-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .job-card-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.users-avatars-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.users-avatars {
    display: flex;
    align-items: center;
    gap: -0.5rem;
}

.stars-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars-rating .star-icon {
    color: #fbbf24;
    width: 16px;
    height: 16px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: -10px;
    transition: transform 0.3s ease;
    background: var(--color-white);
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle:hover {
    transform: scale(1.1);
    z-index: 10;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-more {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.875rem;
}

.social-proof-text {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 20px;
}

/* Features Split Section */
.features-split-section {
    padding: 6rem 0;
    background-color: var(--bg-alternative);
}

.features-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-visual {
    position: relative;
}

.phone-image {
    width: 100%;
    height: auto;
    display: block;
}

.features-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.features-content h1,
.features-content h2 {
    color: var(--text-color);
    text-align: left;
    margin: 0;
    margin-top: -1rem;
}

.features-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    max-width: 500px;
}

.features-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-black);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.features-cta-btn:hover {
    background: var(--color-blue);
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
    transform: translateY(-2px);
}

.features-cta-btn svg {
    transition: transform 0.3s ease;
}

.features-cta-btn:hover svg {
    transform: translateX(4px);
}

.features-stats {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-gray);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--text-color);
}

.stat-label {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
}

/* Resources Section */
.resources-section {
    padding: 6rem 0;
    background-color: var(--bg-alternative);
}

.resources-section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
}

.resources-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.resource-card {
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
}

.resource-card-dark {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-black) 0%, #1a0a2e 50%, #2d0a4a 100%);
    color: var(--color-white);
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 120px rgba(138, 43, 226, 0.15);
}

.resource-card-dark::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, rgba(138, 43, 226, 0.25) 40%, rgba(138, 43, 226, 0.1) 60%, transparent 80%);
    border-radius: 50%;
    animation: violet-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.resource-card-dark::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(138, 43, 226, 0.2) 40%, rgba(138, 43, 226, 0.08) 60%, transparent 80%);
    border-radius: 50%;
    animation: violet-wave 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.resource-card-dark > * {
    position: relative;
    z-index: 1;
}

.resource-card-light {
    background: var(--color-white);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.resource-card-dark:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.resource-card-light:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.resource-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 2rem;
    width: fit-content;
}

.resource-card-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 2rem 0;
    color: inherit;
}

.resource-card-dark .resource-card-title {
    color: var(--color-white);
}

.resource-card-light .resource-card-title {
    color: var(--text-color);
}

.resource-card-description {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
}

.resource-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.resource-cta-btn:hover {
    background: var(--color-periwinkle-blue);
    color: var(--color-white);
    transform: translateX(4px);
}

.resource-cta-btn svg {
    transition: transform 0.3s ease;
}

.resource-cta-btn:hover svg {
    transform: translateX(4px);
}

.resource-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.resource-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-alternative);
    border-radius: 16px;
    border: 1px solid var(--color-light-gray);
    transition: all 0.3s ease;
}

.resource-feature-item:hover {
    background: var(--color-white);
    border-color: var(--color-periwinkle-blue);
    box-shadow: 0 4px 12px rgba(84, 98, 230, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(84, 98, 230, 0.1);
    border-radius: 12px;
    color: var(--color-periwinkle-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.resource-feature-item:hover .feature-icon {
    background: var(--color-periwinkle-blue);
    color: var(--color-white);
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-number {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--color-periwinkle-blue);
    margin-bottom: 0.125rem;
}

.feature-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.feature-subtitle {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
}

/* Responsive - Resources Section */
@media (max-width: 968px) {
    .resources-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-card-dark {
        order: 1;
    }
    
    .resource-card-light {
        order: 2;
    }
    
    .resources-section-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .resource-card-title {
        font-size: 24px;
        line-height: 34px;
    }
}

/* Premium Section */
.premium-section {
    padding: 6rem 0;
    background-color: var(--bg-alternative);
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.premium-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.premium-title {
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.premium-description {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0;
}

.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-black);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.premium-cta-btn:hover {
    background: var(--color-blue);
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
    transform: translateY(-2px);
}

.premium-cta-btn svg {
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover svg {
    transform: translateX(4px);
}

.premium-packs-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--color-light-gray);
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.premium-pack-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pack-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.pack-description {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.premium-pack-divider {
    width: 1px;
    background: var(--color-light-gray);
    align-self: stretch;
}

.premium-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
}

/* Responsive - Premium Section */
@media (max-width: 968px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .premium-visual {
        order: 1;
    }
    
    .premium-content {
        order: 2;
    }
    
    .premium-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .premium-packs-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .premium-pack-divider {
        width: 100%;
        height: 1px;
    }
}

/* Job Alert Section */
.job-alert-section {
    padding: 4rem 0;
    background-color: var(--bg-alternative);
}

.job-alert-container {
    max-width: 1200px;
    margin: 0 auto;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-black) 0%, #1a0a2e 50%, #2d0a4a 100%);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: inset 0 0 120px rgba(138, 43, 226, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.job-alert-container::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(138, 43, 226, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: violet-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.job-alert-container::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.25) 0%, rgba(138, 43, 226, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: violet-wave 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.job-alert-title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 0.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.job-alert-subtitle {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.job-alert-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.job-alert-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.job-alert-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-alert-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.job-alert-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.job-alert-input:focus {
    outline: none;
    border-color: var(--color-periwinkle-blue);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(84, 98, 230, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.job-alert-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.job-alert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.job-alert-btn:hover {
    background: var(--color-periwinkle-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(84, 98, 230, 0.3);
}

.job-alert-btn svg {
    transition: transform 0.3s ease;
}

.job-alert-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive - Job Alert Section */
@media (max-width: 768px) {
    .job-alert-container {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .job-alert-title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .job-alert-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .job-alert-btn {
        max-width: 100%;
    }
}

/* Resources Page Sections */
.featured-guides-section,
.categories-section,
.latest-articles-section {
    padding: 6rem 0;
    background-color: var(--bg-alternative);
}

.section-title {
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 3rem 0;
    text-align: center;
}

/* Guides Layout */
.guides-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Bloc éditorial à gauche */
.guides-editorial-block {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-black) 0%, #1a0a2e 50%, #2d0a4a 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 120px rgba(138, 43, 226, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
}

.guides-editorial-block::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(138, 43, 226, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: violet-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.guides-editorial-block::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.25) 0%, rgba(138, 43, 226, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: violet-wave 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.guides-editorial-block > * {
    position: relative;
    z-index: 1;
}

.guides-editorial-title {
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 1.5rem 0;
}

.guides-editorial-text {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Guides Scroll Horizontal */
.guides-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-light-gray) transparent;
}

.guides-scroll::-webkit-scrollbar {
    height: 8px;
}

.guides-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.guides-scroll::-webkit-scrollbar-thumb {
    background: var(--color-light-gray);
    border-radius: 4px;
}

.guides-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.guides-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    padding: 0.5rem 0;
    align-items: stretch;
}

.guide-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-light-gray);
    flex-shrink: 0;
    width: 380px;
    max-width: 90vw;
    position: relative;
}

.guide-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-black) 0%, #1a0a2e 50%, #2d0a4a 100%);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.guide-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.guide-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-alternative);
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.guide-icon {
    font-size: 18px;
}

.guide-card h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.guide-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin-top: auto;
}

/* Articles Section - Style similaire aux guides */
.articles-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-light-gray) transparent;
}

.articles-scroll::-webkit-scrollbar {
    height: 8px;
}

.articles-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.articles-scroll::-webkit-scrollbar-thumb {
    background: var(--color-light-gray);
    border-radius: 4px;
}

.articles-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.articles-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    padding: 0.5rem 0;
    align-items: stretch;
}

/* Styles spécifiques pour les articles dans latest-articles-section */
.latest-articles-section .article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-light-gray);
    flex-shrink: 0;
    width: 380px;
    max-width: 90vw;
    position: relative;
    display: block;
}

.latest-articles-section .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.latest-articles-section .article-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.latest-articles-section .article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-alternative);
}

.latest-articles-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-articles-section .article-card:hover .article-image img {
    transform: scale(1.05);
}

.latest-articles-section .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-articles-section .article-card h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.latest-articles-section .article-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.latest-articles-section .article-meta {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin-top: auto;
}

/* Articles Section - Grille 3 colonnes */
.latest-articles-section {
    padding: 4rem 0;
    background-color: var(--bg-alternative);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.latest-articles-section .article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-light-gray);
    flex-shrink: 0;
    width: 380px;
    max-width: 90vw;
    position: relative;
    display: block;
}

.latest-articles-section .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.latest-articles-section .article-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.latest-articles-section .article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-alternative);
}

.latest-articles-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-articles-section .article-card:hover .article-image img {
    transform: scale(1.05);
}

.latest-articles-section .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-articles-section .article-card h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.latest-articles-section .article-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.latest-articles-section .article-meta {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin-top: auto;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-light-gray);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--color-periwinkle-blue);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.category-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
}

.category-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-alternative);
    border-radius: 50px;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-light-gray);
    display: flex;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--color-periwinkle-blue);
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    gap: 0;
}

.article-image {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--bg-alternative);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content-wrapper {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.article-card h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.article-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.article-meta {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin-top: auto;
}

/* Responsive - Resources Page */
@media (max-width: 968px) {
    .guides-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guides-editorial-block {
        padding: 2.5rem;
    }
    
    .guides-editorial-title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 768px) {
    .guide-card {
        width: 320px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .article-card {
        flex-direction: column;
    }
    
    .article-image {
        width: 100%;
        height: 200px;
    }
    
    .article-content-wrapper {
        padding: 1.5rem;
    }
    
    .guides-track {
        gap: 1.5rem;
    }
    
    .guides-editorial-block {
        padding: 2rem 1.5rem;
    }
    
    .guides-editorial-title {
        font-size: 32px;
        line-height: 42px;
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background-color: var(--bg-alternative);
}

/* Footer */
.main-footer {
    background: var(--color-black);
    color: var(--color-white);
    margin-top: 4rem;
}

.footer-cta-band {
    background: var(--color-black);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-cta-text {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
    flex: 1;
    max-width: 600px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
    background: var(--color-periwinkle-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(84, 98, 230, 0.4);
}

.footer-cta-btn svg {
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover svg {
    transform: translateX(4px);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
}

.footer-description {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.footer-social-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

/* Responsive - Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-cta-band {
        padding: 3rem 0;
    }
    
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-cta-text {
        font-size: 28px;
        line-height: 38px;
        max-width: 100%;
    }
    
    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
    }
}

@media (max-width: 640px) {
    .footer-cta-text {
        font-size: 24px;
        line-height: 34px;
    }
    
    .footer-cta-btn {
        font-size: 16px;
        padding: 1rem 1.75rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Premium Pricing Section */
.premium-pricing-section {
    padding: 5rem 0;
    background-color: var(--bg-alternative);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-toggle {
    display: inline-flex;
    background-color: var(--color-white);
    border-radius: 50px;
    padding: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.toggle-option {
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.toggle-option.active {
    background-color: var(--color-black);
    color: var(--color-white);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--color-periwinkle-blue);
    box-shadow: 0 4px 20px rgba(84, 98, 230, 0.15);
}

.pricing-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-card-title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.pricing-card-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.pricing-card-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 2rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.pricing-features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 24px;
}

.pricing-features-list .feature-item:last-child {
    margin-bottom: 0;
}

.pricing-features-list .feature-item.checked {
    color: var(--text-color);
}

.pricing-features-list .feature-item.checked svg {
    color: var(--color-black);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features-list .feature-item.unchecked {
    color: var(--text-secondary);
    opacity: 0.6;
}

.pricing-features-list .feature-item.unchecked svg {
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features-list .feature-item span {
    flex: 1;
}

.pricing-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.pricing-cta-button:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.3);
}

.pricing-cta-button svg {
    transition: transform 0.3s ease;
}

.pricing-cta-button:hover svg {
    transform: translateX(4px);
}

/* Responsive Premium Pricing */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 1.5rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 40px;
        line-height: 50px;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.how-it-works-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin: 0;
}

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

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-periwinkle-blue) 0%, var(--color-blue) 100%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-periwinkle-blue) 0%, var(--color-blue) 100%);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(84, 98, 230, 0.3);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--color-periwinkle-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(84, 98, 230, 0.1);
    color: var(--color-periwinkle-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
}

.how-it-works-recap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.recap-item svg {
    color: var(--color-periwinkle-blue);
    flex-shrink: 0;
}

/* Responsive Timeline */
@media (max-width: 968px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .how-it-works-recap {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-title {
        font-size: 36px;
        line-height: 46px;
    }
    
    .how-it-works-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .timeline-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .step-description {
        font-size: 15px;
        line-height: 22px;
    }
    
    .how-it-works-recap {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-left: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-alternative);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.faq-answer {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

.faq-answer p {
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-periwinkle-blue);
    font-weight: 500;
    font-size: 1.2em;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
        line-height: 46px;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 18px;
        line-height: 26px;
    }
    
    .faq-answer {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-main {
        padding: 3rem 0;
    }
}

/* About Page Styles */
.about-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.about-section-alt {
    background-color: var(--bg-alternative);
}

/* Process & Qualité Section */
.about-process-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.process-content-block {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.process-label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.process-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.process-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin: 0 0 3rem 0;
    max-width: 800px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.process-cta-btn:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
}

.process-cta-btn .cta-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    stroke: currentColor;
}

.process-cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

.process-separator {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 4rem 0;
}

.process-stats-grid {
    display: flex;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    width: 100%;
    justify-content: space-between;
}

.process-stat-item {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.process-stat-item:hover {
    background-color: rgba(84, 98, 230, 0.02);
    transform: translateY(-4px);
}

.process-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
    margin: auto 0;
    align-self: center;
    flex-shrink: 0;
}

.stat-number {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 180px;
    margin: 0 auto;
}

/* Service Presentation Section */
.service-presentation-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.service-presentation-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.service-presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.service-visual {
    position: sticky;
    top: 2rem;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Accordéon */
.service-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.accordion-item.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    color: var(--color-white);
}

.accordion-item:not(.active) .accordion-header {
    color: var(--text-color);
}

.accordion-header:hover {
    background-color: rgba(84, 98, 230, 0.05);
}

.accordion-item.active .accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accordion-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.accordion-content p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin: 0;
}

.accordion-item.active .accordion-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-alternative);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-divider {
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    min-height: 400px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-title {
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.contact-info-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-block:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--color-periwinkle-blue);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(84, 98, 230, 0.15) 0%, rgba(53, 49, 172, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-periwinkle-blue);
    transition: all 0.3s ease;
}

.contact-info-block:hover .contact-info-icon {
    background: linear-gradient(135deg, rgba(84, 98, 230, 0.25) 0%, rgba(53, 49, 172, 0.2) 100%);
    transform: scale(1.05);
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-block-content {
    flex: 1;
}

.contact-info-block-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
}

.contact-info-block-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.contact-form-intro {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    color: var(--color-periwinkle-blue);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    background-color: var(--color-white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-periwinkle-blue);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-periwinkle-blue);
}

.checkbox-label a {
    color: var(--color-periwinkle-blue);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-blue);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-divider {
        display: none;
    }
    
    .contact-info-title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .contact-info-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-info-block {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Service Presentation */
@media (max-width: 968px) {
    .service-presentation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-visual {
        position: static;
        order: 1;
    }
    
    .service-accordion {
        order: 2;
    }
    
    .service-presentation-title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .service-presentation-section {
        padding: 4rem 0;
    }
    
    .service-presentation-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .accordion-header {
        padding: 1.25rem 1.5rem;
    }
    
    .accordion-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .accordion-content {
        padding: 0 1.5rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    .accordion-content p {
        font-size: 15px;
        line-height: 24px;
    }
}

/* Responsive Process Section */
@media (max-width: 1200px) {
    .process-stats-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .process-stat-item {
        padding: 2rem 0.75rem;
    }
    
    .stat-number {
        font-size: 32px;
        line-height: 40px;
    }
    
    .stat-label {
        font-size: 13px;
        line-height: 18px;
        max-width: 150px;
    }
}

@media (max-width: 968px) {
    .process-title {
        font-size: 36px;
        line-height: 46px;
    }
    
    .process-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
    }
    
    .process-stat-divider {
        display: none;
    }
    
    .process-stat-item:nth-child(2n) {
        border-left: 1px solid var(--border-color);
        padding-left: 2rem;
    }
    
    .process-stat-item:nth-child(2n+1) {
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {
    .about-process-section {
        padding: 4rem 0;
    }
    
    .process-content-block {
        margin-bottom: 3rem;
    }
    
    .process-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .process-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .process-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }
    
    .process-stat-divider {
        display: none;
    }
    
    .process-stat-item {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .process-stat-item:last-child {
        border-bottom: none;
    }
    
    .process-stat-item:nth-child(2n) {
        border-left: none;
        padding-left: 0;
    }
    
    .process-stat-item:nth-child(2n+1) {
        padding-right: 0;
    }
    
    .stat-number {
        font-size: 36px;
        line-height: 44px;
    }
    
    .process-stat-item:hover {
        background-color: transparent;
        transform: none;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.about-content h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 26px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.about-card-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 24px;
    line-height: 34px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.about-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.about-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-periwinkle-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.about-contact-link:hover {
    color: var(--color-blue);
    background-color: rgba(84, 98, 230, 0.05);
    border-color: rgba(84, 98, 230, 0.2);
    transform: translateX(4px);
}

.about-contact-link svg {
    transition: transform 0.3s ease;
}

.about-contact-link:hover svg {
    transform: translateX(4px);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-contact {
        align-items: flex-start;
    }
    
    .about-contact-link {
        width: 100%;
        justify-content: center;
    }
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.partners-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes violet-pulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4) translate(40px, 40px);
        opacity: 0.7;
    }
}

@keyframes violet-wave {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.35) translate(-30px, -30px);
        opacity: 0.6;
    }
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

/* Guide Navbar Styles */
.guide-navbar-menu a:hover {
    color: #5462E6;
    transform: translateY(-2px);
}

.guide-navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5462E6;
    transition: width 0.3s ease;
}

.guide-navbar-menu a:hover::after {
    width: 100%;
}

.guide-navbar-cta:hover {
    background: #3531AC;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(53, 49, 172, 0.2);
    transform: translateY(-2px);
}

.guide-navbar-cta:hover svg {
    transform: translateX(4px);
}

.guide-navbar-logo a:hover {
    color: #5462E6;
    transform: scale(1.05);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #004499);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #0052a3;
}

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

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

/* Features */
.features {
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.feature-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}


/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background-color: #f5f5f5;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item span {
    color: var(--text-color);
}

/* Page header */
.page-header {
    background-color: #f5f5f5;
    padding: 2rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 4px;
    font-size: 16px;
    line-height: 26px;
    background-color: var(--color-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-periwinkle-blue);
}

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
/* Responsive - Features Split Section */
@media (max-width: 968px) {
    .features-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-visual {
        order: 1;
    }
    
    .features-content {
        order: 2;
    }
    
    .features-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid var(--border-color);
    }
    
    .stat-item {
        background-color: var(--color-white);
        border-radius: 16px;
        padding: 1.75rem 1.5rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border: 1px solid var(--border-color);
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .stat-item:active {
        transform: scale(0.98);
    }
    
    .stat-number {
        font-size: 40px;
        line-height: 48px;
        font-weight: 600;
        color: var(--color-black);
        margin-bottom: 0;
        letter-spacing: -0.03em;
        background: linear-gradient(135deg, var(--color-black) 0%, var(--color-blue) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
    }
    
    .stat-label {
        font-size: 15px;
        line-height: 22px;
        color: var(--text-secondary);
        font-weight: 400;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Typographie mobile */
    h1 {
        font-size: 42px !important;
        line-height: 50px !important;
    }
    
    h2 {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    p {
        font-size: 15px !important;
        line-height: 24px !important;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    /* Hero Navbar Responsive */
    .hero-navbar {
        max-width: 100%;
        padding: 0 1.5rem;
        gap: 1rem;
    }
    
    .hero-navbar-menu {
        display: none !important;
    }
    
    .hero-navbar-cta {
        display: none !important;
    }
    
    .hero-navbar-burger {
        display: flex !important;
    }
    
    .hero-navbar-logo a {
        font-size: 1.25rem;
    }
    
    .hero-navbar-logo .logo-img {
        height: 28px;
    }
    
    .hero-navbar-mobile {
        display: block !important;
    }
    
    /* Espacement hero content sur mobile */
    .hero-content-center {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}



@media (max-width: 768px){

  /* Même logique que Premium */
  .job-alert-section .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .job-alert-container{
    width: 100%;
    max-width: 100%;
    margin: 0;            
    border-radius: 20px;  
    padding: 2.25rem 1.5rem;
  }

}