/* ============================================
   2MFBY — Components — Dark Luxury Edition
   Buttons · Cards · Navigation · Forms · Footer
   ============================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-cta-size);
    font-weight: var(--text-cta-weight);
    letter-spacing: var(--text-cta-ls);
    line-height: 1;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-brand-500);
    outline-offset: 2px;
}

/* Primary — Terracotta Luxury */
.btn--primary {
    background: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-brand-600) 100%);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(200, 137, 110, .25);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-brand-400) 0%, var(--color-brand-500) 100%);
    box-shadow: var(--shadow-brand);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: scale(0.98) translateY(0);
}

.btn--primary:disabled,
.btn--primary[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

/* Secondary — Glass with border */
.btn--secondary {
    background-color: var(--color-surface-glass);
    color: var(--color-brand-400);
    padding: 13px 27px;
    border: 1.5px solid rgba(200, 137, 110, .35);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.btn--secondary:hover {
    background-color: rgba(200, 137, 110, .08);
    border-color: var(--color-brand-500);
    color: var(--color-brand-500);
}

/* Secondary Light — For dark backgrounds */
.btn--secondary-light {
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    padding: 13px 27px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.btn--secondary-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

/* Ghost — Text only */
.btn--ghost {
    background: transparent;
    color: var(--color-neutral-400);
    padding: var(--space-2) var(--space-1);
}

.btn--ghost:hover {
    color: var(--color-neutral-50);
    text-decoration: underline;
}

/* Arrow icon in CTA */
.btn .arrow {
    transition: transform var(--duration-fast) var(--ease-out);
    font-size: 1.1em;
}

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


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-5) 0;
    transition: all var(--duration-normal) var(--ease-in-out);
}

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

/* État 1 — Hero transparent */
.navbar--transparent {
    background: linear-gradient(to bottom, rgba(13, 13, 13, .8) 0%, transparent 100%);
}

.navbar--transparent .navbar__logo,
.navbar--transparent .navbar__link {
    color: rgba(255, 255, 255, .9);
}

/* État 2 — Scrolled — glass dark */
.navbar--scrolled {
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06), var(--shadow-md);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.navbar--scrolled .navbar__logo,
.navbar--scrolled .navbar__link {
    color: var(--color-neutral-100);
}

/* Logo */
.navbar__logo {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: color var(--duration-fast) var(--ease-out);
}

.navbar__logo-mark {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-brand-600) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(200, 137, 110, .4);
}

/* Links */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.navbar__link {
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color var(--duration-fast) var(--ease-out);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-brand-500);
    transition: width var(--duration-fast) var(--ease-out);
}

.navbar__link:hover::after,
.navbar__link--active::after {
    width: 100%;
}

.navbar__link:hover {
    color: var(--color-brand-400) !important;
}

.navbar__cta {
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
    color: var(--color-neutral-100);
}

.navbar__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-out);
}

.navbar__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.navbar__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile nav overlay */
.navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 1002;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.navbar__overlay.is-visible {
    opacity: 1;
    pointer-events: all;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 25% 50%, #2a1810 0%, #141414 60%, #0d0d0d 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    /* Toujours visible — pas besoin de is-loaded */
    transition: transform 8s ease-out;
}

.hero.is-loaded .hero__bg img {
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* Global darken for all page and product heroes to avoid editing every HTML file */
.page-hero__bg::after,
.product-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.page-hero__bg img,
.product-hero__bg img {
    opacity: 0.25 !important;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding-top: var(--space-20);
    padding-bottom: var(--space-12);
}

.hero__label {
    margin-bottom: var(--space-5);
    color: var(--color-brand-400);
    opacity: 0.9;
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-display-size);
    font-weight: var(--text-display-weight);
    line-height: var(--text-display-lh);
    color: #FFFFFF;
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 40px rgba(0, 0, 0, .6);
}

.hero__subtitle {
    font-size: var(--text-body-lg-size);
    line-height: var(--text-body-lg-lh);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: var(--space-8);
    max-width: 560px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

.hero__proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-body-sm-size);
    color: rgba(255, 255, 255, 0.5);
}

.hero__proof-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-brand-500);
    flex-shrink: 0;
}

.hero__proof-separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADERS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-header {
    max-width: 640px;
    margin-bottom: var(--space-10);
}

.section-header--center {
    margin-inline: auto;
    text-align: center;
}

.section-header .label {
    margin-bottom: var(--space-3);
    display: block;
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    color: var(--color-neutral-400);
    font-size: var(--text-body-lg-size);
    line-height: var(--text-body-lg-lh);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STAT CARDS — Social Proof Strip
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    padding-block: var(--space-10);
    border-top: 1px solid var(--color-neutral-800);
    border-bottom: 1px solid var(--color-neutral-800);
}

.stat-card {
    text-align: center;
    padding: var(--space-4);
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: var(--text-display-size);
    font-weight: var(--text-display-weight);
    line-height: var(--text-display-lh);
    color: var(--color-brand-500);
    /* Subtle gold gradient on number */
    background: linear-gradient(135deg, var(--color-brand-400) 0%, var(--color-brand-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card__label {
    font-size: var(--text-body-sm-size);
    color: var(--color-neutral-500);
    margin-top: var(--space-2);
    letter-spacing: 0.04em;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UNIVERSE CARDS — Malte / Bretagne
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.universe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

.universe-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
    border: 1px solid rgba(255, 255, 255, .06);
}

.universe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(200, 137, 110, .15);
}

.universe-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.universe-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-expo);
    filter: brightness(0.85) saturate(0.9);
}

.universe-card:hover .universe-card__image img {
    transform: scale(1.04);
    filter: brightness(0.75) saturate(1);
}

.universe-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.70) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.universe-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    z-index: 2;
    color: #FFFFFF;
}

.universe-card__content .label {
    color: var(--color-brand-400);
    margin-bottom: var(--space-2);
}

.universe-card__content h3 {
    color: #FFFFFF;
    margin-bottom: var(--space-2);
}

.universe-card__content p {
    font-size: var(--text-body-sm-size);
    color: rgba(255, 255, 255, 0.65);
}

.universe-card__action {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    font-size: var(--text-body-sm-size);
    font-weight: 600;
    color: var(--color-brand-400);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--duration-normal) var(--ease-out),
        transform var(--duration-normal) var(--ease-out);
}

.universe-card:hover .universe-card__action {
    opacity: 1;
    transform: translateY(0);
}

.universe-card__action .arrow {
    transition: transform var(--duration-fast) var(--ease-out);
}

.universe-card:hover .universe-card__action .arrow {
    transform: translateX(4px);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VALUE PROPOSITIONS — 3 Pillars
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.pillar {
    text-align: center;
    padding: var(--space-8) var(--space-5);
    background: var(--color-surface-glass);
    border: 1px solid var(--color-surface-glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(4px);
    transition: background var(--duration-normal) var(--ease-out),
        border-color var(--duration-normal) var(--ease-out),
        transform var(--duration-normal) var(--ease-out);
}

.pillar:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(200, 137, 110, .2);
    transform: translateY(-3px);
}

.pillar__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    background: var(--color-brand-100);
    border: 1px solid rgba(200, 137, 110, .2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-500);
}

.pillar__icon svg {
    width: 26px;
    height: 26px;
}

.pillar h3 {
    margin-bottom: var(--space-3);
    color: var(--color-neutral-50);
}

.pillar p {
    color: var(--color-neutral-400);
    font-size: var(--text-body-size);
    line-height: 1.65;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIAL CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.testimonial-card {
    background: var(--color-surface-0);
    border: 1px solid var(--color-neutral-800);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: transform var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out),
        border-color var(--duration-fast) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 137, 110, .2);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.testimonial-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C8896E, #A96D54);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.testimonial-card__meta {
    flex: 1;
}

.testimonial-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: rgba(100, 220, 150, .7);
    font-weight: 600;
    background: rgba(45, 154, 95, .1);
    border: 1px solid rgba(45, 154, 95, .2);
    border-radius: 20px;
    padding: 2px 8px;
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
    width: 15px;
    height: 15px;
    fill: var(--color-gold);
}

.testimonial-card__quote {
    font-size: var(--text-body-size);
    line-height: var(--text-body-lh);
    color: var(--color-neutral-200);
    margin-bottom: var(--space-5);
    font-style: italic;
    position: relative;
    padding-top: var(--space-6);
}

.testimonial-card__quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: -4px;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: rgba(200, 137, 110, .25);
    font-style: normal;
}

.testimonial-card__author {
    font-size: var(--text-body-sm-size);
    color: var(--color-neutral-500);
}

.testimonial-card__author strong {
    color: var(--color-neutral-200);
    font-weight: 600;
    font-style: normal;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS — 3 Steps
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    counter-reset: step;
}

.process__step {
    counter-increment: step;
    text-align: center;
    padding: var(--space-6);
    background: var(--color-surface-glass);
    border: 1px solid var(--color-surface-glass-border);
    border-radius: var(--radius-xl);
    position: relative;
}

/* Connector line between steps */
.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    right: -32px;
    width: 64px;
    height: 1px;
    background: linear-gradient(to right, var(--color-brand-500), transparent);
    opacity: 0.4;
}

.process__step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-brand-400), var(--color-brand-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
    line-height: 1;
}

.process__step h4 {
    margin-bottom: var(--space-3);
    color: var(--color-neutral-50);
}

.process__step p {
    color: var(--color-neutral-400);
    font-size: var(--text-body-sm-size);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-section {
    text-align: center;
    padding-block: var(--space-16);
}

.cta-section--accent {
    border-top: 1px solid var(--color-neutral-800);
    border-bottom: 1px solid var(--color-neutral-800);
    padding-block: var(--space-12);
}

.cta-section h2 {
    margin-bottom: var(--space-4);
}

.cta-section p {
    font-size: var(--text-body-lg-size);
    margin-bottom: var(--space-8);
    max-width: 540px;
    margin-inline: auto;
    color: var(--color-neutral-400);
}

.section--dark .cta-section p {
    color: rgba(255, 255, 255, 0.55);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REASSURANCE BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.reassurance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-5) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reassurance__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-body-sm-size);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.reassurance__item svg {
    width: 16px;
    height: 16px;
    color: var(--color-brand-500);
    flex-shrink: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-body-sm-size);
    font-weight: 500;
    color: var(--color-neutral-200);
    margin-bottom: var(--space-2);
}

.form-group label .required {
    color: var(--color-brand-500);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-body-size);
    color: var(--color-neutral-100);
    background: var(--color-surface-1);
    border: 1.5px solid var(--color-neutral-700);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-neutral-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brand-500);
    box-shadow: 0 0 0 3px rgba(200, 137, 110, 0.15);
}

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

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

/* Error state */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
    border-color: var(--color-error);
}

.form-group__error {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-2);
    font-size: var(--text-body-sm-size);
    color: var(--color-error);
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.btn-submit .spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
    background: var(--color-neutral-950);
    color: rgba(255, 255, 255, 0.45);
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-10);
    padding-block: var(--space-12);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: var(--space-4);
    letter-spacing: 0.04em;
}

.footer__logo .navbar__logo-mark {
    background: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-brand-600) 100%);
}

.footer__tagline {
    font-size: var(--text-body-sm-size);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.35);
}

.footer__column h4 {
    color: rgba(255, 255, 255, .8);
    font-size: var(--text-body-sm-size);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-4);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__link {
    font-size: var(--text-body-sm-size);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
    color: var(--color-brand-400);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: var(--text-body-sm-size);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.25);
}

.footer__legal {
    display: flex;
    gap: var(--space-5);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer__link--social {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer__link--social svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--duration-fast) var(--ease-out);
}

.footer__link--social:hover svg {
    opacity: 0.9;
}

/* Sticky CTA — mobile uniquement */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.98) 0%,
    rgba(26,26,26,0) 100%
  );
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #B8976A;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: block;
  }
}

/* ══════════════ PARTENAIRES SECTION ══════════════ */
.partenaires-section {
  padding: 48px 24px;
  background: #1A1A1A;
  text-align: center;
  border-top: 1px solid #2A2420;
  border-bottom: 1px solid #2A2420;
}

.partenaires-label {
  font-size: 11px;
  font-family: Inter, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 32px;
}

.partenaires-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partenaire-item {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease;
}

.partenaire-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partenaire-nom {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F0EB;
  letter-spacing: 0.05em;
}
