/* ============================================================
   NiouLink – Vitrine Desktop Stylesheet
   Desktop-first · Landing page · Public pages
   ============================================================ */

/* ============================================================
   BODY VITRINE – Override mobile defaults
   ============================================================ */
.nl-vitrine-body {
    padding-top: 0;
    padding-bottom: 0;
    background: #FFFFFF;
    overflow-x: hidden;
}

.nl-vitrine-body .nl-bottombar {
    display: none;
}

/* ============================================================
   NAVBAR VITRINE
   ============================================================ */
.nl-vit-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nl-vit-navbar-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nl-vit-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nl-vit-navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nl-vit-navbar-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.nl-vit-navbar-name {
    font-family: var(--nl-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nl-primary);
    letter-spacing: -0.5px;
}

/* Menu Desktop */
.nl-vit-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-vit-nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nl-text);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nl-vit-nav-menu li a:hover {
    background: var(--nl-primary-light);
    color: var(--nl-primary);
}

.nl-vit-nav-menu li a.active {
    background: var(--nl-primary-light);
    color: var(--nl-primary);
    font-weight: 600;
}

/* Actions */
.nl-vit-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nl-vit-nav-link-login {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nl-text) !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nl-vit-nav-link-login:hover {
    background: var(--nl-bg);
    color: var(--nl-primary) !important;
}

/* Hamburger */
.nl-vit-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.nl-vit-hamburger:hover {
    background: var(--nl-bg);
}

.nl-vit-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nl-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nl-vit-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nl-vit-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nl-vit-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nl-vit-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1099;
    padding: 24px;
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nl-vit-mobile-menu.open {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    opacity: 1;
}

.nl-vit-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-vit-mobile-nav li a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--nl-text);
    text-decoration: none;
    border-bottom: 1px solid var(--nl-border);
    transition: color 0.2s ease;
}

.nl-vit-mobile-nav li a:hover {
    color: var(--nl-primary);
}

.nl-vit-mobile-actions {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nl-vit-menu-open {
    overflow: hidden;
}

/* ============================================================
   MAIN CONTENT VITRINE
   ============================================================ */
.nl-vit-main {
    padding-top: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.nl-vit-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(165deg, #F7F8FA 0%, var(--nl-primary-light) 35%, #FFFFFF 70%, #FEF3F2 100%);
}

.nl-vit-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--nl-primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.nl-vit-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--nl-amour-rgb), 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.nl-vit-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nl-vit-hero-content {
    max-width: 560px;
}

.nl-vit-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--nl-primary-light);
    color: var(--nl-primary);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.nl-vit-hero h1 {
    font-family: var(--nl-font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--nl-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.nl-vit-hero h1 span {
    color: var(--nl-primary);
}

.nl-vit-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--nl-text-light);
    margin-bottom: 36px;
    max-width: 480px;
}

.nl-vit-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nl-vit-hero-ctas .nl-btn {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 14px;
}

.nl-vit-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--nl-border);
}

.nl-vit-hero-stat-number {
    display: block;
    font-family: var(--nl-font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nl-primary);
    line-height: 1.2;
}

.nl-vit-hero-stat-label {
    font-size: 0.82rem;
    color: var(--nl-text-muted);
    font-weight: 500;
}

/* Hero Visual (right side) */
.nl-vit-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-vit-hero-cards {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3.5;
}

.nl-vit-hero-card {
    position: absolute;
    background: var(--nl-white);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease;
}

.nl-vit-hero-card:nth-child(1) {
    top: 0;
    left: 0;
    width: 260px;
    border-left: 4px solid var(--nl-amour);
    transform: rotate(-3deg);
    z-index: 3;
}

.nl-vit-hero-card:nth-child(2) {
    top: 60px;
    right: 0;
    width: 240px;
    border-left: 4px solid var(--nl-amitie);
    transform: rotate(2deg);
    z-index: 2;
}

.nl-vit-hero-card:nth-child(3) {
    bottom: 40px;
    left: 30px;
    width: 250px;
    border-left: 4px solid var(--nl-sport);
    transform: rotate(-1deg);
    z-index: 1;
}

.nl-vit-hero-card:nth-child(4) {
    bottom: 0;
    right: 30px;
    width: 220px;
    border-left: 4px solid var(--nl-entraide);
    transform: rotate(3deg);
    z-index: 4;
}

.nl-vit-hero-card:hover {
    transform: rotate(0) translateY(-4px);
}

.nl-vit-hero-card-emoji {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.nl-vit-hero-card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--nl-dark);
    margin-bottom: 4px;
}

.nl-vit-hero-card-desc {
    font-size: 0.78rem;
    color: var(--nl-text-muted);
    line-height: 1.4;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.nl-vit-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nl-vit-section-alt .nl-vit-section {
    padding-left: 24px;
    padding-right: 24px;
}

.nl-vit-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.nl-vit-section-header h2 {
    font-family: var(--nl-font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--nl-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.nl-vit-section-header p {
    font-size: 1.05rem;
    color: var(--nl-text-light);
    line-height: 1.65;
}

/* ============================================================
   COMMENT CA MARCHE (4 steps)
   ============================================================ */
.nl-vit-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.nl-vit-step {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    transition: all 0.3s ease;
    position: relative;
}

.nl-vit-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--nl-shadow);
    border-color: transparent;
}

.nl-vit-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.nl-vit-step h3 {
    font-family: var(--nl-font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--nl-dark);
    margin-bottom: 8px;
}

.nl-vit-step p {
    font-size: 0.88rem;
    color: var(--nl-text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================================
   CATEGORIES CARDS
   ============================================================ */
.nl-vit-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nl-vit-cat-card {
    position: relative;
    padding: 32px 24px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.nl-vit-cat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.nl-vit-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.nl-vit-cat-amour   { background: linear-gradient(145deg, var(--nl-amour-light), #F0DFF4); }
.nl-vit-cat-amitie  { background: linear-gradient(145deg, var(--nl-amitie-light), #D6EAF8); }
.nl-vit-cat-sport   { background: linear-gradient(145deg, var(--nl-sport-light), #FDEBD0); }
.nl-vit-cat-entraide { background: linear-gradient(145deg, var(--nl-entraide-light), #D5F5E3); }

.nl-vit-cat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.nl-vit-cat-card h3 {
    font-family: var(--nl-font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.nl-vit-cat-amour h3 { color: var(--nl-amour); }
.nl-vit-cat-amitie h3 { color: var(--nl-amitie); }
.nl-vit-cat-sport h3 { color: var(--nl-sport); }
.nl-vit-cat-entraide h3 { color: var(--nl-entraide); }

.nl-vit-cat-card p {
    font-size: 0.85rem;
    color: var(--nl-text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================================
   DEMANDES RECENTES (preview)
   ============================================================ */
.nl-vit-demandes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nl-vit-demande-card {
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit !important;
}

.nl-vit-demande-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--nl-shadow);
    border-color: transparent;
}

.nl-vit-demande-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.nl-vit-demande-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--nl-border);
    flex-shrink: 0;
}

.nl-vit-demande-author {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--nl-dark);
}

.nl-vit-demande-meta-info {
    font-size: 0.75rem;
    color: var(--nl-text-muted);
}

.nl-vit-demande-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--nl-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nl-vit-demande-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
}

.nl-vit-demande-badge-amitie  { background: var(--nl-amitie-light); color: var(--nl-amitie); }
.nl-vit-demande-badge-sport   { background: var(--nl-sport-light); color: var(--nl-sport); }
.nl-vit-demande-badge-entraide { background: var(--nl-entraide-light); color: var(--nl-entraide); }

/* ============================================================
   TEMOIGNAGES
   ============================================================ */
.nl-vit-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nl-vit-testimonial {
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.25s ease;
}

.nl-vit-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--nl-shadow);
}

.nl-vit-testimonial-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.nl-vit-testimonial-text {
    font-size: 0.95rem;
    color: var(--nl-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.nl-vit-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nl-vit-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nl-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nl-vit-testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--nl-dark);
}

.nl-vit-testimonial-location {
    font-size: 0.78rem;
    color: var(--nl-text-muted);
}

/* ============================================================
   CTA DOWNLOAD APP
   ============================================================ */
.nl-vit-cta-app {
    background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.nl-vit-cta-app::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.nl-vit-cta-app h2 {
    font-family: var(--nl-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.nl-vit-cta-app p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.nl-vit-cta-app .nl-btn {
    background: #fff;
    color: var(--nl-primary) !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    position: relative;
}

.nl-vit-cta-app .nl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.nl-vit-cta-app-visual {
    text-align: center;
    position: relative;
    font-size: 6rem;
}

/* ============================================================
   FOOTER VITRINE
   ============================================================ */
.nl-vit-footer {
    background: var(--nl-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 24px 0;
}

.nl-vit-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.nl-vit-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.nl-vit-footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nl-vit-footer-logo span {
    font-family: var(--nl-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.nl-vit-footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.nl-vit-footer-col h4 {
    font-family: var(--nl-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.nl-vit-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-vit-footer-col ul li {
    margin-bottom: 10px;
}

.nl-vit-footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nl-vit-footer-col ul li a:hover {
    color: #fff;
}

.nl-vit-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.nl-vit-footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ============================================================
   PAGE CONTENT (vitrine pages)
   ============================================================ */
.nl-vit-page-hero {
    padding: 140px 24px 60px;
    text-align: center;
    background: linear-gradient(165deg, #F7F8FA 0%, var(--nl-primary-light) 50%, #FFFFFF 100%);
}

.nl-vit-page-hero h1 {
    font-family: var(--nl-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nl-dark);
    margin-bottom: 16px;
}

.nl-vit-page-hero p {
    font-size: 1.1rem;
    color: var(--nl-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Generic page content container */
.nl-vit-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.nl-vit-page-content h2 {
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.nl-vit-page-content h2:first-child {
    margin-top: 0;
}

.nl-vit-page-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--nl-text);
}

/* ============================================================
   FAQ
   ============================================================ */
.nl-vit-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.nl-vit-faq-item {
    border: 1px solid var(--nl-border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--nl-white);
    transition: all 0.25s ease;
}

.nl-vit-faq-item:hover {
    border-color: var(--nl-primary);
}

.nl-vit-faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--nl-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--nl-font-body);
    transition: color 0.2s ease;
}

.nl-vit-faq-question:hover {
    color: var(--nl-primary);
}

.nl-vit-faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--nl-text-muted);
    transition: transform 0.3s ease;
}

.nl-vit-faq-item.open .nl-vit-faq-chevron {
    transform: rotate(180deg);
}

.nl-vit-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--nl-text-light);
    line-height: 1.7;
}

.nl-vit-faq-item.open .nl-vit-faq-answer {
    display: block;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.nl-vit-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.nl-vit-contact-info {
    padding: 32px;
    background: var(--nl-primary-light);
    border-radius: 20px;
}

.nl-vit-contact-info h3 {
    font-family: var(--nl-font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nl-dark);
    margin-bottom: 16px;
}

.nl-vit-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.nl-vit-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--nl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.nl-vit-contact-info-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--nl-dark);
}

.nl-vit-contact-info-value {
    font-size: 0.85rem;
    color: var(--nl-text-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.nl-vit-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nl-vit-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE – TABLETTE
   ============================================================ */
@media (max-width: 1024px) {
    .nl-vit-hero h1 {
        font-size: 2.4rem;
    }

    .nl-vit-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 24px 60px;
    }

    .nl-vit-hero-visual {
        display: none;
    }

    .nl-vit-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .nl-vit-cats {
        grid-template-columns: repeat(2, 1fr);
    }

    .nl-vit-demandes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nl-vit-testimonials {
        grid-template-columns: 1fr 1fr;
    }

    .nl-vit-cta-app {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 32px;
    }

    .nl-vit-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE
   ============================================================ */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop menu */
    .nl-vit-hamburger {
        display: flex;
    }

    .nl-vit-nav-menu {
        display: none;
    }

    .nl-vit-nav-actions {
        display: none;
    }

    .nl-vit-navbar-inner {
        height: 64px;
    }

    /* Hero */
    .nl-vit-hero {
        min-height: auto;
    }

    .nl-vit-hero-inner {
        padding: 100px 20px 48px;
    }

    .nl-vit-hero h1 {
        font-size: 2rem;
    }

    .nl-vit-hero-subtitle {
        font-size: 1rem;
    }

    .nl-vit-hero-ctas {
        flex-direction: column;
    }

    .nl-vit-hero-ctas .nl-btn {
        width: 100%;
        justify-content: center;
    }

    .nl-vit-hero-stats {
        gap: 24px;
    }

    .nl-vit-hero-stat-number {
        font-size: 1.4rem;
    }

    /* Sections */
    .nl-vit-section {
        padding: 48px 20px;
    }

    .nl-vit-section-header h2 {
        font-size: 1.6rem;
    }

    .nl-vit-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nl-vit-cats {
        grid-template-columns: 1fr;
    }

    .nl-vit-demandes-grid {
        grid-template-columns: 1fr;
    }

    .nl-vit-testimonials {
        grid-template-columns: 1fr;
    }

    .nl-vit-cta-app {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .nl-vit-cta-app h2 {
        font-size: 1.5rem;
    }

    /* Footer */
    .nl-vit-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Page hero */
    .nl-vit-page-hero {
        padding: 100px 20px 40px;
    }

    .nl-vit-page-hero h1 {
        font-size: 1.8rem;
    }

    .nl-vit-page-content {
        padding: 40px 20px;
    }

    /* Contact */
    .nl-vit-contact-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .nl-vit-faq-question {
        font-size: 0.88rem;
        padding: 16px 20px;
    }
}
