/* ============================================================
   JOBOOST — WELCOME PAGE DESIGN SYSTEM (v3)
   Concept: clean daylight — no dark sections anywhere. Green
   (JOboost's heritage color) carries the "boost" energy, blue
   plays trust/secondary accent. Light, airy, high-contrast text
   on white/near-white grounds throughout.
   ============================================================ */

:root {
    --ink: #101b2d;
    --paper: #ffffff;
    --paper-dim: #f3f6fa;
    --paper-tint: #eefaf3;
    --primary: #12b76a;
    --primary-dark: #0e9058;
    --accent: #2f6fed;
    --ink-text: #101b2d;
    --muted: #64748b;
    --line: rgba(16, 27, 45, 0.09);

    --font-display: "Unbounded", "Poppins", sans-serif;
    --font-body: "Plus Jakarta Sans", "Inter", sans-serif;

    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 50px -20px rgba(16, 27, 45, 0.18);
    --shadow-card: 0 10px 26px -12px rgba(16, 27, 45, 0.12);
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--ink-text);
    background:
        radial-gradient(circle, rgba(16, 27, 45, 0.05) 1px, transparent 1.4px) 0 0/22px 22px,
        var(--paper);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Soft ambient color washes reused across light sections for depth */
.wv3-blob-field { position: relative; isolation: isolate; overflow: hidden; }
.wv3-blob-field::before,
.wv3-blob-field::after {
    content: '';
    position: absolute;
    width: 42%;
    padding-bottom: 42%;
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
    pointer-events: none;
}
.wv3-blob-field::before {
    top: -12%;
    left: -8%;
    background: radial-gradient(closest-side, rgba(18,183,106,0.14), transparent 75%);
}
.wv3-blob-field::after {
    bottom: -14%;
    right: -6%;
    background: radial-gradient(closest-side, rgba(47,111,237,0.12), transparent 75%);
}

h1, h2, h3, .display {
    font-family: var(--font-display);
    text-wrap: balance;
    color: var(--ink);
    margin: 0;
}

p { line-height: 1.7; }
a { text-decoration: none; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

/* =========================
   HEADER
   ========================= */
.wv3-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}
.wv3-header.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 10px 0;
    box-shadow: 0 4px 20px -10px rgba(16,27,45,0.15);
    border-bottom-color: var(--line);
}
.wv3-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.wv3-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}
.wv3-logo img { height: 32px; width: 32px; border-radius: 8px; object-fit: cover; }
.wv3-nav { display: flex; align-items: center; gap: 28px; }
.wv3-nav a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.wv3-nav a:hover { color: var(--ink); }
.wv3-nav-actions { display: flex; align-items: center; gap: 10px; }
.wv3-mobile-btn {
    display: none;
    background: var(--paper-dim);
    border: none;
    color: var(--ink);
    width: 42px; height: 42px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
}
.wv3-mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 16px; right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    z-index: 99;
}
.wv3-mobile-menu.active { display: block; }
.wv3-mobile-menu nav { display: flex; flex-direction: column; gap: 14px; }
.wv3-mobile-menu a { color: var(--ink-text); font-size: 1rem; font-weight: 500; }

/* =========================
   BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 26px -10px rgba(18, 183, 106, 0.5);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 16px 32px -10px rgba(18, 183, 106, 0.6); }
.btn-ghost-light {
    background: var(--paper-dim);
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost-light:hover { background: #e7ecf3; }
.btn-outline-ink {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-outline-ink:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

/* =========================
   HERO
   ========================= */
.wv3-hero {
    position: relative;
    background: linear-gradient(180deg, var(--paper-tint) 0%, var(--paper) 65%);
    padding: 150px 24px 100px;
    overflow: hidden;
}
.wv3-hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 55%;
    height: 120%;
    background: radial-gradient(closest-side, rgba(18,183,106,0.16), transparent 70%),
                radial-gradient(closest-side, rgba(47,111,237,0.12), transparent 70%);
    transform: rotate(-10deg);
    pointer-events: none;
}
.wv3-hero-grid {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.wv3-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-text);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}
.wv3-hero-badge i { color: var(--accent); }
.wv3-hero h1 {
    color: var(--ink);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 20px;
}
.wv3-hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.wv3-hero-sub {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 540px;
    margin-bottom: 32px;
}
.wv3-hero-sub strong { color: var(--ink); }
.wv3-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.wv3-hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.wv3-stat-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.wv3-stat-label { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.wv3-stat-num.blue { color: var(--accent); }

/* Login card embedded in hero */
.wv3-login-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.wv3-login-card::before {
    content: '';
    position: absolute;
    top: -3px; left: 24px; right: 24px;
    height: 6px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.wv3-login-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.wv3-login-card .wv3-login-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; }
.wv3-field { margin-bottom: 16px; }
.wv3-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.wv3-field input[type="email"],
.wv3-field input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s;
}
.wv3-field input:focus { outline: none; border-color: var(--primary); }
.wv3-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.82rem;
}
.wv3-login-row label { display: flex; align-items: center; gap: 6px; color: var(--muted); cursor: pointer; }
.wv3-login-row a { color: var(--primary-dark); font-weight: 600; }
.wv3-login-signup { text-align: center; margin-top: 18px; font-size: 0.88rem; color: var(--muted); }
.wv3-login-signup a { color: var(--primary-dark); font-weight: 700; }
.wv3-login-error { background: #fde2e1; color: #8a1f1f; border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.85rem; margin-bottom: 16px; }

@media (max-width: 940px) {
    .wv3-hero-grid { grid-template-columns: 1fr; }
    .wv3-nav, .wv3-nav-actions .btn-ghost-light { display: none; }
    .wv3-mobile-btn { display: flex; align-items: center; justify-content: center; }
    .wv3-nav-actions .btn-primary { padding: 9px 16px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .wv3-header-inner { padding: 0 14px; gap: 10px; }
    .wv3-logo { font-size: 1rem; gap: 6px; }
    .wv3-logo img { height: 28px; width: 28px; }
    .wv3-nav-actions { gap: 6px; }
    .wv3-nav-actions .btn-primary { padding: 8px 12px; font-size: 0.72rem; }
    .wv3-mobile-btn { width: 36px; height: 36px; font-size: 1rem; flex-shrink: 0; }
}

/* =========================
   SECTION SCAFFOLDING
   ========================= */
.wv3-section { padding: 96px 24px; }
.wv3-section.dark { background: var(--paper-dim); }
.wv3-section-inner { max-width: 1200px; margin: 0 auto; }
.wv3-section-head { max-width: 640px; margin: 0 0 48px; }
.wv3-section-head.center { margin: 0 auto 48px; text-align: center; }
.wv3-section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 10px 0 12px; }
.wv3-section-head p { color: var(--muted); font-size: 1.02rem; }

/* =========================
   TICKER
   ========================= */
.wv3-ticker {
    background: var(--paper-dim);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.wv3-ticker-track { display: inline-flex; gap: 40px; animation: wv3-scroll 32s linear infinite; }
.wv3-ticker-track span { font-size: 0.88rem; color: var(--ink-text); }
.wv3-ticker-track span strong { color: var(--primary-dark); }
@keyframes wv3-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================
   EXPLAINER
   ========================= */
.wv3-explainer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
}
.wv3-explainer-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-sm);
    background: var(--paper-tint);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.wv3-explainer h2 { font-size: 1.3rem; margin-bottom: 10px; }
.wv3-explainer p { color: var(--muted); margin: 0 0 12px; }
@media (max-width: 640px) { .wv3-explainer { grid-template-columns: 1fr; } }

/* =========================
   FEATURE CARDS
   ========================= */
.wv3-grid { display: grid; gap: 24px; }
.wv3-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wv3-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.wv3-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.wv3-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1080px) {
    .wv3-grid.cols-3, .wv3-grid.cols-4, .wv3-grid.cols-5, .wv3-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .wv3-grid.cols-3, .wv3-grid.cols-4, .wv3-grid.cols-5, .wv3-grid.cols-6 { grid-template-columns: 1fr; }
}

.wv3-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wv3-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.wv3-card-top {
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: var(--line);
    transition: background 0.25s ease;
}
.wv3-card:hover .wv3-card-top { background: var(--primary); }
.wv3-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--paper-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 18px;
}
.wv3-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.wv3-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* =========================
   STEPS
   ========================= */
.wv3-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .wv3-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wv3-steps { grid-template-columns: 1fr; } }
.wv3-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
    counter-increment: step;
}
.wv3-step::before {
    content: counter(step);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 14px;
}
.wv3-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.wv3-step p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* =========================
   PAYMENT COUNTRIES
   ========================= */
.wv3-country { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.wv3-country-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wv3-country-flag { font-size: 1.5rem; }
.wv3-country-head h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin: 0; color: var(--ink); }
.wv3-country-methods { display: flex; flex-wrap: wrap; gap: 6px; }
.wv3-country-methods span {
    font-size: 0.74rem;
    background: var(--paper-dim);
    color: var(--ink-text);
    padding: 4px 9px;
    border-radius: 999px;
}

/* =========================
   SERVICE / PRICE CARDS
   ========================= */
.wv3-price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.wv3-price-badge {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--paper-tint);
    color: var(--primary-dark);
}
.wv3-price-badge.usd { background: rgba(47,111,237,0.12); color: var(--accent); }
.wv3-price-amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.wv3-price-card .wv3-min { color: var(--muted); font-size: 0.82rem; }

/* =========================
   PLATFORM CARDS
   ========================= */
.wv3-platform-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.wv3-platform-card .icon { font-size: 1.6rem; margin-bottom: 12px; color: var(--ink); }
.wv3-platform-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.wv3-platform-card p { color: var(--muted); font-size: 0.88rem; margin: 0 0 14px; }
.wv3-platform-card a { font-weight: 700; font-size: 0.86rem; }
.wv3-platform-card.cta {
    background: var(--ink);
    color: #fff;
    display: flex; flex-direction: column; justify-content: center;
}
.wv3-platform-card.cta h3, .wv3-platform-card.cta p { color: #fff; }
.wv3-platform-card.cta p { opacity: 0.75; }

/* =========================
   TESTIMONIALS
   ========================= */
.wv3-testi-wrap { max-width: 720px; margin: 0 auto; position: relative; }
.wv3-testi-slide { display: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.wv3-testi-slide.active { display: block; }
.wv3-testi-slide i.quote { font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; }
.wv3-testi-slide p.text { font-size: 1.1rem; color: var(--ink-text); margin-bottom: 20px; }
.wv3-testi-author { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.wv3-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-family: var(--font-display); font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.wv3-testi-name { font-weight: 700; font-size: 0.92rem; }
.wv3-testi-role { color: var(--muted); font-size: 0.8rem; }
.wv3-testi-result {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--paper-dim); padding: 8px 16px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 700;
}
.wv3-testi-result .before { color: var(--muted); font-weight: 500; }
.wv3-testi-result .after { color: var(--primary-dark); }
.wv3-testi-controls { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.wv3-testi-controls button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.wv3-testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.wv3-testi-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; }
.wv3-testi-dots span.active { background: var(--primary); }

/* =========================
   FAQ
   ========================= */
.wv3-faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wv3-faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.wv3-faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
    color: var(--ink); text-align: left; gap: 16px;
}
.wv3-faq-q i.arrow { transition: transform 0.25s; color: var(--muted); flex-shrink: 0; }
.wv3-faq-item.open .wv3-faq-q i.arrow { transform: rotate(180deg); }
.wv3-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.wv3-faq-item.open .wv3-faq-a { max-height: 300px; }
.wv3-faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 0.92rem; margin: 0; }

/* =========================
   FINAL CTA
   ========================= */
.wv3-final { text-align: center; }
.wv3-final h2 { color: var(--ink); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 16px 0; }
.wv3-final p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.wv3-final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.wv3-final-guarantees { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.wv3-final-guarantees span { color: var(--muted); font-size: 0.85rem; }
.wv3-final-guarantees i { color: var(--primary); margin-right: 6px; }

/* =========================
   CONTACT
   ========================= */
.wv3-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 760px) { .wv3-contact-cards { grid-template-columns: 1fr; } }
.wv3-contact-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; }
.wv3-contact-card .icon { font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; }
.wv3-contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.wv3-contact-card a, .wv3-contact-card p { color: var(--muted); font-size: 0.9rem; }
.wv3-social { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.wv3-social a {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--paper-dim); color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.wv3-social a:hover { background: var(--primary); color: #fff; }

/* =========================
   REVEAL ANIMATION
   ========================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .wv3-ticker-track { animation: none; }
}

/* =========================
   STICKY MOBILE CTA
   ========================= */
.wv3-sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 14px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 90;
    display: none;
    box-shadow: 0 -8px 24px -12px rgba(16,27,45,0.15);
}
.wv3-sticky-cta.visible { transform: translateY(0); }
@media (max-width: 760px) { .wv3-sticky-cta { display: block; } }
