/*
 * Practice Jobs
 * Premium light UI using the logo palette:
 * Blue #2072B8 and Green #3AB54A
 */

:root {
  --blue: #2072b8;
  --blue-700: #15568d;
  --blue-050: #eef7ff;
  --green: #3ab54a;
  --green-700: #248934;
  --green-050: #edf9ef;
  --ink: #102033;
  --body: #526274;
  --muted: #7b8999;
  --line: #dde8f1;
  --soft-line: #edf3f7;
  --paper: #ffffff;
  --wash: #f6fafc;
  --tint: #fbfdff;
  --brand: linear-gradient(135deg, var(--blue), var(--green));
  --brand-soft: linear-gradient(135deg, rgba(32, 114, 184, .1), rgba(58, 181, 74, .1));
  --shadow: 0 18px 42px rgba(16, 32, 51, .08);
  --shadow-soft: 0 10px 24px rgba(16, 32, 51, .06);
  --font-headings: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --blue-dark: var(--blue-700);
  --blue-light: var(--blue-050);
  --teal: var(--green);
  --teal-dark: var(--green-700);
  --teal-light: var(--green-050);
  --dark: var(--ink);
  --white: var(--paper);
  --rule: var(--line);
  --bg: var(--wash);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background:
    linear-gradient(90deg, rgba(32, 114, 184, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(58, 181, 74, .03) 1px, transparent 1px),
    var(--wash);
  background-size: 56px 56px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  from { transform: scale(1); opacity: .45; }
  to { transform: scale(1.8); opacity: 0; }
}

#scrollProgress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 1100;
  background: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn-blue,
.btn-submit-blue {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(32, 114, 184, .22);
}

.btn-teal,
.btn-submit-teal {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(58, 181, 74, .22);
}

.btn-brand {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(32, 114, 184, .18);
}

.btn-blue:hover,
.btn-submit-blue:hover,
.btn-teal:hover,
.btn-submit-teal:hover,
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(32, 114, 184, .2);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(32, 114, 184, .24);
  background: #fff;
}

.btn-outline-teal {
  color: var(--green);
  border-color: rgba(58, 181, 74, .28);
  background: #fff;
}

.btn-outline:hover,
.btn-outline-teal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.tag,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(32, 114, 184, .18);
  background: #fff;
  color: var(--blue);
  font-family: var(--font-headings);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tag::before,
.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(58, 181, 74, .14);
}

.tag--teal {
  color: var(--green);
  border-color: rgba(58, 181, 74, .22);
}

.tag--teal::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(32, 114, 184, .12);
}

.nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 990;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 232, 241, .9);
}

.nav-wrap.scrolled {
  box-shadow: 0 16px 36px rgba(16, 32, 51, .08);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: auto !important;
  object-fit: contain;
}

.footer-brand-logo {
  display: block;
  width: 210px;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--body);
  font-family: var(--font-headings);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-050);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--green-050);
  color: var(--green-700);
  border: 1px solid rgba(58, 181, 74, .22);
  font-family: var(--font-headings);
  font-size: .9rem;
  font-weight: 800;
}

.nav-wa:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  min-height: 100vh;
  padding: 150px 0 86px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 255, .82) 54%, rgba(237, 249, 239, .9)),
    var(--wash);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 110px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 114, 184, .3), rgba(58, 181, 74, .3), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 68px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .96;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow-soft);
}

.proof-dots {
  display: flex;
  flex-shrink: 0;
}

.proof-dot {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 99px;
  color: var(--blue);
  background: var(--blue-050);
  font-family: var(--font-headings);
  font-size: .65rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 32, 51, .1);
}

.proof-dot:first-child {
  margin-left: 0;
}

.proof-dot:nth-child(even) {
  color: var(--green);
  background: var(--green-050);
}

.proof-text {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.proof-text strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-headings);
  font-size: 1.04rem;
}

.hero-visual {
  position: relative;
}

.hero-img-box {
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border: 1px solid rgba(32, 114, 184, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(32, 114, 184, .18), transparent 42%),
    linear-gradient(315deg, rgba(58, 181, 74, .18), transparent 42%);
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: min(280px, 72%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(32, 114, 184, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-stat-card .ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  color: var(--green);
  background: var(--green-050);
  border: 1px solid rgba(58, 181, 74, .18);
}

.hero-stat-card .val {
  color: var(--ink);
  font-family: var(--font-headings);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stat-card .lbl {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-headings);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.ticker-overlay-left,
.ticker-overlay-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.ticker-overlay-left {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.ticker-overlay-right {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.ticker-track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--muted);
  font-family: var(--font-headings);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ticker-track span b {
  color: var(--blue);
}

.paths,
.process,
.testi,
.page-content-section {
  padding: 110px 0;
}

.paths {
  background: #fff;
}

.process,
.page-content-section {
  background: var(--wash);
}

.testi {
  background: #fff;
}

.section-head {
  max-width: 690px;
  margin-bottom: 46px;
}

.section-head--center {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  text-align: center;
}

.section-head h2,
.process-intro h2 {
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-head p,
.process-intro p {
  color: var(--body);
  font-size: 1.05rem;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.path-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 120px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 114, 184, .28);
  box-shadow: var(--shadow);
}

.path-card--teal:hover {
  border-color: rgba(58, 181, 74, .28);
}

.card-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 18px;
  color: #fff;
}

.card-panel--blue {
  background: var(--blue);
}

.card-panel--teal {
  background: var(--green);
}

.card-panel-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: center;
  font-family: var(--font-headings);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-panel-num {
  position: absolute;
  inset: auto 12px 84px;
  color: rgba(255, 255, 255, .2);
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.card-panel-tag {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  font-family: var(--font-headings);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.card-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.card-desc {
  margin-bottom: 22px;
  color: var(--body);
  font-size: .98rem;
}

.check-list {
  flex: 1;
  margin-bottom: 28px;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 11px 0;
  color: var(--body);
  font-size: .93rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--soft-line);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-color: var(--blue-050);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7L5.5 10L11.5 4' stroke='%232072B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.check-list--teal li::before {
  background-color: var(--green-050);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7L5.5 10L11.5 4' stroke='%233AB54A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-body .btn {
  width: 100%;
}

.stats-wrap {
  padding: 66px 0;
  background: linear-gradient(135deg, var(--blue-050), #fff 50%, var(--green-050));
  border-block: 1px solid var(--line);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-soft);
}

.stat {
  padding: 30px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-n {
  color: var(--blue);
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.stat:nth-child(even) .stat-n {
  color: var(--green);
}

.stat-l {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-headings);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
  gap: 54px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-n-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-family: var(--font-headings);
  font-weight: 900;
}

.step:nth-child(even) .step-circle {
  background: var(--green);
}

.step-bar {
  flex: 1;
  width: 2px;
  margin-top: 10px;
  background: linear-gradient(var(--blue), var(--green));
}

.step:last-child .step-bar {
  display: none;
}

.step h4 {
  margin-bottom: 7px;
  font-size: 1.16rem;
}

.step p {
  color: var(--body);
  font-size: .94rem;
  line-height: 1.65;
}

.testi-card {
  max-width: 900px;
  margin: 46px auto 0;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, var(--blue-050) 55%, var(--green-050));
  box-shadow: var(--shadow);
  text-align: center;
}

.testi-stars {
  margin-bottom: 20px;
  color: #f5a524;
  letter-spacing: .16em;
}

.testi-q {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--font-headings);
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.65;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}

.testi-name {
  color: var(--ink);
  font-family: var(--font-headings);
  font-weight: 900;
}

.testi-role {
  color: var(--muted);
  font-size: .86rem;
}

.page-hero {
  padding: 116px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, var(--blue-050));
}

.page-hero--teal {
  background: linear-gradient(135deg, #fff, var(--green-050));
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 92px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 114, 184, .28), rgba(58, 181, 74, .28), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.page-hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.page-hero h1 em {
  font-style: normal;
  color: transparent;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.page-hero p {
  max-width: 680px;
  color: var(--body);
  font-size: 1.05rem;
}

.jobs-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
  gap: 54px;
  align-items: start;
}

.jobs-features-col h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.jobs-features-col > p {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: 1.02rem;
}

.jobs-features-col .accent-blue {
  color: var(--blue);
}

.jobs-features-col .accent-green {
  color: var(--green);
}

.benefit-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-item:first-child {
  padding-top: 0;
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-050);
  border: 1px solid rgba(32, 114, 184, .16);
}

.benefit-icon-box--teal,
.jobs-features-col--teal .benefit-icon-box {
  color: var(--green);
  background: var(--green-050);
  border-color: rgba(58, 181, 74, .18);
}

.benefit-text h4 {
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.benefit-text p {
  color: var(--body);
  font-size: .95rem;
}

.form-premium-card {
  position: sticky;
  top: 104px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-premium-card--teal {
  border-top-color: var(--green);
}

.form-premium-card h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.form-premium-card > p {
  margin-bottom: 24px;
  color: var(--body);
  font-size: .92rem;
}

.form-group-item {
  margin-bottom: 18px;
}

.form-group-item--roomy {
  margin-bottom: 24px;
}

.form-field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--font-headings);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-input-field {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: var(--tint);
  color: var(--ink);
  font: 500 .96rem var(--font-body);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

select.form-input-field {
  cursor: pointer;
}

.form-input-field:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(32, 114, 184, .12);
}

.form-input-field--teal:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(58, 181, 74, .13);
}

.form-row-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
}

.submit-form-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
}

.submit-form-btn i {
  margin-right: 4px;
  font-size: 1.1rem;
}

.footer {
  padding: 82px 0 34px;
  color: var(--body);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr .9fr 1.2fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 24px;
  color: var(--body);
  font-size: .94rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-050);
}

.footer-socials a:hover {
  color: #fff;
  background: var(--brand);
  transform: translateY(-2px);
}

.footer-col h5 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a,
.footer-contact-row span,
.footer-bottom {
  color: var(--body);
  font-size: .92rem;
}

.footer-contact-row span,
.benefit-text p,
.legal-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.legal-hero {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, #fff 0%, var(--blue-050) 100%);
  border-bottom: 1px solid var(--line);
}

.legal-hero .container {
  max-width: 900px;
}

.legal-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-hero p {
  max-width: 720px;
  color: var(--body);
  font-size: 1.05rem;
}

.legal-section {
  padding: 70px 0 100px;
  background: #fff;
}

.legal-card {
  max-width: 900px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .9rem;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p {
  color: var(--body);
  font-size: .98rem;
}

.legal-card a {
  color: var(--blue);
  font-weight: 700;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-row i {
  margin-top: 4px;
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
}

.footer-bottom a {
  margin-left: 18px;
  color: var(--muted);
}

.wa-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 980;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #25d366;
  font-size: 1.55rem;
  box-shadow: 0 16px 32px rgba(37, 211, 102, .28);
}

.wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(37, 211, 102, .28);
  animation: pulse 2s ease-out infinite;
}

.wa-btn i {
  position: relative;
}

.js-on .anim {
  opacity: 0;
  transform: translateY(24px);
}

.js-on .anim.in {
  animation: riseIn .65s ease forwards;
}

.js-on .anim-d1.in { animation-delay: .08s; }
.js-on .anim-d2.in { animation-delay: .16s; }
.js-on .anim-d3.in { animation-delay: .24s; }

@media (max-width: 1080px) {
  .hero-grid,
  .process-inner,
  .jobs-grid-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 620px;
  }

  .form-premium-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 1220px);
  }

  .nav {
    height: 76px;
  }

  .nav-logo img {
    height: 50px !important;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .nav-wa {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .nav-wa span,
  .nav-wa {
    font-size: 0;
  }

  .nav-wa i {
    font-size: 1.1rem;
  }

  .hero {
    padding: 122px 0 66px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-proof {
    align-items: flex-start;
  }

  .paths,
  .process,
  .testi,
  .page-content-section {
    padding: 76px 0;
  }

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

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 620px) {
  body {
    background-size: 42px 42px;
  }

  .hero-btns,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .btn,
  .nav-links a,
  .submit-form-btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-stat-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .path-card {
    grid-template-columns: 1fr;
  }

  .card-panel {
    min-height: 96px;
    flex-direction: row;
    align-items: center;
  }

  .card-panel-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .card-panel-num {
    position: static;
    font-size: 2.8rem;
  }

  .card-body,
  .testi-card,
  .form-premium-card {
    padding: 20px;
  }

  .page-hero {
    padding: 104px 0 56px;
  }

  .page-hero p {
    font-size: .98rem;
  }

  .form-row-grid,
  .stats-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

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

  .step-n-col {
    align-items: flex-start;
  }

  .step-bar {
    display: none;
  }

  .footer-bottom div {
    display: flex !important;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .wa-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1220px);
  }

  .nav {
    height: 72px;
  }

  .nav-links.open {
    inset: 72px 12px auto 12px;
    padding: 10px;
  }

  .hero {
    padding: 96px 0 50px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.08;
  }

  .hero-sub {
    font-size: .95rem;
    line-height: 1.65;
  }

  .tag,
  .hero-eyebrow {
    font-size: .68rem;
    letter-spacing: .03em;
  }

  .jobs-features-col h2,
  .section-head h2,
  .process-intro h2 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .benefit-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .benefit-icon-box {
    width: 44px;
    height: 44px;
  }

  .form-premium-card h3,
  .card-body h3 {
    font-size: 1.3rem;
  }

  .legal-hero {
    padding: 120px 0 56px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .footer {
    padding: 64px 0 28px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* Premium visual pass */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 48%, #ffffff 100%);
}

.nav-wrap {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(32, 114, 184, .1);
}

.nav {
  height: 92px;
}

.nav-logo {
  width: 182px;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav-logo img {
  width: 176px;
  max-height: none;
  height: auto !important;
  transform: translateX(-2px);
  transform-origin: left center;
}

.nav-links {
  padding: 5px;
  border-color: rgba(32, 114, 184, .14);
  box-shadow: 0 10px 28px rgba(16, 32, 51, .05);
}

.nav-links a {
  min-height: 40px;
  padding: 8px 16px;
}

.nav-wa {
  min-height: 44px;
  padding: 10px 18px;
  color: #1f8b32;
  background: linear-gradient(180deg, #f3fff5, #e8f9ec);
}

.hero {
  min-height: auto;
  padding: 130px 0 62px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fbff 58%, #ffffff 100%);
}

.hero::before {
  top: 78px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  gap: 64px;
}

.hero h1 {
  margin: 20px 0 20px;
  max-width: 650px;
  font-size: clamp(3rem, 4.7vw, 4.5rem);
  line-height: 1.04;
}

.hero-sub {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 1.04rem;
  line-height: 1.76;
  color: #4b5d72;
}

.hero-eyebrow {
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 24px rgba(16, 32, 51, .05);
}

.hero-btns {
  margin-bottom: 26px;
}

.btn {
  min-height: 50px;
  border-radius: 10px;
}

.btn-blue {
  background: linear-gradient(135deg, #2072b8, #17619f);
}

.btn-teal {
  background: linear-gradient(135deg, #3ab54a, #27a23a);
}

.hero-proof {
  max-width: 510px;
  padding: 14px 16px;
  background: #fff;
  border-color: rgba(32, 114, 184, .1);
  box-shadow: 0 14px 34px rgba(16, 32, 51, .07);
}

.hero-visual {
  min-height: 500px;
  display: flex;
  align-items: stretch;
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  display: none;
}

.hero-img-box {
  width: 100%;
  aspect-ratio: auto;
  min-height: 500px;
  max-height: 540px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-img-box::after {
  display: none;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 32px rgba(16, 32, 51, .14));
}

.hero-stat-card {
  right: 0;
  bottom: 20px;
  width: 286px;
  padding: 18px;
  border-radius: 14px;
  border-color: rgba(58, 181, 74, .18);
  box-shadow: 0 18px 38px rgba(16, 32, 51, .12);
}

.hero-stat-card .ico {
  border-radius: 12px;
}

.ticker {
  background: linear-gradient(90deg, #f8fcff, #fff, #f7fff8);
}

.paths,
.testi {
  background: #fff;
}

.path-card,
.stats-inner,
.steps .step,
.testi-card,
.form-premium-card {
  border-radius: 14px;
}

.card-panel,
.step-circle,
.benefit-icon-box,
.testi-avatar,
.footer-socials a,
.wa-btn,
.wa-btn::before {
  border-radius: 12px;
}

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

  .hero-visual,
  .hero-img-box {
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .nav {
    height: 78px;
  }

  .nav-logo {
    width: 138px;
    height: 70px;
  }

  .nav-logo img {
    width: 134px;
    max-height: none;
    transform: translateX(-2px);
  }

  .hero {
    padding: 106px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hero-visual {
    display: none;
  }
}

/* Responsive refinement pass: all pages */
@media (max-width: 860px) {
  .nav-links.open {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .jobs-grid-layout,
  .process-inner {
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .paths,
  .process,
  .testi,
  .page-content-section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 96px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .page-hero p,
  .section-head p,
  .process-intro p,
  .jobs-features-col > p {
    font-size: .95rem;
    line-height: 1.65;
  }

  .btn,
  .submit-form-btn {
    width: 100%;
  }

  .benefit-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .benefit-icon-box {
    width: 44px;
    height: 44px;
  }

  .benefit-text h4 {
    font-size: 1.02rem;
  }

  .benefit-text p {
    font-size: .9rem;
  }

  .form-premium-card {
    padding: 18px;
  }

  .form-premium-card h3 {
    font-size: 1.2rem;
  }

  .testi-card {
    padding: 22px 18px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .legal-card h2 {
    font-size: 1.15rem;
  }

  .legal-card p {
    font-size: .94rem;
  }

  .footer {
    padding: 62px 0 26px;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .wa-btn {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1220px);
  }

  .nav {
    height: 72px;
  }

  .nav-links.open {
    inset: 72px 12px auto 12px;
    padding: 10px;
  }

  .nav-wa {
    width: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .nav-wa i {
    font-size: 1.1rem;
  }

  .hero {
    padding: 94px 0 48px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.3rem);
    line-height: 1.08;
  }

  .hero-sub {
    font-size: .93rem;
    line-height: 1.62;
  }

  .hero-proof {
    padding: 12px;
  }

  .proof-dot {
    width: 32px;
    height: 32px;
    font-size: .58rem;
  }

  .proof-text strong {
    font-size: .96rem;
  }

  .proof-text {
    font-size: .83rem;
  }

  .jobs-features-col h2,
  .section-head h2,
  .process-intro h2 {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .card-body {
    padding: 18px;
  }

  .card-body h3 {
    font-size: 1.24rem;
  }

  .card-desc,
  .check-list li,
  .step p {
    font-size: .88rem;
  }

  .step {
    padding: 16px;
  }

  .stat {
    padding: 22px 14px;
  }

  .stat-n {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .footer-contact-row {
    grid-template-columns: 18px 1fr;
    gap: 8px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}
