/* =========================================================
   Tezway — Titan-inspired landing styles
   Design language: light, spacious, pill CTAs, soft cards
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f4f0;
  --bg-cream: #f3efeb;
  --bg-card: #faf8f6;
  --text: #111111;
  --text-muted: #5c5c5c;
  --text-soft: #7a7a7a;
  --border: rgba(17, 17, 17, 0.08);
  --border-strong: rgba(17, 17, 17, 0.12);
  --black: #111111;
  --white: #ffffff;
  --accent: #0082f3;
  --radius: 32px;
  --radius-sm: 20px;
  --radius-pill: 160px;
  --container: 1180px;
  --header-h: 72px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 12px 40px rgba(17, 17, 17, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.logo.light .logo-text {
  color: var(--white);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-desktop a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-quiet {
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.8;
}

.link-quiet:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 32px 24px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 550;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: #000;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.btn-dark-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-dark-outline:hover {
  background: var(--bg-soft);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: end;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-copy .btn {
  margin-bottom: 28px;
}

.hero-sub {
  max-width: 36ch;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding: 18px 8px 4px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-title.center {
  text-align: center;
  max-width: 18ch;
  margin-inline: auto;
}

.section-lead {
  color: var(--text-muted);
  max-width: 48ch;
  margin: 16px auto 0;
  text-align: center;
}

.section-lead.left {
  text-align: left;
  margin-inline: 0;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
  text-align: center;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

/* ---------- Value props ---------- */
.value-props {
  padding-top: 72px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.value-grid .section-title {
  max-width: 16ch;
}

.prop-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.prop-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.prop-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-cream);
  display: grid;
  place-items: center;
  color: var(--text);
}

.prop-list p {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.45;
  padding-top: 8px;
}

/* ---------- Advice ---------- */
.advice {
  background: var(--bg);
}

.advice-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.advice-copy .section-title {
  margin-bottom: 36px;
  max-width: 14ch;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}

.check {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--text);
  position: relative;
  flex-shrink: 0;
}

.check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--text);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.check-list strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.check-list p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.5;
}

.advice-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}

.advice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Comparison ---------- */
.comparison {
  background: var(--bg-soft);
}

.comparison .section-title {
  margin-bottom: 48px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin-inline: auto;
}

.compare-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.compare-card.featured {
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.compare-card.muted {
  background: transparent;
  opacity: 0.88;
}

.compare-brand {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.compare-brand.dim {
  color: var(--text-soft);
  font-weight: 500;
}

.compare-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.big-num {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.big-num .unit {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.metric-label {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.compare-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.compare-points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.compare-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.compare-points li.yes::before {
  background-color: #e8f5e9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231b5e20' stroke-width='2'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
}

.compare-points li.no::before {
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E");
}

/* ---------- Recruiters ---------- */
.carousel-nav {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.icon-btn:hover {
  background: var(--bg-soft);
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.person-card {
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px 16px 24px;
  border: 1px solid var(--border);
}

.person-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 18px;
  background: #ddd;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.person-card h3 span {
  font-weight: 500;
  color: var(--text-muted);
}

.person-role {
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.person-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.person-meta div {
  display: grid;
  gap: 2px;
}

.person-meta dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.person-meta dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---------- Trusted ---------- */
.trusted {
  background: var(--bg-soft);
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.trusted-copy .section-title {
  max-width: 14ch;
  margin-bottom: 16px;
}

.trusted-copy p {
  color: var(--text-muted);
  max-width: 36ch;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.carrier-logo {
  display: grid;
  place-items: center;
  min-height: 64px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
}

/* ---------- Stories ---------- */
.stories-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  box-shadow: var(--shadow-soft);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.story-badge strong {
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.story-badge .pill {
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
}

.story-copy .section-title,
.story-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.story-copy > p {
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 42ch;
}

.story-note {
  font-size: 0.8125rem !important;
  color: var(--text-soft) !important;
  margin-bottom: 24px !important;
}

.story-media.dark-panel {
  background: #1a1a1a;
  display: grid;
  grid-template-rows: 1fr auto;
}

.story-media.dark-panel img {
  opacity: 0.85;
  min-height: 220px;
}

.pipeline-card {
  margin: 16px;
  margin-top: -40px;
  position: relative;
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pipeline-card h4 {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 14px;
}

.pipeline-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pipeline-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.pipeline-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pipeline-card strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* ---------- Facts ---------- */
.facts {
  background: var(--bg-soft);
}

.facts .section-title {
  margin-bottom: 40px;
}

.facts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.facts-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.facts-list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.facts-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.fact-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.fact-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.fact-value {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding-bottom: 72px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-copy .section-title {
  max-width: 14ch;
  margin-bottom: 28px;
}

.cta-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

/* ---------- Advantages ---------- */
.advantages {
  background: var(--bg);
  padding-top: 48px;
}

.adv-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.adv-card {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.adv-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.adv-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.adv-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Vacancies ---------- */
.vacancies {
  background: var(--bg-soft);
}

.vacancies .section-title {
  margin-bottom: 8px;
}

.vacancy-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 24px;
}

.filter-chip {
  border: 1px solid var(--border-strong);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-chip:hover {
  background: var(--bg-cream);
}

.filter-chip.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.vacancy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vacancy-card {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  transition: box-shadow 0.2s var(--ease);
}

.vacancy-card:hover {
  box-shadow: var(--shadow-soft);
}

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

.vacancy-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.vacancy-co {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-cream);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details li {
  font-size: 0.975rem;
  color: var(--text-muted);
}

.contact-details strong {
  display: inline-block;
  min-width: 88px;
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.975rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400 !important;
  font-size: 0.875rem !important;
}

.checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--black);
}

.form-status {
  font-size: 0.9375rem;
  color: #1b5e20;
  background: #e8f5e9;
  border-radius: 12px;
  padding: 12px 14px;
}

/* ---------- Disclosures ---------- */
.disclosures {
  padding-top: 48px;
  padding-bottom: 64px;
}

.disclosures-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.disclosures-body {
  color: var(--text-soft);
  font-size: 0.8125rem;
  line-height: 1.65;
  max-width: 90ch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.back-top {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0d0d0d;
  color: #f5f5f5;
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tag {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.975rem;
  max-width: 32ch;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-cols h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.footer-cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cols a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer-cols a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.socials a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.footer-legal {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
  max-width: 100ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .value-grid,
  .advice-grid,
  .trusted-grid,
  .story,
  .cta-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .value-grid .section-title,
  .advice-copy .section-title,
  .trusted-copy .section-title,
  .cta-copy .section-title {
    max-width: none;
  }

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

  .story-b .story-copy {
    order: 1;
  }

  .story-b .story-media {
    order: 2;
  }

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

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

  .nav-desktop,
  .link-quiet {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compare-grid,
  .facts-list,
  .adv-grid,
  .form-row,
  .vacancy-card {
    grid-template-columns: 1fr;
  }

  .facts-list li {
    border-right: 0 !important;
  }

  .facts-list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .vacancy-card {
    gap: 12px;
  }

  .logo-cloud {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

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

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

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

/* =========================================================
   Life layer — motion, depth, hover, ambient
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 680px;
  max-height: 680px;
  right: -8%;
  top: -10%;
  background:
    radial-gradient(circle at 40% 40%, rgba(0, 130, 243, 0.12), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(243, 239, 235, 0.9), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
  animation: glow-drift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-out infinite;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  transition: transform 8s var(--ease);
  will-change: transform;
  animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-live-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 550;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.1);
  letter-spacing: -0.01em;
  animation: pill-in 0.8s var(--ease) 0.4s both;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.8s ease-out infinite;
}

/* Nav underline */
.nav-desktop a {
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

/* Buttons with life */
.btn {
  position: relative;
  overflow: hidden;
}

.btn-primary .btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glow {
  box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.15);
  animation: soft-pulse 3.2s ease-in-out infinite;
}

.btn-glow:hover {
  animation: none;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.18);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image zoom containers */
.media-zoom {
  overflow: hidden;
}

.media-zoom img {
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.media-zoom:hover img {
  transform: scale(1.04);
}

/* Soft floating UI chips */
.float-soft {
  animation: float-y 5s ease-in-out infinite;
}

/* Cards */
.person-card {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
}

.person-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
  border-color: transparent;
}

.person-photo img {
  transition: transform 0.6s var(--ease);
}

.person-card:hover .person-photo img {
  transform: scale(1.05);
}

.compare-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.compare-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.1);
}

.adv-card {
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.adv-card:hover::before {
  opacity: 1;
}

.prop-list li {
  transition: transform 0.3s var(--ease);
}

.prop-list li:hover {
  transform: translateX(6px);
}

.prop-icon {
  transition: transform 0.35s var(--ease), background 0.35s;
}

.prop-list li:hover .prop-icon {
  transform: scale(1.08) rotate(-4deg);
  background: #e8e2db;
}

.check-list li {
  transition: transform 0.3s var(--ease);
}

.check-list li:hover {
  transform: translateX(4px);
}

.carrier-logo {
  transition: opacity 0.3s, transform 0.3s var(--ease), background 0.3s;
}

.carrier-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: var(--white);
}

.vacancy-card {
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    opacity 0.3s,
    border-color 0.3s;
}

.vacancy-card:hover {
  transform: translateY(-3px) scale(1.005);
  border-color: rgba(17, 17, 17, 0.16);
}

.vacancy-card .link-arrow {
  transition: transform 0.25s var(--ease);
  display: inline-block;
}

.vacancy-card:hover .link-arrow {
  transform: translateX(4px);
}

.filter-chip {
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.filter-chip:active {
  transform: scale(0.96);
}

.facts-list li {
  transition: background 0.25s;
}

.facts-list li:hover {
  background: var(--bg-soft);
}

.contact-form {
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.contact-form:focus-within {
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.icon-btn {
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.icon-btn:hover {
  transform: scale(1.06);
}

.icon-btn:active {
  transform: scale(0.96);
}

/* Marquee */
.marquee {
  margin-top: 48px;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-size: 0.875rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-track span::after {
  content: "·";
  color: var(--text-soft);
  margin-left: 48px;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Header subtle lift when scrolled */
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04);
}

/* Mobile nav entrance */
.mobile-nav:not([hidden]) {
  animation: drawer-in 0.35s var(--ease);
}

/* Form status pop */
.form-status:not([hidden]) {
  animation: status-in 0.4s var(--ease);
}

/* Stat tick polish */
.stat-value {
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s;
}

/* Pipeline numbers */
.pipeline-card strong {
  font-variant-numeric: tabular-nums;
}

/* Keyframes */
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 6%) scale(1.08); }
}

@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, -1%); }
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.12); }
  50% { box-shadow: 0 0 0 10px rgba(17, 17, 17, 0); }
}

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

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

@keyframes pill-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes status-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-glow,
  .hero-photo img,
  .live-dot,
  .hero-kicker::before,
  .btn-glow,
  .float-soft,
  .marquee-track,
  .hero-live-pill {
    animation: none !important;
  }

  .btn,
  .adv-card,
  .vacancy-card,
  .person-card,
  .media-zoom img,
  .prop-list li,
  .compare-card {
    transition: none;
  }
}

@media (max-width: 768px) {
  .hero-glow {
    width: 90vw;
    height: 90vw;
    right: -20%;
    top: 10%;
  }
}
