:root {
  --navy-950: #001223;
  --navy-900: #001b35;
  --navy-850: #002348;
  --navy-800: #002d5b;
  --blue-600: #0b7cff;
  --blue-500: #178cff;
  --blue-300: #68b8ff;
  --cyan-300: #6bd7ff;
  --ink: #123056;
  --muted: #60738b;
  --line: #d9e7f7;
  --soft: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(7, 31, 64, 0.12);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 215px;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue-500);
  transition: transform 180ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  max-width: 100%;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), #0672ee);
  box-shadow: 0 14px 30px rgba(11, 124, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2498ff, #0b7cff);
  box-shadow: 0 16px 34px rgba(11, 124, 255, 0.32);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(104, 184, 255, 0.75);
  background: rgba(11, 124, 255, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 23, 48, 0.55);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 18, 35, 0.96) 0%, rgba(0, 28, 57, 0.84) 35%, rgba(0, 35, 74, 0.38) 65%, rgba(0, 17, 34, 0.58) 100%),
    radial-gradient(circle at 72% 44%, rgba(19, 145, 255, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(0, 12, 26, 0.2), rgba(0, 12, 26, 0.55));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  align-items: center;
  min-height: 690px;
  padding-top: 90px;
  gap: 80px;
}

.hero-copy {
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.jobs-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 540px;
  font-size: clamp(3.2rem, 6vw, 5.65rem);
}

h1 span,
h2 span {
  color: var(--blue-500);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 455px;
  margin: 26px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-logo-mark {
  justify-self: center;
  width: min(43vw, 480px);
  transform: translateX(24px);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.24));
}

.hero-logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.trust-bar {
  color: var(--white);
  background: linear-gradient(180deg, #031f3e, #02172e);
  border-top: 1px solid rgba(104, 184, 255, 0.22);
  border-bottom: 1px solid rgba(104, 184, 255, 0.18);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(120px, 1fr));
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.trust-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  opacity: 0.9;
}

.client-logo img {
  display: block;
  width: auto;
  max-width: 152px;
  max-height: 34px;
  object-fit: contain;
}

.client-logo--localiza img {
  max-height: 28px;
}

.client-logo--sicoob img {
  max-height: 32px;
}

.client-logo--zema img {
  max-width: 154px;
  max-height: 34px;
}

.client-logo--unimed img {
  max-width: 104px;
  max-height: 38px;
}

.section-light {
  background:
    radial-gradient(circle at 15% 20%, rgba(104, 184, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f5f9ff);
}

.about {
  padding: 58px 0 54px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
  align-items: center;
  gap: 58px;
}

.section-copy h2,
.section-heading h2,
.jobs-intro h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 3vw, 3.35rem);
}

.section-copy p,
.section-heading p,
.jobs-intro p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.jobs-intro .eyebrow {
  margin: 0 0 16px;
  color: var(--blue-500);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
  color: #274666;
  font-size: 0.95rem;
  font-weight: 700;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  font-size: 0.7rem;
}

.about-media {
  min-width: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(17, 54, 90, 0.08);
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

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

.stat-card i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy-800);
  font-size: 1.1rem;
}

.stat-card strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-media picture,
.about-media img {
  width: 100%;
}

.about-media img {
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillars {
  padding: 44px 0 58px;
  border-top: 1px solid #e6eef8;
}

.founders {
  padding: 18px 0 68px;
}

.founders-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.founders-media {
  position: relative;
}

.founders-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23, 140, 255, 0.18), rgba(0, 45, 91, 0.3));
}

.founders-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 35px rgba(17, 54, 90, 0.06);
}

.pillar-card > i {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy-800);
  font-size: 1.6rem;
  box-shadow: inset 0 0 0 4px rgba(104, 184, 255, 0.15);
}

.pillar-card h3,
.solution-card h3,
.job-card h3,
.featured-job h3,
.step h3,
.proof-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.15;
}

.pillar-card p,
.solution-card p,
.job-card p,
.featured-job p,
.step p,
.proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(11, 124, 255, 0.2), transparent 26%),
    radial-gradient(circle at 86% 40%, rgba(107, 215, 255, 0.1), transparent 32%),
    linear-gradient(180deg, var(--navy-900), var(--navy-850) 52%, var(--navy-900));
}

.section-dark .eyebrow {
  color: var(--blue-300);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.solutions {
  padding: 64px 0 66px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 60px;
  margin-bottom: 28px;
}

.section-heading.split p:last-child {
  margin-bottom: 8px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.solution-card {
  min-height: 150px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(104, 184, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(6, 55, 104, 0.72), rgba(2, 44, 86, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.solution-card > i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #b8d8ff;
  border: 2px solid rgba(184, 216, 255, 0.74);
  border-radius: 8px;
  font-size: 1.45rem;
}

.solution-card p {
  max-width: 320px;
}

.solution-group {
  min-height: 440px;
}

.solution-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.solution-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-300);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.jobs {
  padding: 58px 0 54px;
  border-top: 1px solid rgba(104, 184, 255, 0.15);
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.55fr);
  gap: 34px 54px;
}

.jobs-intro {
  align-self: start;
}

.jobs-intro .note {
  display: flex;
  gap: 10px;
  max-width: 360px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.87rem;
}

.jobs-intro .note i {
  color: var(--blue-300);
  margin-top: 3px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}

.chips button {
  min-height: 34px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(104, 184, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  font-weight: 800;
}

.chips .is-selected {
  color: var(--white);
  border-color: var(--blue-500);
  background: var(--blue-500);
}

.featured-job {
  position: relative;
  min-height: 190px;
  padding: 26px 250px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(23, 140, 255, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(2, 44, 86, 0.95), rgba(3, 36, 73, 0.86)),
    radial-gradient(circle at 100% 20%, rgba(23, 140, 255, 0.22), transparent 28%);
  box-shadow: 0 20px 42px rgba(0, 10, 25, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 0 10px;
  color: var(--white);
  border-radius: 3px;
  background: var(--blue-500);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.featured-job .btn {
  margin-top: 18px;
}

.featured-star {
  position: absolute;
  right: 58px;
  top: 38px;
  color: rgba(23, 140, 255, 0.34);
  font-size: 8.5rem;
  transform: rotate(-12deg);
}

.job-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.job-card {
  min-height: 192px;
  padding: 28px;
  border: 1px solid rgba(104, 184, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(6, 55, 104, 0.72);
}

.job-card p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.job-card i {
  color: #b8d8ff;
}

.job-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  margin-top: 18px;
  color: var(--white);
  border-radius: 6px;
  background: rgba(11, 124, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.job-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: -2px;
}

.method {
  padding: 48px 0 58px;
  border-top: 1px solid #e5edf8;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-500) 10%, var(--blue-500) 90%, transparent);
}

.step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step > i {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  color: var(--blue-500);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 54, 90, 0.08);
  font-size: 1.65rem;
}

.step h3 {
  font-size: 1.15rem;
}

.step p {
  max-width: 190px;
  font-size: 0.82rem;
}

.why {
  padding: 58px 0 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 60px;
}

.why .check-list {
  color: rgba(255, 255, 255, 0.84);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(104, 184, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(6, 55, 104, 0.55);
}

.proof-grid article {
  min-height: 198px;
  padding: 30px 20px 26px;
  text-align: center;
  border-right: 1px solid rgba(104, 184, 255, 0.25);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid i {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  color: #b8d8ff;
  border: 2px solid rgba(184, 216, 255, 0.72);
  border-radius: 50%;
  font-size: 1.55rem;
}

.proof-grid h3 {
  font-size: 1.08rem;
}

.proof-grid p {
  font-size: 0.82rem;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(180deg, #021b35, #001223);
  border-top: 1px solid rgba(104, 184, 255, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 1fr 1.1fr;
  gap: 58px;
  padding: 48px 0 38px;
}

.footer-brand p,
.footer-cta p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta .btn {
  margin-top: 18px;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--blue-300);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--navy-900);
  border-radius: 50%;
  background: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

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

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 0.8rem;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 0;
  }

  .trust-label {
    grid-column: 1 / -1;
    text-align: center;
  }

  .about-grid,
  .founders-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 740px;
  }

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

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

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(104, 184, 255, 0.25);
    border-radius: var(--radius);
    background: rgba(0, 22, 44, 0.96);
    box-shadow: 0 22px 48px rgba(0, 10, 28, 0.32);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 44px;
    padding: 0 12px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 720px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero-logo-mark {
    justify-self: start;
    width: min(72vw, 340px);
    opacity: 0.82;
    margin-left: 10px;
    transform: none;
  }

  .about,
  .founders,
  .solutions,
  .jobs,
  .why {
    padding-block: 50px;
  }

  .section-heading.split,
  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .chips {
    justify-content: flex-start;
  }

  .featured-job {
    padding-right: 32px;
  }

  .featured-star {
    right: 18px;
    top: 32px;
    opacity: 0.16;
  }

  .solutions-grid,
  .pillar-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .solution-group {
    min-height: 0;
  }

  .proof-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(104, 184, 255, 0.25);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 39px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--blue-500) 10%, var(--blue-500) 90%, transparent);
  }

  .step {
    grid-template-columns: 78px 1fr;
    justify-items: start;
    column-gap: 18px;
    text-align: left;
  }

  .step > i {
    grid-row: span 2;
    margin: 0;
  }

  .step p {
    max-width: none;
  }
}

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

  .brand-logo {
    width: 188px;
  }

  .hero,
  .hero-grid {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 18, 35, 0.86) 0%, rgba(0, 24, 48, 0.88) 54%, rgba(0, 17, 34, 0.88) 100%),
      radial-gradient(circle at 74% 42%, rgba(19, 145, 255, 0.22), transparent 34%);
  }

  .hero-bg img {
    object-position: 66% center;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .hero-logo-mark {
    width: min(76vw, 292px);
    opacity: 0.72;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .client-logo {
    min-height: 38px;
  }

  .client-logo img {
    max-width: 126px;
    max-height: 30px;
  }

  .client-logo--unimed img {
    max-width: 92px;
  }

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

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

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

  .pillar-card {
    align-items: flex-start;
    padding: 24px;
  }

  .solutions-grid {
    gap: 12px;
  }

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

  .job-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .btn {
    width: 100%;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .menu-toggle span {
    display: none;
  }

  .section-copy h2,
  .section-heading h2,
  .jobs-intro h2 {
    font-size: 2rem;
  }

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

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

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

}
