/* ════════════════════════════════════════
   Page accueil — onsecroise.com
   ════════════════════════════════════════ */

/* ── HERO ── */
.hero { padding: 80px 0 72px; }

.hero .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.hero-copy { display: flex; flex-direction: column; gap: 22px; }

.eyebrow {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero p.sub {
    font-size: 1.06rem;
    color: #5d564e;
    line-height: 1.65;
    max-width: 420px;
}

.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.hero-delivery {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ── Card flip ── */
.hero-visual { display: flex; justify-content: center; }

.card-scene {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(80,40,30,0.10), 0 4px 12px rgba(80,40,30,0.06);
    animation: float 5s ease-in-out infinite;
}

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

.card-hint {
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.card-wrapper {
    width: 310px;
    height: 177px;
    perspective: 1200px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-wrapper.flipped .card-inner { transform: rotateY(180deg); }

.card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    background: var(--cream);
    box-shadow: 0 2px 8px rgba(80,40,30,0.08), 0 8px 24px rgba(80,40,30,0.10);
    overflow: hidden;
}

.card-recto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.card-logo-mark { position: absolute; top: 12px; left: 14px; width: 18px; height: 18px; }
.card-logo-mark svg { width: 100%; height: 100%; border-radius: 5px; }

.card-firstname {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.card-accent-line {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    border-radius: 2px;
    margin-top: 8px;
}

.card-url-micro {
    position: absolute;
    bottom: 10px;
    right: 13px;
    font-size: 0.48rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--line);
}

.card-verso {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px;
}

.qr-label {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.qr-url-micro {
    font-size: 0.48rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--line);
}

/* ── SECTIONS ── */
section { padding: 72px 0; }

.section-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }

.kick {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
}

.section-head h2 {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}

.section-head p { font-size: 1.02rem; color: #5d564e; }

/* ── CONCEPT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pcard {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
}

.pcard .emo { font-size: 1.6rem; margin-bottom: 14px; display: block; }

.pcard h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.pcard.muted h3 { color: var(--muted); }
.pcard p { color: #5d564e; font-size: 0.96rem; line-height: 1.65; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.step-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.step-card h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.step-card p { font-size: 0.92rem; color: #5d564e; line-height: 1.65; }

/* ── PRODUCT ── */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.product-copy { display: flex; flex-direction: column; gap: 22px; }

.price-block { display: flex; align-items: baseline; gap: 8px; }

.price-main {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.price-sub { font-size: 1rem; color: var(--muted); }

.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #5d564e;
    line-height: 1.5;
}

.feat-chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-chk svg { width: 11px; height: 11px; }

.product-visual {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(80,40,30,0.08);
}

/* ── RESPECT ── */
.respect {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 56px 40px;
    text-align: center;
}

.respect .seal { width: 60px; height: 60px; margin: 0 auto 20px; }
.respect .seal svg { width: 100%; height: 100%; }

.respect h2 {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.respect p { font-size: 1.02rem; color: #5d564e; max-width: 540px; margin: 0 auto 28px; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.pill {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 18px;
    font-family: var(--display);
    font-size: 0.86rem;
    font-weight: 500;
}

/* ── FAQ ── */
.faq-list {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--paper);
    max-width: 720px;
    margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    transition: background 0.15s;
}

.faq-q:hover { background: var(--cream); }

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0ece6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--muted);
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(120deg, var(--rose), var(--orange));
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.92rem;
    color: #5d564e;
    line-height: 1.7;
    padding: 0 24px;
}

.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CTA FINAL ── */
.cta-final {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-final h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.cta-final p { font-size: 1rem; color: var(--muted); }

.cta-specs {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--muted);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-sep { width: 4px; height: 4px; background: var(--line); border-radius: 50%; }

/* ── MOBILE ── */
@media (max-width: 768px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .card-scene { animation: none; padding: 28px 20px; }
    .card-wrapper { width: 276px; height: 158px; }
    .split { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; gap: 40px; }
    section { padding: 52px 0; }
    .respect { padding: 40px 24px; }
}
