:root {
    --navy: #0b1220;
    --navy-2: #111a2e;
    --ink: #152033;
    --muted: #647086;
    --line: #e7ebf2;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --purple: #6d4aff;
    --green: #18a66b;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 20px 60px rgba(17, 26, 46, .08);
    --shadow-nav: 0 12px 40px rgba(17, 26, 46, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-nav);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 166px; height: auto; }

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex: 1;
}
.nav-links, .nav-actions { display: flex; align-items: center; gap: 24px; }

.nav-links a, .login-link {
    position: relative;
    color: #4d5a70;
    font-size: 14px;
    font-weight: 650;
    transition: color .18s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}
.nav-links a:hover, .nav-links a:focus-visible,
.login-link:hover, .login-link:focus-visible { color: var(--navy); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

.signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(11, 18, 32, .14);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.signup-button:hover, .signup-button:focus-visible {
    background: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, .2);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--navy);
    transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 13% 22%, rgba(37,99,235,.11), transparent 25%),
        radial-gradient(circle at 89% 52%, rgba(109,74,255,.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .42;
    background-image:
        linear-gradient(rgba(37,99,235,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-glow {
    position: absolute;
    z-index: -2;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}
.hero-glow-one {
    width: 340px;
    height: 340px;
    left: -180px;
    top: 210px;
    background: rgba(37,99,235,.08);
}
.hero-glow-two {
    width: 420px;
    height: 420px;
    right: -200px;
    top: 90px;
    background: rgba(109,74,255,.07);
}

.hero-inner {
    width: min(1240px, calc(100% - 40px));
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: 48px;
    padding: 78px 0 48px;
}

.hero-copy { position: relative; z-index: 3; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
}
.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(24,166,107,.10);
}

.hero-copy h1 {
    max-width: 680px;
    margin: 22px 0 22px;
    color: var(--navy);
    font-size: clamp(48px, 5.7vw, 82px);
    line-height: .96;
    letter-spacing: -.065em;
}
.hero-copy h1 span {
    display: block;
    background: linear-gradient(100deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-description {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 21px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 750;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 15px 34px rgba(37,99,235,.22);
}
.button-primary:hover, .button-primary:focus-visible {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 19px 40px rgba(37,99,235,.27);
}
.button-secondary {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--line);
    color: var(--navy);
    box-shadow: 0 10px 28px rgba(17,26,46,.04);
}
.button-secondary:hover, .button-secondary:focus-visible {
    transform: translateY(-2px);
    border-color: #d7deeb;
    box-shadow: 0 16px 32px rgba(17,26,46,.08);
}
.button-arrow { font-size: 20px; line-height: 1; }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}
.proof-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5f6c80;
    font-size: 12px;
    font-weight: 650;
}
.proof-icon {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: rgba(24,166,107,.11);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
}
.visual-orbit {
    position: absolute;
    border: 1px solid rgba(37,99,235,.10);
    border-radius: 50%;
    pointer-events: none;
}
.orbit-one { width: 610px; height: 610px; }
.orbit-two { width: 480px; height: 480px; border-color: rgba(109,74,255,.09); }

.dashboard-card {
    position: relative;
    z-index: 2;
    width: min(560px, 90%);
    overflow: hidden;
    border: 1px solid rgba(220,226,237,.95);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 35px 90px rgba(17,26,46,.16), 0 6px 24px rgba(37,99,235,.06);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform .4s ease, box-shadow .4s ease;
}
.dashboard-card:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-4px);
    box-shadow: 0 42px 105px rgba(17,26,46,.19), 0 8px 30px rgba(37,99,235,.08);
}
.dashboard-topbar {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    color: #718096;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}
.window-dots { display: flex; gap: 5px; margin-right: 4px; }
.window-dots i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #dce2ec;
}
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(24,166,107,.08);
    color: var(--green);
    font-size: 10px;
}
.live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.dashboard-content { padding: 24px; }
.profile-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
    background: linear-gradient(135deg, #e9f0ff, #f0ebff);
    color: var(--blue);
    font-size: 18px;
    font-weight: 850;
}
.profile-copy { display: grid; gap: 3px; }
.profile-copy small { color: #8a95a6; font-size: 10px; font-weight: 650; }
.profile-copy strong { color: var(--navy); font-size: 14px; }
.profile-menu {
    margin-left: auto;
    color: #a1aabd;
    letter-spacing: 2px;
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}
.dash-stat {
    padding: 15px;
    border: 1px solid #edf0f5;
    border-radius: 16px;
    background: #fbfcfe;
}
.dash-stat-label {
    display: block;
    color: #7b8798;
    font-size: 10px;
    font-weight: 700;
}
.dash-stat strong {
    display: block;
    margin: 5px 0 10px;
    color: var(--navy);
    font-size: 22px;
    letter-spacing: -.03em;
}
.progress {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8edf5;
}
.progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
}
.progress.purple i { background: var(--purple); }

.dashboard-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 11px;
}
.dashboard-section-heading strong { color: var(--navy); font-size: 12px; }
.dashboard-section-heading span { color: var(--blue); font-size: 10px; font-weight: 750; }

.mini-job-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px;
    margin-top: 9px;
    border: 1px solid #edf0f5;
    border-radius: 14px;
    background: #fff;
}
.mini-company {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    background: #eef4ff;
    color: var(--blue);
    font-size: 10px;
    font-weight: 850;
}
.purple-company { background: #f1edff; color: var(--purple); }
.mini-job-copy { display: grid; gap: 3px; min-width: 0; }
.mini-job-copy strong {
    overflow: hidden;
    color: var(--navy);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mini-job-copy span { color: #8792a4; font-size: 9px; }
.mini-arrow { margin-left: auto; color: #9ca8ba; font-size: 16px; }

.float-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 215px;
    padding: 12px;
    border: 1px solid rgba(226,231,240,.95);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 50px rgba(17,26,46,.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: float-card 5s ease-in-out infinite;
}
.float-card strong, .float-card small { display: block; }
.float-card strong { color: var(--navy); font-size: 11px; }
.float-card small { margin-top: 3px; color: #7c8899; font-size: 9px; }
.float-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    font-weight: 900;
}
.float-icon-blue { background: #edf4ff; color: var(--blue); }
.float-icon-green { background: #eaf9f2; color: var(--green); }
.float-card-job { top: 82px; right: 0; }
.float-card-training { bottom: 102px; left: -5px; animation-delay: -2s; }

.visual-badge {
    position: absolute;
    z-index: 4;
    right: 5px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    border: 1px solid rgba(226,231,240,.95);
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 42px rgba(17,26,46,.10);
}
.badge-check {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(24,166,107,.10);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}
.visual-badge strong, .visual-badge small { display: block; }
.visual-badge strong { color: var(--navy); font-size: 10px; }
.visual-badge small { margin-top: 2px; color: #8792a4; font-size: 9px; }

.hero-bottom {
    padding-bottom: 22px;
}
.hero-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dfe5ef 15%, #dfe5ef 85%, transparent);
}
.hero-bottom-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    color: #8a95a6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}
.bottom-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
}

.after-hero-placeholder {
    padding: 110px 0;
    background: #fff;
    text-align: center;
}
.section-kicker {
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
}
.after-hero-placeholder h2 {
    max-width: 700px;
    margin: 14px auto 12px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -.05em;
}
.after-hero-placeholder p {
    max-width: 650px;
    margin: auto;
    color: var(--muted);
    line-height: 1.7;
}

:focus-visible {
    outline: 3px solid rgba(37,99,235,.35);
    outline-offset: 3px;
}

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

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 62px;
    }
    .hero-copy { text-align: center; }
    .hero-copy h1, .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-visual { min-height: 560px; }
}

@media (max-width: 1040px) {
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 13px; }
    .primary-nav { gap: 18px; }
}

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .primary-nav {
        position: fixed;
        inset: 76px 0 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 18px 20px 28px;
        background: rgba(255,255,255,.98);
        border-top: 1px solid var(--line);
        overflow-y: auto;
    }
    .primary-nav.is-open { display: flex; }
    .nav-links, .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-links a, .login-link, .signup-button {
        min-height: 52px;
        display: flex;
        align-items: center;
        padding: 0 4px;
        border-bottom: 1px solid var(--line);
    }
    .nav-links a::after { display: none; }
    .nav-actions { margin-top: 10px; }
    .signup-button { justify-content: center; border: 0; margin-top: 8px; }
}

@media (max-width: 700px) {
    .hero-inner { padding-top: 48px; }
    .hero-copy h1 { font-size: clamp(44px, 12vw, 66px); }
    .hero-description { font-size: 16px; }
    .hero-visual { min-height: 470px; margin-top: 8px; }
    .dashboard-card { width: min(520px, 94%); }
    .orbit-one { width: 480px; height: 480px; }
    .orbit-two { width: 380px; height: 380px; }
    .float-card-job { right: -2px; top: 45px; }
    .float-card-training { left: 0; bottom: 55px; }
    .visual-badge { right: 0; bottom: 2px; }
    .hero-bottom-copy { flex-wrap: wrap; text-align: center; }
}

@media (max-width: 560px) {
    .container, .hero-inner { width: min(100% - 28px, 1240px); }
    .nav-wrap { min-height: 68px; }
    .primary-nav { inset: 68px 0 0; }
    .brand img { width: 148px; }
    .hero { min-height: auto; }
    .hero-inner { padding-bottom: 24px; }
    .hero-copy h1 { font-size: clamp(39px, 13vw, 57px); }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 9px; }
    .hero-visual { min-height: 410px; }
    .dashboard-card { width: 100%; border-radius: 20px; }
    .dashboard-content { padding: 17px; }
    .dashboard-topbar { padding: 0 13px; }
    .float-card { width: 174px; padding: 9px; }
    .float-card strong { font-size: 9px; }
    .float-card small { font-size: 8px; }
    .float-card-job { top: 18px; right: -4px; }
    .float-card-training { left: -4px; bottom: 37px; }
    .float-icon { width: 29px; height: 29px; }
    .visual-badge { display: none; }
    .orbit-one { width: 360px; height: 360px; }
    .orbit-two { width: 300px; height: 300px; }
    .after-hero-placeholder { padding: 80px 0; }
}


/* =========================
   BATCH 3 — VALUE SECTION
   ========================= */

.value-section {
    position: relative;
    padding: 112px 0 120px;
    background: #fff;
    overflow: hidden;
}

.value-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -300px;
    top: 120px;
    border-radius: 50%;
    background: rgba(109, 74, 255, .055);
    filter: blur(4px);
    pointer-events: none;
}

.section-heading {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 46px;
}

.section-heading h2 {
    max-width: 720px;
    margin: 13px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -.055em;
}

.section-heading p {
    max-width: 470px;
    margin: 0 0 4px auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.value-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.value-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #e9edf4;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(17, 26, 46, .035);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: #dce3ef;
    box-shadow: 0 22px 55px rgba(17, 26, 46, .09);
}

.value-card-featured {
    background: linear-gradient(145deg, #f8fbff 0%, #f2f6ff 100%);
    border-color: #dce8ff;
}

.value-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.value-number {
    color: #a1acbc;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
}

.value-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 900;
}

.icon-blue { background: #eaf2ff; color: var(--blue); }
.icon-purple { background: #f0ecff; color: var(--purple); }
.icon-green { background: #eaf9f2; color: var(--green); }
.icon-dark { background: #edf0f5; color: var(--navy); }

.value-card h3 {
    margin: 48px 0 11px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.value-card p {
    margin: 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}

.value-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.value-link span {
    color: var(--blue);
    font-size: 16px;
    transition: transform .18s ease;
}

.value-link:hover span { transform: translateX(3px); }

.legacy-journey-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 60px;
    align-items: center;
    margin-top: 70px;
    padding: 54px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 15%, rgba(109, 74, 255, .16), transparent 34%),
        radial-gradient(circle at 15% 90%, rgba(37, 99, 235, .16), transparent 32%),
        var(--navy);
    box-shadow: 0 30px 80px rgba(11, 18, 32, .14);
}

.legacy-journey-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(90deg, transparent, black 35%, black 80%, transparent);
    pointer-events: none;
}

.legacy-journey-copy, .legacy-journey-steps { position: relative; z-index: 1; }

.legacy-journey-copy .section-kicker { color: #8fb4ff; }

.legacy-journey-copy h3 {
    max-width: 480px;
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -.055em;
}

.legacy-journey-copy p {
    max-width: 490px;
    margin: 0 0 26px;
    color: #aeb9cc;
    font-size: 14px;
    line-height: 1.75;
}

.legacy-journey-copy .button { min-height: 48px; padding-inline: 18px; }

.legacy-journey-steps { display: grid; gap: 0; }

.legacy-journey-step {
    display: grid;
    grid-template-columns: 44px 1px minmax(0, 1fr);
    gap: 15px;
    min-height: 104px;
}

.legacy-step-index {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    color: #8f9cb0;
    font-size: 10px;
    font-weight: 850;
}

.legacy-journey-step.active .legacy-step-index {
    border-color: rgba(143,180,255,.35);
    background: rgba(37,99,235,.18);
    color: #b9d0ff;
}

.legacy-step-line {
    position: relative;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.10);
}

.legacy-journey-step:last-child .legacy-step-line { visibility: hidden; }

.legacy-journey-step strong {
    display: block;
    padding-top: 2px;
    color: #fff;
    font-size: 15px;
}

.legacy-journey-step span {
    display: block;
    margin-top: 6px;
    color: #8996aa;
    font-size: 11px;
    line-height: 1.5;
}

.free-account-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    color: #758196;
    text-align: center;
}

.note-check {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(24,166,107,.10);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.free-account-note strong,
.free-account-note span {
    display: inline;
    font-size: 12px;
}

.free-account-note strong { color: var(--navy); }
.free-account-note span { margin-left: 5px; }

@media (max-width: 1050px) {
    .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .value-card { min-height: 300px; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .section-heading p { margin-left: 0; }
}

@media (max-width: 760px) {
    .value-section { padding: 82px 0 90px; }
    .value-grid { grid-template-columns: 1fr; }
    .value-card { min-height: 270px; }
    .value-card h3 { margin-top: 34px; }
    .journey-panel {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 52px;
        padding: 34px 26px;
        border-radius: 23px;
    }
}

@media (max-width: 560px) {
    .section-heading h2 { font-size: clamp(35px, 11vw, 48px); }
    .value-card { padding: 21px; border-radius: 19px; }
    .journey-copy h3 { font-size: 39px; }
    .free-account-note { align-items: flex-start; text-align: left; }
    .free-account-note strong,
    .free-account-note span { display: block; margin-left: 0; }
    .free-account-note span { margin-top: 3px; }
}


/* =========================
   BATCH 4 — FEATURED JOBS
   ========================= */

.jobs-section {
    position: relative;
    padding: 116px 0 120px;
    background: #f7f9fc;
    overflow: hidden;
}

.jobs-section::before {
    content: "";
    position: absolute;
    left: -240px;
    top: 180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .045);
    filter: blur(6px);
    pointer-events: none;
}

.jobs-section-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.jobs-section-head h2 {
    max-width: 700px;
    margin: 13px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1;
    letter-spacing: -.055em;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #dfe5ef;
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(17, 26, 46, .035);
    white-space: nowrap;
}

.text-button span {
    color: var(--blue);
    font-size: 16px;
}

.jobs-toolbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.jobs-filter-pills {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.job-pill {
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid #e0e6ef;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #667389;
    font: inherit;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    transition: .18s ease;
}

.job-pill:hover {
    border-color: #cbd7e8;
    color: var(--navy);
}

.job-pill.active {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.jobs-count {
    color: #8a95a7;
    font-size: 11px;
    white-space: nowrap;
}

.jobs-count strong {
    color: var(--navy);
}

.jobs-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.job-card {
    display: flex;
    min-height: 445px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #e3e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(17, 26, 46, .045);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    border-color: #d4ddea;
    box-shadow: 0 24px 60px rgba(17, 26, 46, .09);
}

.job-card-dark {
    border-color: #1f2b41;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 22px 55px rgba(11, 18, 32, .16);
}

.job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef3ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
}

.job-card-dark .company-mark {
    background: rgba(255,255,255,.09);
    color: #b9caff;
}

.job-status {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: #edf3ff;
    color: var(--blue);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.job-status.light {
    background: rgba(255,255,255,.08);
    color: #b9caff;
}

.job-status.green {
    background: #eaf8f1;
    color: var(--green);
}

.job-meta-row {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 30px;
    color: #7c889b;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.job-card-dark .job-meta-row {
    color: #8290a6;
}

.job-card h3 {
    margin: 11px 0 11px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.job-card-dark h3 {
    color: #fff;
}

.job-card p {
    margin: 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}

.job-card-dark p {
    color: #9ca9bc;
}

.job-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.job-tags span {
    padding: 7px 9px;
    border: 1px solid #e5eaf1;
    border-radius: 8px;
    color: #6d788a;
    background: #fbfcfe;
    font-size: 9px;
    font-weight: 750;
}

.job-card-dark .job-tags span {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: #9aa7ba;
}

.job-card-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #edf0f5;
}

.job-card-dark .job-card-bottom {
    border-top-color: rgba(255,255,255,.09);
}

.job-card-bottom small {
    display: block;
    margin-bottom: 5px;
    color: #929dad;
    font-size: 9px;
    font-weight: 750;
}

.job-card-bottom strong {
    display: block;
    color: var(--navy);
    font-size: 12px;
}

.job-card-dark .job-card-bottom strong {
    color: #fff;
}

.job-card-bottom a {
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.job-card-bottom a span {
    display: inline-block;
    margin-left: 3px;
    font-size: 15px;
    transition: transform .18s ease;
}

.job-card-bottom a:hover span {
    transform: translateX(3px);
}

.jobs-trust-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    background: #e1e7ef;
}

.jobs-trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 82px;
    padding: 16px 20px;
    background: rgba(255,255,255,.92);
}

.trust-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #19a96c;
    box-shadow: 0 0 0 5px rgba(25,169,108,.08);
}

.jobs-trust-item strong {
    display: block;
    color: var(--navy);
    font-size: 11px;
}

.jobs-trust-item span:last-child {
    display: block;
    margin-top: 3px;
    color: #8a95a7;
    font-size: 9px;
}

.job-card.is-hidden {
    display: none;
}

@media (max-width: 950px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        min-height: 390px;
    }

    .jobs-trust-strip {
        grid-template-columns: 1fr;
    }

    .jobs-trust-item {
        min-height: 68px;
    }
}

@media (max-width: 700px) {
    .jobs-section {
        padding: 86px 0 90px;
    }

    .jobs-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .jobs-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .jobs-count {
        order: -1;
    }
}

@media (max-width: 520px) {
    .job-card {
        padding: 21px;
        border-radius: 20px;
    }

    .job-card h3 {
        font-size: 22px;
    }

    .jobs-filter-pills {
        width: 100%;
    }

    .job-pill {
        flex: 1 1 auto;
    }
}


/* =========================
   BATCH 5 — PROGRAMS & PRICING
   ========================= */

.programs-section {
    position: relative;
    padding: 116px 0 120px;
    background: #fff;
    overflow: hidden;
}

.programs-section::after {
    content: "";
    position: absolute;
    right: -260px;
    bottom: 160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(24, 166, 107, .045);
    filter: blur(5px);
    pointer-events: none;
}

.programs-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 44px;
}

.programs-head h2 {
    max-width: 700px;
    margin: 13px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1;
    letter-spacing: -.055em;
}

.programs-head p {
    max-width: 440px;
    margin: 0 0 3px auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.program-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.program-card {
    position: relative;
    display: flex;
    min-height: 560px;
    flex-direction: column;
    padding: 27px;
    border: 1px solid #e5e9f0;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(17, 26, 46, .045);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: #d5ddea;
    box-shadow: 0 25px 65px rgba(17, 26, 46, .095);
}

.program-card-featured {
    border-color: #cddaff;
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .10), transparent 36%),
        #f8fbff;
    box-shadow: 0 25px 65px rgba(37, 99, 235, .11);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
    white-space: nowrap;
    box-shadow: 0 7px 18px rgba(37, 99, 235, .22);
}

.program-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-label {
    color: #7f8a9d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.program-index {
    color: #b2bac7;
    font-size: 10px;
    font-weight: 850;
}

.program-card h3 {
    margin: 34px 0 12px;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.program-description {
    min-height: 74px;
    margin: 0;
    color: #738095;
    font-size: 13px;
    line-height: 1.7;
}

.program-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-top: 29px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9edf3;
}

.program-price .currency {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
}

.program-price strong {
    color: var(--navy);
    font-size: 43px;
    line-height: 1;
    letter-spacing: -.055em;
}

.price-note {
    margin-left: 5px;
    color: #9aa4b3;
    font-size: 10px;
    font-weight: 700;
}

.program-features {
    display: grid;
    gap: 13px;
    margin: 25px 0 28px;
    padding: 0;
    list-style: none;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f6b7e;
    font-size: 11px;
    line-height: 1.45;
}

.program-features li span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.program-features li.muted {
    color: #a3acb9;
}

.program-features li.muted span {
    color: #adb5c0;
}

.program-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    padding: 0 17px;
    border: 1px solid #dce2eb;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.program-button span {
    font-size: 15px;
}

.program-button:hover {
    transform: translateY(-2px);
}

.program-button.secondary {
    background: #fff;
    color: var(--navy);
}

.program-button.secondary:hover {
    box-shadow: 0 9px 24px rgba(17, 26, 46, .08);
}

.program-button.primary {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .18);
}

.program-button.primary:hover {
    box-shadow: 0 14px 30px rgba(37, 99, 235, .25);
}

.program-trust-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 17px;
    overflow: hidden;
    border: 1px solid #e4e9f0;
    border-radius: 18px;
    background: #e4e9f0;
}

.program-trust-row > div {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 80px;
    padding: 15px 19px;
    background: #fbfcfe;
}

.program-trust-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    background: #eaf8f1;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.program-trust-row strong {
    display: block;
    color: var(--navy);
    font-size: 10px;
}

.program-trust-row span:last-child {
    display: block;
    margin-top: 3px;
    color: #8994a5;
    font-size: 9px;
    line-height: 1.4;
}

.referral-banner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 50px;
    padding: 28px 31px;
    overflow: hidden;
    border-radius: 23px;
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 74, 255, .22), transparent 38%),
        linear-gradient(115deg, #111a2e, #0b1220);
    box-shadow: 0 25px 65px rgba(11, 18, 32, .14);
}

.referral-banner::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: -95px;
    bottom: -120px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.referral-mark {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 17px;
    background: rgba(255,255,255,.07);
    color: #a7c1ff;
    font-size: 23px;
    font-weight: 850;
}

.referral-copy {
    position: relative;
    z-index: 1;
}

.referral-copy .section-kicker {
    color: #8fb4ff;
    font-size: 9px;
}

.referral-copy h3 {
    margin: 6px 0 5px;
    color: #fff;
    font-size: 21px;
    letter-spacing: -.025em;
}

.referral-copy p {
    margin: 0;
    color: #9ca8bb;
    font-size: 11px;
    line-height: 1.6;
}

.referral-copy strong {
    color: #d5e1ff;
}

.program-button.light {
    position: relative;
    z-index: 1;
    border-color: rgba(255,255,255,.13);
    background: #fff;
    color: var(--navy);
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        min-height: 0;
    }

    .program-description {
        min-height: 0;
    }

    .program-trust-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .programs-section {
        padding: 86px 0 90px;
    }

    .programs-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .programs-head p {
        margin-left: 0;
    }

    .referral-banner {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 25px;
    }

    .referral-mark {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .referral-banner .program-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 500px) {
    .program-card {
        padding: 22px;
        border-radius: 20px;
    }

    .program-card h3 {
        font-size: 24px;
    }

    .program-price strong {
        font-size: 38px;
    }

    .referral-banner {
        padding: 22px;
        border-radius: 20px;
    }
}


/* =========================
   BATCH 6 — JOURNEY + DASHBOARD
   ========================= */

.journey-section {
    position: relative;
    padding: 120px 0 125px;
    background: #f7f9fc;
    overflow: hidden;
}

.journey-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -190px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .055);
    pointer-events: none;
}

.journey-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 58px;
}

.journey-heading h2 {
    margin: 13px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 4.7vw, 61px);
    line-height: .98;
    letter-spacing: -.058em;
}

.journey-heading h2 span {
    color: var(--blue);
}

.journey-heading > p {
    max-width: 425px;
    margin: 0 0 4px auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.journey-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
    align-items: stretch;
}

.journey-step {
    position: relative;
    min-width: 0;
    padding: 27px 21px 25px;
    border: 1px solid #e3e8f0;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 35px rgba(17, 26, 46, .045);
}

.step-number {
    position: absolute;
    top: 17px;
    right: 19px;
    color: #b6beca;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.step-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid #dce5f8;
    border-radius: 12px;
    background: #f3f7ff;
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
}

.journey-step:nth-of-type(3) .step-icon {
    background: #eefaf4;
    border-color: #d6eee2;
    color: var(--green);
}

.journey-step:nth-of-type(5) .step-icon {
    background: #f5f1ff;
    border-color: #e5ddfb;
    color: #7354d9;
}

.journey-step:nth-of-type(7) .step-icon {
    background: #fff8e9;
    border-color: #f6e8c2;
    color: #b47a16;
}

.journey-step h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.journey-step p {
    min-height: 94px;
    margin: 0;
    color: #788498;
    font-size: 11px;
    line-height: 1.65;
}

.journey-step a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 850;
}

.journey-step a span {
    color: var(--blue);
    font-size: 14px;
    transition: transform .18s ease;
}

.journey-step a:hover span {
    transform: translateX(3px);
}

.journey-line {
    align-self: center;
    height: 1px;
    background: #d7dee8;
}

.dashboard-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    gap: 56px;
    align-items: center;
    margin-top: 85px;
    padding: 67px 62px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(66, 119, 255, .18), transparent 32%),
        linear-gradient(125deg, #111a2e 0%, #0d1527 100%);
    box-shadow: 0 30px 80px rgba(11, 18, 32, .15);
}

.dashboard-copy {
    position: relative;
    z-index: 2;
}

.dashboard-copy .section-kicker {
    color: #8eb2ff;
}

.dashboard-copy h3 {
    margin: 14px 0 17px;
    color: #fff;
    font-size: clamp(31px, 3.4vw, 46px);
    line-height: .98;
    letter-spacing: -.055em;
}

.dashboard-copy h3 span {
    color: #8eb2ff;
}

.dashboard-copy > p {
    max-width: 430px;
    margin: 0;
    color: #9ca8bb;
    font-size: 12px;
    line-height: 1.75;
}

.dashboard-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 15px;
    margin: 31px 0 29px;
}

.dashboard-points > div {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.dashboard-points > div > span {
    color: #71809a;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.7;
}

.dashboard-points p {
    margin: 0;
    color: #8794aa;
    font-size: 9px;
    line-height: 1.5;
}

.dashboard-points strong {
    color: #e4eaf4;
    font-size: 10px;
}

.dashboard-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 47px;
    padding: 0 17px;
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    font-size: 10px;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease;
}

.dashboard-cta span {
    color: var(--blue);
    font-size: 14px;
}

.dashboard-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.dashboard-mockup {
    min-width: 0;
    perspective: 1200px;
}

.mock-browser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: #f7f9fc;
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
    transform: rotateY(-3deg) rotateX(1deg);
}

.mock-browser-bar {
    height: 33px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 13px;
    border-bottom: 1px solid #e1e6ee;
    background: #fff;
    color: #9aa4b3;
    font-size: 7px;
}

.mock-dots {
    display: flex;
    gap: 4px;
}

.mock-dots i {
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: #cfd5df;
}

.mock-layout {
    display: grid;
    grid-template-columns: 126px 1fr;
    min-height: 330px;
}

.mock-sidebar {
    padding: 17px 10px;
    border-right: 1px solid #e1e6ee;
    background: #fff;
}

.mock-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 6px 24px;
    color: #16213a;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .04em;
}

.mock-brand-mark {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: #16213a;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.mock-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 3px 0;
    padding: 8px 7px;
    border-radius: 7px;
    color: #8490a3;
    font-size: 7px;
    font-weight: 700;
}

.mock-nav b {
    width: 11px;
    color: #9aa5b6;
    font-size: 9px;
    text-align: center;
}

.mock-nav.active {
    background: #edf3ff;
    color: #2d62d7;
}

.mock-nav.active b {
    color: #2d62d7;
}

.mock-main {
    padding: 17px 18px 20px;
    background: #f7f9fc;
}

.mock-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.mock-welcome span {
    display: block;
    color: #9aa4b3;
    font-size: 5px;
    font-weight: 900;
    letter-spacing: .08em;
}

.mock-welcome strong {
    display: block;
    margin-top: 4px;
    color: #17213a;
    font-size: 10px;
}

.mock-avatar {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e4edff;
    color: #3c69ce;
    font-size: 8px;
    font-weight: 900;
}

.mock-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.mock-stat {
    padding: 10px;
    border: 1px solid #e3e8ef;
    border-radius: 9px;
    background: #fff;
}

.mock-stat span {
    display: block;
    color: #a0a9b7;
    font-size: 5px;
    font-weight: 900;
}

.mock-stat strong {
    display: block;
    margin: 5px 0 2px;
    color: #17213a;
    font-size: 17px;
    letter-spacing: -.04em;
}

.mock-stat small {
    color: #8b96a7;
    font-size: 5px;
}

.mock-content-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 7px;
    margin-top: 7px;
}

.mock-panel {
    min-height: 120px;
    padding: 11px;
    border: 1px solid #e3e8ef;
    border-radius: 9px;
    background: #fff;
}

.mock-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mock-panel-head strong {
    color: #26334b;
    font-size: 7px;
}

.mock-panel-head span {
    color: #4a78d8;
    font-size: 5px;
    font-weight: 800;
}

.mock-job-row {
    display: grid;
    grid-template-columns: 16px 1fr auto;
    gap: 7px;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eef1f5;
}

.mock-job-row > i {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: #eef3ff;
}

.mock-job-row strong {
    display: block;
    color: #38455c;
    font-size: 6px;
}

.mock-job-row small {
    display: block;
    margin-top: 2px;
    color: #9aa4b3;
    font-size: 5px;
}

.mock-job-row em {
    color: #4a78d8;
    font-size: 5px;
    font-style: normal;
    font-weight: 800;
}

.progress-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-panel .mock-panel-head {
    width: 100%;
}

.mock-progress-ring {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 3px 0 7px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #fff 56%, transparent 57%),
        conic-gradient(#3c70e1 0 72%, #e8edf4 72% 100%);
}

.mock-progress-ring span {
    color: #25334d;
    font-size: 10px;
    font-weight: 900;
}

.progress-panel > small {
    color: #9aa4b3;
    font-size: 5px;
}

.journey-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 920px;
    margin: 21px auto 0;
    padding: 0 8px;
}

.journey-note > span {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #d8e0ec;
    border-radius: 50%;
    color: #7d8a9e;
    font-size: 9px;
    font-weight: 900;
}

.journey-note p {
    margin: 1px 0 0;
    color: #8792a3;
    font-size: 9px;
    line-height: 1.6;
}

.journey-note strong {
    color: #59667b;
}

@media (max-width: 1100px) {
    .journey-steps {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .journey-line {
        display: none;
    }

    .dashboard-showcase {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .dashboard-copy > p {
        max-width: 600px;
    }
}

@media (max-width: 760px) {
    .journey-section {
        padding: 90px 0 95px;
    }

    .journey-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 40px;
    }

    .journey-heading > p {
        margin-left: 0;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .journey-step p {
        min-height: 0;
    }

    .dashboard-showcase {
        margin-top: 60px;
        padding: 38px 25px;
        border-radius: 24px;
    }

    .dashboard-points {
        grid-template-columns: 1fr;
    }

    .mock-browser {
        transform: none;
    }

    .mock-layout {
        grid-template-columns: 94px 1fr;
    }

    .mock-sidebar {
        padding: 13px 7px;
    }

    .mock-main {
        padding: 13px 11px;
    }
}

@media (max-width: 500px) {
    .journey-heading h2 {
        font-size: 39px;
    }

    .dashboard-showcase {
        padding: 31px 18px;
    }

    .mock-browser-bar {
        gap: 8px;
    }

    .mock-layout {
        grid-template-columns: 74px 1fr;
        min-height: 270px;
    }

    .mock-brand {
        margin-left: 3px;
        font-size: 5px;
    }

    .mock-nav {
        gap: 4px;
        padding: 7px 4px;
        font-size: 6px;
    }

    .mock-nav b {
        width: 8px;
    }

    .mock-main {
        padding: 10px 8px;
    }

    .mock-stat-grid,
    .mock-content-grid {
        gap: 4px;
    }

    .mock-stat {
        padding: 7px;
    }

    .mock-stat strong {
        font-size: 13px;
    }

    .mock-panel {
        padding: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================
   BATCH 6 FIX — JOURNEY CARD ALIGNMENT
   ========================= */

.journey-steps .journey-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

.journey-steps .journey-step .step-icon {
    flex: 0 0 auto;
    margin: 0 0 24px;
}

.journey-steps .journey-step h3 {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    box-sizing: border-box;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -.025em;
    text-align: left;
}

.journey-steps .journey-step p {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 94px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #788498;
    font-size: 11px;
    line-height: 1.65;
    text-align: left;
}

.journey-steps .journey-step a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding: 0;
    color: var(--navy);
    font-size: 10px;
    line-height: 1.3;
    font-weight: 850;
    text-align: left;
}

@media (max-width: 760px) {
    .journey-steps .journey-step p {
        min-height: 0;
    }
}


/* =========================
   BATCH 6 FINAL FIX — NAMESPACED LEGACY JOURNEY
   =========================
   The original "YOUR WFH JOURNEY" component now uses
   legacy-* class names so it can never collide with the
   newer Batch 6 "HOW IT WORKS" component.
   ========================= */

.legacy-journey-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 60px;
    align-items: center;
    margin-top: 70px;
    padding: 54px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 15%, rgba(109, 74, 255, .16), transparent 34%),
        radial-gradient(circle at 15% 90%, rgba(37, 99, 235, .16), transparent 32%),
        var(--navy);
    box-shadow: 0 30px 80px rgba(11, 18, 32, .14);
}

.legacy-journey-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(90deg, transparent, black 35%, black 80%, transparent);
    pointer-events: none;
}

.legacy-journey-copy,
.legacy-journey-steps {
    position: relative;
    z-index: 1;
}

.legacy-journey-copy .section-kicker {
    color: #8fb4ff;
}

.legacy-journey-copy h3 {
    max-width: 480px;
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -.055em;
}

.legacy-journey-copy p {
    max-width: 490px;
    margin: 0 0 26px;
    color: #aeb9cc;
    font-size: 14px;
    line-height: 1.75;
}

.legacy-journey-copy .button {
    min-height: 48px;
    padding-inline: 18px;
}

.legacy-journey-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.legacy-journey-step {
    display: grid;
    grid-template-columns: 44px 1px minmax(0, 1fr);
    gap: 15px;
    min-height: 104px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.legacy-step-index {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    color: #8f9cb0;
    font-size: 10px;
    font-weight: 850;
}

.legacy-journey-step.active .legacy-step-index {
    border-color: rgba(143,180,255,.35);
    background: rgba(37,99,235,.18);
    color: #b9d0ff;
}

.legacy-step-line {
    position: relative;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.10);
}

.legacy-journey-step:last-child .legacy-step-line {
    visibility: hidden;
}

.legacy-journey-step strong {
    display: block;
    padding-top: 2px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.legacy-journey-step span {
    display: block;
    margin-top: 6px;
    color: #8996aa;
    font-size: 11px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .legacy-journey-panel {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 760px) {
    .legacy-journey-panel {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 55px;
        padding: 35px 25px;
    }

    .legacy-journey-step {
        grid-template-columns: 40px 1px minmax(0, 1fr);
        min-height: 92px;
    }
}


/* =========================
   BATCH 7 — TRUST & CREDIBILITY
   ========================= */

.trust-section {
    position: relative;
    padding: 120px 0 115px;
    background: #fff;
    overflow: hidden;
}

.trust-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 46px;
}

.trust-heading h2 {
    margin: 13px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: .98;
    letter-spacing: -.055em;
}

.trust-heading h2 span {
    color: var(--blue);
}

.trust-heading > p {
    max-width: 440px;
    margin: 0 0 4px auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.trust-card {
    min-height: 250px;
    padding: 25px;
    border: 1px solid #e4e9f0;
    border-radius: 21px;
    background: #fbfcfe;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: #d6deea;
    box-shadow: 0 20px 45px rgba(17,26,46,.07);
}

.trust-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 58px;
    border-radius: 11px;
    background: #edf3ff;
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
}

.trust-card:nth-child(2) .trust-icon {
    background: #eefaf4;
    color: var(--green);
}

.trust-card:nth-child(3) .trust-icon {
    background: #f4f0ff;
    color: #7354d9;
}

.trust-card:nth-child(4) .trust-icon {
    background: #fff7e8;
    color: #a97112;
}

.trust-card h3 {
    margin: 0 0 9px;
    color: var(--navy);
    font-size: 16px;
    letter-spacing: -.02em;
}

.trust-card p {
    margin: 0;
    color: #7b8799;
    font-size: 10px;
    line-height: 1.65;
}

.trust-statement {
    display: grid;
    grid-template-columns: 48px minmax(0,1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 15px;
    padding: 23px 25px;
    border: 1px solid #dce7ff;
    border-radius: 19px;
    background: #f6f9ff;
}

.trust-statement-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #e8f0ff;
    color: var(--blue);
    font-size: 17px;
    font-weight: 900;
}

.trust-statement strong {
    display: block;
    color: var(--navy);
    font-size: 12px;
}

.trust-statement p {
    max-width: 720px;
    margin: 4px 0 0;
    color: #778499;
    font-size: 9px;
    line-height: 1.6;
}

.trust-statement a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}

.trust-statement a span {
    font-size: 14px;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 43px;
    border-top: 1px solid #e8ecf2;
    border-bottom: 1px solid #e8ecf2;
}

.trust-metrics > div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 25px;
    border-right: 1px solid #e8ecf2;
}

.trust-metrics > div:last-child {
    border-right: 0;
}

.trust-metrics strong {
    color: var(--navy);
    font-size: 23px;
    letter-spacing: -.045em;
}

.trust-metrics span {
    margin-top: 4px;
    color: #8b96a6;
    font-size: 9px;
}

@media (max-width: 1000px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-metrics > div:nth-child(2) {
        border-right: 0;
    }

    .trust-metrics > div:nth-child(-n+2) {
        border-bottom: 1px solid #e8ecf2;
    }
}

@media (max-width: 760px) {
    .trust-section {
        padding: 90px 0 90px;
    }

    .trust-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .trust-heading > p {
        margin-left: 0;
    }

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

    .trust-card {
        min-height: 0;
    }

    .trust-icon {
        margin-bottom: 38px;
    }

    .trust-statement {
        grid-template-columns: 43px minmax(0,1fr);
        padding: 20px;
    }

    .trust-statement-mark {
        width: 43px;
        height: 43px;
    }

    .trust-statement a {
        grid-column: 1 / -1;
    }

    .trust-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .trust-metrics > div {
        padding: 14px 18px;
    }
}

@media (max-width: 500px) {
    .trust-metrics {
        grid-template-columns: 1fr;
    }

    .trust-metrics > div,
    .trust-metrics > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #e8ecf2;
    }

    .trust-metrics > div:last-child {
        border-bottom: 0;
    }
}


/* =========================
   BATCH 8 — RESOURCES + FAQ
   ========================= */
.resources-section{position:relative;padding:120px 0 110px;background:#f7f9fc;overflow:hidden}
.resources-heading{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,.55fr);gap:70px;align-items:end;margin-bottom:45px}
.resources-heading h2{margin:13px 0 0;color:var(--navy);font-size:clamp(38px,4.6vw,60px);line-height:.98;letter-spacing:-.055em}
.resources-heading h2 span{color:var(--blue)}
.resources-heading>p{max-width:430px;margin:0 0 4px auto;color:var(--muted);font-size:14px;line-height:1.75}
.resource-feature{position:relative;display:grid;grid-template-columns:1fr .9fr;min-height:365px;overflow:hidden;border-radius:27px;background:#111a2e;box-shadow:0 25px 65px rgba(17,26,46,.12)}
.resource-feature-copy{position:relative;z-index:2;padding:55px}
.resource-label{color:#8eb2ff;font-size:8px;font-weight:900;letter-spacing:.16em}
.resource-feature-copy h3{margin:15px 0 17px;color:#fff;font-size:clamp(28px,3.2vw,43px);line-height:1.02;letter-spacing:-.05em}
.resource-feature-copy p{max-width:480px;margin:0;color:#9ca8bb;font-size:11px;line-height:1.7}
.resource-feature-copy a{display:inline-flex;align-items:center;gap:8px;margin-top:27px;min-height:43px;padding:0 15px;border-radius:11px;background:#fff;color:var(--navy);font-size:9px;font-weight:850}
.resource-feature-copy a span{color:var(--blue);font-size:13px}
.resource-feature-visual{position:relative;min-height:365px;overflow:hidden;background:radial-gradient(circle at 52% 45%,rgba(80,132,255,.27),transparent 30%),radial-gradient(circle at 85% 80%,rgba(44,205,132,.12),transparent 30%)}
.resource-paper{position:absolute;top:50%;left:50%;width:190px;height:245px;padding:18px;transform:translate(-50%,-50%) rotate(7deg);border:1px solid rgba(17,26,46,.08);border-radius:8px;background:#fff;box-shadow:0 30px 60px rgba(0,0,0,.25)}
.paper-top{display:flex;justify-content:space-between;color:#7e8999;font-size:5px;font-weight:900;letter-spacing:.08em}.paper-top i{color:#4b76d9;font-style:normal}
.paper-title{margin-top:46px;color:#16213a;font-size:22px;font-weight:950;line-height:.94;letter-spacing:-.06em}
.paper-lines{display:grid;gap:7px;margin-top:23px}.paper-lines i{display:block;width:100%;height:3px;border-radius:5px;background:#e8ecf2}.paper-lines i:nth-child(2){width:82%}.paper-lines i:nth-child(3){width:91%}.paper-lines i:nth-child(4){width:66%}
.paper-badge{display:inline-block;margin-top:24px;padding:5px 7px;border-radius:5px;background:#edf3ff;color:#3f6ed4;font-size:5px;font-weight:900}
.resource-orbit{position:absolute;border:1px solid rgba(142,178,255,.16);border-radius:50%;transform:rotate(-12deg)}.orbit-one{width:380px;height:210px;top:75px;left:40px}.orbit-two{width:450px;height:250px;top:55px;left:5px}
.resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:13px;margin-top:13px}
.resource-card{min-height:225px;padding:25px;border:1px solid #e2e7ee;border-radius:20px;background:#fff;transition:transform .2s ease,box-shadow .2s ease}.resource-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(17,26,46,.06)}
.resource-card-top{display:flex;justify-content:space-between;align-items:center}.resource-number{color:#b0b9c7;font-size:8px;font-weight:900}.resource-type{color:#6981aa;font-size:7px;font-weight:900;letter-spacing:.1em}
.resource-card h3{max-width:270px;margin:42px 0 10px;color:var(--navy);font-size:16px;line-height:1.25;letter-spacing:-.025em}.resource-card p{max-width:290px;margin:0;color:#7e8a9d;font-size:10px;line-height:1.65}
.resource-card a{display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--blue);font-size:9px;font-weight:850}.resource-card a span{font-size:13px}
.faq-area{display:grid;grid-template-columns:.62fr 1.38fr;gap:75px;margin-top:110px}.faq-intro h3{margin:13px 0 15px;color:var(--navy);font-size:clamp(33px,3.5vw,46px);line-height:.98;letter-spacing:-.05em}.faq-intro h3 span{color:var(--blue)}
.faq-intro p{max-width:300px;margin:0;color:#7e8a9d;font-size:10px;line-height:1.7}.faq-intro>a{display:inline-flex;align-items:center;gap:7px;margin-top:24px;color:var(--blue);font-size:9px;font-weight:850}.faq-intro>a span{font-size:13px}
.faq-list{border-top:1px solid #dfe5ed}.faq-list details{border-bottom:1px solid #dfe5ed}.faq-list summary{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px 2px;color:var(--navy);cursor:pointer;list-style:none;font-size:12px;font-weight:800}.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary span{width:25px;height:25px;display:grid;place-items:center;flex:0 0 auto;border:1px solid #dce3ed;border-radius:50%;color:#65748b;font-size:14px;font-weight:500;transition:transform .2s ease,background .2s ease}.faq-list details[open] summary span{transform:rotate(45deg);background:#edf3ff;color:var(--blue)}
.faq-list details p{max-width:720px;margin:-5px 35px 22px 2px;color:#7d899b;font-size:10px;line-height:1.7}
@media(max-width:950px){.resources-heading{grid-template-columns:1fr;gap:18px}.resources-heading>p{margin-left:0}.resource-feature{grid-template-columns:1fr}.resource-feature-visual{min-height:300px}.resource-grid{grid-template-columns:1fr}.faq-area{grid-template-columns:1fr;gap:40px;margin-top:85px}}
@media(max-width:650px){.resources-section{padding:90px 0}.resource-feature-copy{padding:40px 28px}.resource-feature-visual{min-height:270px}.resource-paper{width:165px;height:215px}.paper-title{margin-top:35px;font-size:19px}.resource-orbit{left:0;transform:scale(.82) rotate(-12deg)}.faq-area{margin-top:70px}}
