/* ============================================================
   VAMOS – cssLayout.css
   Navigation, hero, footer, containers, sections
   ============================================================ */

/* ── Sections ─────────────────────────────────────────────── */
section { padding: var(--section-pad); }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 560px;
}
.section-header { margin-bottom: 64px; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── Navigation ───────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
nav.scrolled { background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-sm); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-title);
    font-weight: 800; font-size: 20px; color: white;
    position: relative; overflow: hidden; flex-shrink: 0;
}
.nav-logo-icon::after {
    content: '';
    position: absolute; bottom: -5px; left: -5px;
    width: 18px; height: 18px;
    background: var(--surface);
    border-radius: 50%;
}
.nav-brand-name {
    font-family: var(--font-title);
    font-weight: 700; font-size: 17px;
    color: var(--text); letter-spacing: -0.3px;
}
.nav-brand-sub {
    font-size: 10px; color: var(--text-gray);
    letter-spacing: 0.5px; text-transform: uppercase;
    display: block; margin-top: -1px;
}
.nav-links {
    display: flex; align-items: center; gap: 32px;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none; border: none;
    padding: 6px; cursor: pointer;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 100px 5% 80px;
    position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 55% 50% at 68% 50%, rgba(242,140,0,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 35% 55% at 8%  85%, rgba(248,79,35,0.07)  0%, transparent 60%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.03;
    background-image:
        linear-gradient(rgba(74,144,226,0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,144,226,0.35) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -2px; margin-bottom: 24px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub {
    font-size: 18px; line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats    { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-title); font-size: 28px; font-weight: 800; }
.hero-stat span   { font-size: 13px; color: var(--text-faint); }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 100px;
    border: 1px solid rgba(242,140,0,0.4);
    background: var(--orange-alpha);
    font-size: 13px; font-weight: 500; color: var(--orange);
    margin-bottom: 28px;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(.8); }
}

/* Mockup téléphone */
.hero-visual {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%); z-index: 1;
}
.phone-mockup {
    width: 272px;
    background: #FFFFFF;
    border-radius: 36px;
    border: 1px solid var(--border);
    padding: 18px 14px;
    box-shadow: var(--shadow-lg);
}
.phone-status { display: flex; justify-content: space-between; padding: 0 8px 12px; font-size: 11px; color: var(--text-faint); font-weight: 500; }
.phone-header { background: var(--orange); border-radius: 14px 14px 0 0; padding: 13px 14px; display: flex; align-items: center; gap: 8px; }
.phone-header .vh { width: 26px; height: 26px; border-radius: 7px; background: rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 800; font-size: 14px; color: white; }
.phone-header strong { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: white; }
.phone-header span   { font-size: 11px; color: rgba(255,255,255,0.84); display: block; }
.phone-body { background: #F7F9FC; border-radius: 0 0 14px 14px; padding: 12px; }
.lmra-label { font-family: var(--font-title); font-size: 10px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.lmra-row   { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; background: white; margin-bottom: 5px; border: 1px solid rgba(0,0,0,0.06); }
.chk { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.chk.ok { background: var(--green); color: white; }
.lmra-row span { font-size: 11px; color: var(--text); font-weight: 500; }
.lmra-go { margin-top: 10px; border-radius: 10px; padding: 10px 14px; background: var(--green); display: flex; align-items: center; gap: 8px; }
.go-dot  { width: 10px; height: 10px; border-radius: 50%; background: white; }
.lmra-go strong { font-family: var(--font-title); font-size: 13px; font-weight: 700; color: white; }

/* ── Logos bar ────────────────────────────────────────────── */
.logos-bar {
    padding: 28px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.logos-bar-label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.logo-item { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: #CBD5E1; }

/* ── Page intérieure ──────────────────────────────────────── */
.page-hero {
    padding: 140px 5% 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(242,140,0,0.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -1.5px; margin-bottom: 16px; }
.page-hero p  { font-size: 17px; line-height: 1.65; color: var(--text-muted); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { padding: 12px 5%; background: #FFFFFF; border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a  { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.bc-sep { color: var(--text-faint); }

/* ── Footer ───────────────────────────────────────────────── */
footer { padding: 60px 5% 40px; border-top: 1px solid var(--border); background: #FFFFFF; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--text-faint); margin-top: 16px; max-width: 260px; }
.footer-col h4  { font-family: var(--font-title); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px; border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-faint); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Ajustements VAMOS – menu, hero, smartphone, footer
   ============================================================ */
nav {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
}
.nav-logo-icon {
    background: #FFFFFF;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(26, 26, 26, 0.12);
}
.nav-logo-icon::after { display: none; }
.nav-brand-name {
    color: #1A1A1A;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-brand-sub {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-links a {
    position: relative;
    color: #334155;
    font-weight: 600;
    padding: 8px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: #111827;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.hero {
    background: #E9EEF5;
}
.hero-bg {
    background:
        radial-gradient(ellipse 58% 52% at 70% 50%, rgba(242,140,0,0.18) 0%, transparent 72%),
        radial-gradient(ellipse 42% 55% at 8% 85%, rgba(74,144,226,0.11) 0%, transparent 60%),
        linear-gradient(135deg, #E9EEF5 0%, #F6F8FB 52%, #E4EAF3 100%);
}
.hero-grid {
    opacity: 0.07;
}
.hero-sub,
.page-hero p,
.section-sub {
    color: #3F4A5A;
}
.logos-bar {
    background: #FFFFFF;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.logos-bar-label {
    color: #1F2937;
    font-weight: 800;
}
.logo-item {
    color: #334155;
    opacity: 0.92;
}
.phone-mockup {
    background: #111827;
    border: 8px solid #0B0F19;
    box-shadow:
        0 34px 90px rgba(15, 23, 42, 0.34),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-status {
    color: rgba(255,255,255,0.82);
}
.phone-header {
    background: linear-gradient(135deg, #F28C00 0%, #FF9B13 100%);
}
.phone-body {
    background: #EEF2F7;
}
.lmra-row {
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
}
footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F5FA 100%);
    border-top: 1px solid #CBD5E1;
}
.footer-brand p {
    color: #4B5563;
}
.footer-col h4 {
    color: #1F2937;
}
.footer-col ul li a {
    color: #475569;
    font-weight: 500;
    position: relative;
}
.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid #D4DCE8;
}
.footer-bottom p {
    color: #64748B;
}


/* ============================================================
   PATCH V3 – Logo VAMOS réel dans le smartphone
   ============================================================ */

/* Le carré orange du mockup est remplacé par un V de marque plus proche de la charte */
.phone-header .vh {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    color: #1A1A1A !important;
    border: 2px solid #1A1A1A !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18) !important;
    font-family: var(--font-title) !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -2.2px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: scaleY(1.08) !important;
}

/* Petit rappel orange discret pour conserver le duo orange/noir de VAMOS */
.phone-header .vh::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: #F28C00;
    border: 2px solid #FFFFFF;
}

.phone-header {
    background: #F28C00 !important;
    color: #FFFFFF !important;
}
