/*
 * HuntJob$ — landing page styles
 *
 * Palette STRICTEMENT issue de front/src/sass/_variables.sass.
 * Aucune couleur inventée. Logo + dégradés alignés avec la PWA et
 * les emails transactionnels.
 */

:root {
    --gold:        #CCAA59; /* $c-primary */
    --gold-deep:   #BF953F;
    --gold-soft:   rgba(204, 170, 89, 0.12);
    --slate:       #3A4553; /* $c-secondary / $main-text-color */
    --slate-soft:  #6D7279; /* $c-dark */
    --light:       #B3BBC6; /* $c-light */
    --white:       #FFFFFF;
    --bg:          #F5F5F5; /* $background */
    --green:       #9BD35B; /* $c-success */
    --orange:      #FFAB34; /* $c-warning */
    --red:         #F05D5E; /* $c-error */
    --border:      #F1F2F3;
    --gold-grad:   linear-gradient(135deg, #F0D78B 0%, #CCAA59 50%, #A88B45 100%);
    --gold-grad-soft: linear-gradient(228deg, #FCF6BA 0%, #BF953F 100%);
    --shadow-sm:   0 3px 6px rgba(0, 0, 0, 0.06);
    --shadow-md:   0 10px 20px rgba(0, 0, 0, 0.06), 0 6px 6px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 14px rgba(204, 170, 89, 0.30);
    --radius:      14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--slate);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: opacity .15s ease; }
a:hover { opacity: .85; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== Header ===================== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    height: 38px;
    width: auto;
}
.brand-logo-sm { height: 30px; }
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-hunt {
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--slate);
}
.brand-jobs {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.5px;
    margin-top: 2px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 600;
}
.site-nav a { color: var(--slate); }

/* ===================== Buttons ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 26px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform .1s ease, box-shadow .15s ease, background .15s ease;
    text-decoration: none;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-primary {
    background: var(--gold-deep);
    background-image: var(--gold-grad-soft);
    color: var(--slate);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(204, 170, 89, .42); opacity: 1; }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
    background: transparent;
    color: var(--slate);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg); }

/* ===================== Hero ===================== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--slate);
}
.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lead {
    margin-top: 22px;
    font-size: 18px;
    color: var(--slate-soft);
    line-height: 1.6;
    max-width: 560px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.hero-note {
    margin-top: 18px;
    font-size: 13px;
    color: var(--slate-soft);
}

/* Hero visual : phone mock-up */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mock {
    width: 280px;
    height: 560px;
    background: #1c2028;
    border-radius: 38px;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(58, 69, 83, 0.30), 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: rotate(-2deg);
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: 26px;
    padding: 22px 16px;
    overflow: hidden;
}
.mock-card {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
}
.mock-card-soft { opacity: .65; transform: scale(.97); }
.mock-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: .4px;
}
.mock-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate);
    margin-top: 4px;
}
.mock-meta {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--slate-soft);
}
.mock-price {
    background: var(--gold);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
}

/* ===================== Sections ===================== */
section { padding: 90px 0; }
.section-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--slate);
    text-align: center;
    letter-spacing: -0.5px;
}
.section-sub {
    text-align: center;
    color: var(--slate-soft);
    font-size: 17px;
    margin-top: 12px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== How it works ===================== */
.how {
    background: var(--bg);
}
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}
.how-col {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}
.how-pill {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-soft);
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
}
.how-steps { list-style: none; }
.how-steps li {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.how-steps li:last-child { border-bottom: none; }
.how-step-n {
    width: 32px;
    height: 32px;
    background: var(--gold-grad);
    color: var(--white);
    font-weight: 800;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 12px;
}
.how-steps h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 6px;
}
.how-steps p {
    color: var(--slate-soft);
    font-size: 15px;
}

/* ===================== Trust ===================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(204, 170, 89, .35);
}
.trust-ico {
    font-size: 30px;
    width: 56px;
    height: 56px;
    background: var(--gold-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.trust-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--slate);
}
.trust-card p {
    color: var(--slate-soft);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ===================== FAQ ===================== */
.faq {
    background: var(--bg);
}
.faq-list {
    max-width: 760px;
    margin: 50px auto 0;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: box-shadow .15s ease;
}
.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(204, 170, 89, .35);
}
.faq-item summary {
    padding: 18px 22px;
    font-weight: 700;
    color: var(--slate);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--gold-deep);
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
}
.faq-item[open] summary::after {
    content: '−';
    transform: scale(1.2);
}
.faq-body {
    padding: 0 22px 20px;
    color: var(--slate-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================== CTA Band ===================== */
.cta-band {
    background: var(--slate);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.cta-inner h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.cta-inner p {
    margin: 14px 0 28px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
}

/* ===================== Footer ===================== */
.site-footer {
    background: #1F242C;
    color: rgba(255, 255, 255, 0.72);
    padding: 60px 0 24px;
    font-size: 14.5px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    padding: 5px 0;
}
.footer-col a:hover { color: var(--white); opacity: 1; }
.brand-footer .brand-hunt { color: rgba(255, 255, 255, 0.85); }
.footer-tag {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: var(--gold); }

/* ===================== Responsive ===================== */
@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { order: -1; }
    .phone-mock { width: 250px; height: 500px; transform: rotate(0deg); }
    .how-grid { grid-template-columns: 1fr; gap: 24px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .site-nav a:not(.btn) { display: none; }
}
@media (max-width: 540px) {
    .trust-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    section { padding: 60px 0; }
    .hero { padding: 50px 0; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .footer-bottom { justify-content: center; text-align: center; }
}
