/* SKYJUMPER – style épuré, banque privée */
:root {
    --navy: #0b2a5b;
    --navy-2: #163f7a;
    --gold: #c8a348;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e6e8ec;
    --bg: #fbfaf7;
    --white: #ffffff;
    --shadow: 0 14px 40px rgba(11, 42, 91, 0.08);
    --radius: 18px;
    --radius-sm: 12px;
    --maxw: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--maxw), calc(100% - 40px));
    margin: 0 auto;
}

/* TYPOGRAPHIE & ELEMENTS DE STYLE */
h1, h2, h3 {
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--navy);
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 3.7vw, 3.55rem);
    line-height: 1.04;
}

h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.intro {
    margin-top: 16px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #374151;
    max-width: 62ch;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

/* HEADER */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.86);
    border-bottom: 1px solid rgba(11, 42, 91, 0.06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 190px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-simple {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .brand-simple strong {
        color: var(--navy);
        font-size: 1.1rem;
    }

.kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-pill {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--navy);
    border: 1px solid rgba(11, 42, 91, 0.08);
    background: #fff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

    .nav-pill:hover, .nav-pill.active {
        background: var(--navy);
        color: #fff;
    }

/* HERO SECTION */
.hero {
    padding: 62px 0 34px;
}

.hero-home-wrap {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 40px;
}

.hero-card-home {
    padding-right: 160px;
}

.hero-card-subpage {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

    .hero-card-subpage .intro {
        margin: 16px auto 0;
    }

    .hero-card-subpage .signature, .hero-card-subpage .hero-cta {
        justify-content: center;
    }

/* PHOTO IDENTITÉ (Format Rond) */
.hero-home-photo {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 140px; /* Largeur et hauteur identiques pour un cercle parfait */
    height: 140px; /* Largeur et hauteur identiques */
    overflow: hidden;
    border-radius: 50%; /* C'est cette ligne qui crée le rond */
    border: 4px solid #fff; /* Une belle bordure blanche pour un effet premium */
    box-shadow: 0 8px 24px rgba(11, 42, 91, 0.15); /* Ombre douce pour détacher la photo */
    background: #fff;
}

    .hero-home-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Assure que la photo remplisse le rond sans être déformée */
    }

/* BADGES & BOUTONS */
.signature {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    padding: 8px 14px;
    background: #f7f9fc;
    border: 1px solid rgba(11, 42, 91, 0.08);
    border-radius: 999px;
    color: var(--navy);
    font-size: 0.9rem;
}

.hero-cta {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(11, 42, 91, 0.15);
    }

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.btn-secondary {
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
}

/* SECTIONS & GRILLES */
.section {
    padding: 56px 0;
}

.section-tight {
    padding: 40px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.choice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.choice-card {
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(11,42,91,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .choice-card p {
        margin-bottom: 24px;
        flex-grow: 1;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.step {
    padding-top: 16px;
    border-top: 2px solid var(--line);
}

    .step p {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem;
    }

/* LISTES & STATS */
.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .list-clean li {
        padding-left: 1.5em;
        position: relative;
        color: #374151;
    }

        .list-clean li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }

.stat-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stat strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.stat span {
    color: var(--muted);
    font-size: 0.95rem;
}

hr.soft {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 32px 0;
}

p.note {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    padding: 48px 0 64px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-card {
    background: var(--navy);
    color: #fff;
    border-radius: 22px;
    padding: 36px;
}

    .contact-card h2, .contact-card .eyebrow {
        color: #fff;
    }

    .contact-card .eyebrow {
        opacity: 0.8;
    }

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    font-weight: 600;
    font-size: 1.1rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--navy);
}

    .back-link:hover {
        color: var(--gold);
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .highlight, .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 32px);
    }

    .hero-card-home {
        padding-right: 32px;
        text-align: center;
    }

    .hero-home-photo {
        position: static;
        width: 110px; /* Légèrement plus petit sur mobile */
        height: 110px; /* Toujours identique à la largeur */
        margin: 0 auto 24px;
    }

    .hero-card-home .signature, .hero-card-home .hero-cta {
        justify-content: center;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
    }

    .choice {
        grid-template-columns: 1fr;
    }
}
