/*============================================================================================*/
/*-------------------------------------- VARIABLES GLOBALES ----------------------------------*/
/*============================================================================================*/

:root {
    --bg: #ba936e; /* Brun foncé (fond général) */
    --panel: #3d2518; /* Marron intermédiaire */
    --text: #d3cdcd; /* Crème clair */
    --muted: #ffffff; /* Beige clair */
    --brand: #ffbc82; /* Cuivre / accent principal */
    --brand-2: #7a3a12; /* Cuivre foncé */
    --ring: rgba(165, 84, 27, .35); /* Halo d'accent */
    --card-bd: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 50px rgba(0, 0, 0, .4);
    --radius: 16px;
}

h1 {
    color: var(--brand);
}

/*============================================================================================*/
/*------------------------------------------ FOND GÉNÉRAL ------------------------------------*/
/*============================================================================================*/

body {
    background: radial-gradient(1200px 700px at 90% -10%, rgba(165, 84, 27, .12), transparent 60%), var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
}

main {
    flex: 1; /* prend tout l’espace disponible entre la navbar et le footer */
}

footer {
    margin-top: auto; /* pousse le footer en bas */
}


/* ===================== home ===================== */
.beta-cta .wrap {
    background: radial-gradient(1100px 500px at 110% -30%, rgba(165, 84, 27, .18), transparent 60%),
    linear-gradient(180deg, #9d5e30, #7f4c29);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
    padding: clamp(24px, 3vw, 36px);
    color: #fff;
    /*overflow: hidden;*/
    position: relative;
    width: 70%;
    margin: 0 auto;
}

.beta-cta .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    font-weight: 700;
    letter-spacing: 3px;
}

.beta-cta h2 {
    color: #fff;
    font-weight: 800;
    margin: .6rem 0 .25rem 0;
}

.beta-cta h3 {
    color: #fff;
    opacity: .95;
    font-weight: 700;
    margin: 0 0 .5rem 0;
}

.beta-cta .lead {
    color: #f7f2ea;
    margin-bottom: 1rem;
}

.beta-cta .ticks {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.beta-cta .ticks li {
    position: relative;
    padding-left: 28px;
    margin: .4rem 0;
    color: #fff;
}

.beta-cta .ticks li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--brand, #a5541b);
    font-size: .8rem;
    font-weight: 900;
}

.beta-cta .cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.beta-cta .btn-brand {
    background: var(--brand, #a5541b);
    color: #fff;
    border: none;
    font-weight: 700;
}

.beta-cta .btn-brand:hover {
    background: var(--brand-2, #7a3a12);
}

.beta-cta .btn-ghost {
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .6);
    font-weight: 700;
}

.beta-cta .btn-ghost:hover {
    background: #fff;
    color: var(--brand, #a5541b);
}

/* Ruban décoratif */
.beta-cta .ribbon {
    position: absolute;
    right: -60px;
    top: 22px;
    rotate: 30deg;
    background: #fff;
    color: var(--brand, #a5541b);
    font-weight: 800;
    padding: .35rem 1.6rem;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    border: 3px double var(--brand, #a5541b);
}

/* ============ PRICING SHOWCASE (scopé) ============ */
.pricing-showcase .section-title {
    color: var(--brand, #a5541b);
    font-weight: 800;
}

.pricing-showcase .beta-card {
    background: linear-gradient(180deg, #a86b3a, #8c5630);
    border: none;
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .32);
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    max-width: 520px;
}

.pricing-showcase .beta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
}

.pricing-showcase .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.pricing-showcase .beta-card:hover .icon-circle {
    transform: rotate(-8deg) scale(1.06);
}

.pricing-showcase .card-title {
    color: #fff;
    letter-spacing: .6px;
}

.pricing-showcase .beta-text {
    color: #fff;
    opacity: .95;
}

.pricing-showcase .features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    color: #fff;
}

.pricing-showcase .features li {
    position: relative;
    padding-left: 26px;
    margin: .35rem 0;
}

.pricing-showcase .features li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #fff;
    opacity: .8;
    font-weight: 900;
}

.pricing-showcase .btn-cuivre {
    background: #fff;
    color: var(--brand, #a5541b) !important;
    border: none;
    font-weight: 700;
    padding: .75rem 1.25rem;
    border-radius: .7rem;
    transition: all .25s ease;
}

.pricing-showcase .btn-cuivre:hover {
    background: var(--brand, #a5541b);
    color: #fff !important;
    transform: translateY(-2px);
}

.pricing-showcase .btn-outline-cuivre {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    padding: .75rem 1.25rem;
    border-radius: .7rem;
    transition: all .25s ease;
}

.pricing-showcase .btn-outline-cuivre:hover {
    background: #fff;
    color: var(--brand, #a5541b);
    transform: translateY(-2px);
}

/* Petits badges de mention */
.mini-badges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .75rem;
}

.mini-badges .chip {
    padding: .25rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(192, 33, 33, .1);
    color: var(--brand);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* empêche de se tasser */
}

.card-title {
    font-size: 1.3rem;
    letter-spacing: .5px;
}

.beta-card {
    background: linear-gradient(180deg, #fff, #f9f5f3);
    border: 2px solid var(--brand);
    border-radius: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.beta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(165, 84, 27, 0.25);
}

/* Icône décorative */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(192, 33, 33, .1);
    color: var(--brand);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bouton principal cuivre */
.btn-cuivre {
    background: var(--brand);
    color: #fff !important;
    font-weight: 600;
    padding: .7rem 1.4rem;
    border: none;
    border-radius: .6rem;
    transition: all .25s ease-in-out;
}

.btn-cuivre:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
}

/* Bouton contour cuivre */
.btn-outline-cuivre {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    font-weight: 600;
    padding: .7rem 1.4rem;
    border-radius: .6rem;
    transition: all .25s ease-in-out;
}

.btn-outline-cuivre:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}


/*============================================================================================*/
/*--------------------------------------------- HERO -----------------------------------------*/
/*============================================================================================*/

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
    border-bottom: 1px solid var(--card-bd);
}

.hero .logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(165, 84, 27, .28));
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    letter-spacing: .2px;
    margin: 18px 0 6px;
}

.hero .lead {
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto;
}

.hero .cta {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* pour rester fluide sur mobile */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brand);
    margin-bottom: .5rem;
}

.hero-text .slogan p {
    margin: 0;
    font-size: 1.1rem;
    color: #444;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

/*============================================================================================*/
/*------------------------------------------- BOUTONS ----------------------------------------*/
/*============================================================================================*/

.btn-brand {
    background: var(--brand);
    border: none;
    color: #fff;
}

.btn-brand:hover {
    background: var(--brand-2);
}

.btn-ghost {
    border: 1px solid var(--card-bd);
    color: #f4ede4;
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--ring);
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

/*============================================================================================*/
/*--------------------------------------------- KPIS -----------------------------------------*/
/*============================================================================================*/

.kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 1rem;
}

.kpis .card {
    color: var(--text);
    background-color: #ac6c2a;
}

.kpis .label {
    color: var(--muted);
}

.kpis .fw-bold {
    color: var(--text);
}

/*============================================================================================*/
/*-------------------------------------------- SECTIONS --------------------------------------*/
/*============================================================================================*/

.section {
    padding: 64px 0;
}

.pageHome .section h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 14px;
    color: var(--brand);
}

/*============================================================================================*/
/*--------------------------------------------- PANELS ---------------------------------------*/
/*============================================================================================*/

.panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
    border: 1px solid var(--card-bd);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/*============================================================================================*/
/*-------------------------------------- FONCTIONNALITÉS -------------------------------------*/
/*============================================================================================*/

:root {
    --eq-primary: #c02121;
    --eq-primary-600: #a51c1c;
    --eq-surface: #ffffff;
    --eq-text: #111827;
    --eq-muted: #6b7280;
    --eq-border: rgba(0, 0, 0, .08);
    --eq-shadow: 0 6px 24px rgba(0, 0, 0, .08);
    --eq-shadow-hover: 0 12px 36px rgba(0, 0, 0, .12);
    --eq-card-top-grad: linear-gradient(90deg, var(--eq-primary), #ff7b7b);
    --eq-chip-bg: #f9fafb;
}

/* Layout polish */
.section-intro {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.pageFonction .pill {
    border: 1px solid var(--eq-border);
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .8rem;
    background: #fff;
}

.nav-pills button {
    margin: 0 auto;
}

/* petit plus lisibilité badges des onglets */
#roadmapTabs .nav-link {
    border-radius: 999px;
}

/* Cartes */
.feature-card {
    border: 1px solid var(--eq-border);
    border-radius: 1rem;
    background: var(--eq-surface);
    box-shadow: var(--eq-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--eq-card-top-grad);
    opacity: .8;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--eq-shadow-hover);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: .75rem;
    background: linear-gradient(135deg, rgba(192, 33, 33, .12), rgba(255, 123, 123, .12));
    border: 1px solid rgba(192, 33, 33, .15);
}

.feature-title {
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, var(--eq-primary) 0%, #fff 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-list {
    margin: 0;
    padding-left: 1.1rem;
}

.feature-list li {
    margin: .25rem 0;
    color: var(--eq-text);
}

.feature-badge {
    font-size: .75rem;
}

/* Tabs */
.nav-pills .nav-link {
    border-radius: 999px;
    padding: .5rem 1rem;
    font-weight: 600;
    border: 1px solid var(--eq-border);
    color: #111;
    background: #fff;
}

.nav-pills .nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, var(--eq-primary), var(--eq-primary-600));
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(192, 33, 33, .25);
}

/* Chips */
.kpi-chip {
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: 999px;
    background: var(--eq-chip-bg);
    border: 1px solid var(--eq-border);
}

/*============================================================================================*/
/*-------------------------------------------- TIMELINE --------------------------------------*/
/*============================================================================================*/

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: .6rem;
    top: .25rem;
    bottom: .25rem;
    width: 2px;
    background: var(--eq-border);
}

.tl-item {
    position: relative;
    margin: 0 0 1.25rem 0;
}

.tl-dot {
    position: absolute;
    left: -.05rem;
    top: .2rem;
    width: .85rem;
    height: .85rem;
    border-radius: 50%;
    background: var(--eq-primary);
    box-shadow: 0 0 0 4px rgba(192, 33, 33, .15);
}

.tl-card {
    border: 1px solid var(--eq-border);
    border-radius: .85rem;
    background: var(--eq-surface);
    box-shadow: var(--eq-shadow);
}

.tl-date {
    font-size: .8rem;
    color: var(--eq-muted);
}

/*============================================================================================*/
/*--------------------------------------------- PASTILLES ------------------------------------*/
/*============================================================================================*/

.pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--ring);
    background: rgba(165, 84, 27, 0.52);
    color: var(--text);
    font-weight: 600;
    font-size: .8rem;
}

/*============================================================================================*/
/*---------------------------------------------- IMAGES --------------------------------------*/
/*============================================================================================*/

.shots img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--card-bd);
    box-shadow: var(--shadow);
}

/*============================================================================================*/
/*---------------------------------------------- TARIFS --------------------------------------*/
/*============================================================================================*/

/* Cartes de la grille "pricing" (si utilisées ailleurs) */
.pricing .card {
    background: var(--panel);
    border: 1px solid var(--card-bd);
    border-radius: 14px;
    text-align: left;
}

.pricing .price {
    font-size: 1.6rem;
    color: var(--brand);
    font-weight: 700;
}

.pricing ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pricing ul li {
    position: relative;
    padding-left: 24px;
    margin: 8px 0;
    color: #fff;
}

.pricing ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
}

/*============================================================================================*/
/*------------------------------------------ pageTarif ---------------------------------------*/
/*============================================================================================*/

.pageTarif {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pageTarif h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.pageTarif section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pageTarif article {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 2rem 1.5rem;
    transition: transform .2s, box-shadow .2s;
}

.pageTarif article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Titres & texte */
.pageTarif h2 {
    color: var(--brand);
    font-weight: 700;
}

.pageTarif ul li {
    color: #000;
}

.pageTarif p {
    color: #333;
}

/* Bloc programme bêta */
.pageTarif .programmBeta {
    border-radius: 25px;
    border: 15px double var(--brand);
    background: #fff;
    padding: 2rem 1.5rem;
    width: 100%;
    height: 100%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pageTarif .programmBeta hr {
    color: var(--brand);

}

.pageTarif .programmBeta .listFoncBeta {
    /*border : 1px solid var(--brand);*/
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
    padding: 1rem;
}

.pageTarif .programmBeta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(165, 84, 27, 0.15);
}

/*============================================================================================*/
/*---------------------------------------------- A Propos ------------------------------------*/
/*============================================================================================*/

.pageBlock {
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pageBlock h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--brand);
    font-weight: 700;
}

.pageBlock h2 {
    color: var(--brand);
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.pageBlock .lead {
    color: #555;
    max-width: 850px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/*============================================================================================*/
/*---------------------------------------------- Cartes --------------------------------------*/
/*============================================================================================*/

.cardGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 2rem 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: left;
}

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

/*============================================================================================*/
/*-------------------------------------- Icônes + Titres -------------------------------------*/
/*============================================================================================*/

.card-header-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(192, 33, 33, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand);
    flex-shrink: 0;
}

.card h3 {
    margin: 0;
    color: var(--brand);
    font-weight: 700;
    font-size: 1.3rem;
}

/*============================================================================================*/
/*----------------------------------------- Texte ---------------------------------------------*/
/*============================================================================================*/

p, li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

ul {
    margin: 0;
    padding-left: 1rem;
}

.muted {
    color: #6c757d;
}

/*============================================================================================*/
/*----------------------------------------- Boutons CTA ---------------------------------------*/
/*============================================================================================*/

.cta {
    margin-top: 1.2rem;
    text-align: center;
}

.cta a {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: .6rem 1.2rem;
    border-radius: .5rem;
    text-decoration: none;
    transition: background .2s;
}

.cta a:hover {
    background: var(--brand-2);
}

/*============================================================================================*/
/*------------------------------------------- Vision ------------------------------------------*/
/*============================================================================================*/

.vision {
    background: linear-gradient(180deg, rgba(165, 84, 27, .05), transparent);
    border-left: 5px solid var(--brand);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2.5rem;
}

.vision h3 {
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision p {
    color: #333;
    margin-bottom: .8rem;
}

/*============================================================================================*/
/*-------------------------------------------- CTA -------------------------------------------*/
/*============================================================================================*/

.btn-cuivre {
    display: inline-block;
    color: var(--brand);
    background: transparent;
    border: 5px double var(--brand);
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .7rem 1.4rem;
    transition: all .25s ease-in-out;
}

.btn-cuivre:hover {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(165, 84, 27, .3);
    transform: translateY(-2px);
}

.cta {
    margin-top: 2rem;
}

.cta .btn-cuivre + .btn-cuivre {
    margin-left: .8rem;
}

/*============================================================================================*/
/*-------------------------------------------- SECTIONS SPÉCIALES -----------------------------*/
/*============================================================================================*/

.beta {
    border-left: 3px solid var(--brand);
    background: rgba(165, 84, 27, .06);
}

.footer-cta {
    padding: 46px 0 70px;
    text-align: center;
    border-top: 1px solid var(--card-bd);
}

/*============================================================================================*/
/*----------------------------------------------- NAVBAR -------------------------------------*/
/*============================================================================================*/

.navbar {
    background: var(--panel);
    border-bottom: 1px solid var(--card-bd);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
    color: #fff !important;
    font-weight: 600;
}

.navbar-brand:hover {
    color: var(--brand) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #f4ede4 !important;
    font-weight: 500;
    transition: color .2s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--brand) !important;
}

.navbar-toggler {
    border-color: var(--card-bd);
}

.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

/*============================================================================================*/
/*-------------------------------------- CONTACT -------------------------------------*/
/*============================================================================================*/

/* Petites touches UI */
.contact-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(165, 84, 27, .08);
    border: 1px solid rgba(165, 84, 27, .18);
    font-size: 1.1rem;
    color: var(--brand);
}

.contact-card h5 {
    color: var(--brand);
}

.hint {
    color: #6c757d;
    font-size: .95rem;
}

.divider {
    border-top: 1px dashed #e6e6e6;
    margin: .75rem 0;
}

.badge-soft {
    background: rgba(165, 84, 27, .08);
    border: 1px solid rgba(165, 84, 27, .18);
    color: var(--brand);
}

.important-note {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid var(--brand);
    border-radius: .5rem;
    padding: .75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.important-note strong {
    color: var(--brand);
}

.list-unstyled li + li {
    margin-top: .35rem;
}

.map-card iframe {
    border: 0;
    width: 100%;
    height: 360px;
    border-radius: .75rem;
}

/* Roadmap section */
.roadmap-section {
    background: linear-gradient(135deg, rgba(165, 84, 27, 0.52), rgba(165, 84, 27, 0.52));
    color: #fff;
    border-radius: 25px;
}

/* Glass Cards */
.roadmap-card {
    background: rgb(236, 175, 109);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.3s;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Titles */
.roadmap-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* List items */
.roadmap-card ul {
    list-style: none;
    padding-left: 0;
}

.roadmap-card ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 18px;
}

.roadmap-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(165, 84, 27, 0.52);
    font-size: 1.2rem;
}
.roadmap-update {
    font-size: 0.9rem;
    opacity: 0.75;
    color: #b55f0b;
}

/*============================================================================================*/
/*-------------------------------------------- TARIFS ESQUINEO -------------------------------*/
/*============================================================================================*/

.pricing-header {
    max-width: 820px;
    margin: 0 auto 2rem;
}

.pricing-header .muted {
    color: var(--muted);
}

/* Switch mensuel / annuel */
.pricing-switch {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .3rem .6rem;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--card-bd);
    color: var(--muted);
}

.pill-switch {
    display: inline-flex;
    border-radius: 999px;
    padding: 3px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid var(--card-bd);
}

.pill-switch button {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: .9rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.pill-switch button.is-active {
    background: #fff;
    color: var(--brand-2);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.switch-save {
    font-size: .8rem;
    color: var(--muted);
}

/* Mise en avant de la carte Pro */
.card.card-pro {
    border: 2px solid var(--brand);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    position: relative;
}

.card.card-pro::before {
    content: "Recommandé";
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: var(--brand);
    color: #fff;
    padding: .25rem .6rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

/* Champ anti-bot (honeypot) — caché pour l’utilisateur */
.hp-field {
    display: none;
}
