/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Inter, sans-serif;
    background: #fafaf8;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
table {
    border-collapse: collapse;
    width: 100%;
}
th,
td {
    text-align: left;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8d5;
    font-size: 15px;
}
th {
    background: #0f1f06;
    color: #fff;
    font-weight: 600;
}
tr:hover td {
    background: #f0f7e8;
}
a {
    color: inherit;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 4px;
    top: 4px;
    width: auto;
    height: auto;
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8d5;
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-badge {
    font-size: 13px;
    color: #5a8a2e;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #85bd4a;
}
.nav-cta {
    background: #85bd4a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s;
}
.nav-cta:hover {
    background: #6fa832;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* HERO */
.hero {
    color: #fff;
    padding: 88px 40px 80px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(5, 15, 2, 0.96) 40%, rgba(5, 15, 2, 0.3) 70%, rgba(5, 15, 2, 0.05) 100%);
}
.hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, #85bd4a 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}
.hero-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #85bd4a, transparent);
    z-index: 2;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-content {
    max-width: 640px;
    padding: 0px;
}
.hero-breadcrumb {
    font-size: 13px;
    color: #85bd4a;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.hero-breadcrumb a {
    color: #85bd4a;
    text-decoration: none;
}
.hero-breadcrumb__sep {
    color: #3d6b1a;
}
.hero-breadcrumb__current {
    color: #c8e6a0;
}
.hero-title {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(40px, 4.5vw, 68px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-title__accent {
    color: #85bd4a;
    font-style: italic;
}
.hero-subtitle {
    font-size: 18px;
    color: #b8d990;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn-primary {
    background: #85bd4a;
    color: #fff;
    padding: 15px 30px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s;
}
.hero-btn-primary:hover {
    background: #6fa832;
}
.hero-btn-phone {
    border: 2px solid rgba(133, 189, 74, 0.35);
    color: #c8e6a0;
    padding: 15px 24px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: border-color 0.2s;
}
.hero-btn-phone:hover {
    border-color: #85bd4a;
}

/* TICKER */
.ticker {
    background: #85bd4a;
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-flex;
    animation: ticker 35s linear infinite;
}
.ticker-track {
    display: inline-flex;
    gap: 36px;
    padding-right: 36px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.ticker-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* CLIENTS BAR */
.clients-bar {
    background: #fff;
    border-bottom: 1px solid #e8edd8;
    padding: 28px 40px;
}
.clients-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.clients-bar__label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}
.clients-bar__names {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}
.clients-bar__name {
    font-size: 15px;
    font-weight: 700;
    color: #c9d4bf;
    letter-spacing: -0.3px;
}
.clients-bar__name img {
    filter: grayscale(1);
}
/* SECTIONS */
.section {
    padding: 80px 40px;
}
.section--sm {
    padding: 72px 40px;
}
.section--white {
    background: #fff;
    border-top: 1px solid #e8edd8;
}
.section--light {
    background: #fafaf8;
    border-top: 1px solid #e8edd8;
}
.section--intro {
    background: #fafaf8;
}
.section--green-light {
    background: #f0f7e8;
    border-top: 1px solid #d4eabc;
}
.section--dark {
    background: #111111;
    color: #fff;
    border-top: 2px solid #86bd4a;
}
.section--final {
    background-color: #0f1f06;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.section--final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 20, 2, 0.88) 0%, rgba(5, 20, 2, 0.72) 100%);
    pointer-events: none;
}

.section--final > .container--medium {
    position: relative;
    z-index: 1;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.container--narrow {
    max-width: 900px;
    margin: 0 auto;
}
.container--medium {
    max-width: 800px;
    margin: 0 auto;
}

/* GRIDS */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.expertise-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 56px;
}
.equipe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.pour-qui-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.expertise-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: 14px;
    overflow: hidden;
}
.process-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.process-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 24px 20px 24px;
    min-height: 180px;
    background: #fff;
    border: 1px solid #e8edd8;
    border-radius: 10px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.process-card:hover {
    border-color: #b6d98a;
    box-shadow: 0 4px 20px rgba(133, 189, 74, 0.08);
}

.process-card__num {
    position: absolute;
    top: -12px;
    right: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #0f1f06;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.process-card__title {
    font-family: "Unbounded", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
    position: relative;
}

.process-card__text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    position: relative;
}
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a2e10;
}
#tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
#services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    /* gap: 20px; */
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#faq-list {
    display: flex;
    flex-direction: column;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 100%;
}
.section-header--mb40 {
    margin-bottom: 40px;
}
.section-header--mb48 {
    margin-bottom: 48px;
}
.section-header--mb52 {
    margin-bottom: 52px;
}
.section-header--mb56 {
    margin-bottom: 56px;
}

/* BADGE */
.badge {
    display: inline-block;
    background: #f0f7e8;
    color: #3d6b1a;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.badge--dark {
    background: rgba(133, 189, 74, 0.12);
    color: #85bd4a;
}
.badge--white {
    background: #fff;
    border: 1px solid #c8e6a0;
}
.badge--mb16 {
    margin-bottom: 16px;
}

/* TYPOGRAPHY */
.section-label {
    font-size: 12px;
    font-weight: 600;
    color: #85bd4a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.h2-xl {
    font-family: "Unbounded", sans-serif;
    font-size: 40px;
    font-weight: 700;
    /* letter-spacing: -0.5px; */
    line-height: 1.15em;
    margin-bottom: 14px;
    color:#FFF;
}
.h2-lg {
    font-family: "Unbounded", sans-serif;
    font-size: 38px;
    font-weight: 700;
    /* letter-spacing: -0.5px; */
    line-height: 1.15;
    margin-bottom: 20px;
}
.h2-md {
    font-family: "Unbounded", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    /* letter-spacing: -0.3px; */
    margin-bottom: 20px;
}
.h2-sm {
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    font-weight: 700;
    /* letter-spacing: -0.3px; */
    line-height: 1.15em;
    margin-bottom: 8px;
}
.h2-final {
    font-family: "Unbounded", sans-serif;
    font-size: 40px;
    font-weight: 700;
    /* letter-spacing: -0.5px; */
    line-height: 1.15;
    margin-bottom: 16px;
}
.h2-accent {
    color: #85bd4a;
    font-style: italic;
}
.h3-box {
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #c8e6a0;
}
.h3-contact {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.text-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 540px;
    margin: 8px auto 0;
}
.text-subtitle--links {
    font-size: 15px;
    color: #6b7280;
    margin-top: 8px;
}
.text-body {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 16px;
}
.text-body--md {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}
.text-body--last {
    margin-bottom: 28px;
}
.text-dark-intro {
    font-size: 16px;
    color: #8ab070;
    line-height: 1.75;
}
.text-final {
    font-size: 17px;
    color: #8ab070;
    line-height: 1.75;
    margin-bottom: 40px;
}
.text-note {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 12px;
}
.text-green {
    color: #85bd4a;
}
.text-soft-green {
    color: #8ab070;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.75;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: #85bd4a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #6fa832;
}
.btn-primary--block {
    display: block;
    text-align: center;
    padding: 15px 24px;
}
.btn-primary--sm {
    padding: 13px 28px;
}
.btn-primary--lg {
    padding: 17px 36px;
    font-size: 16px;
    border-radius: 8px;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f1f06;
    color: #fff;
    padding: 14px 28px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}
.btn-dark:hover {
    background: #1e3a0f;
}
.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(133, 189, 74, 0.4);
    color: #c8e6a0;
    padding: 14px 32px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: #85bd4a;
    color: #fff;
}
.btn-outline-neutral {
    display: inline-block;
    border: 2px solid #e2e8d5;
    color: #374151;
    padding: 12px 28px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-outline-neutral:hover {
    border-color: #85bd4a;
    color: #85bd4a;
}
.btn-phone-final {
    border: 2px solid rgba(133, 189, 74, 0.35);
    color: #c8e6a0;
    padding: 17px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: border-color 0.2s;
}
.btn-phone-final:hover {
    border-color: #85bd4a;
}
.section-action {
    margin-top: 32px;
    text-align: center;
}
.section-action--top {
    text-align: center;
    margin-top: 40px;
}
.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* TABS / SERVICES */
.tab-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid #e2e8d5;
    background: #fff;
    color: #374151;
    transition: all 0.2s;
    white-space: nowrap;
}
.tab-btn.active {
    border-color: #85bd4a;
    background: #85bd4a;
    color: #fff;
    font-weight: 600;
}
.tab-btn:hover:not(.active) {
    border-color: #85bd4a;
    color: #85bd4a;
}
.service-card {
    background: #fafaf8;
    border: 1.5px solid #e8edd8;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s;
}
.service-card:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 31, 6, 0.08);
    border-color: #85bd4a;
    transform: translateY(-3px);
}
.service-card__icon {
    font-size: 30px;
    margin-bottom: 14px;
}
.service-card__title {
    font-family: "Unbounded", sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}
.service-card__sub {
    font-size: 12px;
    color: #85bd4a;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.service-card__desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
}
.service-card__footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e8edd8;
}
.service-card__cta {
    font-size: 14px;
    color: #85bd4a;
    font-weight: 600;
    text-decoration: none;
}

/* IMAGE STRIPS */
.strip-3 {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    height: 360px;
    overflow: hidden;
}
.strip-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 360px;
    overflow: hidden;
}
.strip-img {
    overflow: hidden;
}
.strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.strip-img:hover img {
    transform: scale(1.04);
}

/* INTRO IMAGES */
.intro-images {
    position: relative;
    height: 400px;
}
.intro-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 72%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 31, 6, 0.16);
}
.intro-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.intro-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 72%;
    height: 66%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 31, 6, 0.2);
    border: 4px solid #fafaf8;
}
.intro-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.intro-img-badge {
    position: absolute;
    bottom: 28px;
    left: 16px;
    background: #85bd4a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* EXPERTISE */
.expertise-card {
    padding: 32px;
}
.expertise-card--odd {
    background: #162a0a;
}
.expertise-card--even {
    background: #112306;
}
.expertise-card__icon {
    font-size: 24px;
    margin-bottom: 16px;
}
.expertise-card__label {
    font-size: 11px;
    font-weight: 600;
    color: #85bd4a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.expertise-card__title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.expertise-card__text {
    font-size: 13px;
    color: #6a8a50;
    line-height: 1.7;
}
.expertise-card__footer {
    margin-top: 16px;
    font-size: 12px;
    color: #4d6e35;
    font-weight: 500;
}

/* POUR QUI */
.pour-qui-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border-top: 3px solid #85bd4a;
    box-shadow: 0 2px 16px rgba(15, 31, 6, 0.06);
}
.pour-qui-card__icon {
    font-size: 28px;
    margin-bottom: 16px;
}
.pour-qui-card__title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.pour-qui-card__text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}
.pour-qui-card__list {
    font-size: 12px;
    color: #85bd4a;
    font-weight: 600;
    line-height: 1.7;
}

/* FEATURED */
.featured-img {
    border-radius: 14px;
    height: 380px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px rgba(15, 31, 6, 0.18);
}
.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.featured-img__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 16, 3, 0.82), transparent);
    padding: 28px 24px 20px;
}
.featured-img__brand {
    font-size: 10px;
    color: #85bd4a;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.featured-img__caption {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}
.checklist__tick {
    color: #85bd4a;
    font-weight: 700;
    flex-shrink: 0;
}

/* VENUES */
.venue-card {
    background: #f0f7e8;
    border-radius: 8px;
    padding: 16px;
}
.venue-card__label {
    font-size: 11px;
    color: #85bd4a;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.venue-card__text {
    font-size: 13px;
    color: #374151;
}

/* PROCESS */

/* BUDGET */
.budget-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8d5;
}
.budget-col {
    padding-top: 20px;
}
.table-row-highlight td {
    background: #f0f7e8;
    font-weight: 600;
}
.table-row-highlight:hover td {
    background: #e4f0d4;
}

/* WHY BOX */
.why-box {
    background: #0f1f06;
    border-radius: 14px;
    padding: 40px;
    color: #fff;
}
.why-box__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-item__icon {
    width: 36px;
    height: 36px;
    background: rgba(133, 189, 74, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.why-item__title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}
.why-item__text {
    font-size: 13px;
    color: #7fb060;
}

/* EQUIPE / CONTACT */
/* Equipe layout */
.equipe-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.equipe-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equipe-h2 {
    margin: 10px 0 10px;
}

.equipe-subtitle {
    margin-bottom: 4px;
}

/* Member card — compact horizontal */
.member-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
}

.member-card__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(134, 189, 74, 0.4);
}

.member-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.member-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.member-card__name {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.member-card__role {
    font-size: 12px;
    color: #86bd4a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.member-card__quote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    padding-left: 10px;
    border-left: 2px solid rgba(134, 189, 74, 0.35);
}

/* Contact info card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.contact-info-card .contact-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-card .contact-item:last-child {
    border-bottom: none;
}

/* Contact info items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item__icon {
    width: 36px;
    height: 36px;
    background: rgba(133, 189, 74, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86bd4a;
    flex-shrink: 0;
}

.contact-item__icon svg {
    width: 16px;
    height: 16px;
}

.contact-item__label {
    font-size: 11px;
    color: #86bd4a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 3px;
}

.contact-item__value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contact-item__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item__link:hover {
    color: #86bd4a;
}
.map-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(133, 189, 74, 0.2);
    border-radius: 14px;
    overflow: hidden;
}
.map-card__actions {
    padding: 20px;
    display: flex;
    gap: 12px;
}
.map-btn-outline {
    flex: 1;
    background: rgba(133, 189, 74, 0.15);
    color: #85bd4a;
    padding: 12px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(133, 189, 74, 0.25);
}
.map-btn-solid {
    flex: 1;
    background: #85bd4a;
    color: #fff;
    padding: 12px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.contact-card {
    background: rgba(133, 189, 74, 0.1);
    border: 1px solid rgba(133, 189, 74, 0.2);
    border-radius: 14px;
    padding: 32px;
}
.contact-card__text {
    font-size: 14px;
    color: #8ab070;
    line-height: 1.7;
    margin-bottom: 24px;
}
.contact-card__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}
.contact-card__stars {
    font-size: 13px;
    color: #85bd4a;
    font-weight: 600;
}
.contact-card__rating-text {
    font-size: 13px;
    color: #7fb060;
}

/* AVIS */
.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rating-stars {
    font-size: 20px;
    color: #f5b70a;
    letter-spacing: 2px;
}
.rating-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}
.review-card {
    background: #fff;
    border: 1.5px solid #e8edd8;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s;
}
.review-card:hover {
    box-shadow: 0 8px 32px rgba(15, 31, 6, 0.07);
    border-color: #c8e6a0;
}
.review-card__stars {
    color: #f5b70a;
    font-size: 16px;
    letter-spacing: 2px;
}
.review-card__text {
    font-size: 14px;
    color: #374151;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}
.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e8edd8;
}
.review-card__author {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}
.review-card__poste {
    font-size: 12px;
    color: #85bd4a;
    font-weight: 500;
}
.review-card__date {
    font-size: 12px;
    color: #9ca3af;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e8edd8;
}
.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: Inter, sans-serif;
}
.faq-btn__q {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}
.faq-btn__icon {
    font-size: 20px;
    color: #85bd4a;
    flex-shrink: 0;
    font-weight: 300;
    line-height: 1;
}
.faq-answer {
    padding-bottom: 24px;
    border-left: 3px solid #85bd4a;
    padding-left: 20px;
    margin-left: 4px;
    display: none;
}
.faq-answer.open {
    display: block;
}
.faq-answer__text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
}
.faq-cta-box {
    margin-top: 40px;
    background: #f0f7e8;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}
.faq-cta-box__text {
    font-size: 16px;
    color: #374151;
    margin-bottom: 16px;
}

/* LINKS */
.link-col__heading {
    font-size: 13px;
    font-weight: 700;
    color: #85bd4a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8edd8;
}
.link-col__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.link-col__link {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    transition: color 0.2s;
}
.link-col__link:hover {
    color: #85bd4a;
}

/* FINAL CTA */
.final-flag {
    font-size: 36px;
    margin-bottom: 20px;
}
.final-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.final-info__sep {
    color: #3d6b1a;
}
.final-info__item {
    font-size: 13px;
    color: #6a8a50;
}
.final-info__rating {
    font-size: 13px;
    color: #85bd4a;
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: #080f04;
    color: #4a6a30;
    padding: 48px 40px 32px;
}
.footer-brand {
    background: #0f1f06;
    color: #85bd4a;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-desc {
    font-size: 13px;
    color: #4a6a30;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 280px;
}
.footer-address {
    font-style: normal;
    font-size: 13px;
    color: #4a6a30;
    line-height: 1.8;
}
.footer-address a {
    color: #6a8a50;
    text-decoration: none;
}
.footer-col__heading {
    font-size: 12px;
    font-weight: 700;
    color: #3d6b1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}
.footer-col__link {
    color: #4a6a30;
    text-decoration: none;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copyright {
    font-size: 12px;
    color: #2d4a1e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid,
    .intro-grid,
    .featured-grid,
    .equipe-grid,
    .budget-grid,
    .expertise-header-grid {
        grid-template-columns: 1fr;
    }
    .strip-3 {
        grid-template-columns: 1fr;
        height: auto;
    }
    .strip-3 .strip-img {
        height: 200px;
    }
    .pour-qui-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .expertise-cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .nav-inner {
        padding: 0 20px;
    }
}
@media (max-width: 600px) {
    .pour-qui-grid {
        grid-template-columns: 1fr;
    }
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 60px 20px 48px;
    }
    .section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .clients-bar {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-inner {
        animation: none;
    }
    .service-card,
    .strip-img img {
        transition: none;
    }
}

/* ═══════════════════════════════════════════════════
   AGENCE V3 — template-agence-v2.php
═══════════════════════════════════════════════════ */

/* ── Section services ──────────────────────── */
#evenements-entreprise-barcelone {
    background: #0a0a0a;
}

/* ── Tabs ───────────────────────────────────── */
#tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 8px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: color 200ms, background 200ms, border-color 200ms;
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(134, 189, 74, 0.35);
}

.tab-btn.active {
    background: linear-gradient(135deg, #86bd4a 0%, #c8ff00 100%);
    color: #0a0a0a;
    border-color: transparent;
    font-weight: 700;
}

/* ── Service grid (3 columns) ───────────────── */
#services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-row {
    display: grid;
    grid-template-columns: 11rem 1fr auto;
    gap: 0 48px;
    align-items: center;
    padding: 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    cursor: default;
}

.service-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(134, 189, 74, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-row:hover::before {
    opacity: 1;
}

.service-row__label {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #86bd4a;
}

.service-row__title {
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 6px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.service-row:hover .service-row__title {
    color: #86bd4a;
}

.service-row__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
    max-width: 58ch;
}

.service-row__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #86bd4a;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.25s;
}

.service-row__cta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover .service-row__cta {
    gap: 14px;
}

.service-row:hover .service-row__cta svg {
    transform: translateX(5px);
}

/* ── EXPERTISE PHOTO MOSAIC ─── */
#expertise-barcelone {
    background: #0f1f06;
    color: #fff;
    padding: 0;
}

/* Override section padding */
#expertise-barcelone.section {
    padding: 0;
}

/* Header band */
.exp-header {
    background: #f8f6f2;
    padding: 72px 0 64px;
}

.exp-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}

.exp-header .badge--dark {
    background: rgba(86, 157, 26, 0.1);
    color: #3d6c12;
}

.exp-header .h2-xl {
    color: #111;
    margin-top: 16px;

}

.exp-header .h2-accent {
    color: #4a8a18;
    font-style: italic;
}

.exp-intro {
    font-size: 16px;
    color: #5a6a4a;
    line-height: 1.8;
    margin: 0;
    text-wrap: pretty;
}

/* Photo mosaic grid */
.exp-mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 420px 320px;
    gap: 4px;
    background: #f8f6f2;
}

/* Cards */
.exp-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #1a2a12;
    background-size: cover;
    background-position: center;
}

.exp-card--hero {
    grid-row: span 2;
}

/* Gradient overlay */
.exp-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 20, 2, 0.92) 0%, rgba(5, 20, 2, 0.35) 55%, rgba(5, 20, 2, 0.05) 100%);
    transition: background 0.4s;
}

.exp-card:hover .exp-card__overlay {
    background: linear-gradient(to top, rgba(5, 20, 2, 0.95) 0%, rgba(5, 20, 2, 0.65) 65%, rgba(5, 20, 2, 0.2) 100%);
}

/* Location badge (top-left) */
.exp-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #86bd4a;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(133, 189, 74, 0.3);
    z-index: 1;
}

.exp-card--hero .exp-card__badge {
    background: rgba(133, 189, 74, 0.9);
    color: #0f1f06;
    border: none;
    top: 24px;
    left: 24px;
    font-size: 10px;
    font-weight: 800;
}

/* Content block (bottom) */
.exp-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 22px;
    z-index: 1;
}

.exp-card--hero .exp-card__content {
    padding: 32px 28px;
}

.exp-card__title {
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px;
}

.exp-card--hero .exp-card__title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Description — reveals on hover */
.exp-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.exp-card:hover .exp-more {
    max-height: 120px;
}

.exp-card__desc {
    font-size: 12px;
    color: rgba(184, 217, 144, 0.9);
    line-height: 1.7;
    margin: 0 0 10px;
}

.exp-card--hero .exp-card__desc {
    font-size: 13px;
    margin-bottom: 12px;
}

/* Tags */
.exp-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.exp-tag {
    background: rgba(133, 189, 74, 0.2);
    color: #86bd4a;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(133, 189, 74, 0.3);
}

.exp-card--hero .exp-tag {
    font-size: 11px;
    padding: 4px 10px;
}

/* "Découvrir" link on hero card */
.exp-card__link {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: #86bd4a;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}

.exp-card:hover .exp-card__link {
    opacity: 1;
    transform: translateY(0);
}

/* CTA footer */
.exp-footer-cta {
    background: #0f1f06;
    padding: 32px 40px;
    text-align: center;
}

#expertise-barcelone .btn-outline {
    border-color: rgba(133, 189, 74, 0.35);
    color: rgba(200, 230, 160, 0.9);
}

#expertise-barcelone .btn-outline:hover {
    border-color: #86bd4a;
    color: #86bd4a;
    background: transparent;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    #services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-row {
        grid-template-columns: 9rem 1fr auto;
        gap: 0 32px;
    }
    .exp-header__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 32px;
    }
    .exp-header {
        padding: 56px 0 48px;
    }
    .exp-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 360px 280px 280px;
    }
    .exp-card--hero {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    #services-grid {
        grid-template-columns: 1fr;
    }
    .service-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 4px 24px;
        padding: 28px 0;
    }
    .service-row__label {
        grid-column: 1;
        grid-row: 1;
    }
    .service-row__main {
        grid-column: 1;
        grid-row: 2;
    }
    .service-row__cta {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
    .service-row__title {
        font-size: 16px;
    }
    .exp-header__inner {
        padding: 0 20px;
    }
    .exp-header {
        padding: 48px 0 40px;
    }
    .exp-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto-fill, 280px);
    }
    .exp-card--hero {
        grid-column: 1;
        grid-row: span 1;
        height: 340px;
    }
    .exp-footer-cta {
        padding: 28px 20px;
    }
    /* Reveal description on mobile (no hover) */
    .exp-more {
        max-height: 80px;
    }
}
