/* ============================================
   WeLeaser — Styles site public
   Fintech 2026 · Qonto / Pennylane style
   Generous spacing, rounded, B&W, premium
   ============================================ */

/* ─── Site Header ─── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header--scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 40px;
}

.site-logo {
    font-size: 1.375rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.site-logo:hover { text-decoration: none; opacity: 0.8; }
.site-logo strong { font-weight: 800; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav__item {
    position: relative;
}

.site-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    text-decoration: none;
}

.site-nav a::after {
    display: none;
}

/* Nav dropdown */
.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.site-nav__item--dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown.is-open .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.site-nav__trigger {
    cursor: pointer;
}

.site-nav__chevron {
    transition: transform 0.2s ease;
    opacity: 0.5;
}

.site-nav__item--dropdown.is-open .site-nav__chevron,
.site-nav__item--dropdown:hover .site-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.site-nav__dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.site-nav__dropdown a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.site-nav__dropdown a::after {
    display: none;
}

.site-nav__dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 6px 8px;
}

.site-nav__dropdown-all {
    font-weight: 600 !important;
    color: rgba(255,255,255,0.7) !important;
}

/* Language dropdown */
.site-lang {
    position: relative;
}

.site-lang__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.site-lang__trigger:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.site-lang__flag {
    font-size: 0.9rem;
}

.site-lang__dropdown {
    min-width: 120px;
    left: 50%;
    right: auto;
    text-align: left;
}

.site-lang__item {
    display: block;
    padding: 10px 16px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    border-radius: 8px;
}

.site-lang__item--active {
    color: #fff;
    font-weight: 600;
}

.site-lang__item--disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__cta {
    font-size: 0.8125rem;
    padding: 10px 24px;
    background: #fff;
    color: #0A0A0A;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-header__cta:hover {
    background: rgba(255,255,255,0.88);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

.site-burger {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.site-burger span {
    display: block;
    position: absolute;
    left: 12px;
    width: 20px;
    height: 1.5px;
    background: #fff;
    transition: all 0.25s ease;
}

.site-burger span:nth-child(1) { top: 15px; }
.site-burger span:nth-child(2) { top: 21px; }
.site-burger span:nth-child(3) { top: 27px; }

.site-burger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.site-burger.active span:nth-child(2) { opacity: 0; }
.site-burger.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile nav panel */
.site-mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0A0A;
    z-index: calc(var(--z-overlay) + 5);
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
}

.site-mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-mobile-nav a:hover {
    text-decoration: none;
    color: #fff;
}

.site-mobile-nav .btn {
    margin-top: 32px;
    width: 100%;
    justify-content: center;
    border-radius: 50px;
}

/* ─── Hero ─── */

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: var(--bg-white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero__content {
    padding-top: 32px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero__subtitle {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
    letter-spacing: 0.005em;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 48px;
    margin-top: 32px;
}

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

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
}

.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero--dark .hero__stat-number {
    color: #fff;
}

.hero--dark .hero__stat-label {
    color: rgba(255, 255, 255, 0.4);
}

.hero__form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    padding: 36px;
    position: relative;
}

.hero__form-card .form-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero__form-card .form-subtitle {
    margin-bottom: 28px;
    font-size: 0.9375rem;
}

/* Geometric decorations */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    z-index: 0;
}

.hero::after {
    display: none;
}

/* ─── Hero Dark ─── */

.hero--dark {
    padding: 140px 0 120px;
    background: #0A0A0A;
    color: #fff;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero--dark::before {
    display: none;
}

.hero--dark::after {
    display: none;
}

.hero--dark .container {
    position: relative;
    z-index: 2;
}

.hero--dark .hero__badge {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
}

.hero--dark .hero__title {
    color: #fff;
    font-size: 4.5rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero--dark .hero__subtitle {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    font-size: 1.25rem;
    max-width: 520px;
}

.hero--dark .hero__form-card {
    background: rgba(255,255,255,0.97);
    border: none;
    border-radius: 20px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.35);
    padding: 40px;
}

.hero--dark .hero__form-card .form-title {
    color: var(--text-primary);
}

.hero--dark .hero__form-card .form-subtitle {
    color: var(--text-secondary);
}

/* Backward compat: .hero--photo */

.hero--photo {
    padding: 140px 0 120px;
    background: #0A0A0A;
    color: #fff;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero--photo::before {
    display: none;
}

.hero--photo::after { display: none; }
.hero--photo .container { position: relative; z-index: 2; }
.hero--photo .hero__badge { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
.hero--photo .hero__title { color: #fff; font-size: 4.5rem; line-height: 1.02; letter-spacing: -0.04em; }
.hero--photo .hero__subtitle { color: rgba(255,255,255,0.5); font-weight: 300; font-size: 1.25rem; }
.hero--photo .hero__form-card { background: rgba(255,255,255,0.97); border: none; border-radius: 20px; box-shadow: 0 32px 64px rgba(0,0,0,0.35); padding: 40px; backdrop-filter: blur(20px); }
.hero--photo .hero__form-card .form-title { color: var(--text-primary); }
.hero--photo .hero__form-card .form-subtitle { color: var(--text-secondary); }

/* ─── Bank Logos Marquee ─── */

.bank-logos {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    width: 100%;
}

.bank-logos__label {
    display: block;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    padding: 24px 0 18px;
}

.bank-logos__marquee {
    position: relative;
    overflow: hidden;
    padding-bottom: 28px;
}

.bank-logos__marquee::before,
.bank-logos__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 3;
    pointer-events: none;
}

.bank-logos__marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.bank-logos__marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.bank-logos__track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.bank-logos__track:hover {
    animation-play-state: paused;
}

.bank-logos__track img {
    height: 46px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bank-logos__track img:hover {
    opacity: 0.85;
    filter: grayscale(0%);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Social Proof Bar ─── */

.proof-bar {
    background: #0A0A0A;
    color: var(--text-inverse);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.proof-bar::before {
    display: none;
}

.proof-bar .container {
    display: flex;
    justify-content: center;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.proof-bar__item {
    text-align: center;
}

.proof-bar__number {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    color: #fff;
}

.proof-bar__label {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.proof-bar__divider {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    align-self: center;
}

/* ─── Proof Logos ─── */

.proof-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
    opacity: 0.35;
}

.proof-logos img {
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ─── Testimonials ─── */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 36px;
    position: relative;
}

.testimonial-card__quote {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.testimonial-card__role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ─── Sections ─── */

.section {
    padding: 140px 0;
    position: relative;
}

.section--alt {
    background: var(--bg-light);
}

.section--dark {
    background: #0F0F0F;
    color: var(--text-inverse);
    position: relative;
}

.section--dark::before {
    display: none;
}

.section--dark .section__title,
.section--dark .section__subtitle {
    color: var(--text-inverse);
}

.section--dark .section__subtitle {
    color: rgba(255, 255, 255, 0.45);
}

.section__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

.section--dark .section__label {
    color: rgba(255, 255, 255, 0.3);
}

.section__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.1;
}

.section__subtitle {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 64px;
    font-weight: 300;
}

/* ─── Process Animation Section ─── */

.process-section {
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-top: 24px;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    padding: 0 32px;
}

.process-step__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.process-step__connector {
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.process-step:last-child .process-step__connector {
    display: none;
}

.process-step__number {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 10px;
}

.process-step__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.process-step__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
}

.process-step .process-step__icon svg {
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.process-step.visible .process-step__icon svg {
    transform: scale(1);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.12); }
    70% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.process-step.visible .process-step__icon {
    animation: pulse-ring 2.5s ease-out infinite;
}

.process-step:nth-child(2).visible .process-step__icon {
    animation-delay: 0.4s;
}

.process-step:nth-child(3).visible .process-step__icon {
    animation-delay: 0.8s;
}

/* ─── Feature Grid ─── */

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

.feature-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 36px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--bg-white);
    transition: all 0.25s ease;
    position: relative;
}

.feature-card::before {
    display: none;
}

.feature-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.section--dark .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.section--dark .feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 24px;
}

.section--dark .feature-card__icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.section--dark .feature-card__title {
    color: var(--text-inverse);
}

.feature-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

.section--dark .feature-card__desc {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ─── Link Grid ─── */

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.link-card:hover {
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: rgba(0,0,0,0.12);
}

.link-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.link-card__text {
    flex: 1;
    min-width: 0;
}

.link-card__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.link-card__arrow {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 400;
}

/* ─── CTA Banner ─── */

.cta-banner {
    background: #0A0A0A;
    color: var(--text-inverse);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    display: none;
}

.cta-banner::after {
    display: none;
}

.cta-banner__title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    color: var(--text-inverse);
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.cta-banner__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.7;
}

.cta-banner .btn--white {
    background: var(--bg-white);
    color: var(--text-primary);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
}

.cta-banner .btn--white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

/* CTA compat variants */
.cta-banner--photo {
    padding: 140px 0;
    background: #0A0A0A;
}

.cta-banner--photo .cta-banner__title {
    font-size: 2.75rem;
    font-weight: 300;
}

.cta-banner--photo .cta-banner__title strong {
    font-weight: 800;
}

.cta-banner--photo .cta-banner__text {
    font-weight: 300;
    font-size: 1.125rem;
}

.cta-banner--photo::before,
.cta-banner--photo::after {
    display: none;
}

.cta-banner--dark {
    background: #0A0A0A;
    padding: 140px 0;
    position: relative;
}

.cta-banner--dark::before,
.cta-banner--dark::after {
    display: none;
}

/* ─── About Section ─── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-visual__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-visual::before {
    display: none;
}

.about-visual--photo {
    background-size: cover;
    background-position: center;
    border: none;
}

.about-visual--photo .about-visual__inner { display: none; }
.about-visual--photo::before { display: none; }

.about-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 1rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-value {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.about-value__title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-value__desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

/* ─── Contact Page ─── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info { padding-top: 16px; }

.contact-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-info__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
}

/* ─── Legal Page ─── */

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-content h1 { font-size: 2.25rem; margin-bottom: 24px; letter-spacing: -0.02em; }
.legal-content h2 { font-size: 1.25rem; margin-top: 48px; margin-bottom: 16px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.0625rem; margin-top: 32px; margin-bottom: 8px; color: var(--text-primary); }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 32px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--text-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ─── Page Header ─── */

.page-hero {
    padding: 80px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before { display: none; }

.page-hero__title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* ─── SEO Pages ─── */

.seo-hero {
    background: #0A0A0A;
    color: var(--text-inverse);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-hero::before { display: none; }

.seo-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.seo-hero__subtitle {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-weight: 300;
}

.seo-hero .btn { background: var(--bg-white); color: var(--text-primary); font-weight: 700; border-radius: 50px; padding: 14px 32px; }
.seo-hero .btn:hover { background: var(--bg-light); }

.seo-section { padding: 100px 0; }
.seo-section--alt { background: var(--bg-light); }

.seo-section__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
}

.seo-intro, .seo-details { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.seo-intro h2, .seo-details h2 { color: var(--text-primary); margin-bottom: 16px; font-size: 1.5rem; }
.seo-intro p, .seo-details p { margin-bottom: 24px; }
.seo-intro ul, .seo-details ul, .seo-details ol { list-style: disc; padding-left: 32px; margin-bottom: 24px; }
.seo-details ol { list-style: decimal; }
.seo-intro li, .seo-details li { margin-bottom: 8px; }
.seo-details h3 { color: var(--text-primary); margin-top: 32px; margin-bottom: 16px; }

.seo-advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.seo-advantage-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.25s ease;
}

.seo-advantage-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.seo-advantage-card__icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 14px; }
.seo-advantage-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.seo-advantage-card__desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

.seo-faq { display: flex; flex-direction: column; gap: 12px; }
.seo-faq__item { border: 1px solid var(--border-color); background: var(--bg-white); border-radius: 12px; overflow: hidden; }
.seo-faq__question { padding: 22px 28px; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.seo-faq__question::-webkit-details-marker { display: none; }
.seo-faq__question::after { content: '+'; font-size: 1.25rem; font-weight: 600; color: var(--text-muted); flex-shrink: 0; margin-left: 16px; }
.seo-faq__item[open] .seo-faq__question::after { content: '\2212'; }
.seo-faq__answer { padding: 0 28px 22px; color: var(--text-secondary); line-height: 1.75; font-size: 0.9375rem; font-weight: 300; }

.seo-cta-banner { background: #0A0A0A; color: var(--text-inverse); text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.seo-cta-banner::before { display: none; }
.seo-cta-banner h2 { color: var(--text-inverse); font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; position: relative; z-index: 1; }
.seo-cta-banner p { color: rgba(255, 255, 255, 0.45); margin-bottom: 36px; font-size: 1.0625rem; position: relative; z-index: 1; font-weight: 300; }
.seo-cta-banner .btn { background: var(--bg-white); color: var(--text-primary); font-weight: 700; position: relative; z-index: 1; border-radius: 50px; padding: 14px 32px; }
.seo-cta-banner .btn:hover { background: var(--bg-light); }

/* ─── Site Footer ─── */

.site-footer {
    background: #0A0A0A;
    color: var(--text-inverse);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before { display: none; }

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__brand p { color: rgba(255, 255, 255, 0.4); font-size: 0.9375rem; line-height: 1.75; margin-top: 16px; max-width: 320px; font-weight: 300; }

.site-footer__col-title { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.3); margin-bottom: 24px; }

.site-footer__col a { display: block; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.5); text-decoration: none; padding: 6px 0; transition: color 0.2s ease; }
.site-footer__col a:hover { color: var(--text-inverse); text-decoration: none; }

.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
.site-footer__bottom p { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.25); }
.site-footer__bottom a { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.25); text-decoration: none; }
.site-footer__bottom a:hover { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.site-footer__legal { display: flex; gap: 24px; }

/* ─── Photo Backgrounds ─── */

.photo-bg { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }
.photo-bg--parallax { background-attachment: fixed; }
@supports (-webkit-touch-callout: none) { .photo-bg--parallax { background-attachment: scroll; } }
.photo-bg__overlay { position: absolute; inset: 0; z-index: 1; }
.photo-bg__overlay--dark { background: rgba(0,0,0,0.75); }
.photo-bg__overlay--darker { background: rgba(0,0,0,0.85); }
.photo-bg__overlay--gradient { background: rgba(0,0,0,0.8); }
.photo-bg > *:not(.photo-bg__overlay) { position: relative; z-index: 2; }

/* ─── Typography ─── */

.text-thin { font-weight: 300; }
.text-light { font-weight: 300; letter-spacing: 0.01em; }
.hero__title .text-thin { font-weight: 300; display: block; }

/* ─── Image Cards ─── */

.img-card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.img-card:hover {
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.img-card__photo {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.img-card:hover .img-card__photo {
    transform: scale(1.05);
}

.img-card__body {
    padding: 24px;
}

.img-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.img-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

.img-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── Section Header (Qonto pattern) ─── */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 64px;
}

.section-header__content {
    max-width: 600px;
}

.section-header__title {
    text-align: left;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header__title .text-thin {
    font-weight: 300;
}

.section--dark .section-header__title {
    color: #fff;
}

.section-header__subtitle {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 300;
}

.section--dark .section-header__subtitle {
    color: rgba(255, 255, 255, 0.45);
}

/* ─── Button Outline (Qonto style) ─── */

.btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid #1A1A1A;
    color: #1A1A1A;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn--outline:hover {
    background: #1A1A1A;
    color: #fff;
    text-decoration: none;
}

.btn--outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn--outline-light:hover {
    background: #fff;
    color: #0F0F0F;
    border-color: #fff;
    text-decoration: none;
}

/* ─── Visual Card (Qonto style) ─── */

.visual-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.visual-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 36px 36px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.visual-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.visual-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.visual-card__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.visual-card__img {
    margin-top: 32px;
    border-radius: 12px 12px 0 0;
    width: 100%;
    display: block;
}

/* ─── Bento Grid (Qonto dark section) ─── */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.bento-card {
    background: #141414;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.06);
}

.bento-card--wide {
    grid-column: span 2;
}

.bento-card--tall {
    grid-row: span 2;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
}

.bento-card__img {
    border-radius: 16px;
    width: 100%;
    margin-top: 24px;
    display: block;
}

/* ─── Bank Logos Dark Variant ─── */

.bank-logos--dark {
    background: #0A0A0A;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bank-logos--dark .bank-logos__label {
    color: rgba(255,255,255,0.3);
}

.bank-logos--dark .bank-logos__marquee::before {
    background: linear-gradient(90deg, #0A0A0A 0%, transparent 100%);
}

.bank-logos--dark .bank-logos__marquee::after {
    background: linear-gradient(270deg, #0A0A0A 0%, transparent 100%);
}

.bank-logos--dark .bank-logos__track img {
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.5);
}

.bank-logos--dark .bank-logos__track img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* ─── Reveal ─── */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */

@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 56px; }
    .hero__title { font-size: 2.75rem; }
    .hero--photo .hero__title, .hero--dark .hero__title { font-size: 3rem; }
    .hero--photo, .hero--dark { padding: 120px 0 100px; min-height: auto; }
    .section { padding: 100px 0; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .feature-grid--3 { grid-template-columns: 1fr 1fr; }
    .img-card-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .visual-card-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--wide { grid-column: span 2; }
    .section-header { gap: 24px; }
    .section-header__title { font-size: 2.25rem; }
}

@media (max-width: 768px) {
    .site-nav { display: none; }
    .site-header__cta { display: none; }
    .site-burger { display: block; }
    .site-mobile-nav { display: block; }

    .hero { padding: 80px 0 60px; }
    .hero__title { font-size: 2.25rem; }
    .hero__subtitle { font-size: 1rem; }
    .hero--photo, .hero--dark { padding: 100px 0 80px; min-height: auto; }
    .hero--photo .hero__title, .hero--dark .hero__title { font-size: 2.5rem; }
    .hero__stat-number { font-size: 1.5rem; }
    .hero__stats { gap: 24px 32px; margin-top: 24px; }

    .section { padding: 80px 0; }
    .section__title { font-size: 2rem; }
    .section__subtitle { margin-bottom: 48px; }

    .proof-bar { padding: 56px 0; }
    .proof-bar .container { flex-direction: column; gap: 32px; align-items: center; }
    .proof-bar__number { font-size: 2.5rem; }
    .proof-bar__divider { width: 48px; height: 1px; }

    .feature-grid, .feature-grid--3 { grid-template-columns: 1fr; }
    .link-grid { grid-template-columns: 1fr; }
    .img-card-grid { grid-template-columns: 1fr; }
    .img-card__photo { height: 180px; }
    .visual-card-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--wide { grid-column: span 1; }
    .section-header { flex-direction: column; gap: 20px; }
    .section-header__title { font-size: 2rem; }

    .photo-bg--parallax { background-attachment: scroll; }

    .page-hero__title { font-size: 2rem; }
    .seo-hero { padding: 72px 0; }
    .seo-hero__title { font-size: 2.25rem; }
    .seo-section { padding: 72px 0; }
    .seo-advantages-grid { grid-template-columns: 1fr; }

    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
    .site-footer__legal { flex-direction: column; gap: 8px; }
    .about-values { grid-template-columns: 1fr; }

    .cta-banner { padding: 80px 0; }
    .cta-banner--photo, .cta-banner--dark { padding: 80px 0; }
    .cta-banner__title { font-size: 2rem; }

    .testimonial-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; gap: 48px; }
    .process-step__connector { display: none; }
    .proof-logos { flex-wrap: wrap; gap: 32px; }

    .bank-logos__marquee::before,
    .bank-logos__marquee::after { width: 80px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.75rem; }
    .hero--photo .hero__title, .hero--dark .hero__title { font-size: 2rem; }
    .section__title { font-size: 1.625rem; }
    .cta-banner__title { font-size: 1.625rem; }
    .page-hero__title { font-size: 1.75rem; }
    .seo-hero__title { font-size: 1.75rem; }
    .section { padding: 64px 0; }
}

/* ─── SEO Hero Enhanced (avec photo cercle) ─── */

.seo-hero--enhanced {
    background: #0A0A0A;
    color: var(--text-inverse);
    padding: 160px 0 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.seo-hero--enhanced .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-hero--enhanced .seo-hero__content {
    max-width: 560px;
}

.seo-hero--enhanced .seo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.seo-hero--enhanced .seo-hero__title {
    text-align: left;
    font-size: 3.5rem;
    margin: 0 0 24px;
}

.seo-hero--enhanced .seo-hero__subtitle {
    text-align: left;
    margin: 0 0 40px;
    max-width: 480px;
}

.seo-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-hero__circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
    position: relative;
}

.seo-hero__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-hero__circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* ─── Visual Card Icon ─── */

.visual-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 20px;
}

/* ─── WeLeaser Showcase Section ─── */

.weleaser-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.weleaser-showcase__visual {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.weleaser-showcase__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weleaser-showcase__content .section__label {
    text-align: left;
    margin-bottom: 16px;
}

.weleaser-showcase__stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.weleaser-showcase__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.weleaser-showcase__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.weleaser-showcase__banks {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.weleaser-showcase__banks-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.weleaser-showcase__banks-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.weleaser-showcase__banks-logos img {
    height: 32px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.weleaser-showcase__banks-logos img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* ─── Materiel Grid ─── */

.materiel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.materiel-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.materiel-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.materiel-card__image {
    height: 220px;
    overflow: hidden;
}

.materiel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.materiel-card:hover .materiel-card__image img {
    transform: scale(1.05);
}

.materiel-card__body {
    padding: 28px;
}

.materiel-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.materiel-card__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── CTA Form Section ─── */

.cta-form-section {
    padding: 120px 0;
    position: relative;
}

.cta-form-section--dark {
    background: #0A0A0A;
    color: #fff;
}

.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-form__content {
    padding-top: 40px;
}

.cta-form__title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-form__title .text-thin {
    font-weight: 300;
    display: block;
}

.cta-form__text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 440px;
}

.cta-form__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.cta-form__feature svg {
    color: #4ADE80;
    flex-shrink: 0;
}

.cta-form__card {
    background: rgba(255,255,255,0.97);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.35);
}

.cta-form__card .form-title {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-form__card .form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ─── SEO Content Styles ─── */

.seo-intro h2,
.seo-details h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.seo-intro h3,
.seo-details h3 {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.seo-intro h4,
.seo-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.seo-intro p,
.seo-details p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.seo-intro a,
.seo-details a {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease;
}

.seo-intro a:hover,
.seo-details a:hover {
    color: var(--color-primary);
    text-decoration-thickness: 2px;
}

/* ─── Responsive Additions ─── */

@media (max-width: 1024px) {
    .seo-hero--enhanced .container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    
    .seo-hero--enhanced .seo-hero__content {
        max-width: 100%;
    }
    
    .seo-hero--enhanced .seo-hero__title,
    .seo-hero--enhanced .seo-hero__subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .seo-hero__circle {
        width: 320px;
        height: 320px;
    }
    
    .weleaser-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .weleaser-showcase__content .section__label,
    .weleaser-showcase__content h2,
    .weleaser-showcase__content p {
        text-align: center;
    }
    
    .weleaser-showcase__stats {
        justify-content: center;
    }
    
    .weleaser-showcase__banks {
        text-align: center;
    }
    
    .weleaser-showcase__banks-logos {
        justify-content: center;
    }
    
    .materiel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cta-form__content {
        text-align: center;
        padding-top: 0;
    }
    
    .cta-form__text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-form__features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .seo-hero--enhanced {
        padding: 120px 0 80px;
    }
    
    .seo-hero--enhanced .seo-hero__title {
        font-size: 2.5rem;
    }
    
    .seo-hero__circle {
        width: 260px;
        height: 260px;
    }
    
    .materiel-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form-section {
        padding: 80px 0;
    }
    
    .cta-form__title {
        font-size: 2rem;
    }
    
    .weleaser-showcase__stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .weleaser-showcase__stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .seo-hero--enhanced .seo-hero__title {
        font-size: 2rem;
    }
    
    .seo-hero__circle {
        width: 220px;
        height: 220px;
    }
    
    .cta-form__title {
        font-size: 1.75rem;
    }
}
