/* Couruu — Landing page */

.bg-mesh {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
    inset: 0;
    z-index: -1;
}

.blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(100px);
    border-radius: 50%;
}

.blob--white { width: 24rem; height: 24rem; top: 0; left: 0; }
.blob--purple { width: 24rem; height: 24rem; bottom: 5rem; right: 0; background: rgba(192, 132, 252, 0.4); }
.blob--pink { width: 16rem; height: 16rem; top: 25rem; left: 50%; background: rgba(244, 114, 182, 0.4); }

.bg-effects {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
}

/* Hero landing */
.landing-hero {
    min-height: 100vh;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 1.5rem;
    margin-top: 10rem;
}

@media (min-width: 1024px) {
    .landing-hero {
        flex-direction: row;
        padding: 5rem;
        margin-top: 0;
    }
}

.landing-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    z-index: 50;
}

@media (min-width: 1024px) {
    .landing-logo { left: 5rem; }
}

.landing-logo img { margin-top: -1.5rem; }

.landing-nav {
    position: fixed;
    top: 1.25rem;
    right: 2rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .landing-nav { right: 5rem; }
}

.landing-nav__login {
    color: var(--red-500);
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

@media (min-width: 1024px) {
    .landing-nav__login { font-size: 1rem; }
}

.landing-nav__login:hover { opacity: 0.8; }

.landing-nav__signup {
    background: var(--red-500);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 800;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 0.875rem;
    transition: transform 0.2s;
}

@media (min-width: 1024px) {
    .landing-nav__signup { font-size: 1rem; }
}

.landing-nav__signup:hover { transform: scale(1.05); }

.landing-intro {
    max-width: 36rem;
    color: #111827;
    text-align: center;
}

@media (min-width: 1024px) {
    .landing-intro { text-align: left; }
}

.landing-intro h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .landing-intro h1 { font-size: 4.5rem; }
}

.landing-intro h1 span {
    opacity: 0.8;
    color: #e11d48;
    font-weight: 300;
}

.landing-intro__desc {
    font-size: 1.25rem;
    color: #4b5563;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.landing-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.7;
}

@media (min-width: 1024px) {
    .landing-badges { justify-content: flex-start; }
}

.landing-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Upload card landing */
.upload-card {
    width: 100%;
    max-width: 440px;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    border: 1px solid rgba(255,255,255,0.5);
}

@media (min-width: 1024px) {
    .upload-card { padding: 2.5rem; }
}

.upload-zone { position: relative; cursor: pointer; margin-bottom: 2rem; }

.upload-zone input[type="file"] { display: none; }

.upload-zone__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
    border-radius: 1.5rem;
    border: 2px dashed #fecdd3;
    transition: all 0.3s;
}

.upload-zone:hover .upload-zone__inner { border-color: var(--rose); }

.upload-zone.is-drag-over .upload-zone__inner {
    background: #ffe4e6;
    border-color: var(--rose);
    transform: scale(1.02);
}

.upload-zone__icon {
    width: 5rem;
    height: 5rem;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 20px 25px -5px rgba(225, 29, 72, 0.2);
    transition: all 0.5s;
}

.upload-zone:hover .upload-zone__icon {
    transform: scale(1.1) rotate(90deg);
}

.upload-zone__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #881337;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
    text-align: center;
}

.upload-zone__hint {
    font-size: 0.875rem;
    color: rgba(225, 29, 72, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.btn-transfer-landing {
    width: 100%;
    background: var(--slate-900);
    color: #fff;
    padding: 1.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: default;
    font-family: inherit;
}

.landing-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* Contenu blanc */
.landing-content {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 4rem 4rem 0 0;
    margin-top: 2.5rem;
    padding-bottom: 5rem;
}

.section-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Stats */
.stats-section {
    padding: 3rem 0;
    background: #fff;
    border-block: 1px solid #f3f4f6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item__value { font-size: 1.875rem; font-weight: 700; color: #111827; margin: 0; }

.stat-item__label { font-size: 0.875rem; color: var(--slate-500); margin: 0.5rem 0 0; }

/* Témoignages hero */
.quotes-section {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--slate-50);
}

.quotes-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .quotes-grid { grid-template-columns: repeat(3, 1fr); }
}

.quote-card { display: flex; flex-direction: column; gap: 1rem; }

.quote-stars { display: flex; color: var(--rose); }

.quote-stars svg { fill: currentColor; }

.quote-text { font-size: 1.25rem; font-weight: 700; line-height: 1.375; }

.quote-author { color: var(--slate-400); font-weight: 600; }

/* Features */
.features-section {
    padding: 6rem 0;
    background: #fef2f2;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s;
}

.feature-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }

.feature-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f87171;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-card__icon { transform: scale(1.1); }

.feature-card__icon svg { width: 1.75rem; height: 1.75rem; color: #fff; }

.feature-card h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 0.75rem; }

.feature-card p { color: var(--slate-600); line-height: 1.625; margin: 0; }

/* How it works */
.steps-section { padding: 6rem 0; background: #fff; }

.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.steps-line {
    display: none;
}

@media (min-width: 768px) {
    .steps-line {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--slate-200);
        transform: translateY(-50%);
        z-index: 0;
    }
}

.step-card {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #f3f4f6;
    text-align: center;
}

.step-card__num {
    width: 4rem;
    height: 4rem;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.step-card h3 { font-size: 1.125rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }

.step-card p { color: var(--slate-600); margin: 0; }

/* Pricing landing */
.pricing-section { padding: 6rem 0; background: #fff; }

.pricing-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    padding: 2.5rem;
    border-radius: 3rem;
    border: 1px solid var(--slate-700);
    transition: border-color 0.3s;
}

.pricing-card:hover { border-color: var(--rose); }

.pricing-card--featured {
    background: var(--slate-900);
    box-shadow: 0 25px 50px -12px rgba(136, 19, 55, 0.5);
    transform: scale(1.05);
    border: none;
}

.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.pricing-card--featured h3 { color: #fff; }

.pricing-card__price {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.pricing-card--featured .pricing-card__price { color: #fff; }

.pricing-card__price span { font-size: 0.875rem; color: var(--slate-700); }

.pricing-card--featured .pricing-card__price span { color: #fff; }

.pricing-card__tagline { font-weight: 500; margin-bottom: 1rem; color: var(--slate-400); }

.pricing-card--featured .pricing-card__tagline { color: #fff; }

.pricing-features {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--slate-700);
}

.pricing-card--featured .pricing-features { color: #fff; }

.pricing-features li { display: flex; gap: 0.5rem; align-items: flex-start; }

.pricing-features .icon-check { color: var(--rose); flex-shrink: 0; }

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    border: 1px solid var(--slate-600);
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-pricing:hover { background: #fff; color: #000; }

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

.btn-pricing--primary:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); background: var(--rose-hover); color: #fff; }

/* Testimonials section */
.testimonials-section { padding: 6rem 0; background: #fff; }

.testimonial-card {
    background: var(--slate-50);
    padding: 2rem;
    border-radius: 1rem;
}

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: #f87171; }

.testimonial-stars svg { width: 1.25rem; height: 1.25rem; fill: #f87171; }

.testimonial-text { color: var(--slate-700); margin-bottom: 1.5rem; font-style: italic; }

.testimonial-name { font-weight: 600; color: #111827; }

.testimonial-role { font-size: 0.875rem; color: var(--slate-500); }

/* FAQ landing */
.faq-section {
    padding: 6rem 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: -0.025em;
}

.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: var(--slate-50);
    padding: 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item[open] { background: #fff1f2; }

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary svg { transition: transform 0.3s; }

.faq-item[open] summary svg { transform: rotate(180deg); }

.faq-item p {
    margin-top: 1rem;
    color: var(--slate-600);
    font-weight: 500;
    line-height: 1.625;
}
