/* Naturopharma v207 - Page devenir revendeur */

.np-reseller-page {
    --np-green: #5ca65e;
    --np-green-dark: #2e7a45;
    --np-ink: #171b18;
    --np-muted: #5d675f;
    --np-soft: #f7f4ed;
    --np-border: rgba(27, 42, 32, .10);
    --np-card: #ffffff;
    background: #fff;
    color: var(--np-ink);
    font-family: Inter, Manrope, Arial, Helvetica, sans-serif;
}

.np-reseller-page .np-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.np-reseller-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(92, 166, 94, .16), transparent 34%),
        linear-gradient(135deg, #fbfaf6 0%, #f5f0e8 100%);
    border-bottom: 1px solid var(--np-border);
}

.np-reseller-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(92, 166, 94, .10);
    pointer-events: none;
}

.np-reseller-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 58px;
    align-items: center;
    padding: clamp(54px, 7vw, 96px) 0;
}

.np-reseller-eyebrow,
.np-reseller-kicker {
    margin: 0 0 14px;
    color: var(--np-green-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.np-reseller-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 850;
    color: var(--np-ink);
}

.np-reseller-lead {
    margin: 22px 0 0;
    max-width: 710px;
    color: var(--np-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.72;
}

.np-reseller-actions,
.np-reseller-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.np-reseller-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.np-reseller-btn:hover {
    transform: translateY(-1px);
}

.np-reseller-btn-primary {
    color: #fff;
    background: var(--np-green);
    box-shadow: 0 14px 34px rgba(92, 166, 94, .26);
}

.np-reseller-btn-primary:hover {
    background: var(--np-green-dark);
    color: #fff;
}

.np-reseller-btn-secondary {
    color: var(--np-green-dark);
    background: #fff;
    border: 1px solid rgba(92, 166, 94, .30);
}

.np-reseller-btn-secondary:hover {
    border-color: rgba(92, 166, 94, .60);
    color: var(--np-green-dark);
}

.np-reseller-hero-card {
    position: relative;
    border: 1px solid rgba(92, 166, 94, .22);
    border-radius: 28px;
    padding: 30px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 24px 70px rgba(29, 45, 35, .10);
    backdrop-filter: blur(12px);
}

.np-reseller-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--np-border);
    color: var(--np-green-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.np-reseller-hero-card ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-reseller-hero-card li {
    position: relative;
    padding-left: 30px;
    color: #3f4a43;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

.np-reseller-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(92, 166, 94, .13);
    color: var(--np-green-dark);
    font-size: 12px;
    font-weight: 900;
}

.np-reseller-section {
    padding: clamp(54px, 6vw, 84px) 0;
}

.np-reseller-intro {
    background: #fff;
}

.np-reseller-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.np-reseller-section h2,
.np-reseller-intro h2,
.np-reseller-band h2,
.np-reseller-cta-card h2 {
    margin: 0;
    color: var(--np-ink);
    font-size: clamp(27px, 3.2vw, 43px);
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 850;
}

.np-reseller-intro p:last-child,
.np-reseller-cta-card p {
    margin: 0;
    color: var(--np-muted);
    font-size: 17px;
    line-height: 1.8;
}

.np-reseller-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.np-reseller-benefits,
.np-reseller-steps,
.np-reseller-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.np-reseller-benefits article,
.np-reseller-steps article,
.np-reseller-faq-grid article {
    border: 1px solid var(--np-border);
    border-radius: 24px;
    background: var(--np-card);
    padding: 26px;
    box-shadow: 0 16px 44px rgba(25, 35, 28, .05);
}

.np-reseller-benefits article span,
.np-reseller-steps article strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(92, 166, 94, .12);
    color: var(--np-green-dark);
    font-size: 13px;
    font-weight: 900;
}

.np-reseller-benefits h3,
.np-reseller-steps h3,
.np-reseller-faq-grid h3 {
    margin: 0 0 12px;
    color: var(--np-ink);
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -.02em;
    font-weight: 850;
}

.np-reseller-benefits p,
.np-reseller-steps p,
.np-reseller-faq-grid p {
    margin: 0;
    color: var(--np-muted);
    font-size: 15px;
    line-height: 1.7;
}

.np-reseller-band {
    padding: clamp(54px, 6vw, 78px) 0;
    background: var(--np-soft);
    border-block: 1px solid var(--np-border);
}

.np-reseller-band-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: center;
}

.np-reseller-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.np-reseller-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(92, 166, 94, .18);
    color: #37443c;
    font-size: 14px;
    font-weight: 750;
}

.np-reseller-cta-section {
    background: #fff;
}

.np-reseller-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding: clamp(30px, 4vw, 46px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(92, 166, 94, .18), transparent 30%),
        #f8f4ec;
    border: 1px solid rgba(92, 166, 94, .18);
}

.np-reseller-cta-card p {
    max-width: 740px;
    margin-top: 16px;
}

.np-reseller-cta-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.np-reseller-page-content {
    margin-top: 26px;
    padding: 28px;
    border: 1px solid var(--np-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(25, 35, 28, .05);
}

.np-reseller-page-content > *:first-child {
    margin-top: 0;
}

.np-reseller-page-content > *:last-child {
    margin-bottom: 0;
}

.np-reseller-faq {
    background: #fbfaf6;
    border-top: 1px solid var(--np-border);
}

.np-reseller-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


.np-reseller-form {
    background: #ffffff;
    border: 1px solid rgba(25, 111, 61, 0.16);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 22px 60px rgba(25, 111, 61, 0.08);
}

.np-reseller-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.np-reseller-form p {
    margin: 0 0 16px;
}

.np-reseller-form label {
    display: block;
    margin-bottom: 7px;
    color: #132019;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.np-reseller-form input,
.np-reseller-form textarea {
    width: 100%;
    border: 1px solid rgba(25, 111, 61, 0.18);
    border-radius: 16px;
    background: #fbfaf6;
    color: #132019;
    font: inherit;
    font-size: 15px;
    line-height: 1.45;
    padding: 13px 15px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.np-reseller-form textarea {
    min-height: 130px;
    resize: vertical;
}

.np-reseller-form input:focus,
.np-reseller-form textarea:focus {
    border-color: rgba(25, 111, 61, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(25, 111, 61, 0.09);
}

.np-reseller-form input::placeholder,
.np-reseller-form textarea::placeholder {
    color: rgba(19, 32, 25, 0.44);
}

.np-reseller-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    margin-top: 2px;
}

.np-reseller-form-consent {
    margin-top: -4px !important;
    color: rgba(19, 32, 25, 0.62);
    font-size: 13px;
    line-height: 1.55;
}

.np-reseller-form-notice {
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.55;
}

.np-reseller-form-success {
    background: rgba(25, 111, 61, 0.09);
    border: 1px solid rgba(25, 111, 61, 0.20);
    color: #166534;
    font-weight: 700;
}

.np-reseller-form-error {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #7f1d1d;
}

.np-reseller-form-error strong {
    display: block;
    margin-bottom: 6px;
}

.np-reseller-form-error ul {
    margin: 0;
    padding-left: 18px;
}

.np-reseller-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 980px) {
    .np-reseller-hero-grid,
    .np-reseller-intro-grid,
    .np-reseller-band-grid,
    .np-reseller-cta-card {
        grid-template-columns: 1fr;
    }

    .np-reseller-hero-grid {
        gap: 34px;
    }

    .np-reseller-benefits,
    .np-reseller-steps {
        grid-template-columns: 1fr;
    }

    .np-reseller-cta-actions {
        justify-content: flex-start;
    }

    .np-reseller-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .np-reseller-page .np-container {
        width: min(100% - 24px, 1180px);
    }

    .np-reseller-hero-grid {
        padding: 42px 0 50px;
    }

    .np-reseller-hero h1 {
        font-size: 36px;
    }

    .np-reseller-lead,
    .np-reseller-intro p:last-child,
    .np-reseller-cta-card p {
        font-size: 15px;
        line-height: 1.72;
    }

    .np-reseller-actions,
    .np-reseller-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .np-reseller-btn {
        width: 100%;
    }

    .np-reseller-hero-card,
    .np-reseller-benefits article,
    .np-reseller-steps article,
    .np-reseller-faq-grid article,
    .np-reseller-cta-card,
    .np-reseller-page-content,
    .np-reseller-form {
        border-radius: 20px;
        padding: 22px;
    }

    .np-reseller-faq-grid {
        grid-template-columns: 1fr;
    }
}
