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

body {
    font-family: 'Poppins', sans-serif;
    background: #1f2933;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ================== HEADER ================== */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #111827;
    padding: 18px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo img {
    height: 50px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Menu desktop */
.nav-desktop ul {
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-desktop a {
    text-decoration: none;
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-desktop a:hover {
    color: rgba(254, 235, 155, 1);
}

.nav-desktop a.active {
    color: rgba(254, 235, 155, 1);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(254, 235, 155, 1);
    transition: width 0.3s;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

/* Boutons login/register */
.nav-desktop .btn-login,
.nav-desktop .btn-register {
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(254, 235, 155, 0.1);
    border: 1px solid rgba(254, 235, 155, 0.3);
}

.nav-desktop .btn-login:hover,
.nav-desktop .btn-register:hover {
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border-color: transparent;
}

.nav-desktop .btn-login:hover::after,
.nav-desktop .btn-register:hover::after {
    width: 0;
}

/* Burger */
.burger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: rgba(254, 235, 155, 1);
    transition: 0.3s;
}

.burger:hover {
    transform: scale(1.1);
}

/* ================== OFFCANVAS ================== */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #111827 0%, #1f2933 100%);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(254, 235, 155, 0.2);
}

.offcanvas.active {
    right: 0;
}

.offcanvas-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(254, 235, 155, 0.2);
    display: flex;
    justify-content: flex-end;
}

.offcanvas .close {
    font-size: 30px;
    cursor: pointer;
    color: rgba(254, 235, 155, 1);
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas .close:hover {
    transform: rotate(90deg);
    background: rgba(254, 235, 155, 0.2);
}

.offcanvas-body {
    padding: 30px 25px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.offcanvas-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-menu .nav-item {
    margin-bottom: 12px;
}

.offcanvas-menu a {
    display: block;
    padding: 15px 20px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
}

.offcanvas-menu a:hover {
    background: rgba(254, 235, 155, 0.1);
    border-color: rgba(254, 235, 155, 0.3);
    color: rgba(254, 235, 155, 1);
    transform: translateX(5px);
}

.offcanvas-menu a.active {
    background: rgba(254, 235, 155, 0.15);
    color: rgba(254, 235, 155, 1);
    border-color: rgba(254, 235, 155, 0.5);
    font-weight: 600;
    position: relative;
}

.offcanvas-menu a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: rgba(254, 235, 155, 1);
    border-radius: 0 4px 4px 0;
}

.offcanvas-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(254, 235, 155, 0.2);
}

.offcanvas-buttons .btn-connexion {
    display: block;
    padding: 16px 20px;
    background: rgba(254, 235, 155, 0.1);
    color: rgba(254, 235, 155, 1);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(254, 235, 155, 0.3);
    transition: all 0.3s ease;
    font-size: 15px;
}

.offcanvas-buttons .btn-connexion:hover {
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
}

/* ================== MAIN CONTENT ================== */
main {
    min-height: calc(100vh - 200px);
}

/* ================== HERO SECTION ================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px;
    gap: 40px;
    background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.2;
    background: linear-gradient(135deg, rgba(254, 235, 155, 1), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    margin-top: 25px;
    font-size: 17px;
    color: #d1d5db;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(250,204,21,0.3));
}

/* ================== CERCLE INTERACTIF ================== */
.circle-section {
    display: flex;
    justify-content: center;
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(250,204,21,0.05), transparent 70%);
}

.circle-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
}

.circle {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}

.circle-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95px;
    height: 95px;
    margin: -47.5px 0 0 -47.5px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.circle-item:hover {
    background: rgba(250,204,21,0.2);
    border-color: rgba(254, 235, 155, 1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(250,204,21,0.5);
}

/* Positions des 11 éléments */
.circle-11 .circle-item:nth-child(1)  { transform: rotate(0deg)   translate(280px) rotate(0deg); }
.circle-11 .circle-item:nth-child(2)  { transform: rotate(33deg)  translate(280px) rotate(-33deg); }
.circle-11 .circle-item:nth-child(3)  { transform: rotate(66deg)  translate(280px) rotate(-66deg); }
.circle-11 .circle-item:nth-child(4)  { transform: rotate(99deg)  translate(280px) rotate(-99deg); }
.circle-11 .circle-item:nth-child(5)  { transform: rotate(132deg) translate(280px) rotate(-132deg); }
.circle-11 .circle-item:nth-child(6)  { transform: rotate(165deg) translate(280px) rotate(-165deg); }
.circle-11 .circle-item:nth-child(7)  { transform: rotate(198deg) translate(280px) rotate(-198deg); }
.circle-11 .circle-item:nth-child(8)  { transform: rotate(231deg) translate(280px) rotate(-231deg); }
.circle-11 .circle-item:nth-child(9)  { transform: rotate(264deg) translate(280px) rotate(-264deg); }
.circle-11 .circle-item:nth-child(10) { transform: rotate(297deg) translate(280px) rotate(-297deg); }
.circle-11 .circle-item:nth-child(11) { transform: rotate(330deg) translate(280px) rotate(-330deg); }

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(254, 235, 155, 0.3);
}

.center-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    animation: float 5s ease-in-out infinite;
}

/* ================== POURQUOI UTILISER YAFOYACT ================== */
.why-yafoyact {
    padding: 100px 80px;
    background: linear-gradient(180deg, #111827 0%, #1f2933 100%);
}

.why-yafoyact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 70px;
    background: linear-gradient(135deg, rgba(254, 235, 155, 1), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 235, 155, 0.05), rgba(250, 204, 21, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 235, 155, 0.4);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: rgba(254, 235, 155, 1);
    margin-bottom: 15px;
    position: relative;
}

.benefit-card p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.7;
    position: relative;
}


/* ================== FAQ ACCORDION ================== */
.faq {
    padding: 80px;
    max-width: 900px;
    margin: auto;
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: rgba(254, 235, 155, 1);
}

.accordion-item {
    background: #111827;
    border: 1px solid #374151;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-item:hover {
    border-color: rgba(254, 235, 155, 1);
}

.accordion-item button {
    width: 100%;
    padding: 18px 20px;
    background: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item button::after {
    content: '+';
    font-size: 24px;
    color: rgba(254, 235, 155, 1);
    transition: transform 0.3s;
}

.accordion-item button.active::after {
    transform: rotate(45deg);
}

.accordion-item button:hover {
    color: rgba(254, 235, 155, 1);
    background: rgba(254, 235, 155, 0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out;
    background: #1f2933;
}

.accordion-content p {
    padding: 0 0 20px 0;
    color: #d1d5db;
    line-height: 1.6;
}

/* ================== MODAL ================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #111827;
    margin: 10% auto;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    color: #fff;
    position: relative;
    border: 1px solid #374151;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: rgba(254, 235, 155, 1);
}

.modal-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #d1d5db;
}

.modal-content button {
    padding: 12px 30px;
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.modal-content button:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250,204,21,0.4);
}

.modal .close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    color: #9ca3af;
    cursor: pointer;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal .close:hover {
    color: rgba(254, 235, 155, 1);
    background: rgba(255,255,255,0.05);
    transform: rotate(90deg);
}

/* ================== PAGES GÉNÉRALES ================== */
section {
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 30px;
    color: rgba(254, 235, 155, 1);
    text-align: center;
}

section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 30px 0 20px;
    color: rgba(254, 235, 155, 0.9);
}

section p {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 20px;
}

section a {
    color: rgba(254, 235, 155, 1);
    text-decoration: underline;
    transition: 0.3s;
}

section a:hover {
    color: #fbbf24;
    text-decoration: none;
}

/* ================== PAGE À PROPOS ================== */
.a-propos-content {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(250,204,21,0.2);
    backdrop-filter: blur(10px);
}

.a-propos-content ul {
    list-style: none;
    margin: 20px 0;
}

.a-propos-content li {
    margin-bottom: 15px;
    color: #d1d5db;
}

/* ================== PAGE QUI SOMMES-NOUS ================== */
.qui-sommes-nous-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(250,204,21,0.1), rgba(180,83,9,0.1));
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid rgba(250,204,21,0.2);
}

.team-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(254,235,155,0.2);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254,235,155,0.5);
    box-shadow: 0 10px 30px rgba(250,204,21,0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(254,235,155,0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(254,235,155,1);
}

/* ================== PAGE NOS MODULES ================== */
.nos-modules ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.nos-modules li {
    background: #111827;
    padding: 35px 25px;
    border-radius: 12px;
    border: 2px solid #374151;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nos-modules li span {
    font-size: 14px;
    color: #9ca3af;
    font-weight: normal;
}

.nos-modules li::before {
    content: '⚖️';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    opacity: 0.5;
}

.nos-modules li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: rgba(254, 235, 155, 1);
    transition: width 0.3s;
}

.nos-modules li:hover {
    border-color: rgba(254, 235, 155, 1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(250,204,21,0.3);
    background: rgba(250,204,21,0.05);
}

.nos-modules li:hover::after {
    width: 100%;
}

/* ================== PAGE CONTACT ================== */
.contact-page {
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: rgba(254, 235, 155, 1);
    text-align: center;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Informations de contact */
.contact-info {
    background: rgba(17, 24, 39, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #374151;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgba(254, 235, 155, 1);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.contact-details h4 {
    font-size: 16px;
    color: rgba(254, 235, 155, 1);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}

.contact-details a:hover {
    color: rgba(254, 235, 155, 1);
}

/* Formulaire de contact */
.contact-form-wrapper {
    background: rgba(17, 24, 39, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #374151;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgba(254, 235, 155, 1);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(31, 41, 51, 0.8);
    border: 1px solid #374151;
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6b7280;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(254, 235, 155, 1);
    background: rgba(250, 204, 21, 0.05);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23facc15' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

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

.checkbox-group {
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #d1d5db;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: rgba(254, 235, 155, 1);
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4);
}

.submit-btn .btn-icon {
    font-size: 18px;
}

/* ================== PAGE NOS MODULES - PRICING ================== */
.pricing-header {
    text-align: center;
    padding: 60px 80px 40px;
    background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
}

.pricing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: rgba(254, 235, 155, 1);
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 18px;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.pricing-section {
    padding: 60px 40px 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    background: #1f2933;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: 0.4s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border-color: rgba(254, 235, 155, 1);
    box-shadow: 0 10px 30px rgba(250,204,21,0.2);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(254, 235, 155, 1) 0%, #fbbf24 100%);
    border-color: #b45309;
    box-shadow: 0 15px 40px rgba(250,204,21,0.4);
}

.pricing-card.premium h3,
.pricing-card.premium .price,
.pricing-card.premium .modules-list li {
    color: #111827;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: rgba(254, 235, 155, 1);
    color: #111827;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(250,204,21,0.4);
}

.badge.gold {
    background: #b45309;
    color: #fff;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #111827;
    margin-bottom: 20px;
    min-height: 70px;
    line-height: 1.3;
}

.pricing-card .price {
    margin-bottom: 30px;
}

.pricing-card .price .amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.pricing-card.premium .price .amount {
    font-size: 36px;
}

.pricing-card .price .period {
    display: block;
    font-size: 14px;
    color: #6b7280;
}

.pricing-card .price .economy {
    display: block;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin-top: 8px;
}

.pricing-card.premium .price .period,
.pricing-card.premium .price .economy {
    color: #374151;
}

.modules-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.modules-list li {
    padding: 12px 0;
    color: #374151;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modules-list li:last-child {
    border-bottom: none;
}

.modules-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.pricing-card.premium .modules-list li::before {
    color: #111827;
}

.card-footer {
    margin-top: auto;
    padding-top: 10px;
}

.support-level {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-card.premium .support-level {
    color: #374151;
}

.pricing-btn {
    width: 100%;
    padding: 16px 24px;
    background: #111827;
    color: #fff;
    border: 2px solid #111827;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-btn:hover {
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border-color: rgba(254, 235, 155, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250,204,21,0.4);
}

.pricing-btn.gold {
    background: #111827;
    border-color: #111827;
}

.pricing-btn.gold:hover {
    background: #fff;
    border-color: #fff;
    color: #111827;
}

/* ================== MODAL DE CONNEXION ================== */
.login-modal {
    max-width: 450px;
    padding: 40px;
}

.login-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: rgba(254, 235, 155, 1);
    margin-bottom: 10px;
    text-align: center;
}

.login-modal p {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 30px;
    font-size: 15px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"],
.login-form input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #374151;
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: 0.3s;
}

.login-form input::placeholder {
    color: #9ca3af;
}

.login-form input:focus {
    outline: none;
    border-color: rgba(254, 235, 155, 1);
    background: rgba(250,204,21,0.05);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: rgba(254, 235, 155, 1);
}

.forgot-password {
    color: rgba(254, 235, 155, 1);
    text-decoration: none;
    transition: 0.3s;
}

.forgot-password:hover {
    color: #fbbf24;
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 15px;
    background: rgba(254, 235, 155, 1);
    color: #111827;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250,204,21,0.4);
}

.separator {
    text-align: center;
    position: relative;
    margin: 15px 0;
}

.separator::before,
.separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #374151;
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.separator span {
    background: #111827;
    padding: 0 15px;
    color: #9ca3af;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.register-link {
    text-align: center;
    color: rgba(254, 235, 155, 1);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    padding: 12px;
    border: 1px solid #374151;
    border-radius: 8px;
    display: block;
}

.register-link:hover {
    background: rgba(250,204,21,0.1);
    border-color: rgba(254, 235, 155, 1);
}

/* ================== TABLEAU DE COMPARAISON ================== */
.comparison-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: #1f2933;
}

.comparison-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: rgba(254, 235, 155, 1);
    text-align: center;
    margin-bottom: 15px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: rgba(17, 24, 39, 0.8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #374151;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1f2933, #111827);
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    border-bottom: 2px solid #374151;
}

.comparison-table th.feature-column {
    text-align: left;
    color: rgba(254, 235, 155, 1);
    font-size: 18px;
}

.comparison-table th.highlighted {
    background: rgba(250, 204, 21, 0.1);
    position: relative;
}

.comparison-table th.highlighted::before {
    content: '★';
    position: absolute;
    top: 5px;
    right: 10px;
    color: rgba(254, 235, 155, 1);
    font-size: 20px;
}

.comparison-table th.premium-col {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(251, 191, 36, 0.2));
    color: rgba(254, 235, 155, 1);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    transition: 0.3s;
}

.comparison-table tbody tr:hover {
    background: rgba(250, 204, 21, 0.05);
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    color: #d1d5db;
    font-size: 14px;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: #e5e7eb;
}

.comparison-table .check {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 18px;
    font-weight: bold;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
    background: rgba(250, 204, 21, 0.05);
}

.comparison-table tbody tr:last-child td {
    padding: 20px 15px;
    font-weight: 600;
}

/* ================== FOOTER ================== */
footer {
    background: #111827;
    padding: 40px 30px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    border-top: 1px solid #374151;
    margin-top: 60px;
}

footer p {
    margin-bottom: 10px;
}

/* ================== ANIMATIONS ================== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(250,204,21,0.6); }
    50% { box-shadow: 0 0 70px rgba(250,204,21,1); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px) {
    .pricing-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 15px 30px;
    }

    .nav-desktop { 
        display: none; 
    }

    .burger { 
        display: block; 
    }
    
    .offcanvas {
        width: 300px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 30px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .circle-wrapper {
        width: 500px;
        height: 500px;
    }

    .circle-11 .circle-item {
        width: 80px;
        height: 80px;
        margin: -40px 0 0 -40px;
        font-size: 11px;
    }

    .circle-11 .circle-item:nth-child(1)  { transform: rotate(0deg)   translate(230px) rotate(0deg); }
    .circle-11 .circle-item:nth-child(2)  { transform: rotate(33deg)  translate(230px) rotate(-33deg); }
    .circle-11 .circle-item:nth-child(3)  { transform: rotate(66deg)  translate(230px) rotate(-66deg); }
    .circle-11 .circle-item:nth-child(4)  { transform: rotate(99deg)  translate(230px) rotate(-99deg); }
    .circle-11 .circle-item:nth-child(5)  { transform: rotate(132deg) translate(230px) rotate(-132deg); }
    .circle-11 .circle-item:nth-child(6)  { transform: rotate(165deg) translate(230px) rotate(-165deg); }
    .circle-11 .circle-item:nth-child(7)  { transform: rotate(198deg) translate(230px) rotate(-198deg); }
    .circle-11 .circle-item:nth-child(8)  { transform: rotate(231deg) translate(230px) rotate(-231deg); }
    .circle-11 .circle-item:nth-child(9)  { transform: rotate(264deg) translate(230px) rotate(-264deg); }
    .circle-11 .circle-item:nth-child(10) { transform: rotate(297deg) translate(230px) rotate(-297deg); }
    .circle-11 .circle-item:nth-child(11) { transform: rotate(330deg) translate(230px) rotate(-330deg); }

    .center-logo {
        width: 180px;
        height: 180px;
    }

    .center-logo img {
        width: 130px;
    }

    section {
        padding: 60px 30px;
    }

    section h2 {
        font-size: 36px;
    }

    .nos-modules ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page {
        padding: 60px 30px;
    }
    
    .contact-page h2 {
        font-size: 36px;
    }

    .faq {
        padding: 60px 30px;
    }
    
    .why-yafoyact {
        padding: 80px 30px;
    }
    
    .why-yafoyact h2 {
        font-size: 38px;
        margin-bottom: 50px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pricing-header {
        padding: 50px 30px 30px;
    }

    .pricing-header h2 {
        font-size: 36px;
    }

    .pricing-section {
        grid-template-columns: 1fr;
        padding: 40px 30px 60px;
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-section {
        padding: 60px 30px;
    }
    
    .comparison-section h2 {
        font-size: 32px;
    }
    
    .comparison-table-wrapper {
        padding: 20px;
    }
    
    .comparison-table {
        min-width: 800px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 12px 20px;
    }

    .logo img {
        height: 40px;
    }
    
    .burger {
        font-size: 28px;
    }
    
    .offcanvas {
        width: 260px;
    }
    
    .offcanvas-menu a {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .offcanvas-buttons .btn-connexion {
        padding: 14px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .circle-wrapper {
        width: 350px;
        height: 350px;
    }

    .circle-11 .circle-item {
        width: 65px;
        height: 65px;
        margin: -32.5px 0 0 -32.5px;
        font-size: 9px;
    }

    .circle-11 .circle-item:nth-child(1)  { transform: rotate(0deg)   translate(160px) rotate(0deg); }
    .circle-11 .circle-item:nth-child(2)  { transform: rotate(33deg)  translate(160px) rotate(-33deg); }
    .circle-11 .circle-item:nth-child(3)  { transform: rotate(66deg)  translate(160px) rotate(-66deg); }
    .circle-11 .circle-item:nth-child(4)  { transform: rotate(99deg)  translate(160px) rotate(-99deg); }
    .circle-11 .circle-item:nth-child(5)  { transform: rotate(132deg) translate(160px) rotate(-132deg); }
    .circle-11 .circle-item:nth-child(6)  { transform: rotate(165deg) translate(160px) rotate(-165deg); }
    .circle-11 .circle-item:nth-child(7)  { transform: rotate(198deg) translate(160px) rotate(-198deg); }
    .circle-11 .circle-item:nth-child(8)  { transform: rotate(231deg) translate(160px) rotate(-231deg); }
    .circle-11 .circle-item:nth-child(9)  { transform: rotate(264deg) translate(160px) rotate(-264deg); }
    .circle-11 .circle-item:nth-child(10) { transform: rotate(297deg) translate(160px) rotate(-297deg); }
    .circle-11 .circle-item:nth-child(11) { transform: rotate(330deg) translate(160px) rotate(-330deg); }

    .center-logo {
        width: 130px;
        height: 130px;
    }

    .center-logo img {
        width: 90px;
    }

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 28px;
    }

    section h3 {
        font-size: 22px;
    }

    section p {
        font-size: 15px;
    }

    .modal-content {
        margin: 30% 15px;
        padding: 30px 20px;
    }

    .modal-content h3 {
        font-size: 24px;
    }

    .why-yafoyact {
        padding: 60px 20px;
    }
    
    .why-yafoyact h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        font-size: 48px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    .contact-page {
        padding: 40px 20px;
    }
    
    .contact-page h2 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 24px;
    }
    
    .contact-icon {
        font-size: 24px;
        min-width: 45px;
        height: 45px;
    }
    
    .contact-item {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .contact-details h4 {
        font-size: 15px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .pricing-header {
        padding: 40px 20px 20px;
    }
    
    .pricing-header h2 {
        font-size: 28px;
    }
    
    .pricing-header p {
        font-size: 15px;
    }
    
    .pricing-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card h3 {
        font-size: 20px;
        min-height: 60px;
    }
    
    .pricing-card .price .amount {
        font-size: 32px;
    }
    
    .modules-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .login-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .login-modal h3 {
        font-size: 26px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .comparison-section {
        padding: 40px 20px;
    }
    
    .comparison-section h2 {
        font-size: 26px;
    }
    
    .comparison-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .comparison-table-wrapper {
        padding: 15px;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-table th {
        font-size: 13px;
        padding: 15px 8px;
    }
    
    .comparison-table td {
        font-size: 12px;
        padding: 12px 8px;
    }
    
    footer {
        padding: 30px 20px;
        font-size: 13px;
    }
}