:root {
    --primary-color: #dafd5a;
    --secondary-color: #1b3f5e;
    --secondary-color-light: #2d5a7a;
    --accent-color: #dafd5a;
    --light-color: #f1f6fa;
    --dark-color: #2b2b2b;
    --bg-color: #f1f6fa;
    --gradient-start: #f2ffc3;
    --gradient-end: #dcecfa;
    --emerald-color: #10b981;
    --emerald-light: #34d399;
    --indigo-color: #4f46e5;
    --indigo-dark: #3730a3;
    --cyan-color: #06b6d4;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--dark-color);
}

.common-container p {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.common-container ul {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    padding: 1rem 2rem;
    background-color: transparent !important;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(241, 246, 250, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--dark-color) !important;
}
.navbar-brand svg {
    margin-right: 0.5rem;
}
.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link:hover {
    color: var(--secondary-color) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.navbar:not(.scrolled) .nav-link {
    color: var(--dark-color) !important;
}
.navbar:not(.scrolled) .nav-link:hover {
    color: var(--secondary-color) !important;
}
.navbar:not(.scrolled) .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}
.navbar:not(.scrolled) .btn-outline-primary {
    border-color: var(--dark-color);
    color: var(--dark-color);
}
.navbar:not(.scrolled) .btn-outline-primary:hover {
    background-color: var(--dark-color);
    color: white;
}
/* Container pour les deux boutons */
.nav-auth-buttons {
    display: flex;
    flex-direction: column;  /* Empile verticalement */
    gap: 0.2rem;             /* Espace entre les deux boutons */
    align-items: center;     /* Centre horizontalement si besoin */
    justify-content: center; /* Centre verticalement dans le parent */
    margin: 0 0.50rem 0 0.25rem;
}

/* Vos styles de boutons existants */
.btn-auth-login {
    background-color: rgba(168, 190, 75, 0.2);
    border-color: var(--primary-color);
    padding: 0.25rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    height: auto;
    --bs-btn-padding-y: 0.125rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.8rem;
}

.btn-auth-create {
    background-color: rgba(75, 102, 190, 0.2);
    border-color: var(--secondary-color);
    padding: 0.25rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    height: auto;
    --bs-btn-padding-y: 0.125rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.8rem;
}
.btn-valid-card {
    background-color: rgba(168, 190, 75, 0.2);
    border-color: var(--primary-color);
    padding: 0.25rem 1rem;
    margin: 0.25rem 0 0 0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    height: auto;
    --bs-btn-padding-y: 0.125rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.8rem;
}
.dropdown-toggle::after {
    display: none !important;
}
.dropdown-toggle-chevron {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
}
.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--dark-color);
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background-color: rgba(218, 253, 90, 0.1);
    color: var(--secondary-color);
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--dark-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}
.hero-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}
.feature-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-color);
}
.feature-tag i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}
.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.brand-section {
    padding: 3rem 2rem;
    background-color: var(--bg-color);
    text-align: center;
}
.brand-title {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 1rem;
}
.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    animation: brandScroll 30s linear infinite;
}
.brand-item {
    display: inline-block;
    margin: 0 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}
.brand-item span {
    color: var(--secondary-color);
}
@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.section-divider {
    height: 1px;
    background-color: #eee;
    margin: 3rem 0;
}
.features-section {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.section-subtitle {
    font-size: 1.125rem;
    color: #555;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    width: 250px;
    transition: all 0.3s ease;
}
.floating-card.left {
    top: 15%;
    left: 5%;
    transform: rotate(-5deg);
}
.floating-card.right {
    top: 15%;
    right: 5%;
    transform: rotate(5deg);
}
.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}
.card-content {
    font-size: 0.875rem;
    color: #555;
}
.card-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.stat-value {
    color: var(--secondary-color);
}
.stat-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
}
.features-block {
    padding: 2rem 2rem;
    background-color: var(--bg-color);
}
.features-header {
    text-align: center;
    margin-bottom: 3rem;
}
.features-header .badge {
    background-color: rgba(218, 253, 90, 0.3);
    color: var(--dark-color);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-color);
}
.features-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.features-header p {
    font-size: 1.125rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.feature-card p {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.feature-card .icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}
.feature-card .steps {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
}
.feature-card .step {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}
.feature-card .step:last-child {
    margin-bottom: 0;
}
.feature-card .step-number {
    background-color: var(--primary-color);
    color: var(--dark-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}
.feature-card .connect-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.feature-card .twilio-logo {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}
.feature-card .connect-text {
    font-size: 0.875rem;
    color: #555;
}
.feature-card .connect-badge {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    margin-left: 0.5rem;
}
.feature-card .assistant-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
}
.feature-card .assistant-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.feature-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}
.feature-card .assistant-info {
    flex-grow: 1;
}
.feature-card .assistant-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}
.feature-card .assistant-id {
    font-size: 0.75rem;
    color: #6c757d;
}
.feature-card .phone-number {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1rem;
}
.feature-card .test-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.feature-card .test-button:hover {
    background-color: var(--secondary-color);
    color: white;
}
.feature-card .test-button i {
    font-size: 1rem;
}
.feature-card .phone-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-color) 100%);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.testimonials-header p {
    font-size: 1.125rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: rgba(218, 253, 90, 0.2);
    font-family: serif;
    font-weight: bold;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
    width: 100%;
    z-index: 2;
    color: var(--dark-color);
}
.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}
.author-info {
    flex-grow: 1;
}
.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}
.author-title {
    font-size: 0.875rem;
    color: #6c757d;
}
.testimonial-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(27, 63, 94, 0.1), rgba(218, 253, 90, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
}
.testimonial-stats span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}
.stats-icon {
    font-size: 1rem;
    margin-right: 0.25rem;
}
.testimonials-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}
.faq-section {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
}
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.faq-header p {
    font-size: 1.125rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.faq-header .support-button {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}
.faq-item:hover {
    background-color: var(--bg-color);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.faq-question-text {
    font-weight: 600;
    color: var(--dark-color);
}
.faq-answer {
    font-size: 0.875rem;
    color: #555;
    display: none;
    margin-top: 0.5rem;
    line-height: 1.5;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-toggle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.faq-toggle::before {
    content: '+';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}
.faq-item.active .faq-toggle::before {
    content: '-';
}
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
}
.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.cta-content {
    flex: 1;
    text-align: left;
}
.cta-title-homepage {
    color: var(--dark-color) !important;
}
.cta-subtitle-homepage {
    color: #555 !important;
    margin-bottom: 1.5rem !important;
}
.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.cta-subtitle {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}
.cta-button i {
    margin-left: 0.5rem;
    font-size: 1rem;
}
/* ============================================
CTA SECTION
============================================ */
.cta-final-section-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5a7a 100%);
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

.cta-final-section-services h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-final-section-services p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-section-services .btn {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
}

.cta-final-section-services .btn:hover {
    background: white;
    color: var(--secondary-color);
}
.footer {
    background-color: var(--secondary-color);
    color: #f1f6fa;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.footer-logo svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}
.footer-logo span {
    font-weight: 600;
    font-size: 1.25rem;
    color: #f1f6fa;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1f6fa;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}
.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-column h6 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column li {
    margin-bottom: 0.5rem;
}
.footer-column a {
    color: #f1f6fa;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--primary-color);
}
.footer-newsletter {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-newsletter h6 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.footer-newsletter input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    background-color: rgba(255,255,255,0.1);
    color: #f1f6fa;
}
.footer-newsletter input::placeholder {
    color: rgba(241, 246, 250, 0.6);
}
.footer-newsletter button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.footer-newsletter button:hover {
    background-color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom .copyright {
    font-size: 0.75rem;
    color: rgba(241, 246, 250, 0.7);
}
.footer-bottom .legal-links {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(241, 246, 250, 0.7);
}
.footer-bottom .legal-links a {
    color: rgba(241, 246, 250, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom .legal-links a:hover {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .hero-section {
        margin-top: 70px;
        padding: 4rem 2rem;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
    .floating-card {
        width: 200px;
        padding: 1rem;
        position: static;
        margin: 1rem auto;
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .floating-card.left {
        top: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
    }
    .floating-card.right {
        top: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
    }
    .navbar {
        padding: 0.75rem 1rem;
    }
    .hero-content {
        position: relative;
    }
    .hero-content .floating-card {
        position: relative;
        margin: 1rem auto;
        transform: none;
        top: auto;
        left: auto;
        right: auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .testimonial-stats {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .cta-content {
        text-align: center;
        margin-bottom: 1rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        align-items: center;
    }
    .footer-newsletter {
        margin: 0 auto;
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
main {
    margin-top: 80px;
}
.testimonials-container {
    position: relative;
    overflow: hidden;
}
.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 5rem 2rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.page-header p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: -2rem auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.75rem;
    font-size: 1rem;
}

.search-box button {
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* Article Cards */
.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    background-color: rgba(218, 253, 90, 0.3);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--secondary-color);
}

.article-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f1f6fa;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

.btn-read {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Categories Sidebar */
.categories-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.categories-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f6fa;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    padding-left: 0.5rem;
}

.category-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--secondary-color);
}

.category-count {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pagination */
.pagination-container {
    margin: 3rem 0;
}

.pagination {
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    border: 2px solid #f1f6fa;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Breadcrumb */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 2rem 0 1rem;
    margin-top: 80px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--dark-color);
}

.breadcrumb-item.active {
    color: #555;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-color);
}

/* Page common Header */
.page-common-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 0 0 2rem 0;
    text-align: center;
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 3rem 0 4rem;
    text-align: center;
}

.article-category-badge {
    display: inline-block;
    background-color: rgba(218, 253, 90, 0.3);
    color: var(--dark-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.article-meta-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--secondary-color);
}

/* Featured Image */
.featured-image-container {
    margin: -3rem auto 3rem;
    max-width: 1000px;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.featured-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
}

/* Article Content */
.article-content-wrapper {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--dark-color);
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--bg-color);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #555;
}

.article-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 2rem 0;
}

.article-body .highlight-box {
    background: linear-gradient(135deg, rgba(218, 253, 90, 0.2) 0%, rgba(220, 236, 250, 0.2) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.article-body .highlight-box h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Author Box */
.author-box {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.author-box-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.author-box-info p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.author-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.author-social a {
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Share Buttons */
.share-section {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-title {
    font-weight: 600;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #3390ec; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Author Box */
.author-box {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.author-box-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.author-box-info p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.author-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.author-social a {
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Share Buttons */
.share-section {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-title {
    font-weight: 600;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-content-wrapper {
        padding: 1.5rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .cta-zone {
        width: calc(100vw - 40px);
        max-width: 280px;
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .share-section {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Alignement spécifique : Icône en haut, Switch/Badge centré */
.d-flex-wrapper {
    display: flex;
    align-items: flex-start; /* L'icône reste en haut */
}

.icon-wrapper {
    margin-right: 15px;
    margin-top: 2px; /* Petite marge pour aligner l'icône avec le texte */
    color: #6c757d;
}

.right-wrapper {
    margin-left: auto;
    align-self: center; /* Centre le switch/badge verticalement par rapport à la hauteur totale */
}

/* Switch verte comme sur la capture */
.form-check-input:checked {
    background-color: #198754; /* Vert Bootstrap */
    border-color: #198754;
}

/* Apparence du lien (titre) */
a.cookie-name {
    color: #212529; /* Noir/Gris foncé */
    text-decoration: none;
    font-weight: 500;
}
a.cookie-name:hover {
    text-decoration: underline;
}

/*
@media (max-width: 480px) {
    .cta-zone {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 15px;
        padding: 18px;
    }

    .navbar-brand span {
        font-size: 1.2rem;
    }

    .article-meta-header {
        flex-direction: column;
        gap: 1rem;
    }
}
*/
/* ============================================
           SEARCH & FILTERS
           ============================================ */
.search-filter-container {
    max-width: 1200px;
    margin: -2rem auto 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.search-filter-box {
    background: white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 300px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.75rem;
    font-size: 1rem;
}

.search-box button {
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.category-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--bg-color);
    background: var(--bg-color);
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-badge:hover,
.filter-badge.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}
/* ============================================
PRODUCT CARDS (List View)
============================================ */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background-color: rgba(218, 253, 90, 0.3);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
}

.product-level {
    display: inline-block;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-left: 0.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--secondary-color);
}

.product-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

.price-current {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-add-cart {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0 0 0 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-add-cart.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.navbar-quick-view-card {
    width: 310px !important;
}

.btn-details {
    background-color: var(--bg-color);
    color: var(--dark-color);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* ============================================
   PRODUCT CARDS (Grid View)
   ============================================ */
.product-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-grid.active {
    display: grid;
}

.product-list-view {
    display: block;
}

.product-list-view.hidden {
    display: none;
}

.product-card-grid {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card-grid .product-image {
    height: 200px;
}

.product-card-grid .product-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-grid .product-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-card-grid .product-price-section {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}

.product-card-grid .price-display {
    justify-content: space-between;
}

.product-card-grid .btn-add-cart {
    width: 100%;
    justify-content: center;
}

/* ============================================
    PRODUCT DETAIL PAGE
    ============================================ */
.product-detail-section {
    /*padding: 3rem 0;*/
}

.product-detail-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.product-detail-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.product-meta-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-category-badge {
    display: inline-block;
    background-color: rgba(218, 253, 90, 0.3);
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
}

.product-level-badge {
    display: inline-block;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
}

.product-update-date {
    color: #777;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price-section {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 1.25rem;
}

.price-current {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-add-cart-large {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-add-cart-large:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-add-cart-large.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
}

.product-description-section {
    margin-top: 3rem;
}

.product-description-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.product-description-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.product-description-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-description-content p {
    margin-bottom: 1.5rem;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.product-features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--bg-color);
}

.product-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.product-info-box {
    background: linear-gradient(135deg, rgba(218, 253, 90, 0.2) 0%, rgba(220, 236, 250, 0.2) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.product-info-box h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
NOUVELLES ENTRÉES CSS - DIRECTORY
============================================ */

/* Hero Section */
.hero-section-directory {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gradient-end) 100%);
    padding: 8rem 2rem 5rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-badge-directory {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge-dot-directory {
    position: relative;
    width: 12px;
    height: 12px;
    background: var(--emerald-color);
    border-radius: 50%;
}

.hero-badge-dot-directory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--emerald-color);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.a-link-directory {
    text-decoration: none;
    font-size: 0.875rem;
    color: #6b7280;
}

.maps-iframe-directory {
    border-radius: 10px;
    border: 0;
}

.cost-estimate {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-title-directory {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title-gradient-directory {
    background: linear-gradient(to right, var(--accent-color), var(--light-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-directory {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons-directory {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary-directory {
    background: white;
    color: var(--dark-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary-directory:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-hero-secondary-directory {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary-directory:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats-directory {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.hero-stat-item-directory {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-stat-divider-directory {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-image-container-directory {
    position: relative;
}

.hero-image-directory-france {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-image-directory {
    width: 100%;
    height: 300px;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover; /* Rogne l'image pour remplir le conteneur */
    object-position: center; /* Centre l'image dans le cadre (par défaut) */
}

.hero-stat-card-directory {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    color: var(--indigo-dark);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-stat-card-icon-directory {
    font-size: 2.5rem;
}

.hero-stat-card-title-directory {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-stat-card-subtitle-directory {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Trust Bar */
.trust-bar-directory {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.trust-bar-content-directory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.trust-bar-item-directory {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-bar-highlight-directory {
    color: var(--emerald-color);
    font-weight: 600;
}

/* Introduction Section */
.intro-section-directory {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-title-directory {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-text-directory {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-highlight-directory {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.eea-grid-directory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.eea-card-directory {
    background: var(--bg-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.eea-card-title-directory {
    font-weight: 700;
    color: var(--emerald-color);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.eea-card-text-directory {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--dark-color);
}

.intro-sidebox-directory {
    background: var(--bg-color);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.intro-sidebox-title-directory {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-sidebox-list-directory {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-sidebox-list-directory li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.intro-sidebox-list-directory li:last-child {
    margin-bottom: 0;
}

.intro-sidebox-icon-directory {
    font-size: 1.5rem;
}

.btn-intro-cta-directory {
    background: var(--indigo-color);
    color: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-intro-cta-directory:hover {
    background: var(--indigo-dark);
    color: white;
}

/* Services Section */
.services-section-directory {
    background: var(--bg-color);
    padding: 5rem 2rem;
}

.services-header-directory {
    text-align: center;
    margin-bottom: 3rem;
}

.services-badge-directory {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--indigo-color);
    font-weight: 600;
}

.services-title-directory {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 1rem;
    color: var(--dark-color);
}

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

.service-card-directory {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card-directory:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon-directory {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-title-directory {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.service-description-directory {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-directory {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-directory li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #374151;
}

.service-features-directory li::before {
    content: '✓';
    color: var(--emerald-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials-section-directory {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title-directory {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.testimonial-card-directory {
    border: 1px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card-directory:hover {
    border-color: var(--emerald-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-header-directory {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.testimonial-company-directory {
    font-weight: 700;
    color: var(--dark-color);
}

.testimonial-result-directory {
    color: var(--emerald-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-quote-directory {
    font-style: italic;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author-directory {
    font-size: 0.75rem;
    color: #9ca3af;
}

.testimonials-note-directory {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Process Section */
.process-section-directory {
    background: var(--secondary-color-light);
    padding: 5rem 2rem;
    color: white;
}

.process-title-directory {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.process-grid-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-step-icon-directory {
    background-color: var(--gradient-start);
    border-radius: 50px;
    line-height: 70px;
    color: var(--secondary-color-light);
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-grid-directory > div {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre tout le contenu horizontalement */
    text-align: center;
}

.process-step-title-directory {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step-description-directory {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Intermediate */
.cta-intermediate-directory {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    max-width: 1200px;
    margin: -4rem auto 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.cta-intermediate-text-directory {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-intermediate-title-directory {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.btn-cta-intermediate-directory {
    background: var(--secondary-color-light);
    color: var(--light-color);
    padding: 1.5rem 2.5rem;
    border-radius: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-cta-intermediate-directory:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.cta-intermediate-note-directory {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-top: 1.5rem;
}

/* Liste directory */
.directory-info-box {
    background: linear-gradient(135deg, rgba(218, 253, 90, 0.2) 0%, rgba(220, 236, 250, 0.2) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    /*margin: 2rem 0;*/
}

.directory-mesh-list {
    list-style: none;
    padding: 0;
    /*margin: 2rem 0;*/
}

.directory-mesh-list li {
    /*padding: 0.75rem 0;*/
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--bg-color);
}

.directory-mesh-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

/* FAQ Section */
.faq-section-directory {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title-directory {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.faq-container-directory {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-directory {
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item-directory:hover {
    border-color: var(--primary-color);
    background: rgba(218, 253, 90, 0.05);
}

.faq-question-directory {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-color);
}

.faq-question-icon-directory {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item-directory.active .faq-question-icon-directory {
    transform: rotate(180deg);
}

.faq-answer-directory {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #6b7280;
    line-height: 1.7;
}

.faq-item-directory.active .faq-answer-directory {
    max-height: 300px;
    margin-top: 1.5rem;
}
/* ============================================
           ROI CALCULATOR SECTION
           ============================================ */
.roi-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(218, 253, 90, 0.2) 0%, rgba(220, 236, 250, 0.2) 100%);
    border-radius: 15px;
    margin: 3rem 0;
}

.roi-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.roi-section .section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

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

.roi-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.roi-stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.roi-stat .label {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
DELIVERABLES SECTION
============================================ */
.deliverables-section {
    /*padding: 4rem 0;*/
}

.deliverables-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.deliverable-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.deliverable-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deliverable-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.deliverable-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.deliverable-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid-directory,
    .testimonials-grid-directory {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-directory {
        font-size: 2rem;
    }

    .hero-subtitle-directory {
        font-size: 1rem;
    }

    .hero-stats-directory {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-divider-directory {
        display: none;
    }

    .hero-image-container-directory {
        display: none;
    }

    .services-grid-directory,
    .testimonials-grid-directory,
    .process-grid-directory {
        grid-template-columns: 1fr;
    }

    .eea-grid-directory {
        grid-template-columns: 1fr;
    }

    .form-grid-directory {
        grid-template-columns: 1fr;
    }

    .trust-bar-content-directory {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .intro-section-directory {
        padding: 3rem 1rem;
    }

    .cta-intermediate-directory {
        margin: -2rem 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title-directory {
        font-size: 1.75rem;
    }

    .hero-buttons-directory {
        flex-direction: column;
    }

    .btn-hero-primary-directory,
    .btn-hero-secondary-directory {
        width: 100%;
        justify-content: center;
    }
}
