/* ==========================================================================
   mobile.css — styles spécifiques à la page Application mobile
   (revealUp et fadeIn sont définis dans components.css)
   ========================================================================== */

/* --- Store badges ------------------------------------------------------- */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--noir);
    color: var(--creme);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.store-badge:hover { background: var(--rose-fonce); transform: translateY(-2px); }
.store-badge svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge-small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.store-badge-big { font-family: 'Onest', sans-serif; font-size: 15px; font-weight: 600; }

.store-badge-large { padding: 20px 32px; border-radius: 18px; }
.store-badge-large svg { width: 32px; height: 32px; }
.store-badge-large .store-badge-small { font-size: 11px; }
.store-badge-large .store-badge-big { font-size: 19px; }

/* --- Hero mobile -------------------------------------------------------- */
.hero-mobile {
    padding: 80px 36px 40px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}
.hero-mobile-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    color: var(--gris);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.hero-eyebrow .num { font-family: 'Onest', sans-serif; font-weight: 600; color: var(--rose-fonce); }
.hero-eyebrow .sep { width: 24px; height: 1px; background: var(--noir); opacity: 0.3; }

.hero-mobile h1 {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 500;
    line-height: 0.96;
    color: var(--noir);
    letter-spacing: -0.035em;
    margin-bottom: 36px;
}
.hero-mobile h1 .line { display: block; overflow: hidden; }
.hero-mobile h1 .line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealUp 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
.hero-mobile h1 .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-mobile h1 .line:nth-child(2) span {
    animation-delay: 0.22s;
    font-family: 'Familjen Grotesk', sans-serif;
    font-style: italic;
    color: var(--rose-fonce);
    font-weight: 500;
}

.hero-mobile-tagline {
    font-size: 19px;
    color: var(--gris);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.55;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 0.8s 0.5s forwards;
}
.hero-mobile-tagline strong { color: var(--noir); font-weight: 600; }

.hero-mobile-stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s 0.7s forwards;
}
.hero-mobile-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    font-size: 13px;
    color: var(--gris);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s 0.85s forwards;
}
.hero-mobile-meta .dot {
    width: 4px;
    height: 4px;
    background: var(--rose-fonce);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.hero-phone-wrapper {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
}
.hero-phone-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(229, 146, 181, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* --- Mockup téléphone (repris de home.css) ------------------------------ */
.mobile-mockup { position: relative; width: 100%; max-width: 380px; margin: 0 auto; aspect-ratio: 9 / 19; }
.phone-frame { position: relative; width: 100%; height: 100%; background: var(--noir); border-radius: 44px; padding: 12px; box-shadow: 0 40px 80px -20px rgba(26, 22, 20, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05); }
.phone-screen { width: 100%; height: 100%; background: var(--creme-clair); border-radius: 32px; overflow: hidden; position: relative; padding: 32px 20px 24px; }
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 100px; height: 26px; background: var(--noir); border-radius: 14px; z-index: 10; }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 0 12px; margin-bottom: 18px; font-size: 12px; font-weight: 600; color: var(--noir); }
.phone-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.phone-greeting { font-family: 'Onest', sans-serif; font-size: 14px; font-weight: 500; color: var(--gris); }
.phone-name { font-family: 'Onest', sans-serif; font-size: 22px; font-weight: 600; color: var(--noir); letter-spacing: -0.02em; margin-top: 2px; }
.phone-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--rose-fonce); display: flex; align-items: center; justify-content: center; color: white; font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px; }
.phone-camera-btn { background: var(--rose-fonce); color: white; padding: 16px 20px; border-radius: 14px; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.phone-camera-icon { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.phone-camera-icon svg { width: 18px; height: 18px; stroke: white; }
.phone-camera-text { flex: 1; }
.phone-camera-title { font-family: 'Onest', sans-serif; font-size: 13px; font-weight: 600; line-height: 1.2; }
.phone-camera-sub { font-size: 10px; opacity: 0.8; }
.phone-card-ndf { background: white; border: 1px solid var(--ligne); border-radius: 16px; padding: 18px; margin-bottom: 14px; position: relative; overflow: hidden; }
.phone-card-ndf::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--rose-fonce); }
.phone-card-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rose-fonce); font-weight: 600; margin-bottom: 10px; }
.phone-card-title { font-family: 'Onest', sans-serif; font-size: 16px; font-weight: 600; color: var(--noir); margin-bottom: 12px; letter-spacing: -0.01em; }
.phone-card-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; }
.phone-card-row .l { color: var(--gris); }
.phone-card-row .v { color: var(--noir); font-weight: 600; }
.phone-card-ia { margin-top: 12px; padding: 10px 12px; background: var(--rose-pale); border-radius: 8px; font-size: 11px; color: var(--noir); font-style: italic; line-height: 1.4; }
.phone-nav { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: calc(100% - 40px); background: white; border: 1px solid var(--ligne); border-radius: 18px; padding: 10px; display: flex; justify-content: space-around; }
.phone-nav-item { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--gris-clair); }
.phone-nav-item.active { background: var(--rose-pale); color: var(--rose-fonce); }
.phone-nav-item svg { width: 16px; height: 16px; stroke: currentColor; }

/* --- Six cas d'usage ---------------------------------------------------- */
.usages { padding: 60px 36px 100px; max-width: 1320px; margin: 0 auto; }
.usage {
    display: grid;
    grid-template-columns: 0.45fr 1.05fr;
    gap: 56px;
    padding: 56px 0;
    border-top: 1px solid var(--ligne);
    align-items: start;
}
.usage:last-child { border-bottom: 1px solid var(--ligne); }

.usage-meta { display: flex; flex-direction: column; gap: 16px; }
.usage-num-row { display: flex; align-items: baseline; gap: 14px; }
.usage-num {
    font-family: 'Onest', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--rose-fonce);
    line-height: 0.9;
    letter-spacing: -0.04em;
}
.usage-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gris);
    font-family: 'Onest', sans-serif;
}
.usage-tag-signature {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--noir);
    color: var(--rose);
    font-family: 'Onest', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-left: 6px;
}

.usage-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--noir);
    letter-spacing: -0.025em;
}
.usage-title em { font-family: 'Familjen Grotesk', sans-serif; font-style: italic; color: var(--rose-fonce); font-weight: 500; }

.usage-body { display: flex; flex-direction: column; gap: 16px; }
.usage-desc { font-size: 17px; color: var(--noir-doux); line-height: 1.65; }
.usage-desc strong { color: var(--noir); font-weight: 600; }
.usage-desc em { font-family: 'Familjen Grotesk', sans-serif; font-style: italic; color: var(--rose-fonce); font-weight: 500; }

.usage-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: var(--creme-clair);
    border: 1px solid var(--ligne);
    border-left: 3px solid var(--rose-fonce);
    border-radius: 12px;
    font-size: 14px;
    color: var(--gris);
    line-height: 1.55;
}
.usage-detail strong { color: var(--noir); font-weight: 600; }
.usage-detail-icon {
    font-family: 'Onest', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--rose-fonce);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    padding-top: 1px;
}

/* --- Disponible sur ----------------------------------------------------- */
.disponible { padding: 100px 36px; max-width: 1320px; margin: 0 auto; }
.disponible-card {
    background: var(--noir);
    color: var(--creme);
    border-radius: 28px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.disponible-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--rose-fonce) 0%, transparent 65%);
    opacity: 0.18;
    filter: blur(40px);
}
.disponible-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.disponible-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 32px;
    font-weight: 500;
}
.disponible-eyebrow .marker { width: 28px; height: 1px; background: var(--rose); }
.disponible-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--creme);
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}
.disponible-title em { font-family: 'Familjen Grotesk', sans-serif; font-style: italic; color: var(--rose); font-weight: 500; }
.disponible-sub { font-size: 18px; color: rgba(246, 240, 230, 0.7); margin-bottom: 48px; line-height: 1.55; }
.disponible-stores { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.disponible-stores .store-badge { background: var(--creme); color: var(--noir); }
.disponible-stores .store-badge:hover { background: white; color: var(--rose-fonce); }
.disponible-meta { font-size: 13px; color: rgba(246, 240, 230, 0.5); font-family: 'Onest', sans-serif; letter-spacing: 0.02em; }

/* --- Sécurité ----------------------------------------------------------- */
.securite { padding: 120px 36px; max-width: 1320px; margin: 0 auto; }
.securite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.securite-card {
    background: var(--creme-clair);
    border: 1px solid var(--ligne);
    border-radius: 20px;
    padding: 40px 36px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.securite-card:hover { border-color: var(--rose-fonce); background: white; transform: translateY(-4px); }
.securite-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--rose-fonce);
}
.securite-icon-wrap svg { width: 22px; height: 22px; }
.securite-title {
    font-family: 'Onest', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--noir);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.securite-title em { font-family: 'Familjen Grotesk', sans-serif; font-style: italic; color: var(--rose-fonce); font-weight: 500; }
.securite-desc { font-size: 14px; color: var(--gris); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.securite-desc strong { color: var(--noir); font-weight: 600; }
.securite-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--ligne);
}
.securite-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--noir-doux);
    line-height: 1.45;
}
.securite-bullets li::before {
    content: '✓';
    color: var(--rose-fonce);
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-mobile-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-phone-wrapper { max-width: 360px; margin: 0 auto; }
    .usage { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
    .usage-num { font-size: 40px; }
    .securite-grid { grid-template-columns: 1fr; gap: 16px; }
    .disponible-card { padding: 56px 36px; }
}

@media (max-width: 640px) {
    .hero-mobile { padding: 56px 24px 32px; }
    .usages,
    .disponible,
    .securite { padding-left: 24px; padding-right: 24px; }
    .disponible-card { padding: 40px 24px; }
    .securite-card { padding: 32px 28px; }
    .mobile-mockup { max-width: 280px; }
    .disponible-stores { flex-direction: column; gap: 12px; }
    .disponible-stores .store-badge { width: 100%; justify-content: center; }
}
