/* ============================================================
   SnapBox – CSS Global
   location-photomaton-valais.ch
   ============================================================ */
/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c1: #0A1628;
    --c2: #1A2E52;
    --accent: #00D9A5;
    --accent-dark: #00b589;
    --accent2: #FFD166;
    --white: #ffffff;
    --muted: #8B9EC4;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.09);
    --accent-border: rgba(0, 217, 165, 0.25);
    --accent-bg: rgba(0, 217, 165, 0.07);
    --accent2-border: rgba(255, 209, 102, 0.22);
    --accent2-bg: rgba(255, 209, 102, 0.07);
    --r: 14px;
    --r-lg: 22px;
    --r-pill: 999px;
    --nav-h: 64px;
    --wrap: 1100px;
    --wrap-narrow: 900px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--c1);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0,217,165,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 90% 100%, rgba(255,209,102,.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.wrap--narrow {
    max-width: var(--wrap-narrow);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--white);
}

h1 {
    font-size: clamp(34px, 5.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    line-height: 1.1;
    letter-spacing: -.8px;
}

h3 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -.3px;
}

h1 em,
h2 em {
    color: var(--accent);
    font-style: italic;
}

p {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
}

a {
    color: var(--accent);
    text-decoration: underline;
    transition: color .2s;
}

a:hover {
    color: var(--white);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px !important;
}

.section-title {
    text-align: center;
    margin-bottom: 30px !important;
}

.section-sub {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 44px !important;
    font-size: 15px;
}

/* ============================================================
   HERO SUB
   ============================================================ */
.hero-sub {
    font-size: clamp(15px, 2vw, 18px) !important;
    color: rgba(255,255,255,.68) !important;
    max-width: 500px !important;
    margin: 0 auto 40px !important;
    font-weight: 400 !important;
    text-align: center !important;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    text-align: center;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    margin: 0 8px;
    opacity: .4;
}

/* ============================================================
   BADGE / PILL
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 24px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.pill {
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    color: rgba(255,255,255,.8);
    padding: 8px 18px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--c1);
    font-weight: 800;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,217,165,.28);
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    color: var(--c1);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,217,165,.38);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--r-pill);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.18);
    transition: border-color .2s;
}

.btn-outline:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.45);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    padding: 28px !important;
    transition: border-color .25s;
}

.card:hover {
    border-color: rgba(0,217,165,.3);
}

.card--featured {
    background: rgba(0,217,165,.05);
    border: 1.5px solid var(--accent);
    border-radius: var(--r-lg);
}

.card h3 {
    margin-bottom: 10px !important;
    font-size: 18px !important;
}

.card p {
    margin-bottom: 0;
}

/* Step cards (grid-5) smaller text */
.grid-5 .card h3 {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.grid-5 .card p {
    font-size: 12px !important;
}

.card-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px !important;
    flex-shrink: 0;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   PRINTER BANNER
   ============================================================ */
.printer-banner {
    background: var(--accent2-bg);
    border: 1px solid var(--accent2-border);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 13px;
    color: rgba(255,255,255,.82);
    text-align: left;
    line-height: 1.6;
}

.printer-banner strong {
    color: var(--accent2);
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.printer-banner a {
    color: var(--accent2);
    font-weight: 800;
    text-decoration: underline;
}

.printer-banner a:hover {
    color: var(--white);
}

/* ============================================================
   RETRAIT NOTE
   ============================================================ */
.retrait-note {
    text-align: center;
    background: var(--accent2-bg);
    border: 1px solid var(--accent2-border);
    border-radius: var(--r);
    padding: 13px 18px;
    font-size: 13px;
    color: rgba(255,255,255,.72);
}

.retrait-note strong {
    color: var(--accent2);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

/* ============================================================
   STEPS
   ============================================================ */
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,217,165,.12);
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px !important;
}

/* ============================================================
   OFFRE CARD (prix)
   ============================================================ */
.offre-card {
    max-width: 560px;
    margin: 0 auto;
}

.prix-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 68px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.prix-amount sup {
    font-size: 26px;
    vertical-align: top;
    margin-top: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.prix-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.inclus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.inclus-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.inclus-item .ck {
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.inclus-item strong {
    display: block;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
}

.inclus-item p {
    font-size: 12px;
    color: rgba(255,255,255,.72);
    line-height: 1.4;
    margin-bottom: 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
}

.faq-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}

.faq-a {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   CTA BOX
   ============================================================ */
.cta-box {
    text-align: center;
    padding: 72px 24px;
    background: rgba(0,217,165,.04);
    border: 1px solid rgba(0,217,165,.12);
    border-radius: var(--r-lg);
}

.cta-box h2 {
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 32px;
}

/* ============================================================
   ZONES WRAP
   ============================================================ */
.zones-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r-lg);
    padding: 36px;
}

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

/* ============================================================
   INTERNAL LINK CARDS
   ============================================================ */
.int-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    padding: 22px 24px;
    text-decoration: none;
    display: block;
    transition: border-color .2s;
}

.int-card:hover {
    border-color: rgba(0,217,165,.3);
}

.int-card-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--accent);
    margin-bottom: 8px;
}

.int-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
}

.int-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 96px 0 72px !important;
    text-align: center;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 52px;
}

/* ============================================================
   SECTIONS SPACING
   ============================================================ */
.section {
    margin-bottom: 88px !important;
}

/* ============================================================
   SR-ONLY (SEO/LLM hidden content)
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ============================================================
   CONTENT PAGES (légales, contact…)
   ============================================================ */
.content-page {
    padding: 60px 0 88px;
}

.content-page section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--card-border);
}

.content-page section:last-child {
    border-bottom: none;
}

.content-page h2 {
    font-size: 22px;
    letter-spacing: -.3px;
    margin-bottom: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(30px, 8vw, 48px);
    }

    h2 {
        font-size: clamp(22px, 6vw, 34px);
    }

    .inclus-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: 24px;
    }

    .hero {
        padding: 72px 0 52px !important;
    }

    .section {
        margin-bottom: 60px !important;
    }

    .card {
        padding: 22px !important;
    }
}

@media (max-width: 480px) {
    .wrap,
    .wrap--narrow {
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
