:root {
  --ink: #0b1730;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e6eaef;
  --white: #ffffff;
  --surface: #f6fafb;
  --surface-teal: #e9f8fa;
  --teal: #18a8b7;
  --teal-strong: #0e8f9e;
  --teal-dark: #087582;
  --shadow-sm: 0 8px 24px rgba(11, 23, 48, 0.08);
  --shadow-md: 0 20px 60px rgba(11, 23, 48, 0.13);
  --radius-lg: 30px;
  --radius-md: 22px;
  --content: 1560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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: relative;
  z-index: 50;
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 23, 48, 0.07);
  backdrop-filter: blur(14px);
}

.nav-shell,
.content-shell,
.hero-shell {
  width: min(var(--content), calc(100% - 64px));
  margin-inline: auto;
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 43px;
  height: 43px;
  filter: drop-shadow(0 5px 10px rgba(15, 151, 166, 0.18));
}

.brand-name {
  font-size: 29px;
  letter-spacing: -1.3px;
  line-height: 1;
}

.brand-name strong {
  font-weight: 800;
}

.brand-name b {
  color: var(--teal-strong);
  font-weight: 800;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.35vw, 44px);
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: #2f3a4d;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 19px;
  min-width: max-content;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  color: #3e4858;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.language svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.login {
  color: #2f3a4d;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.login:hover {
  color: var(--teal-dark);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-strong));
  box-shadow: 0 10px 24px rgba(18, 157, 173, 0.22);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 15px 34px rgba(18, 157, 173, 0.28);
}

.primary-button--nav {
  min-height: 53px;
  padding-inline: 29px;
  font-size: 14px;
}

.icon-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.menu-close {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 803px;
  overflow: hidden;
  isolation: isolate;
  background: #eef5f6;
}

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

.hero-media {
  z-index: -4;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 48%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.995) 25%,
      rgba(255,255,255,.95) 39%,
      rgba(255,255,255,.72) 50%,
      rgba(255,255,255,.16) 68%,
      rgba(255,255,255,.01) 84%),
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(7,25,38,.08) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 24, 37, 0.14) 100%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob--one {
  left: -160px;
  top: -170px;
  width: 520px;
  height: 520px;
  background: rgba(29, 177, 191, 0.07);
}

.hero-blob--two {
  left: 41%;
  bottom: -110px;
  width: 360px;
  height: 360px;
  background: rgba(28, 178, 192, 0.07);
}

.hero-shell {
  position: relative;
  min-height: inherit;
  padding-top: 63px;
  padding-bottom: 170px;
}

.hero-copy {
  width: min(765px, 52vw);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 17px;
  color: var(--teal-dark);
  background: rgba(24, 168, 183, 0.10);
  border: 1px solid rgba(24, 168, 183, 0.10);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.hero h1 {
  max-width: 760px;
  margin: 26px 0 17px;
  color: var(--ink);
  font-size: clamp(52px, 4.45vw, 77px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: clamp(-4.3px, -0.24vw, -2px);
}

.hero h1 span {
  display: block;
  color: var(--teal-strong);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #4d5a70;
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.65;
}

.search-panel {
  width: min(815px, 100%);
  min-height: 70px;
  margin-top: 35px;
  padding: 6px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1px minmax(175px, .55fr) auto;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 56px;
  padding-inline: 20px;
  color: var(--teal-strong);
}

.search-field > svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-field input,
.search-field select {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
  font-weight: 500;
}

.search-field input::placeholder {
  color: #8b95a7;
  opacity: 1;
}

.search-field select {
  padding-right: 32px;
  appearance: none;
  cursor: pointer;
}

.search-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.search-field .select-chevron {
  position: absolute;
  right: 17px;
  width: 16px;
  height: 16px;
  color: #4c586a;
  pointer-events: none;
}

.search-button {
  min-width: 218px;
  height: 58px;
  padding-inline: 24px;
  font-size: 15px;
}

.quick-categories {
  width: min(820px, 100%);
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  gap: 13px;
}

.quick-category {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #344054;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  transition: color 180ms ease, transform 180ms ease;
}

.quick-category:hover {
  color: var(--teal-dark);
  transform: translateY(-3px);
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--teal-strong);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 234, 239, 0.9);
  border-radius: 18px;
  box-shadow: 0 11px 25px rgba(13, 45, 69, 0.08);
}

.quick-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hand-note {
  position: absolute;
  z-index: 3;
  color: #14213a;
  font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
  pointer-events: none;
}

.hand-note--top {
  top: 61px;
  right: 1.5%;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  transform: rotate(-4deg);
  font-size: 34px;
  font-weight: 600;
  line-height: 0.95;
}

.hand-note--top svg {
  width: 80px;
  height: 90px;
  margin-left: -7px;
  margin-bottom: -44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hand-note--box {
  top: 47%;
  right: 10.5%;
  color: rgba(21, 35, 54, 0.90);
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-4deg);
  mix-blend-mode: multiply;
}

.hand-note--box span {
  font-size: .85em;
}

.trust-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  min-height: 113px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 130px;
  align-items: center;
  padding: 17px 25px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
}

.trust-item {
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--teal-strong);
}

.trust-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item:nth-child(3) .trust-icon svg,
.trust-item:nth-child(4) .trust-icon svg {
  fill: currentColor;
  stroke-width: 1.4;
}

.trust-item > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-item strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.trust-item span:not(.trust-icon) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.trust-signature {
  justify-self: center;
  color: var(--teal-strong);
  font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
  font-size: 31px;
  font-weight: 700;
  line-height: .82;
  text-align: center;
  transform: rotate(-4deg);
}

.section {
  padding: 112px 0;
}

.section--how {
  background: var(--white);
}

.section--categories {
  background: var(--surface);
}

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

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.section-heading h2,
.cta-card h2 {
  margin: 17px 0 14px;
  color: var(--ink);
  font-size: clamp(38px, 3.3vw, 56px);
  line-height: 1.05;
  letter-spacing: -2.4px;
}

.section-heading p,
.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  background: rgba(24, 168, 183, 0.08);
  border-radius: 50%;
}

.step-number {
  position: absolute;
  top: 23px;
  right: 28px;
  color: rgba(14, 143, 158, 0.15);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -3px;
}

.step-icon,
.category-icon {
  display: grid;
  place-items: center;
  color: var(--teal-strong);
  background: var(--surface-teal);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 19px;
}

.step-icon svg,
.category-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin: 30px 0 11px;
  font-size: 22px;
  letter-spacing: -0.7px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.text-link svg,
.secondary-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.category-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 5px;
  align-items: center;
  min-height: 112px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(11, 23, 48, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 168, 183, 0.24);
  box-shadow: 0 16px 36px rgba(11, 23, 48, 0.10);
}

.category-icon {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.category-card strong {
  align-self: end;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.category-card > span:last-child {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}

.section--cta {
  padding: 90px 0;
  background: var(--white);
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 300px;
  padding: 64px 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #0e8795, #0ba1b1 58%, #15b5c1);
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(10, 130, 144, 0.23);
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.cta-card::before {
  right: -110px;
  top: -130px;
  width: 360px;
  height: 360px;
}

.cta-card::after {
  right: 70px;
  bottom: -150px;
  width: 260px;
  height: 260px;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2,
.cta-card p {
  color: var(--white);
}

.cta-card p {
  opacity: .84;
}

.section-kicker--light {
  color: var(--white);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.16);
}

.secondary-button {
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 61, 70, 0.15);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(410px, calc(100% - 48px));
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.toast svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 4px;
  color: var(--white);
  background: var(--teal-strong);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast span {
  font-size: 13px;
  line-height: 1.45;
}

:focus-visible {
  outline: 3px solid rgba(24, 168, 183, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1400px) {
  .nav-shell {
    gap: 25px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav a,
  .login,
  .primary-button--nav {
    font-size: 13px;
  }

  .hero-copy {
    width: min(720px, 58vw);
  }

  .hand-note--box {
    right: 7.5%;
  }

  .trust-item {
    padding-inline: 17px;
    gap: 13px;
  }

  .trust-bar {
    grid-template-columns: repeat(4, 1fr) 100px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-actions {
    justify-self: end;
  }

  .icon-button {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 5px;
    padding: 18px 32px 26px;
    background: rgba(255,255,255,.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(11,23,48,.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a:not(.primary-button) {
    padding: 13px 4px;
    color: var(--ink-soft);
    font-weight: 600;
  }

  .mobile-nav .primary-button {
    margin-top: 8px;
  }

  .mobile-menu-button[aria-expanded="true"] .menu-open {
    display: none;
  }

  .mobile-menu-button[aria-expanded="true"] .menu-close {
    display: block;
  }

  .hero {
    min-height: 850px;
  }

  .hero-copy {
    width: min(690px, 64vw);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 33%, rgba(255,255,255,.87) 51%, rgba(255,255,255,.1) 78%),
      linear-gradient(180deg, rgba(255,255,255,.06), rgba(7,25,38,.1));
  }

  .quick-categories {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    width: 650px;
  }

  .quick-category:nth-child(n+5) {
    display: none;
  }

  .hand-note--top,
  .hand-note--box {
    display: none;
  }

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

  .trust-signature {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-shell,
  .content-shell,
  .hero-shell {
    width: min(100% - 36px, var(--content));
  }

  .site-header {
    height: 68px;
  }

  .mobile-nav {
    top: 68px;
    padding-inline: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 24px;
  }

  .language,
  .nav-divider,
  .login,
  .primary-button--nav {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-bottom: 0;
    background: var(--white);
  }

  .hero-media,
  .hero-media img {
    height: 420px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-overlay {
    height: 510px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.12) 45%, #fff 96%),
      linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  }

  .hero::after,
  .hero-blob {
    display: none;
  }

  .hero-shell {
    min-height: 0;
    padding-top: 345px;
    padding-bottom: 38px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    background: rgba(255,255,255,.93);
    box-shadow: var(--shadow-sm);
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(44px, 10.5vw, 68px);
    letter-spacing: -2.8px;
  }

  .hero-lead {
    max-width: 720px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 9px;
    border-radius: 25px;
  }

  .search-field {
    width: 100%;
    border-radius: 17px;
    background: var(--surface);
  }

  .search-divider {
    display: none;
  }

  .search-button {
    width: 100%;
  }

  .quick-categories {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-bar {
    position: static;
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 15px;
    border: 1px solid var(--line);
  }

  .trust-item {
    padding: 18px;
  }

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

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

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

  .section {
    padding: 80px 0;
  }

  .cta-card {
    padding: 48px;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .content-shell,
  .hero-shell {
    width: min(100% - 28px, var(--content));
  }

  .hero-media,
  .hero-media img {
    height: 335px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    height: 420px;
  }

  .hero-shell {
    padding-top: 275px;
  }

  .eyebrow {
    min-height: 34px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.01;
    letter-spacing: -2.2px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .quick-categories {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 1px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quick-categories::-webkit-scrollbar {
    display: none;
  }

  .quick-category {
    flex: 0 0 91px;
    scroll-snap-align: start;
  }

  .quick-category:nth-child(n+5) {
    display: flex;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    border-radius: 23px;
  }

  .trust-item,
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-of-type {
    border-bottom: 0;
  }

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

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

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }

  .step-card {
    min-height: 260px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 27px;
    border-radius: 28px;
  }

  .secondary-button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   MicroJobik - rozsirenia k redesignu 2026
   Komponenty pre zive data: karty uloh, detail, cennik, footer.
   Drzi sa premennych a tvaroslovia zo styles.css.
   ============================================================ */

/* ---------- Zoznam uloh ---------- */
.jobs-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:26px;
}
.job-card{
  display:flex;flex-direction:column;overflow:hidden;background:var(--white);
  border:1px solid var(--line);border-radius:var(--radius-md);
  box-shadow:0 8px 22px rgba(11,23,48,.05);
  transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease;
}
.job-card:hover{transform:translateY(-4px);border-color:rgba(24,168,183,.24);box-shadow:var(--shadow-md)}
.job-media{position:relative;aspect-ratio:16/10;background:var(--surface-teal);overflow:hidden}
.job-media img{width:100%;height:100%;object-fit:cover;transition:transform 450ms ease}
.job-card:hover .job-media img{transform:scale(1.045)}
.job-media .job-ph{width:100%;height:100%;display:grid;place-items:center;color:var(--teal);opacity:.5}
.job-media .job-ph svg{width:54px;height:54px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.job-flags{position:absolute;top:14px;left:14px;display:flex;gap:7px;flex-wrap:wrap}
.job-flag{min-height:28px;display:inline-flex;align-items:center;padding:0 12px;border-radius:999px;
  background:rgba(255,255,255,.94);backdrop-filter:blur(6px);color:var(--ink-soft);
  font-size:12px;font-weight:700;box-shadow:0 4px 12px rgba(11,23,48,.10)}
.job-flag--hot{background:linear-gradient(135deg,#ff8a4c,#f96a2b);color:#fff}
.job-reward{position:absolute;right:14px;bottom:14px;min-height:40px;display:inline-flex;align-items:center;
  padding:0 17px;border-radius:999px;background:var(--white);color:var(--teal-dark);
  font-size:17px;font-weight:800;letter-spacing:-.4px;box-shadow:0 10px 24px rgba(11,23,48,.14)}
.job-body{display:flex;flex-direction:column;flex:1;padding:24px 25px 26px}
.job-kicker{display:inline-flex;align-items:center;gap:7px;color:var(--teal-dark);
  font-size:12.5px;font-weight:700;letter-spacing:.02em;text-transform:uppercase;margin-bottom:11px}
.job-kicker svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.job-body h3{margin:0 0 10px;font-size:19px;letter-spacing:-.6px;line-height:1.3}
.job-text{margin:0;flex:1;color:var(--muted);font-size:15px;line-height:1.65;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.job-foot{display:flex;align-items:center;gap:10px;margin-top:19px;padding-top:17px;
  border-top:1px solid var(--line);color:var(--muted);font-size:13.5px}
.job-place{display:inline-flex;align-items:center;gap:6px;min-width:0;color:var(--ink-soft);font-weight:600}
.job-place svg{width:16px;height:16px;flex:none;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.job-place span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.job-when{margin-left:auto;flex:none}

/* ---------- Filtre ---------- */
.filter-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:34px}
.filter-chip{display:inline-flex;align-items:center;gap:8px;min-height:44px;padding:0 19px;
  background:var(--white);border:1px solid var(--line);border-radius:999px;
  color:var(--ink-soft);font-size:14.5px;font-weight:600;
  transition:transform 160ms ease,border-color 160ms ease,color 160ms ease}
.filter-chip svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.filter-chip:hover{border-color:rgba(24,168,183,.35);color:var(--teal-dark);transform:translateY(-2px)}
.filter-chip[aria-current]{background:linear-gradient(135deg,var(--teal),var(--teal-strong));
  border-color:transparent;color:#fff;box-shadow:0 10px 24px rgba(18,157,173,.22)}

/* vyhladavaci panel na podstrankach */
.search-panel--page{margin:0 auto 34px;max-width:760px}

/* ---------- Prazdny stav ---------- */
.empty-state{padding:90px 20px;text-align:center;color:var(--muted)}
.empty-state svg{width:64px;height:64px;margin:0 auto 20px;display:block;color:var(--teal);
  opacity:.45;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.empty-state h3{margin:0 0 10px;color:var(--ink);font-size:24px;letter-spacing:-.6px}
.empty-state p{margin:0 auto;max-width:34em;font-size:16px;line-height:1.7}

/* ---------- Hlavicka podstranky ---------- */
.page-head{padding:52px 0 8px;background:
  radial-gradient(900px 380px at 78% -30%,rgba(24,168,183,.13),transparent 62%),var(--surface)}
.page-head .section-heading{margin-bottom:0}
.crumbs{display:flex;align-items:center;gap:9px;flex-wrap:wrap;
  padding:26px 0 0;color:var(--muted);font-size:14px}
.crumbs a{color:var(--muted);font-weight:600}
.crumbs a:hover{color:var(--teal-dark)}
.crumbs svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;opacity:.6}

/* ---------- Detail ulohy ---------- */
.detail-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(320px,.9fr);
  gap:46px;align-items:start;padding:30px 0 40px}
.detail-media{overflow:hidden;margin-bottom:32px;background:var(--surface-teal);
  border:1px solid var(--line);border-radius:var(--radius-lg)}
.detail-grid h1{margin:0 0 18px;font-size:clamp(30px,3.7vw,46px);letter-spacing:-1.6px;line-height:1.1}
.detail-facts{display:flex;flex-wrap:wrap;gap:12px;padding-bottom:26px;margin-bottom:26px;
  border-bottom:1px solid var(--line)}
.detail-fact{display:inline-flex;align-items:center;gap:9px;min-height:42px;padding:0 17px;
  background:var(--white);border:1px solid var(--line);border-radius:999px;
  color:var(--ink-soft);font-size:14.5px;font-weight:600}
.detail-fact svg{width:17px;height:17px;flex:none;color:var(--teal-dark);
  fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.detail-text{color:var(--ink-soft);font-size:17px;line-height:1.8;white-space:pre-line}

.offer-card{position:sticky;top:104px;padding:32px;background:var(--white);
  border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}
.offer-price{font-size:44px;font-weight:900;letter-spacing:-2px;line-height:1;color:var(--ink)}
.offer-price small{display:block;margin-top:9px;color:var(--muted);
  font-size:14px;font-weight:600;letter-spacing:0}
.offer-card .primary-button{width:100%;margin-top:24px}
.offer-split{margin-top:22px;padding-top:20px;border-top:1px dashed var(--line)}
.offer-line{display:flex;justify-content:space-between;align-items:baseline;
  padding:7px 0;color:var(--muted);font-size:14.5px}
.offer-line b{color:var(--ink-soft);font-weight:700}
.offer-line--net{margin-top:8px;padding-top:13px;border-top:1px solid var(--line);
  color:var(--teal-dark);font-size:16px}
.offer-line--net b{color:var(--teal-dark);font-size:19px;font-weight:800;letter-spacing:-.5px}
.offer-note{display:flex;gap:10px;margin-top:20px;padding:15px 17px;
  background:var(--surface-teal);border-radius:16px;color:var(--teal-dark);
  font-size:13.5px;line-height:1.6}
.offer-note svg{width:19px;height:19px;flex:none;margin-top:1px;
  fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* ---------- Cennik ---------- */
.price-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:34px;align-items:start}
.price-card{padding:36px;background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.price-card h3{margin:0 0 22px;font-size:22px;letter-spacing:-.7px}
.price-line{display:flex;justify-content:space-between;align-items:baseline;
  padding:15px 0;border-bottom:1px dashed var(--line);font-size:15.5px;color:var(--muted)}
.price-line:last-of-type{border-bottom:0}
.price-line b{color:var(--ink);font-size:17px;font-weight:700}
.price-total{display:flex;justify-content:space-between;align-items:center;
  margin-top:18px;padding:20px 24px;background:var(--surface-teal);border-radius:20px}
.price-total span{color:var(--teal-dark);font-weight:700}
.price-total b{color:var(--teal-dark);font-size:28px;font-weight:900;letter-spacing:-1.1px}
.check-list{list-style:none;margin:0;padding:0}
.check-list li{display:flex;gap:13px;align-items:flex-start;padding:11px 0;
  color:var(--ink-soft);font-size:15.5px;line-height:1.65}
.check-list svg{width:21px;height:21px;flex:none;margin-top:2px;color:var(--teal);
  fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}

/* ---------- Ako to funguje: ochrana platby ---------- */
.split-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:44px;align-items:center}
.split-grid h2{margin:0 0 16px;font-size:clamp(26px,3vw,36px);letter-spacing:-1.2px}
.split-grid > div > p{margin:0 0 20px;color:var(--muted);font-size:17px;line-height:1.75}

/* ---------- Pata ---------- */
.site-footer{padding:76px 0 34px;background:#08222b;color:#9db4bb;font-size:15px}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;
  padding-bottom:38px;border-bottom:1px solid rgba(255,255,255,.09)}
.site-footer .brand{margin-bottom:16px}
.site-footer .brand-name{color:#fff}
.site-footer .brand-name b{color:#3fd0dd}
.site-footer p{margin:0;max-width:27em;line-height:1.75}
.site-footer h4{margin:0 0 16px;color:#fff;font-size:13px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase}
.site-footer ul{list-style:none;margin:0;padding:0}
.site-footer li{margin-bottom:11px}
.site-footer a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;
  padding-top:26px;font-size:13.5px;color:#7f979e}

/* ---------- Doplnky ---------- */
.section--tight{padding-top:76px}
.section-heading--row{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;flex-wrap:wrap}
.center-action{margin-top:44px;text-align:center}

@media (max-width:1100px){
  .detail-grid{grid-template-columns:1fr;gap:32px}
  .offer-card{position:static}
  .price-grid,.split-grid{grid-template-columns:1fr;gap:28px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
}
@media (max-width:640px){
  .section{padding:70px 0}
  .page-head{padding-top:34px}
  .jobs-grid{grid-template-columns:1fr;gap:20px}
  .price-card{padding:26px}
  .offer-card{padding:26px}
  .footer-grid{grid-template-columns:1fr;gap:26px}
  .detail-grid{padding-top:18px}
}
