/* ============================================================
   Way2Freshers — design system
   Palette mirrors the Superio home-7 reference: light blue-gray
   canvas, white cards, orange primary (#f26a25), indigo secondary.
   ============================================================ */

:root {
  --c-primary: #0b5394;
  --c-primary-dark: #094a83;
  --c-flame: #f26522;
  --c-flame-dark: #d95a1a;
  --c-secondary: #1e3fbf;
  --c-royal: #1e3fbf;
  --c-ink: #111827;
  --c-bg: #f5f7fb;
  --c-surface: #ffffff;
  --c-text: #1f2937;
  --c-muted: #6b7280;
  --c-heading: #111827;
  --c-border: #e5e7eb;
  --c-header-bg: #e9f2fb;
  --c-header-text: #111827;
  --c-ticker-bg: #0ea5e9;
  --c-ticker-text: #ffffff;
  --c-ticker-badge: #f26522;
  --c-footer-bg: #e9f2fb;
  --c-footer-heading: #1967d2;
  --c-footer-text: #696969;
  --c-footer-border: #d7e4f4;
  --c-success: #16a34a;
  --shadow-sm: 0 1px 3px rgba(17, 24, 39, .06);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, .08);
  --shadow-lg: 0 16px 40px rgba(17, 24, 39, .12);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --fw-base: 400;
  --fw-head: 800;
  --fs-base: 16px;
  --fs-h1: 42px;
  --fs-h2: 32px;
  --fs-h3: 24px;
  --container: 1200px;
  --radius: 14px;
  --header-h: 72px;
  --logo-w: 170px;
  --logo-h: 40px;
  --flogo-w: 170px;
  /* dark palette (overridden by customizer vars when set) */
  --d-bg: #0b1220;
  --d-surface: #121a2b;
  --d-text: #dbe2ef;
  --d-muted: #8ea0bd;
  --d-heading: #f4f7ff;
  --d-border: #24304a;
  --d-header-bg: #0c1c30;
  --d-header-text: #e7edf8;
  --d-footer-bg: #0c1c30;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-flame); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: var(--fw-head);
  color: var(--c-heading);
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
input, select, textarea, button { font: inherit; color: inherit; }

.w2f-container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.w2f-narrow { max-width: 860px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 100000;
  background: var(--c-primary); color: #fff; padding: 8px 16px; border-radius: 8px;
}

/* ---------- Buttons, chips, badges ---------- */
.w2f-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 15px; line-height: 1.2; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none; white-space: nowrap;
}
.w2f-btn:active { transform: translateY(1px); }
.w2f-btn-primary {
  background: var(--c-primary); color: #fff;
  box-shadow: 0 6px 16px rgba(11, 83, 148, .25);
}
.w2f-btn-primary:hover { background: var(--c-primary-dark); color: #fff; }
.w2f-btn-flame {
  background: var(--c-flame); color: #fff;
  box-shadow: 0 6px 16px rgba(242, 101, 34, .3);
}
.w2f-btn-flame:hover { background: var(--c-flame-dark); color: #fff; }
.w2f-btn-white { background: #fff; color: var(--c-primary); }
.w2f-btn-white:hover { background: #f0f6ff; color: var(--c-primary); }
.w2f-btn-ghost { background: transparent; color: var(--c-heading); border-color: var(--c-border); }
.w2f-btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.w2f-btn-sm { padding: 8px 16px; font-size: 13.5px; }
.w2f-btn-lg { padding: 15px 34px; font-size: 17px; }
.w2f-btn-block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  font-size: 13.5px; font-weight: 600; color: var(--c-text);
}
.chip-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.chip-type { background: rgba(50, 69, 169, .08); color: var(--c-secondary); border-color: transparent; }

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase;
}
.badge-featured { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.badge-urgent { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.badge-verified { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.badge-open { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.badge-status { background: #eef2ff; color: var(--c-secondary); }

.w2f-muted { color: var(--c-muted); }
.w2f-link-arrow { font-weight: 700; }
.w2f-link-arrow:hover { text-decoration: underline; }

/* ============================================================
   HEADER — reference build: light-blue bar, logo fills the row,
   hover menu, dark toggle + Sign in on the right.
   ============================================================ */
.w2f-header { background: var(--c-header-bg); position: relative; z-index: 50; }
.w2f-header-main { border-bottom: 1px solid var(--c-border); }
body.w2f-sticky-header .w2f-header-main { position: sticky; top: 0; z-index: 60; }
.w2f-header-inner {
  display: flex; align-items: center; gap: 18px;
  height: var(--header-h);
}
.w2f-branding { flex: 0 0 auto; display: flex; align-items: center; }
.w2f-logo { display: inline-flex; align-items: center; line-height: 0; }
.w2f-logo img { display: block; object-fit: contain; height: var(--logo-h); width: auto; }
.w2f-wordmark {
  font-family: var(--font-head); font-weight: 800; font-size: 24px;
  color: var(--c-header-text); letter-spacing: -.02em;
}
.w2f-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.w2f-menu {
  display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.w2f-menu > li { position: relative; }
.w2f-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: 10px;
  color: var(--c-header-text); font-weight: 600; font-size: 15.5px;
}
.w2f-menu > li > a:hover { color: var(--c-primary); background: rgba(242, 106, 37, .07); }
.w2f-menu .sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .18s ease; z-index: 80;
}
.w2f-menu li:hover > .sub-menu,
.w2f-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.w2f-menu .sub-menu a {
  display: block; padding: 9px 14px; border-radius: 8px;
  color: var(--c-text); font-size: 14.5px; font-weight: 500;
}
.w2f-menu .sub-menu a:hover { background: var(--c-bg); color: var(--c-primary); }
.w2f-menu .sub-menu .sub-menu { top: -8px; left: calc(100% + 4px); }

.w2f-header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.w2f-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; border: none;
  background: transparent; color: var(--c-header-text); cursor: pointer;
  transition: background .15s ease;
}
.w2f-icon-btn:hover { background: rgba(17, 24, 39, .06); }
.w2f-mode-icon-sun { display: none; }
body.w2f-mode-dark .w2f-mode-icon-moon { display: none; }
body.w2f-mode-dark .w2f-header-signin { color: var(--d-header-text); }
body.w2f-mode-dark .w2f-icon-btn { color: var(--d-header-text); }
.w2f-header-signin { font-weight: 700; color: var(--c-header-text); font-size: 15px; padding: 8px 6px; }
.w2f-header-signin:hover { color: var(--c-primary); }
.w2f-burger { display: none; }
.w2f-burger-close { display: none; }
.w2f-burger.is-open .w2f-burger-open { display: none; }
.w2f-burger.is-open .w2f-burger-close { display: inline-flex; }

/* Header search overlay */
.w2f-header-search {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--c-surface); border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg); padding: 18px 0; z-index: 70;
}
.w2f-header-search form { display: flex; gap: 10px; }
.w2f-header-search input[type="search"] {
  flex: 1; padding: 13px 18px; border-radius: 12px;
  border: 1.5px solid var(--c-border); background: var(--c-bg);
}
.w2f-header-search input[type="search"]:focus { outline: 2px solid var(--c-primary); border-color: transparent; }
.w2f-search-suggest { position: relative; }
.w2f-search-suggest .w2f-suggest-item {
  display: block; padding: 10px 14px; border-radius: 10px; color: var(--c-text);
}
.w2f-search-suggest .w2f-suggest-item:hover { background: var(--c-bg); }

/* ---------- Ticker (flash news) ---------- */
.w2f-ticker {
  display: flex; align-items: stretch;
  background: var(--c-ticker-bg); color: var(--c-ticker-text);
  height: 30px; overflow: hidden;
}
.w2f-ticker-badge {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-ticker-badge); color: #fff;
  font-weight: 800; font-size: 11px; letter-spacing: .08em;
  padding: 0 14px; text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  padding-right: 22px;
}
.w2f-ticker-viewport { flex: 1; overflow: hidden; display: flex; align-items: center; }
.w2f-ticker-track {
  display: inline-flex; align-items: center; gap: 34px;
  white-space: nowrap; will-change: transform;
  animation: w2f-ticker-scroll var(--ticker-speed, 38s) linear infinite;
}
.w2f-ticker:hover .w2f-ticker-track { animation-play-state: paused; }
.w2f-ticker-item { font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 34px; }
.w2f-ticker-item a { color: inherit; }
.w2f-ticker-item a:hover { text-decoration: underline; }
.w2f-ticker-dot { color: var(--c-ticker-badge); font-size: 9px; }
@keyframes w2f-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Mobile menu ---------- */
.w2f-mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--c-surface); padding: 90px 24px 32px; overflow-y: auto;
}
.w2f-mobile-list { list-style: none; margin: 0; padding: 0; }
.w2f-mobile-list > li > a {
  display: block; padding: 14px 4px; font-size: 18px; font-weight: 700;
  color: var(--c-heading); border-bottom: 1px solid var(--c-border);
}
.w2f-mobile-list .sub-menu { list-style: none; padding-left: 16px; }
.w2f-mobile-list .sub-menu a { display: block; padding: 10px 4px; color: var(--c-muted); }
.w2f-mobile-actions { display: flex; gap: 10px; margin-top: 24px; }
.w2f-mobile-actions .w2f-btn { flex: 1; }

/* ============================================================
   HERO — reference home-13: light-blue canvas, curved accents,
   headline with the orange Career Pulse pill linked to the check.
   ============================================================ */
.w2f-hero {
  position: relative; overflow: hidden;
  background: var(--c-header-bg);
  padding: 72px 0 96px; text-align: center;
}
.w2f-hero-wave { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.w2f-hero-wave-1 { fill: #fff; opacity: .45; }
.w2f-hero-wave-2 { fill: var(--c-primary); opacity: .06; }
.w2f-hero-circle { fill: #fff; opacity: .4; }
.w2f-hero-circle-2 { fill: var(--c-primary); opacity: .08; }
.w2f-hero-curve {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 42px;
  pointer-events: none;
}
.w2f-hero-curve-fill { fill: var(--c-bg); }
.w2f-hero-inner { position: relative; z-index: 2; }
.w2f-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-surface); border: 1px solid #fcd9bd;
  color: var(--c-flame); font-weight: 700; font-size: 14.5px;
  padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.w2f-hero-title {
  font-size: clamp(34px, 5.4vw, 56px); letter-spacing: -.02em;
  margin-bottom: 18px; color: var(--c-heading);
}
.w2f-hero-highlight {
  display: inline-block; background: var(--c-flame); color: #fff;
  padding: 6px 34px 10px; border-radius: 16px;
  box-shadow: 0 12px 28px rgba(242, 101, 34, .35);
  transform: rotate(-1deg);
  transition: transform .15s ease, box-shadow .15s ease;
}
.w2f-hero-highlight:hover {
  transform: rotate(-1deg) translateY(-2px);
  box-shadow: 0 16px 34px rgba(242, 101, 34, .45);
  color: #fff;
}
.w2f-hero-sub { font-size: 15px; color: var(--c-muted); margin: 8px 0 22px; }
.w2f-hero-search {
  display: flex; align-items: center; gap: 8px;
  max-width: 640px; margin: 0 auto;
  background: var(--c-surface); border-radius: 16px;
  padding: 8px 8px 8px 18px; box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.w2f-hero-search-icon { color: var(--c-primary); display: inline-flex; }
.w2f-hero-search input[type="search"] {
  flex: 1; border: none; background: transparent; font-size: 16px; padding: 10px 4px;
}
.w2f-hero-search input[type="search"]:focus { outline: none; }
.w2f-hero-search .w2f-btn { border-radius: 12px; padding: 13px 26px; }
.w2f-hero-chips {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; flex-wrap: wrap; color: var(--c-muted); font-size: 12.5px;
}
.w2f-hero-chips a { font-weight: 700; color: var(--c-heading); }
.w2f-hero-chips a:hover { color: var(--c-flame); }

/* ---------- Category cards ---------- */
.w2f-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.w2f-cat-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 16px; padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.w2f-cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(242, 101, 34, .5); }
.w2f-cat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; flex: 0 0 auto;
  background: rgba(11, 83, 148, .1); color: var(--c-primary);
}
.w2f-cat-name { display: block; font-weight: 700; color: var(--c-heading); }
.w2f-cat-card:hover .w2f-cat-name { color: var(--c-flame); }
.w2f-cat-count { display: block; color: var(--c-muted); font-size: 13.5px; margin-top: 3px; }

/* ---------- CV banner ---------- */
.w2f-section-flush { padding: 10px 0 26px; }
.w2f-cv-banner {
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 24px;
  background: linear-gradient(135deg, #072a50 0%, var(--c-primary) 55%, var(--c-flame) 100%);
  border-radius: 24px; padding: 48px; color: #fff;
  position: relative; overflow: hidden;
}
.w2f-cv-banner::before {
  content: ""; position: absolute; right: -60px; top: -70px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); filter: blur(30px);
}
.w2f-cv-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); }
.w2f-cv-banner p { color: rgba(255, 255, 255, .82); max-width: 560px; }
.w2f-cv-art {
  display: grid; place-items: center; width: 160px; height: 160px;
  border-radius: 24px; background: rgba(255, 255, 255, .1); font-size: 64px;
  justify-self: center;
}

/* ---------- Split cards ---------- */
.w2f-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.w2f-split-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 20px; padding: 34px 32px;
  transition: box-shadow .18s ease;
}
.w2f-split-card:hover { box-shadow: var(--shadow-lg); }
.w2f-split-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; font-size: 26px;
}
.w2f-split-icon-blue { background: rgba(11, 83, 148, .1); }
.w2f-split-icon-flame { background: rgba(242, 101, 34, .1); }
.w2f-split-card p { color: var(--c-muted); max-width: 460px; }
.w2f-link-arrow { font-weight: 700; color: var(--c-primary); display: inline-flex; align-items: center; gap: 6px; }
.w2f-link-arrow:hover { color: var(--c-flame); }

/* ============================================================
   Career Pulse — the signature royal-blue check (reference 1:1).
   One card, three stages: intro → quiz → report.
   ============================================================ */
.w2f-cp { padding: 30px 0 14px; scroll-margin-top: 90px; }
.w2f-cp-shell { max-width: 1080px; margin: 0 auto; }
.w2f-cp-panel {
  background: var(--c-royal); color: #fff;
  border-radius: 24px; padding: 44px 40px; text-align: center;
  box-shadow: 0 24px 60px rgba(30, 63, 191, .3);
}
.w2f-cp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 13.5px;
  margin-bottom: 18px;
}
.w2f-cp-title { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 12px; }
.w2f-cp-sub p { color: rgba(255, 255, 255, .8); font-size: 15.5px; margin: 2px 0; }
.w2f-cp-meta { color: rgba(255, 255, 255, .7); font-weight: 600; font-size: 13.5px; margin: 12px 0 24px; }
.w2f-cp-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 940px; margin: 0 auto 28px; text-align: left;
}
.w2f-cp-card {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px; padding: 20px;
}
.w2f-cp-card h3 { color: #fff; font-size: 15.5px; margin-bottom: 6px; }
.w2f-cp-card p { color: rgba(255, 255, 255, .72); font-size: 13.5px; line-height: 1.55; margin: 0; }
.w2f-cp-card-emoji { display: block; font-size: 24px; margin-bottom: 8px; }
.w2f-cp-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--c-flame); color: #fff; border: none; cursor: pointer;
  border-radius: 999px; padding: 15px 34px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 26px rgba(242, 101, 34, .4);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.w2f-cp-cta:hover { background: var(--c-flame-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(242, 101, 34, .5); }

/* ---------- Quiz stage ---------- */
.w2f-cp-quiz-top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255, 255, 255, .75); font-weight: 600; }
.w2f-cp-brand { color: #ffb27d; }
.w2f-cp-progress { height: 6px; background: rgba(255, 255, 255, .25); border-radius: 999px; overflow: hidden; margin-top: 12px; }
#w2f-cp-progress-fill { display: block; height: 100%; width: 0; background: var(--c-flame); border-radius: 999px; transition: width .3s ease; }
.w2f-cp-area { margin-top: 22px; font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .9); }
.w2f-cp-question { color: #fff; font-size: clamp(18px, 2.2vw, 22px); margin: 6px 0 4px; }
.w2f-cp-hint { color: rgba(255, 255, 255, .7); font-size: 14px; margin: 0 0 20px; }
.w2f-cp-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; }
.w2f-cp-opt {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .95); color: var(--c-text);
  border: 1.5px solid rgba(255, 255, 255, .3); border-radius: 12px;
  padding: 12px 16px; cursor: pointer; font: inherit; text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.w2f-cp-opt:hover { border-color: #fff; }
.w2f-cp-opt.selected { border-color: var(--c-flame); box-shadow: 0 0 0 3px rgba(242, 101, 34, .35); }
.w2f-cp-opt-key {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 32px;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--c-bg); color: var(--c-muted); font-weight: 700; font-size: 14px;
}
.w2f-cp-opt.selected .w2f-cp-opt-key { background: var(--c-flame); color: #fff; }
.w2f-cp-opt-text { flex: 1; font-weight: 600; font-size: 14.5px; color: var(--c-heading); }
.w2f-cp-opt-strength { display: none; width: 56px; height: 6px; border-radius: 999px; overflow: hidden; background: rgba(17, 24, 39, .08); }
.w2f-cp-opt-strength span { display: block; height: 100%; border-radius: 999px; }
@media (min-width: 720px) { .w2f-cp-opt-strength { display: block; } }
.w2f-cp-quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.w2f-cp-nav-ghost {
  background: transparent; color: #fff; border: none; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 14.5px; padding: 10px 16px; border-radius: 999px;
}
.w2f-cp-nav-ghost:hover { background: rgba(255, 255, 255, .1); }
.w2f-cp-nav-next {
  background: var(--c-flame); color: #fff; border: none; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 14.5px; padding: 12px 26px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(242, 101, 34, .35);
}
.w2f-cp-nav-next:hover { background: var(--c-flame-dark); }

/* ---------- Report stage ---------- */
.w2f-cp-score-wrap { display: flex; flex-direction: column; align-items: center; }
.w2f-cp-ring { position: relative; display: inline-block; }
.w2f-cp-ring-num {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.w2f-cp-ring-num b { font-family: var(--font-head); font-size: 38px; color: #fff; line-height: 1; }
.w2f-cp-ring-num i { font-style: normal; font-size: 12.5px; color: rgba(255, 255, 255, .7); }
.w2f-cp-verdict { margin-top: 14px; font-size: 19px; font-weight: 800; color: #fff; }
.w2f-cp-verdict-note { max-width: 420px; margin: 4px auto 0; color: rgba(255, 255, 255, .78); font-size: 14.5px; line-height: 1.6; }
.w2f-cp-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 14px; text-align: left; }
.w2f-cp-report-box {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px; padding: 20px; text-align: left; margin: 0 0 14px;
}
.w2f-cp-report-grid .w2f-cp-report-box { margin: 0; }
.w2f-cp-report-gap { background: rgba(242, 101, 34, .16); border-color: rgba(242, 101, 34, .4); }
.w2f-cp-report-title { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 14.5px; margin: 0 0 10px; }
.w2f-cp-roles { display: flex; flex-wrap: wrap; gap: 8px; }
.w2f-cp-role {
  display: inline-block; background: var(--c-surface); color: var(--c-heading);
  border: 1px solid var(--c-border); border-radius: 999px;
  padding: 6px 14px; font-size: 13.5px; font-weight: 700;
}
.w2f-cp-role:hover { border-color: var(--c-flame); color: var(--c-flame); }
.w2f-cp-gap-text { color: rgba(255, 255, 255, .82); font-size: 14px; line-height: 1.6; margin: 0; }
.w2f-cp-gap-text b { color: #fff; }
.w2f-cp-plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.w2f-cp-plan-col ul { list-style: none; margin: 6px 0 0; padding: 0; }
.w2f-cp-plan-col li { position: relative; padding-left: 14px; color: rgba(255, 255, 255, .78); font-size: 13.5px; line-height: 1.5; margin-bottom: 6px; }
.w2f-cp-plan-col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--c-flame); }
.w2f-cp-plan-area { color: #fff; font-weight: 700; font-size: 14.5px; margin: 0; }
.w2f-cp-plan-weeks { color: #ffb27d; font-weight: 700; font-size: 12.5px; margin: 2px 0 6px; }
.w2f-cp-result-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.w2f-cp-result-note { margin: 14px auto 0; color: rgba(255, 255, 255, .65); font-size: 12.5px; }

/* ============================================================
   Sections
   ============================================================ */
.w2f-section { padding: 46px 0; }
.w2f-section-alt { background: var(--c-surface); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.w2f-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 26px; flex-wrap: wrap;
}
.w2f-section-title { font-size: clamp(24px, 3vw, 32px); margin-bottom: 4px; }
.w2f-section-sub { color: var(--c-muted); margin: 0; }
.w2f-page-head {
  background: var(--c-surface); border-bottom: 1px solid var(--c-border);
  padding: 34px 0;
}
.w2f-page-head h1 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 4px; }
.w2f-page-head p { color: var(--c-muted); margin: 0; }
.w2f-page { padding: 34px 0 56px; }

/* ============================================================
   Job cards — Superio list 14
   ============================================================ */
.w2f-job-list { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 20px 22px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: transparent; }
.job-card.is-featured { border-left: 4px solid var(--c-primary); }
.job-card-logo {
  flex: 0 0 56px; width: 56px; height: 56px; border-radius: 12px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--c-secondary);
  overflow: hidden;
}
.job-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-card-main { flex: 1; min-width: 0; }
.job-card-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.job-card-title { font-size: 17.5px; margin: 0 0 4px; }
.job-card-title a { color: var(--c-heading); }
.job-card-title a:hover { color: var(--c-primary); }
.job-card-badges { display: inline-flex; gap: 6px; }
.job-card-meta { color: var(--c-muted); font-size: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.job-card-meta .jc-company { font-weight: 600; color: var(--c-secondary); }
.job-card-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.job-card-side { flex: 0 0 auto; text-align: right; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.job-card-salary { font-weight: 800; font-family: var(--font-head); color: var(--c-success); font-size: 15.5px; }
.job-card-time { color: var(--c-muted); font-size: 12.5px; }

/* ============================================================
   Company cards
   ============================================================ */
.w2f-company-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.company-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}
.company-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.company-card-logo {
  width: 72px; height: 72px; margin: 0 auto 14px; border-radius: 16px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--c-secondary);
}
.company-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.company-card-title { font-size: 17px; margin-bottom: 6px; }
.company-card-title a { color: var(--c-heading); }
.company-card-meta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; color: var(--c-muted); font-size: 13.5px; margin-bottom: 8px; }
.company-card-meta .jc-open { color: var(--c-success); font-weight: 700; }
.company-card-excerpt { color: var(--c-muted); font-size: 14px; min-height: 42px; }

/* ============================================================
   Candidate cards + single
   ============================================================ */
.w2f-candidate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.candidate-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 20px 22px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.candidate-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cand-avatar {
  position: relative; flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-bg); border: 2px solid var(--c-border); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--c-secondary);
}
.cand-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cand-avatar-lg { width: 96px; height: 96px; flex-basis: 96px; font-size: 36px; }
.cand-open-dot {
  position: absolute; bottom: 2px; right: 2px; width: 14px; height: 14px;
  background: var(--c-success); border: 2.5px solid var(--c-surface); border-radius: 50%;
}
.cand-main { flex: 1; min-width: 0; }
.cand-name { font-size: 17px; margin: 0 0 2px; }
.cand-headline { color: var(--c-muted); font-size: 14px; margin: 0 0 6px; }
.cand-meta { display: flex; gap: 12px; color: var(--c-muted); font-size: 13.5px; margin: 0 0 8px; flex-wrap: wrap; }
.cand-skills { display: flex; gap: 6px; flex-wrap: wrap; }

.w2f-cand-hero { background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 40px 0; }
.w2f-cand-hero-card { display: flex; align-items: center; gap: 22px; }
.w2f-cand-hero-main h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 4px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.w2f-cand-headline { color: var(--c-muted); font-size: 16.5px; margin: 0 0 10px; }
.w2f-cand-hero-meta { display: flex; gap: 18px; color: var(--c-muted); font-size: 14.5px; flex-wrap: wrap; }
.w2f-cand-hero-meta a { color: var(--c-muted); display: inline-flex; align-items: center; gap: 5px; }
.w2f-cand-hero-meta a:hover { color: var(--c-primary); }

/* ============================================================
   Mentor cards
   ============================================================ */
.w2f-mentor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mentor-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}
.mentor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mentor-avatar {
  width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%; overflow: hidden;
  background: var(--c-bg); border: 3px solid var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--c-secondary);
  box-shadow: var(--shadow-sm);
}
.mentor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mentor-name { font-size: 17px; margin-bottom: 2px; }
.mentor-role { color: var(--c-muted); font-size: 14px; margin-bottom: 10px; }
.mentor-stats { display: flex; justify-content: center; gap: 14px; font-size: 13.5px; color: var(--c-text); margin-bottom: 14px; }
.mentor-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--c-border); padding-top: 14px; }
.mentor-price { font-weight: 800; font-family: var(--font-head); }

/* ============================================================
   Course cards
   ============================================================ */
.w2f-course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease;
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.course-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-body { padding: 18px 20px 20px; }
.course-title { font-size: 16.5px; margin-bottom: 6px; }
.course-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--c-muted); font-size: 13px; margin-bottom: 12px; }
.course-foot { display: flex; align-items: center; justify-content: space-between; }
.course-rating { font-weight: 700; font-size: 14px; }
.course-price { font-weight: 800; font-family: var(--font-head); color: var(--c-primary); }

/* ============================================================
   Single job — Superio single 5
   ============================================================ */
.w2f-job-hero { background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 26px 0 34px; }
.w2f-job-hero-card {
  display: flex; align-items: center; gap: 22px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 18px; padding: 26px 28px; box-shadow: var(--shadow-md);
  margin-top: 16px;
}
.w2f-job-hero-logo {
  flex: 0 0 72px; width: 72px; height: 72px; border-radius: 16px; overflow: hidden;
  background: var(--c-bg); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--c-secondary);
}
.w2f-job-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.w2f-job-hero-main { flex: 1; min-width: 0; }
.w2f-job-hero-badges { display: flex; gap: 8px; margin-bottom: 8px; }
.w2f-job-hero-title { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 8px; }
.w2f-job-hero-meta { display: flex; align-items: center; gap: 16px; color: var(--c-muted); font-size: 14.5px; flex-wrap: wrap; }
.w2f-job-hero-meta .jc-company a { font-weight: 700; color: var(--c-secondary); }
.w2f-job-hero-meta span { display: inline-flex; align-items: center; gap: 5px; }
.w2f-job-hero-side { flex: 0 0 auto; text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.w2f-job-salary { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--c-success); }

.w2f-layout { display: grid; gap: 28px; align-items: start; }
.w2f-layout-right { grid-template-columns: 1fr 340px; }
.w2f-layout-left { grid-template-columns: 320px 1fr; }
.w2f-layout-none { grid-template-columns: 1fr; }

.w2f-panel {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px 28px; margin-bottom: 22px;
}
.w2f-panel h2 { font-size: 20px; margin-bottom: 16px; }
.w2f-panel h3 { font-size: 17px; margin-bottom: 12px; }

.w2f-overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.w2f-overview-item {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: 12px; padding: 14px 16px;
}
.oi-label { display: block; color: var(--c-muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.oi-value { font-weight: 700; font-size: 15px; }

.w2f-job-sidebar .w2f-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

.w2f-company-mini { text-align: center; }
.wcm-logo { border-radius: 14px; margin-bottom: 10px; }
.wcm-meta { display: flex; flex-direction: column; gap: 4px; color: var(--c-muted); font-size: 14px; margin-bottom: 14px; }

.w2f-apply-panel { border: 2px solid var(--c-primary); }
.w2f-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.w2f-form-grid label, .w2f-panel > label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.w2f-form-grid input, .w2f-form-grid select, .w2f-panel input, .w2f-panel select, .w2f-panel textarea, .w2f-form-grid textarea {
  width: 100%; margin-top: 5px; padding: 12px 14px;
  border: 1.5px solid var(--c-border); border-radius: 10px; background: var(--c-bg);
}
.w2f-panel input:focus, .w2f-panel select:focus, .w2f-panel textarea:focus {
  outline: 2px solid var(--c-primary); border-color: transparent; background: var(--c-surface);
}
.w2f-form-msg { margin: 10px 0 0; font-weight: 600; min-height: 1.2em; }
.w2f-form-msg.ok { color: var(--c-success); }
.w2f-form-msg.err { color: #dc2626; }

/* ============================================================
   Company single
   ============================================================ */
.w2f-company-hero { background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 34px 0 0; }
.w2f-company-hero-card { display: flex; align-items: center; gap: 22px; }
.w2f-company-hero-logo {
  flex: 0 0 96px; width: 96px; height: 96px; border-radius: 20px; overflow: hidden;
  background: var(--c-bg); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 38px; color: var(--c-secondary);
  box-shadow: var(--shadow-md);
}
.w2f-company-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.w2f-company-hero-main h1 { font-size: clamp(24px, 3vw, 32px); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.w2f-company-tagline { color: var(--c-muted); font-size: 16.5px; margin-bottom: 10px; }
.w2f-company-hero-meta { display: flex; gap: 18px; color: var(--c-muted); font-size: 14.5px; flex-wrap: wrap; }
.w2f-company-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 22px 0; margin-top: 20px; border-top: 1px solid var(--c-border);
}
.w2f-stat-item { text-align: center; }
.w2f-stat-item .n { display: block; font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--c-heading); }
.w2f-stat-item .l { color: var(--c-muted); font-size: 13px; }

/* ============================================================
   Blog
   ============================================================ */
.w2f-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body { padding: 18px 20px 20px; }
.blog-card-meta { display: flex; gap: 8px; color: var(--c-muted); font-size: 13px; margin-bottom: 8px; }
.blog-card-title { font-size: 17.5px; margin-bottom: 8px; }
.blog-card-title a { color: var(--c-heading); }
.blog-card-title a:hover { color: var(--c-primary); }
.blog-card-excerpt { color: var(--c-muted); font-size: 14.5px; }

.w2f-post-head { padding: 40px 0 30px; }
.w2f-post-head h1 { font-size: clamp(28px, 4vw, 40px); max-width: 860px; }
.w2f-post-thumb { margin: 0 0 24px; border-radius: var(--radius); overflow: hidden; }
.w2f-post-content { font-size: 17px; }
.w2f-post-content h2 { margin-top: 1.6em; }
.w2f-post-content img { border-radius: 12px; }
.w2f-post-content blockquote {
  margin: 1.4em 0; padding: 16px 22px; border-left: 4px solid var(--c-primary);
  background: var(--c-bg); border-radius: 0 12px 12px 0; color: var(--c-muted); font-style: italic;
}
.w2f-share-row {
  display: flex; align-items: center; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); margin: 26px 0;
  font-weight: 700;
}
.w2f-share-row a { color: var(--c-muted); font-weight: 600; }
.w2f-share-row a:hover { color: var(--c-primary); }

/* ============================================================
   Steps, stats, alert box, pricing, modules
   ============================================================ */
.w2f-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.w2f-step {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 30px 26px; position: relative;
}
.w2f-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  background: rgba(242, 106, 37, .1); color: var(--c-primary);
  font-family: var(--font-head); font-weight: 800; font-size: 20px;
}
.w2f-step p { color: var(--c-muted); font-size: 15px; margin: 0; }

.w2f-stats { background: var(--c-secondary); padding: 44px 0; }
.w2f-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.w2f-stats .w2f-stat-item .n { color: #fff; font-size: 34px; }
.w2f-stats .w2f-stat-item .l { color: rgba(255, 255, 255, .8); }

.w2f-alert-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--c-primary) 0%, #ff8a4c 100%);
  border-radius: 20px; padding: 36px 40px; color: #fff;
}
.w2f-alert-box h2 { color: #fff; margin-bottom: 4px; }
.w2f-alert-box p { color: rgba(255, 255, 255, .9); margin: 0; }
.w2f-alert-form { display: flex; gap: 10px; }
.w2f-alert-form input {
  min-width: 280px; padding: 13px 18px; border-radius: 12px; border: none;
}
.w2f-alert-form .w2f-btn { background: #fff; color: var(--c-primary); }
.w2f-alert-form .w2f-btn:hover { background: #f5f5f5; }

.w2f-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1020px; margin: 0 auto; }
.w2f-price-card {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: 18px; padding: 30px 28px; text-align: center; position: relative;
}
.w2f-price-card ul { list-style: none; padding: 0; text-align: left; margin: 0 0 22px; }
.w2f-price-card li { padding: 8px 0; border-bottom: 1px dashed var(--c-border); font-size: 14.5px; }
.w2f-price { font-family: var(--font-head); margin: 10px 0 18px; }
.w2f-price span { font-size: 40px; font-weight: 800; }
.w2f-price-popular { border-color: var(--c-primary); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.w2f-price-popular .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); }

.w2f-module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.w2f-module-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px 24px;
}
.w2f-module-card p { color: var(--c-muted); font-size: 14.5px; margin: 0; }

/* ============================================================
   Resume builder
   ============================================================ */
.w2f-rb-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.w2f-rb-steps { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.w2f-rb-step {
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--c-border);
  background: transparent; cursor: pointer; font-weight: 700; font-size: 13.5px;
}
.w2f-rb-step-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.w2f-rb-panel label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.w2f-rb-panel input, .w2f-rb-panel textarea {
  width: 100%; margin-top: 5px; padding: 12px 14px;
  border: 1.5px solid var(--c-border); border-radius: 10px; background: var(--c-bg);
}
.w2f-hint { color: var(--c-muted); font-size: 13.5px; }
.w2f-rb-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.w2f-resume {
  background: #fff; color: #111; border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--c-border);
  font-size: 14.5px; line-height: 1.55;
}
.w2f-resume h1 { font-size: 26px; margin-bottom: 2px; color: #111; }
.w2f-resume .pv-title { color: var(--c-primary); font-weight: 700; margin: 0 0 4px; }
.w2f-resume .pv-contact { color: #555; font-size: 13px; margin-bottom: 18px; }
.w2f-resume h2 {
  font-size: 14px; text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 2px solid #eee; padding-bottom: 6px; margin: 18px 0 10px; color: #111;
}
.w2f-resume ul { margin: 6px 0; }
@media print {
  body * { visibility: hidden; }
  .w2f-resume, .w2f-resume * { visibility: visible; }
  .w2f-resume { position: absolute; top: 0; left: 0; width: 100%; box-shadow: none; border: none; }
}

/* ============================================================
   Dashboard
   ============================================================ */
.w2f-dash-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.w2f-dash-title { font-size: 28px; margin-bottom: 20px; }
.w2f-dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.w2f-dash-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.w2f-dash-card .n { display: block; font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--c-primary); }
.w2f-dash-card .l { color: var(--c-muted); font-size: 13.5px; }
.w2f-dash-links { list-style: none; padding: 0; margin: 0; }
.w2f-dash-links li { border-bottom: 1px solid var(--c-border); }
.w2f-dash-links li:last-child { border-bottom: none; }
.w2f-dash-links a { display: block; padding: 11px 2px; font-weight: 600; color: var(--c-text); }
.w2f-dash-links a:hover { color: var(--c-primary); }
.w2f-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.w2f-table th, .w2f-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--c-border); }
.w2f-table th { color: var(--c-muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }
.w2f-login-required { text-align: center; padding: 48px 28px; }

/* ============================================================
   Filters sidebar
   ============================================================ */
.w2f-filters { position: sticky; top: calc(var(--header-h) + 20px); }
.w2f-filter-form { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.w2f-filter-group { margin-bottom: 16px; }
.w2f-filter-group > label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 8px; }
.w2f-filter-group input, .w2f-filter-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--c-border);
  border-radius: 10px; background: var(--c-bg);
}
.w2f-check-list { display: flex; flex-direction: column; gap: 6px; }
.w2f-check { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.w2f-check input { accent-color: var(--c-primary); }
.w2f-filter-clear { display: block; text-align: center; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--c-muted); }
.w2f-filter-clear:hover { color: var(--c-primary); }
.w2f-chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

/* ============================================================
   Ads
   ============================================================ */
.w2f-ad { margin: 18px 0; text-align: center; }
.w2f-ad-keep { min-height: 100px; }
.w2f-ad-keep:empty::before {
  content: "Advertisement"; display: block; padding: 40px 0;
  color: var(--c-muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(17,24,39,.02) 12px, rgba(17,24,39,.02) 24px);
  border-radius: 10px;
}
.w2f-ad-inlist { margin: 6px 0; }
.w2f-ad-hero { margin-top: -10px; }

/* ============================================================
   Breadcrumb / pagination / misc
   ============================================================ */
.w2f-breadcrumb { background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 12px 0; font-size: 13.5px; }
.w2f-breadcrumb ol { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; color: var(--c-muted); }
.w2f-breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--c-border); }
.w2f-breadcrumb a { color: var(--c-muted); }
.w2f-breadcrumb a:hover { color: var(--c-primary); }
.w2f-breadcrumb li:last-child { color: var(--c-heading); font-weight: 600; }

.w2f-pagination ul { display: flex; justify-content: center; gap: 6px; list-style: none; padding: 0; margin: 30px 0 0; }
.w2f-pagination a, .w2f-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  font-weight: 700; color: var(--c-text);
}
.w2f-pagination .current { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.w2f-pagination a:hover { border-color: var(--c-primary); color: var(--c-primary); }

.w2f-empty-card {
  background: var(--c-surface); border: 1.5px dashed var(--c-border);
  border-radius: var(--radius); padding: 44px 28px; text-align: center; color: var(--c-muted);
}
.w2f-404 { text-align: center; padding: 60px 20px; }
.w2f-404-code { font-family: var(--font-head); font-weight: 800; font-size: 96px; color: var(--c-primary); margin: 0; line-height: 1; }
.w2f-404-search { margin: 26px auto; }
.w2f-404-links { display: flex; gap: 10px; justify-content: center; }

/* Privacy bar */
.w2f-privacy-bar {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 95;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: var(--c-ink); color: #fff; border-radius: 12px;
  padding: 12px 18px; font-size: 14px; box-shadow: var(--shadow-lg);
}
.w2f-privacy-bar a { color: #fbbf77; }
.w2f-privacy-bar button {
  background: var(--c-primary); color: #fff; border: none; border-radius: 8px;
  padding: 8px 20px; font-weight: 700; cursor: pointer;
}

/* Back to top */
#w2f-backtop {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 46px; height: 46px; border-radius: 12px; border: none;
  background: var(--c-primary); color: #fff; font-size: 20px; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
#w2f-backtop.is-visible { opacity: 1; visibility: visible; }
#w2f-backtop:hover { transform: translateY(-3px); }

/* ============================================================
   Footer — reference home-13: light-blue curved top edge,
   light body, blue headings, gray links, thin divider bottom bar.
   ============================================================ */
.w2f-footer { margin-top: 40px; }
.w2f-footer-curve { position: relative; height: 56px; background: var(--c-bg); }
.w2f-footer-curve svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.w2f-footer-curve-fill { fill: var(--c-footer-bg); }
.w2f-footer-body { background: var(--c-footer-bg); color: var(--c-footer-text); }
.w2f-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding: 20px 0 44px; }
.w2f-footer-logo { display: inline-block; margin-bottom: 16px; }
.w2f-footer-logo img { height: 48px; width: auto; }
.w2f-footer-about { color: var(--c-footer-text); font-size: 14px; line-height: 1.7; max-width: 340px; }
.w2f-footer-mail { display: flex; align-items: center; gap: 8px; color: var(--c-footer-text); font-size: 14px; }
.w2f-footer-title { color: var(--c-footer-heading); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px; }
.w2f-footer-menu { list-style: none; margin: 0; padding: 0; }
.w2f-footer-menu li { margin-bottom: 11px; }
.w2f-footer-menu a { color: var(--c-footer-text); font-size: 14px; transition: color .15s ease; }
.w2f-footer-menu a:hover { color: var(--c-flame); }
.w2f-social { display: flex; gap: 10px; margin-top: 22px; }
.w2f-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: #fff; color: var(--soc, var(--c-primary)); box-shadow: var(--shadow-sm);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.w2f-social a:hover { background: var(--soc, var(--c-primary)); color: #fff; transform: translateY(-2px); }
.w2f-footer-news p { font-size: 14px; color: var(--c-footer-text); }
.w2f-newsletter { display: flex; gap: 8px; margin-top: 16px; }
.w2f-newsletter input {
  flex: 1; min-width: 0; padding: 11px 16px; border-radius: 999px; border: 1px solid var(--c-footer-border);
  background: #fff; color: var(--c-heading); font-size: 14px;
}
.w2f-newsletter input::placeholder { color: #9aa5b1; }
.w2f-newsletter input:focus { outline: 2px solid var(--c-primary); }
.w2f-newsletter button {
  width: 42px; height: 42px; flex: 0 0 42px; border: none; border-radius: 999px; cursor: pointer;
  background: var(--c-primary); color: #fff; font-size: 15px;
  transition: background .15s ease;
}
.w2f-newsletter button:hover { background: var(--c-flame); }
.w2f-footer-bottom { border-top: 1px solid var(--c-footer-border); padding: 18px 0; }
.w2f-footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--c-footer-text);
}
.w2f-footer-bottom p { margin: 0; }
.w2f-footer-bottom-links { display: flex; align-items: center; gap: 20px; }
.w2f-footer-bottom-links a { color: var(--c-footer-text); font-weight: 600; }
.w2f-footer-bottom-links a:hover { color: var(--c-primary); }
#w2f-footer-top {
  width: 34px; height: 34px; border: none; border-radius: 999px; cursor: pointer;
  background: #fff; color: var(--c-footer-text); box-shadow: var(--shadow-sm);
  transition: background .15s ease, color .15s ease;
}
#w2f-footer-top:hover { background: var(--c-primary); color: #fff; }

/* ============================================================
   DARK MODE
   ============================================================ */
body.w2f-mode-dark {
  --c-bg: var(--d-bg);
  --c-surface: var(--d-surface);
  --c-text: var(--d-text);
  --c-muted: var(--d-muted);
  --c-heading: var(--d-heading);
  --c-border: var(--d-border);
  --c-header-bg: var(--d-header-bg);
  --c-header-text: var(--d-header-text);
  --c-footer-bg: var(--d-footer-bg);
  background: var(--c-bg);
  color: var(--c-text);
}
body.w2f-mode-dark .w2f-hero { background: var(--d-header-bg); }
body.w2f-mode-dark .w2f-hero-curve-fill { fill: var(--d-bg); }
body.w2f-mode-dark .w2f-hero-wave-1 { fill: var(--d-surface); opacity: .5; }
body.w2f-mode-dark .w2f-logo img[src*="logo.png"],
body.w2f-mode-dark .w2f-footer-logo img[src*="logo-white.png"] { background: rgba(255, 255, 255, .95); border-radius: 10px; padding: 4px 10px; }
body.w2f-mode-dark .w2f-hero-badge { background: var(--d-surface); border-color: var(--d-border); }
body.w2f-mode-dark .w2f-resume { background: #fff; color: #111; }
body.w2f-mode-dark .w2f-cp-panel { background: var(--c-royal); }
body.w2f-mode-dark .w2f-footer-curve { background: var(--d-bg); }
body.w2f-mode-dark .w2f-footer-body { background: var(--d-footer-bg); }
body.w2f-mode-dark .w2f-footer-curve-fill { fill: var(--d-footer-bg); }
body.w2f-mode-dark .w2f-footer-title { color: #7cb3e8; }
body.w2f-mode-dark .w2f-footer-about,
body.w2f-mode-dark .w2f-footer-mail,
body.w2f-mode-dark .w2f-footer-news p,
body.w2f-mode-dark .w2f-footer-menu a,
body.w2f-mode-dark .w2f-footer-bottom { color: #94a7c4; }
body.w2f-mode-dark .w2f-footer-bottom { border-top-color: rgba(255, 255, 255, .1); }
body.w2f-mode-dark .w2f-newsletter input { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .15); color: #fff; }
body.w2f-mode-dark .w2f-newsletter input::placeholder { color: rgba(255, 255, 255, .45); }
body.w2f-mode-dark .w2f-social a { background: rgba(255, 255, 255, .1); box-shadow: none; }
body.w2f-mode-dark #w2f-footer-top { background: rgba(255, 255, 255, .1); color: #cbd5e1; }
body.w2f-mode-dark .w2f-cp-opt { background: #fff; }
body.w2f-mode-dark .w2f-cp-report-box { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .12); }
body.w2f-mode-dark .w2f-cp-role { background: rgba(255, 255, 255, .92); }
body.w2f-mode-dark .job-card-logo,
body.w2f-mode-dark .company-card-logo,
body.w2f-mode-dark .cand-avatar,
body.w2f-mode-dark .mentor-avatar,
body.w2f-mode-dark .w2f-job-hero-logo,
body.w2f-mode-dark .w2f-company-hero-logo { background: rgba(255,255,255,.05); border-color: var(--d-border); }
body.w2f-mode-dark .badge-featured { background: rgba(249, 115, 22, .12); color: #fdba74; border-color: rgba(249, 115, 22, .3); }
body.w2f-mode-dark .badge-urgent { background: rgba(239, 68, 68, .12); color: #fca5a5; border-color: rgba(239, 68, 68, .3); }
body.w2f-mode-dark .badge-verified,
body.w2f-mode-dark .badge-open { background: rgba(16, 185, 129, .12); color: #6ee7b7; border-color: rgba(16, 185, 129, .3); }
body.w2f-mode-dark .chip-type { background: rgba(99, 102, 241, .15); color: #a5b4fc; }
body.w2f-mode-dark .w2f-icon-btn:hover { background: rgba(255,255,255,.08); }
body.w2f-mode-dark .w2f-menu > li > a:hover { background: rgba(255,255,255,.06); }
body.w2f-mode-dark .w2f-alert-form input,
body.w2f-mode-dark .w2f-newsletter input { background: rgba(255,255,255,.12); color: #fff; }
body.w2f-mode-dark .w2f-privacy-bar { background: var(--d-surface); }
body.w2f-mode-dark .w2f-breadcrumb,
body.w2f-mode-dark .w2f-page-head { background: var(--d-surface); border-color: var(--d-border); }

/* Boxed layout */
body.w2f-layout-boxed .w2f-header,
body.w2f-layout-boxed .w2f-footer { max-width: calc(var(--container) + 80px); margin-left: auto; margin-right: auto; }
body.w2f-layout-boxed.w2f-mode-dark .w2f-header,
body.w2f-layout-boxed.w2f-mode-dark .w2f-footer { margin-top: 0; }
body.w2f-layout-boxed { background: var(--c-bg); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .w2f-company-grid, .w2f-mentor-grid { grid-template-columns: repeat(3, 1fr); }
  .w2f-course-grid, .w2f-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .w2f-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .w2f-footer-grid { grid-template-columns: 1fr 1fr; }
  .w2f-layout-right, .w2f-layout-left, .w2f-dash-grid { grid-template-columns: 1fr; }
  .w2f-filters { position: static; }
  .w2f-cv-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .w2f-cv-art { display: none; }
}
@media (max-width: 900px) {
  .w2f-nav { display: none; }
  .w2f-burger { display: inline-flex; }
  .w2f-header-inner { gap: 12px; }
  .w2f-header-signin { display: none; }
  .w2f-logo img { height: calc(var(--logo-h) - 14px); }
  .w2f-cp-cards { grid-template-columns: 1fr; }
  .w2f-steps { grid-template-columns: 1fr; }
  .w2f-pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .w2f-module-grid { grid-template-columns: 1fr 1fr; }
  .w2f-overview-grid { grid-template-columns: 1fr 1fr; }
  .w2f-split { grid-template-columns: 1fr; }
  .w2f-cp-options { grid-template-columns: 1fr; }
  .w2f-cp-report-grid { grid-template-columns: 1fr; }
  .w2f-cp-plan { grid-template-columns: 1fr; }
  .w2f-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .w2f-company-stats { grid-template-columns: repeat(2, 1fr); }
  .w2f-rb-wrap { grid-template-columns: 1fr; }
  .w2f-job-hero-card { flex-wrap: wrap; }
  .w2f-job-hero-side { align-items: flex-start; text-align: left; }
  .w2f-cand-hero-card { flex-wrap: wrap; }
  .w2f-company-hero-card { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  :root { --fs-base: 15px; }
  .w2f-hero { padding: 48px 0 60px; }
  .w2f-hero-search { flex-wrap: wrap; padding: 10px; }
  .w2f-hero-search input[type="search"] { flex: 1 1 100%; padding: 10px 8px; }
  .w2f-hero-search .w2f-btn { flex: 1 1 100%; }
  .w2f-company-grid, .w2f-mentor-grid, .w2f-course-grid, .w2f-blog-grid,
  .w2f-candidate-grid, .w2f-module-grid, .w2f-cp-result-cols { grid-template-columns: 1fr; }
  .job-card { flex-wrap: wrap; }
  .job-card-side { align-items: flex-start; text-align: left; width: 100%; flex-direction: row; justify-content: space-between; }
  .w2f-form-grid { grid-template-columns: 1fr; }
  .w2f-alert-box { padding: 28px 22px; }
  .w2f-alert-form { width: 100%; flex-wrap: wrap; }
  .w2f-alert-form input { min-width: 0; flex: 1 1 100%; }
  .w2f-alert-form .w2f-btn { flex: 1 1 100%; }
  .w2f-footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .w2f-footer-bottom-inner { justify-content: center; text-align: center; }
  .w2f-ticker { height: 26px; }
  .w2f-ticker-badge { padding: 0 10px; padding-right: 18px; font-size: 10px; }
  .w2f-ticker-item { font-size: 11.5px; gap: 26px; }
  .w2f-cp-panel { padding: 34px 20px; }
  .w2f-cp-cards { grid-template-columns: 1fr; }
  .w2f-panel { padding: 20px 18px; }
  .w2f-header-actions .w2f-btn-cta { padding: 9px 16px; font-size: 14px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .w2f-ticker-track { animation: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
