:root {
  --um-green: #00a86b;
  --um-green-dark: #047857;
  --um-green-deep: #073b2c;
  --um-ink: #0b1f1a;
  --um-text: #3f5d54;
  --um-muted: #71877f;
  --um-paper: #fffefa;
  --um-soft: #f4f8f6;
  --um-line: #dce8e2;
  --um-white: #fff;
  --um-danger: #b42318;
  --um-success: #047857;
  --um-radius: 24px;
  --um-radius-sm: 16px;
  --um-shadow: 0 24px 70px rgba(11, 31, 26, 0.1);
  --um-shadow-sm: 0 12px 36px rgba(11, 31, 26, 0.07);
  --um-header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html.menu-open, html.menu-open body { overflow: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--um-paper);
  color: var(--um-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(0, 168, 107, 0.25);
  outline-offset: 3px;
}
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: -100px; left: 16px; padding: 12px 16px; border-radius: 12px; background: #fff; }
.skip-link:focus { top: 16px; }
.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; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: var(--um-header-height);
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(220, 232, 226, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { background: rgba(255, 254, 250, 0.98); box-shadow: 0 12px 34px rgba(11, 31, 26, 0.07); }
.site-header__inner { min-height: var(--um-header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; text-decoration: none; }
.brand img { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; }
.brand > span { display: grid; gap: 3px; min-width: 0; }
.brand strong { font-size: 18px; font-weight: 950; line-height: 1; letter-spacing: -.035em; white-space: nowrap; }
.brand small { font-size: 11px; color: var(--um-muted); font-weight: 720; white-space: nowrap; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(13px, 1.8vw, 24px); }
.desktop-nav > a, .nav-dropdown__trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #315348;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.desktop-nav > a { padding: 0 5px; }
.desktop-nav > a:hover, .desktop-nav > a[aria-current="page"] { color: var(--um-green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { gap: 8px; padding: 0 12px; }
.nav-dropdown__trigger:hover, .nav-dropdown.is-open .nav-dropdown__trigger, .nav-dropdown.is-current .nav-dropdown__trigger { color: var(--um-green-dark); background: rgba(0, 168, 107, 0.075); }
.nav-chevron { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 340px;
  padding: 9px;
  border: 1px solid var(--um-line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--um-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.nav-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--um-line);
  border-left: 1px solid var(--um-line);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown.is-open .nav-dropdown__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown__panel a { position: relative; z-index: 1; display: grid; gap: 2px; padding: 12px 13px; border-radius: 13px; text-decoration: none; }
.nav-dropdown__panel a:hover, .nav-dropdown__panel a[aria-current="page"] { background: var(--um-soft); }
.nav-dropdown__panel strong { font-size: 14px; }
.nav-dropdown__panel small { font-size: 11px; color: var(--um-muted); }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }

/* Buttons */
.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--um-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--compact { min-height: 44px; padding-inline: 17px; font-size: 13px; }
.button--large { min-height: 54px; padding-inline: 25px; }
.button--primary { background: var(--um-green); color: #fff; box-shadow: 0 13px 30px rgba(0, 168, 107, 0.2); }
.button--primary:hover { background: var(--um-green-dark); }
.button--ghost { border-color: var(--um-line); background: #fff; }
.button--ghost:hover { border-color: #b9d2c7; color: var(--um-green-dark); }
.button--white { background: #fff; color: var(--um-green-dark); }
.button--text { min-height: 40px; padding-inline: 0; color: var(--um-green-dark); }
.button--block { width: 100%; }
.button[disabled] { opacity: .65; cursor: progress; transform: none; }
.text-link { display: inline-flex; margin-top: 24px; color: var(--um-green-dark); font-weight: 900; text-decoration: none; }

/* Mobile menu */
.menu-toggle { display: none; min-height: 45px; padding: 0 13px; align-items: center; gap: 9px; border: 1px solid var(--um-line); border-radius: 999px; background: #fff; color: var(--um-ink); font-weight: 900; cursor: pointer; }
.menu-toggle__label { font-size: 13px; }
.menu-toggle__icon { width: 20px; display: grid; gap: 4px; }
.menu-toggle__icon i { height: 2px; border-radius: 99px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-backdrop { position: fixed; inset: 0; z-index: 190; background: rgba(3, 16, 13, .42); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.menu-backdrop.is-open { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  color: var(--um-ink);
  box-shadow: -24px 0 70px rgba(0, 0, 0, .18);
  transform: translateX(104%);
  visibility: hidden;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), visibility .28s ease;
}
.mobile-drawer.is-open { transform: translateX(0); visibility: visible; }
.mobile-drawer__top { min-height: 78px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--um-line); }
.drawer-close { position: relative; width: 43px; height: 43px; border: 1px solid var(--um-line); border-radius: 50%; background: var(--um-soft); cursor: pointer; }
.drawer-close span { position: absolute; left: 12px; right: 12px; top: 20px; height: 2px; background: var(--um-ink); }
.drawer-close span:first-child { transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }
.mobile-drawer__scroll { overflow: auto; padding: 20px 20px 32px; }
.drawer-nav { display: grid; }
.drawer-nav > a, .drawer-accordion > button { min-height: 56px; width: 100%; display: flex; align-items: center; justify-content: space-between; border: 0; border-bottom: 1px solid #edf2ef; background: transparent; color: var(--um-ink); font-size: 17px; font-weight: 850; text-align: left; text-decoration: none; cursor: pointer; }
.drawer-accordion > button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.drawer-accordion > button[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-accordion__panel { display: grid; padding: 6px 0 14px 14px; border-bottom: 1px solid #edf2ef; }
.drawer-accordion__panel[hidden] { display: none; }
.drawer-accordion__panel a { padding: 10px 0; color: var(--um-text); font-size: 15px; font-weight: 750; text-decoration: none; }
.mobile-drawer__actions { padding: 14px 18px 18px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 9px; border-top: 1px solid var(--um-line); background: rgba(255,255,255,.96); }

/* Type and layout */
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--um-green-dark); font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--um-green); box-shadow: 0 0 0 6px rgba(0, 168, 107, .11); }
.kicker--light { color: #c8f7df; }
.section { padding: clamp(72px, 8vw, 108px) 0; }
.section--soft { background: var(--um-soft); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .compact-copy h2, .preview-copy h2, .lead-layout__intro h2, .recruitment-aside h2, .coverage-simple h2, .platform-showcase h2, .content-split h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -.052em;
}
.section-heading p, .large-copy, .compact-copy p, .lead-layout__intro p, .recruitment-aside p, .coverage-simple p, .preview-copy p { color: var(--um-text); font-size: 17px; line-height: 1.72; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 17px !important; color: var(--um-muted) !important; font-size: 13px !important; }
.center-actions { margin-top: 32px; text-align: center; }
.breadcrumbs { margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--um-muted); font-size: 13px; }
.breadcrumbs a { text-decoration: none; }

/* Home */
.home-hero { position: relative; padding: clamp(66px, 8vw, 104px) 0 clamp(58px, 7vw, 88px); overflow: hidden; }
.home-hero::before { content: ""; position: absolute; top: -180px; left: -220px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(0,168,107,.12), transparent 68%); pointer-events: none; }
.home-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(48px, 7vw, 90px); align-items: center; }
.home-hero__copy h1 { margin: 18px 0 24px; max-width: 680px; font-size: clamp(50px, 6.3vw, 82px); line-height: .96; letter-spacing: -.065em; }
.home-hero__copy h1 em { display: block; color: var(--um-green); font-style: normal; }
.home-hero__copy > p { max-width: 650px; margin: 0; color: var(--um-text); font-size: clamp(18px, 1.8vw, 20px); line-height: 1.7; }
.tracking-showcase { width: 100%; max-width: 590px; justify-self: end; overflow: hidden; border: 1px solid var(--um-line); border-radius: 30px; background: #fff; box-shadow: var(--um-shadow); }
.tracking-showcase__head, .tracking-showcase__footer { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.tracking-showcase__head { border-bottom: 1px solid #edf2ef; }
.tracking-showcase__head span { color: var(--um-muted); font-size: 13px; font-weight: 750; }
.tracking-showcase__head b { color: var(--um-green-dark); font-size: 13px; }
.tracking-showcase__map { height: 380px; background: #f6faf8; }
.tracking-showcase__map svg { width: 100%; height: 100%; }
.map-road { fill: none; stroke: #dbe6e1; stroke-width: 3; }
.delivery-route { fill: none; stroke: var(--um-green); stroke-width: 7; stroke-linecap: round; }
.route-start { fill: var(--um-ink); }
.route-end { fill: var(--um-green); }
.route-rider circle { fill: #fff; stroke: var(--um-green); stroke-width: 5; filter: drop-shadow(0 8px 10px rgba(11,31,26,.16)); }
.route-rider path { fill: none; stroke: var(--um-green-dark); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.tracking-showcase__footer { border-top: 1px solid #edf2ef; }
.tracking-showcase__footer small { display: block; color: var(--um-muted); font-size: 11px; }
.tracking-showcase__footer strong { font-size: 18px; }
.tracking-status { display: flex; align-items: center; gap: 8px; color: var(--um-green-dark); font-size: 13px; }
.tracking-status span { width: 9px; height: 9px; border-radius: 50%; background: var(--um-green); box-shadow: 0 0 0 6px rgba(0,168,107,.11); }
.value-line { border-top: 1px solid var(--um-line); border-bottom: 1px solid var(--um-line); background: #fff; }
.value-line .container { min-height: 104px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; text-align: center; }
.value-line strong { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -.03em; }
.value-line span { color: var(--um-green); font-size: 24px; }
.value-line p { flex-basis: 100%; margin: -2px 0 0; color: var(--um-muted); font-size: 14px; }
.solution-cards { display: grid; gap: 18px; }
.solution-cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.solution-card { min-height: 280px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--um-line); border-radius: var(--um-radius); background: #fff; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.solution-card:hover { transform: translateY(-3px); border-color: #bad5c8; box-shadow: var(--um-shadow-sm); }
.solution-card > span { color: var(--um-green-dark); font-size: 12px; font-weight: 950; }
.solution-card h3 { margin: auto 0 12px; font-size: 26px; letter-spacing: -.035em; }
.solution-card p { margin: 0 0 24px; color: var(--um-text); }
.solution-card b { color: var(--um-green-dark); font-size: 13px; }
.process-line { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; }
.process-line > i { color: #9db4aa; font-size: 26px; font-style: normal; }
.process-line article { display: flex; gap: 17px; align-items: flex-start; }
.process-line article > span { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 50%; background: var(--um-green); color: #fff; font-weight: 950; }
.process-line h3 { margin: 1px 0 6px; font-size: 20px; }
.process-line p { margin: 0; color: var(--um-text); }
.split-preview__grid, .platform-showcase, .content-split--simple { display: grid; grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr); gap: clamp(50px, 7vw, 90px); align-items: center; }
.simple-list { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 11px; }
.simple-list li { position: relative; padding-left: 27px; color: var(--um-text); font-weight: 700; }
.simple-list li::before { content: "✓"; position: absolute; left: 0; color: var(--um-green); font-weight: 950; }
.clean-dashboard { overflow: hidden; border: 1px solid var(--um-line); border-radius: 28px; background: #fff; box-shadow: var(--um-shadow); }
.clean-dashboard__top { min-height: 68px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf2ef; }
.clean-dashboard__top span { color: var(--um-muted); font-size: 12px; }
.clean-dashboard__metrics { padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.clean-dashboard__metrics div { padding: 16px; border-radius: 15px; background: var(--um-soft); }
.clean-dashboard__metrics small { display: block; color: var(--um-muted); font-size: 11px; }
.clean-dashboard__metrics strong { font-size: 27px; }
.clean-dashboard__rows { padding: 0 20px 20px; }
.clean-dashboard__rows p { margin: 0; padding: 15px 3px; display: grid; grid-template-columns: 92px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid #edf2ef; font-size: 13px; }
.clean-dashboard__rows p:last-child { border-bottom: 0; }
.clean-dashboard__rows span { color: var(--um-text); }
.clean-dashboard__rows em { padding: 5px 8px; border-radius: 999px; background: #e7f7ef; color: var(--um-green-dark); font-size: 10px; font-style: normal; font-weight: 850; }
.clean-dashboard--large { max-width: 650px; }
.integration-home { padding: clamp(66px, 7vw, 90px) 0; background: var(--um-green-deep); color: #fff; }
.integration-simple { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; }
.integration-simple h2 { max-width: 820px; margin: 12px 0 14px; font-size: clamp(35px, 4.7vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
.integration-simple p { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; }
.home-paths__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.home-paths__grid a, .contact-options a { padding: 34px; border: 1px solid var(--um-line); border-radius: var(--um-radius); background: #fff; text-decoration: none; }
.home-paths__grid small, .contact-options small { color: var(--um-green-dark); font-weight: 850; }
.home-paths__grid h2, .contact-options h2 { margin: 35px 0 16px; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -.045em; }
.home-paths__grid span, .contact-options span { color: var(--um-green-dark); font-weight: 900; }

/* Inner pages */
.page-hero { position: relative; padding: clamp(54px, 7vw, 88px) 0 clamp(60px, 7vw, 92px); overflow: hidden; border-bottom: 1px solid rgba(220,232,226,.8); }
.page-hero::before { content: ""; position: absolute; top: -220px; right: -220px; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, rgba(0,168,107,.09), transparent 68%); }
.page-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .56fr); gap: clamp(44px, 7vw, 90px); align-items: center; }
.page-hero h1 { margin: 16px 0 22px; max-width: 850px; font-size: clamp(44px, 6vw, 72px); line-height: .99; letter-spacing: -.062em; }
.page-hero p { max-width: 700px; margin: 0; color: var(--um-text); font-size: 18px; line-height: 1.7; }
.quiet-card { padding: 26px; border: 1px solid var(--um-line); border-radius: 22px; background: rgba(255,255,255,.75); box-shadow: var(--um-shadow-sm); }
.quiet-card > strong { display: block; margin-bottom: 13px; font-size: 18px; }
.quiet-card ul, .quiet-card ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; color: var(--um-text); }
.quiet-card p { font-size: 15px; }
.plain-points { display: grid; gap: 4px; }
.plain-points article { padding: 22px 0; display: grid; grid-template-columns: 40px 1fr; gap: 18px; border-bottom: 1px solid var(--um-line); }
.plain-points article:last-child { border-bottom: 0; }
.plain-points article > span { color: var(--um-green-dark); font-size: 12px; font-weight: 950; }
.plain-points h3 { margin: 0 0 7px; font-size: 20px; }
.plain-points p { margin: 0; color: var(--um-text); }
.compact-copy { max-width: 820px; margin-inline: auto; text-align: center; }
.process-detail { max-width: 900px; display: grid; gap: 0; }
.process-detail article { padding: 30px 0; display: grid; grid-template-columns: 58px 1fr; gap: 22px; border-bottom: 1px solid var(--um-line); }
.process-detail article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--um-green); color: #fff; font-weight: 950; }
.process-detail h2 { margin: 0 0 8px; font-size: 27px; }
.process-detail p { margin: 0; color: var(--um-text); }
.coverage-simple { display: grid; grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr); gap: 70px; align-items: center; }
.coverage-form label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 850; }
.coverage-form > div:first-of-type { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.coverage-lines { position: relative; height: 310px; border: 1px solid var(--um-line); border-radius: 28px; overflow: hidden; background: var(--um-soft); }
.coverage-lines::before, .coverage-lines::after { content: ""; position: absolute; border: 2px solid rgba(0,168,107,.16); border-radius: 50%; }
.coverage-lines::before { width: 300px; height: 300px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.coverage-lines::after { width: 180px; height: 180px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.coverage-lines span { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--um-green); box-shadow: 0 0 0 8px rgba(0,168,107,.12); }
.coverage-lines span:nth-child(1) { left: 22%; top: 28%; }
.coverage-lines span:nth-child(2) { right: 24%; top: 38%; }
.coverage-lines span:nth-child(3) { left: 46%; bottom: 22%; }
.coverage-lines b { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); padding: 11px 16px; border-radius: 999px; background: var(--um-green-deep); color: #fff; }
.coverage-response { margin-top: 14px; padding: 16px; border-radius: 15px; background: var(--um-soft); }
.coverage-response strong { display: block; margin-bottom: 5px; }
.coverage-response p { margin: 0 0 12px; font-size: 14px; }
.waitlist-grid, .lead-layout, .recruitment-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(480px, 1.05fr); gap: clamp(50px, 7vw, 90px); align-items: start; }
.career-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.career-choice-grid article { padding: clamp(28px, 4vw, 46px); border: 1px solid var(--um-line); border-radius: var(--um-radius); background: #fff; }
.career-choice-grid article:first-child { border-color: rgba(0,168,107,.35); box-shadow: var(--um-shadow-sm); }
.career-choice-grid small { color: var(--um-green-dark); font-weight: 900; }
.career-choice-grid h2 { margin: 32px 0 13px; font-size: clamp(30px, 3.5vw, 44px); letter-spacing: -.045em; }
.career-choice-grid p { color: var(--um-text); }
.career-choice-visual { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--um-green-dark); font-size: 14px; font-weight: 900; }
.career-choice-visual i { width: 34px; height: 1px; background: #b8d0c5; }
.recruitment-aside { position: sticky; top: 112px; }
.privacy-note { margin-top: 25px; padding: 17px; display: grid; gap: 5px; border: 1px solid var(--um-line); border-radius: 16px; background: #fff; color: var(--um-text); }
.contact-quiet { display: grid; gap: 18px; }
.contact-quiet a, .contact-quiet span { display: grid; gap: 3px; text-decoration: none; }
.contact-quiet small { color: var(--um-muted); }
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Forms */
.card-form { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--um-line); border-radius: var(--um-radius); background: #fff; box-shadow: var(--um-shadow-sm); }
.um-hp { position: absolute !important; left: -9999px !important; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field > label, .field > legend { display: block; margin-bottom: 8px; color: var(--um-ink); font-size: 13px; font-weight: 850; }
.field input, .field select, .field textarea, .availability-grid select, .coverage-form input {
  width: 100%;
  min-height: 49px;
  padding: 10px 13px;
  border: 1px solid #ccdcd4;
  border-radius: 13px;
  background: #fff;
  color: var(--um-ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .coverage-form input:focus { border-color: var(--um-green); box-shadow: 0 0 0 4px rgba(0,168,107,.09); outline: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea, fieldset.is-invalid { border-color: var(--um-danger); }
.field small, .form-note { display: block; margin-top: 7px; color: var(--um-muted); font-size: 11px; }
.file-field input { padding: 11px; }
.check-field { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; color: var(--um-text); font-size: 13px; }
.check-field input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; accent-color: var(--um-green); }
.check-field a { color: var(--um-green-dark); font-weight: 800; }
.form-actions { margin-top: 22px; display: flex; justify-content: space-between; gap: 12px; }
.form-actions--end { justify-content: flex-end; }
.form-message { min-height: 22px; margin: 14px 0 0; font-size: 13px; font-weight: 750; }
.form-message.is-error { color: var(--um-danger); }
.form-message.is-success { color: var(--um-success); }
.form-progress { margin-bottom: 27px; display: grid; grid-template-columns: 32px 1fr 32px 1fr 32px; align-items: center; }
.form-progress--four { grid-template-columns: 32px 1fr 32px 1fr 32px 1fr 32px; }
.form-progress span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--um-line); border-radius: 50%; color: var(--um-muted); background: #fff; font-size: 12px; font-weight: 900; }
.form-progress i { height: 1px; background: var(--um-line); }
.form-progress span.is-active { border-color: var(--um-green); background: var(--um-green); color: #fff; }
.form-progress i.is-active { background: var(--um-green); }
.form-step-heading { margin-bottom: 22px; }
.form-step-heading small { color: var(--um-green-dark); font-weight: 850; }
.form-step-heading h3 { margin: 4px 0 0; font-size: 27px; letter-spacing: -.035em; }
.checkbox-group { padding: 14px; display: flex; flex-wrap: wrap; gap: 9px; border: 1px solid #ccdcd4; border-radius: 14px; }
.checkbox-group legend { padding: 0 5px; }
.checkbox-group label { min-height: 38px; padding: 0 11px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--um-line); border-radius: 999px; background: var(--um-soft); font-size: 12px; font-weight: 750; cursor: pointer; }
.checkbox-group input { accent-color: var(--um-green); }
.checkbox-group--days label { width: 39px; justify-content: center; padding: 0; }
.availability-grid { margin-bottom: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.availability-grid label { display: grid; gap: 7px; color: var(--um-ink); font-size: 12px; font-weight: 800; }
.scenario { margin: 20px 0; padding: 18px; display: grid; gap: 8px; border: 1px solid var(--um-line); border-radius: 16px; }
.scenario legend { padding: 0 5px; font-weight: 850; }
.scenario label { display: flex; gap: 8px; align-items: flex-start; color: var(--um-text); font-size: 13px; }
.scenario input { margin-top: 3px; accent-color: var(--um-green); }

/* Accordion */
.accordion { border-top: 1px solid var(--um-line); }
.accordion article { border-bottom: 1px solid var(--um-line); }
.accordion h2, .accordion h3 { margin: 0; }
.accordion button { width: 100%; min-height: 72px; padding: 15px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; border: 0; background: transparent; color: var(--um-ink); font-size: 18px; font-weight: 850; text-align: left; cursor: pointer; }
.accordion button i { color: var(--um-green); font-size: 22px; font-style: normal; transition: transform .18s ease; }
.accordion button[aria-expanded="true"] i { transform: rotate(45deg); }
.accordion__panel { padding: 0 44px 20px 0; color: var(--um-text); }
.accordion__panel p { margin: 0; }
.faq-page { max-width: 900px; }

/* Final CTA and footer */
.final-cta { padding: clamp(60px, 7vw, 86px) 0; background: var(--um-green); color: #fff; }
.final-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.final-cta span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.final-cta h2 { max-width: 850px; margin: 10px 0 10px; font-size: clamp(34px, 4.8vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
.final-cta p { margin: 0; color: rgba(255,255,255,.8); }
.site-footer { padding: 58px 0 25px; background: #071a15; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: clamp(28px, 5vw, 58px); }
.brand--footer strong { color: #fff; }
.brand--footer small { color: rgba(255,255,255,.48); }
.footer-brand p { max-width: 380px; margin: 18px 0 14px; }
.footer-brand b { color: #fff; }
.site-footer h2 { margin: 0 0 15px; color: #fff; font-size: 14px; }
.site-footer .footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.site-footer a { width: fit-content; color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* Legal */
.legal-hero { padding: 70px 0 45px; border-bottom: 1px solid var(--um-line); }
.legal-hero h1 { margin: 14px 0; font-size: clamp(42px, 5vw, 64px); letter-spacing: -.055em; }
.legal-hero p { color: var(--um-text); }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; }
.legal-layout aside { position: sticky; top: 110px; display: grid; gap: 8px; }
.legal-layout aside a { padding: 9px 0; color: var(--um-text); text-decoration: none; }
.legal-layout article { margin-bottom: 50px; scroll-margin-top: 110px; }
.legal-layout article h2 { font-size: 32px; letter-spacing: -.04em; }
.legal-layout article p { color: var(--um-text); line-height: 1.75; }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav { gap: 10px; }
  .desktop-nav > a, .nav-dropdown__trigger { font-size: 13px; }
  .brand small { display: none; }
  .home-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(390px, 1fr); gap: 48px; }
}

@media (max-width: 980px) {
  :root { --um-header-height: 74px; }
  .container { width: min(100% - 40px, 820px); }
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header__inner { min-height: 74px; grid-template-columns: auto 1fr auto; }
  .home-hero__grid, .page-hero__grid, .split-preview__grid, .platform-showcase, .content-split--simple, .coverage-simple, .waitlist-grid, .lead-layout, .recruitment-layout { grid-template-columns: 1fr; }
  .home-hero__copy { max-width: 760px; }
  .tracking-showcase { justify-self: center; max-width: 680px; }
  .page-hero__grid { gap: 35px; }
  .quiet-card { max-width: 640px; }
  .solution-cards--three { grid-template-columns: 1fr 1fr; }
  .process-line { grid-template-columns: 1fr; }
  .process-line > i { transform: rotate(90deg); justify-self: center; }
  .integration-simple, .final-cta__inner { grid-template-columns: 1fr; }
  .home-paths__grid, .career-choice-grid { grid-template-columns: 1fr; }
  .recruitment-aside { position: static; }
  .contact-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-layout aside { position: static; display: flex; flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 30px); }
  .site-header__inner { gap: 10px; }
  .brand img { width: 43px; height: 43px; flex-basis: 43px; }
  .brand strong { font-size: 16px; }
  .menu-toggle__label { display: none; }
  .menu-toggle { width: 45px; padding: 0; justify-content: center; border-radius: 14px; }
  .mobile-drawer__actions { grid-template-columns: 1fr; }
  .home-hero { padding-top: 48px; }
  .home-hero__copy h1 { font-size: clamp(44px, 13vw, 60px); }
  .home-hero__copy > p, .page-hero p { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .tracking-showcase__map { height: 280px; }
  .value-line .container { padding: 24px 0; }
  .value-line strong { font-size: 19px; }
  .solution-cards--three { grid-template-columns: 1fr; }
  .solution-card { min-height: 230px; }
  .section { padding: 64px 0; }
  .section-heading h2, .compact-copy h2, .preview-copy h2, .lead-layout__intro h2, .recruitment-aside h2, .coverage-simple h2, .platform-showcase h2, .content-split h2 { font-size: clamp(31px, 9vw, 42px); }
  .clean-dashboard__metrics { grid-template-columns: 1fr 1fr 1fr; padding: 14px; gap: 8px; }
  .clean-dashboard__metrics div { padding: 12px; }
  .clean-dashboard__rows { padding: 0 14px 14px; }
  .clean-dashboard__rows p { grid-template-columns: 75px 1fr; }
  .clean-dashboard__rows em { grid-column: 2; width: fit-content; }
  .page-hero { padding-top: 40px; }
  .page-hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .form-two, .availability-grid { grid-template-columns: 1fr; }
  .card-form { padding: 21px; border-radius: 20px; }
  .form-actions { display: grid; grid-template-columns: 1fr; }
  .form-actions .button { width: 100%; }
  .form-actions--end { display: block; }
  .coverage-form > div:first-of-type { grid-template-columns: 1fr; }
  .coverage-form .button { width: 100%; }
  .contact-options a, .home-paths__grid a { padding: 25px; }
  .final-cta__inner .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 24px); }
  .home-hero__copy h1 { font-size: 42px; }
  .tracking-showcase__head, .tracking-showcase__footer { padding: 15px; }
  .tracking-showcase__map { height: 240px; }
  .value-line strong { flex-basis: 100%; }
  .value-line span { display: none; }
  .checkbox-group--days { gap: 6px; }
  .checkbox-group--days label { width: 36px; }
  .form-progress { margin-inline: -5px; }
}

@media (hover: hover) and (pointer: fine) {
  .home-paths__grid a:hover, .contact-options a:hover { border-color: #bad5c8; box-shadow: var(--um-shadow-sm); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   Urban Meile 3.0 — portada premium y navegación refinada
   ========================================================= */

/* Cabecera y desplegable de soluciones */
.site-header__inner {
  gap: 24px;
}

.nav-dropdown__trigger {
  gap: 9px;
  padding: 0 8px 0 12px;
}

.nav-dropdown__chevron-shell {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 168, 107, 0.08);
  transition: background .18s ease, transform .18s ease;
}

.nav-dropdown__trigger:hover .nav-dropdown__chevron-shell,
.nav-dropdown.is-open .nav-dropdown__chevron-shell,
.nav-dropdown.is-current .nav-dropdown__chevron-shell {
  background: rgba(0, 168, 107, 0.14);
}

.nav-dropdown.is-open .nav-dropdown__chevron-shell {
  transform: rotate(180deg);
}

.nav-dropdown.is-open .nav-chevron {
  transform: none;
}

.nav-chevron {
  width: 13px;
  height: 13px;
}

.nav-dropdown__panel {
  top: calc(100% + 16px);
  width: 470px;
  padding: 14px;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(11, 31, 26, .14);
}

.nav-dropdown__panel::before {
  display: none;
}

.nav-dropdown__panel-head {
  padding: 4px 6px 13px;
  display: grid;
  gap: 2px;
  border-bottom: 1px solid #edf2ef;
}

.nav-dropdown__panel-head span {
  color: var(--um-ink);
  font-size: 13px;
  font-weight: 900;
}

.nav-dropdown__panel-head small {
  color: var(--um-muted);
  font-size: 11px;
}

.nav-dropdown__grid {
  padding-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav-dropdown__panel a {
  min-height: 72px;
  padding: 12px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
}

.nav-dropdown__panel a > span:last-child {
  display: grid;
  gap: 2px;
}

.nav-dropdown__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--um-soft);
  color: var(--um-green-dark);
}

.nav-dropdown__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-nav__label {
  display: block;
  margin-bottom: 8px;
  color: var(--um-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.drawer-accordion__panel {
  padding: 8px 0 14px;
}

.drawer-accordion__panel a {
  min-height: 58px;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
}

.drawer-accordion__panel a:hover {
  background: var(--um-soft);
}

.drawer-accordion__panel strong {
  color: var(--um-ink);
  font-size: 15px;
}

.drawer-accordion__panel small {
  color: var(--um-muted);
  font-size: 11px;
}

/* Hero V3 */
.home-hero--v3 {
  padding: clamp(54px, 6vw, 82px) 0 0;
  background:
    radial-gradient(circle at 3% 18%, rgba(203, 250, 225, .55), transparent 30%),
    linear-gradient(180deg, #fffefa 0%, #f8fcfa 100%);
}

.home-hero--v3::before {
  top: -160px;
  left: -250px;
  width: 640px;
  height: 640px;
  background: transparent;
  border: 1px dashed rgba(0, 168, 107, .17);
}

.home-hero--v3::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px dashed rgba(0, 168, 107, .14);
  border-radius: 50%;
  pointer-events: none;
}

.home-hero--v3 .home-hero__grid {
  grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr);
  gap: clamp(48px, 6vw, 84px);
}

.home-hero--v3 .home-hero__copy {
  padding-bottom: 54px;
}

.home-hero--v3 .home-hero__copy h1 {
  margin: 20px 0 22px;
  max-width: 660px;
  font-size: clamp(54px, 6.5vw, 84px);
  line-height: .91;
  letter-spacing: -.07em;
}

.home-hero--v3 .home-hero__copy h1 em {
  white-space: nowrap;
}

.home-hero--v3 .home-hero__copy > p {
  max-width: 620px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.hero-secondary-link {
  padding-inline: 8px;
  color: var(--um-green-dark);
}

.hero-secondary-link:hover {
  color: var(--um-green);
}

.hero-secondary-link span {
  transition: transform .18s ease;
}

.hero-secondary-link:hover span {
  transform: translateX(4px);
}

.hero-mini-benefits {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.hero-mini-benefits span {
  position: relative;
  padding-left: 14px;
  color: var(--um-text);
  font-size: 12px;
  font-weight: 800;
}

.hero-mini-benefits span::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--um-green);
}

.delivery-visual-v3 {
  position: relative;
  width: 100%;
  max-width: 610px;
  min-height: 490px;
  justify-self: end;
}

.delivery-visual-v3__backdrop {
  position: absolute;
  top: 42px;
  right: 10px;
  width: 76%;
  height: 88%;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    #153f32;
  background-size: 34px 34px;
  box-shadow: 0 30px 70px rgba(11, 31, 26, .18);
}

.prepared-card {
  position: absolute;
  z-index: 3;
  top: 88px;
  left: 0;
  width: 225px;
  min-height: 270px;
  padding: 108px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 26, .04);
  border-radius: 28px;
  background: #f6ead4;
  box-shadow: 0 22px 48px rgba(11, 31, 26, .12);
}

.prepared-card__awning {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fffdf6;
}

.prepared-card__awning i {
  position: relative;
  background: var(--um-green);
}

.prepared-card__awning i:nth-child(even) {
  background: #fffdf6;
}

.prepared-card__awning i::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid currentColor;
  color: inherit;
}

.prepared-card__awning i:nth-child(odd)::after {
  color: var(--um-green);
}

.prepared-card__awning i:nth-child(even)::after {
  color: #fffdf6;
}

.prepared-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--um-green-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prepared-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.prepared-card > span {
  display: block;
  margin-top: 14px;
  color: var(--um-text);
  font-size: 12px;
}

.phone-mockup {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 28px;
  width: 285px;
  height: 470px;
  padding: 28px 15px 14px;
  overflow: hidden;
  border: 7px solid #071a15;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(11, 31, 26, .26);
  transform: rotate(1.2deg);
}

.phone-mockup__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 74px;
  height: 15px;
  border-radius: 999px;
  background: #071a15;
  transform: translateX(-50%);
}

.phone-mockup__head {
  padding: 18px 6px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.phone-mockup__head > div {
  display: grid;
  gap: 3px;
}

.phone-mockup__head small,
.phone-mockup__head span {
  color: var(--um-muted);
  font-size: 9px;
}

.phone-mockup__head strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.04em;
}

.phone-mockup__head b {
  padding: 6px 8px;
  border-radius: 999px;
  background: #e5f7ef;
  color: var(--um-green-dark);
  font-size: 8px;
}

.phone-mockup__map {
  height: 278px;
  overflow: hidden;
  border-radius: 22px;
  background: #edf6f2;
}

.phone-mockup__map svg {
  width: 100%;
  height: 100%;
}

.phone-map-grid {
  fill: none;
  stroke: #dceae4;
  stroke-width: 1;
}

.phone-route {
  fill: none;
  stroke: var(--um-green);
  stroke-width: 7;
  stroke-linecap: round;
}

.phone-route-start {
  fill: var(--um-ink);
}

.phone-route-end {
  fill: var(--um-green);
}

.phone-route-check circle {
  fill: #fff;
  stroke: var(--um-green);
  stroke-width: 5;
}

.phone-route-check path {
  fill: none;
  stroke: var(--um-green-dark);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-mockup__rider {
  min-height: 68px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
}

.phone-rider-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--um-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.phone-mockup__rider > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.phone-mockup__rider small {
  color: var(--um-muted);
  font-size: 8px;
}

.phone-mockup__rider strong {
  font-size: 10px;
}

.phone-mockup__rider b {
  color: var(--um-green-dark);
  letter-spacing: 2px;
}

.connected-chip {
  position: absolute;
  z-index: 6;
  top: 78px;
  right: 0;
  min-width: 180px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 17px;
  background: var(--um-green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 168, 107, .28);
}

.connected-chip > span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #d8ffe9;
  box-shadow: 0 0 0 6px rgba(255,255,255,.14);
}

.connected-chip div {
  display: grid;
  gap: 2px;
}

.connected-chip strong {
  font-size: 11px;
}

.connected-chip small {
  color: rgba(255,255,255,.78);
  font-size: 8px;
}

.hero-service-strip {
  position: relative;
  z-index: 8;
  margin-top: 10px;
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--um-line);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: rgba(255,255,255,.95);
  box-shadow: 0 -8px 32px rgba(11, 31, 26, .04);
}

.hero-service-strip article {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-service-strip article + article {
  border-left: 1px solid var(--um-line);
}

.hero-service-strip__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaf8f1;
  color: var(--um-green-dark);
}

.hero-service-strip__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-service-strip article > div {
  display: grid;
  gap: 3px;
}

.hero-service-strip strong {
  font-size: 14px;
}

.hero-service-strip small {
  color: var(--um-muted);
  font-size: 10px;
}

/* Home más limpia */
.solutions-home--quiet,
.platform-home--quiet,
.home-links-quiet {
  background: #fff;
}

.solutions-home__layout {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(520px, 1.24fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
}

.solutions-home__layout .section-heading {
  margin-bottom: 0;
}

.solution-links {
  display: grid;
  border-top: 1px solid var(--um-line);
}

.solution-links a {
  min-height: 96px;
  padding: 18px 8px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--um-line);
  text-decoration: none;
  transition: padding .18s ease, color .18s ease;
}

.solution-links a:hover {
  padding-left: 15px;
  color: var(--um-green-dark);
}

.solution-links > a > span {
  color: var(--um-green-dark);
  font-size: 11px;
  font-weight: 950;
}

.solution-links h3 {
  margin: 0 0 4px;
  font-size: 21px;
  letter-spacing: -.03em;
}

.solution-links p {
  margin: 0;
  color: var(--um-muted);
  font-size: 13px;
}

.solution-links b {
  color: var(--um-green);
  font-size: 20px;
}

.process-home--quiet {
  border-top: 1px solid #edf2ef;
  border-bottom: 1px solid #edf2ef;
}

.platform-home--quiet .split-preview__grid {
  gap: clamp(44px, 6vw, 72px);
}

.integration-home--quiet {
  background: linear-gradient(135deg, #073b2c, #0a4b38);
}

.home-links-quiet {
  padding-block: 44px;
}

.home-links-quiet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--um-line);
  border-bottom: 1px solid var(--um-line);
}

.home-links-quiet__grid a {
  min-height: 138px;
  padding: 28px 32px;
  display: grid;
  align-content: center;
  gap: 7px;
  text-decoration: none;
}

.home-links-quiet__grid a + a {
  border-left: 1px solid var(--um-line);
}

.home-links-quiet__grid small {
  color: var(--um-green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.home-links-quiet__grid strong {
  font-size: clamp(23px, 2.7vw, 34px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.home-links-quiet__grid span {
  color: var(--um-green-dark);
  font-size: 13px;
  font-weight: 850;
}

.final-cta--quiet {
  padding-block: clamp(54px, 6vw, 76px);
}

@media (max-width: 1120px) {
  .nav-dropdown__panel {
    width: 430px;
  }

  .home-hero--v3 .home-hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1fr);
    gap: 46px;
  }

  .delivery-visual-v3 {
    min-height: 455px;
  }

  .prepared-card {
    width: 195px;
    min-height: 245px;
  }

  .phone-mockup {
    width: 265px;
    height: 440px;
  }

  .phone-mockup__map {
    height: 252px;
  }
}

@media (max-width: 980px) {
  .home-hero--v3 .home-hero__grid,
  .solutions-home__layout {
    grid-template-columns: 1fr;
  }

  .home-hero--v3 .home-hero__copy {
    max-width: 720px;
    padding-bottom: 8px;
  }

  .delivery-visual-v3 {
    justify-self: center;
    max-width: 620px;
    min-height: 500px;
  }

  .hero-service-strip {
    margin-top: 22px;
  }
}

@media (max-width: 760px) {
  .home-hero--v3 {
    padding-top: 42px;
  }

  .home-hero--v3 .home-hero__copy h1 {
    font-size: clamp(46px, 12.5vw, 64px);
    line-height: .95;
  }

  .home-hero--v3 .home-hero__copy h1 em {
    white-space: normal;
  }

  .delivery-visual-v3 {
    min-height: 430px;
  }

  .delivery-visual-v3__backdrop {
    top: 34px;
    right: 0;
    width: 78%;
    height: 86%;
    border-radius: 30px;
  }

  .prepared-card {
    top: 85px;
    width: 170px;
    min-height: 215px;
    padding: 88px 18px 18px;
    border-radius: 22px;
  }

  .prepared-card__awning {
    height: 58px;
  }

  .prepared-card strong {
    font-size: 22px;
  }

  .phone-mockup {
    right: 14px;
    width: 232px;
    height: 405px;
    border-width: 6px;
    border-radius: 34px;
  }

  .phone-mockup__head strong {
    font-size: 21px;
  }

  .phone-mockup__map {
    height: 225px;
  }

  .connected-chip {
    top: 70px;
    right: 0;
    min-width: 162px;
    padding: 12px;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--um-line);
    border-radius: 20px;
  }

  .hero-service-strip article {
    padding: 17px 20px;
  }

  .hero-service-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--um-line);
  }

  .home-links-quiet__grid {
    grid-template-columns: 1fr;
  }

  .home-links-quiet__grid a + a {
    border-left: 0;
    border-top: 1px solid var(--um-line);
  }
}

@media (max-width: 520px) {
  .home-hero--v3 .home-hero__copy h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .hero-mini-benefits {
    gap: 9px 18px;
  }

  .delivery-visual-v3 {
    min-height: 380px;
  }

  .delivery-visual-v3__backdrop {
    right: 0;
    width: 82%;
  }

  .prepared-card {
    top: 88px;
    left: -4px;
    width: 145px;
    min-height: 190px;
    padding: 78px 15px 15px;
  }

  .prepared-card__awning {
    height: 50px;
  }

  .prepared-card strong {
    font-size: 19px;
  }

  .prepared-card > span {
    margin-top: 10px;
    font-size: 10px;
  }

  .phone-mockup {
    right: 4px;
    width: 205px;
    height: 365px;
    padding: 26px 11px 10px;
  }

  .phone-mockup__notch {
    width: 62px;
  }

  .phone-mockup__head {
    padding: 14px 3px 9px;
  }

  .phone-mockup__head strong {
    font-size: 18px;
  }

  .phone-mockup__head span {
    font-size: 7px;
  }

  .phone-mockup__head b {
    padding: 5px 6px;
    font-size: 7px;
  }

  .phone-mockup__map {
    height: 198px;
    border-radius: 18px;
  }

  .connected-chip {
    top: 62px;
    right: -3px;
    min-width: 150px;
  }

  .connected-chip strong {
    font-size: 10px;
  }

  .connected-chip small {
    font-size: 7px;
  }

  .solution-links a {
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
  }
}

/* =========================================================
   Urban Meile 3.3 — auditoría y consolidación visual
   ========================================================= */
:root {
  --um-green: #00a86b;
  --um-green-dark: #047857;
  --um-green-deep: #0b3d30;
  --um-ink: #13211d;
  --um-text: #445c54;
  --um-muted: #71827b;
  --um-paper: #fbfaf7;
  --um-soft: #f4f3ef;
  --um-line: #e1e6e2;
  --um-sand: #f6efe4;
  --um-blue-soft: #edf4f5;
  --um-stone: #f0efeb;
  --um-charcoal: #111a17;
  --um-header-height: 88px;
  --um-radius: 24px;
  --um-shadow: 0 24px 70px rgba(15, 34, 28, .11);
  --um-shadow-sm: 0 14px 42px rgba(15, 34, 28, .075);
}

body {
  background: var(--um-paper);
  color: var(--um-ink);
  font-size: 17px;
  font-weight: 470;
}
.container { width: min(1220px, calc(100% - 56px)); }
.section { padding: clamp(76px, 7.5vw, 108px) 0; }
.section--soft,
.section--neutral { background: var(--um-soft); }

/* Cabecera auditada: sin solapamientos */
.site-header {
  min-height: var(--um-header-height);
  background: rgba(251, 250, 247, .97);
  border-bottom-color: rgba(225, 230, 226, .95);
}
.site-header .container { width: min(1480px, calc(100% - 44px)); }
.site-header__inner {
  min-height: var(--um-header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand--header { flex: 0 0 252px; }
.brand { gap: 12px; }
.brand__mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 29, .09);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 9px 26px rgba(19, 33, 29, .08);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  border-radius: 50%;
}
.brand__copy { display: grid; gap: 4px; min-width: 0; }
.brand__copy strong {
  color: var(--um-ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand__copy small {
  color: #6c7d76;
  font-size: 11px;
  font-weight: 780;
  line-height: 1.2;
  white-space: nowrap;
}
.desktop-nav {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 25px);
}
.desktop-nav > a,
.nav-dropdown__trigger {
  min-height: 46px;
  color: #304a41;
  font-size: 15px;
  font-weight: 900;
}
.nav-dropdown__trigger { gap: 10px; padding: 0 12px; }
.nav-dropdown__chevron-shell {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf1ee;
}
.nav-chevron { width: 18px; height: 18px; stroke-width: 2.6; }
.nav-dropdown__panel { width: 390px; padding: 12px; }
.nav-dropdown__panel strong { font-size: 15px; font-weight: 900; }
.nav-dropdown__panel small { font-size: 12px; line-height: 1.4; }
.site-header__actions { flex: 0 0 auto; gap: 10px; }
.button {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 15px;
  font-weight: 950;
}
.button--compact { min-height: 48px; padding-inline: 21px; font-size: 14px; }
.button--large { min-height: 58px; padding-inline: 29px; }
.button--primary { box-shadow: 0 15px 34px rgba(0, 168, 107, .22); }
.button--text { font-size: 16px; }

/* Jerarquía y legibilidad */
.eyebrow,
.kicker { font-size: 12px; font-weight: 950; letter-spacing: .14em; }
.page-hero {
  padding: clamp(30px, 3.4vw, 48px) 0 clamp(66px, 6.5vw, 90px);
  background:
    radial-gradient(circle at 88% 5%, rgba(232, 226, 214, .58), transparent 31%),
    linear-gradient(180deg, #fbfaf7 0%, #fff 100%);
  border-bottom-color: #e7e9e6;
}
.page-hero::before { opacity: .65; }
.page-hero__grid { gap: clamp(48px, 6vw, 82px); }
.breadcrumbs {
  margin: 0 0 22px;
  gap: 9px;
  color: #61756e;
  font-size: 14px;
  font-weight: 560;
}
.breadcrumbs a:hover { color: var(--um-green-dark); }
.breadcrumbs [aria-current="page"] { color: var(--um-ink); }
.page-hero h1,
.home-hero__copy h1,
.section-heading h2,
.compact-copy h2,
.preview-copy h2,
.lead-layout__intro h2,
.recruitment-aside h2,
.coverage-simple h2,
.platform-showcase h2,
.content-split h2,
.final-cta h2 { font-weight: 940; }
.page-hero h1 {
  margin: 16px 0 22px;
  max-width: 920px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: .98;
}
.page-hero p { color: #4c625a; font-size: 19px; font-weight: 540; }
.section-heading p,
.large-copy,
.compact-copy p,
.lead-layout__intro p,
.recruitment-aside p,
.coverage-simple p,
.preview-copy p { font-size: 18px; font-weight: 510; }
.hero-actions { margin-top: 34px; gap: 20px; align-items: center; }
.text-link,
.hero-secondary-link { gap: 11px; font-size: 16px; font-weight: 950; }
.text-link span,
.hero-secondary-link span {
  display: inline-block;
  font-size: 28px;
  font-weight: 950;
  line-height: .7;
  transition: transform .18s ease;
}
.text-link:hover span,
.hero-secondary-link:hover span { transform: translateX(5px); }

/* Portada */
.home-hero--v3 {
  background:
    radial-gradient(circle at 3% 18%, rgba(222, 239, 229, .72), transparent 29%),
    linear-gradient(180deg, #fbfaf7 0%, #f7faf8 100%);
}
.home-hero--v3 .home-hero__copy > p { font-size: clamp(18px, 1.55vw, 20px); font-weight: 520; }
.home-hero--v3 .hero-actions { margin-top: 38px; gap: 24px; }
.hero-secondary-link { padding-inline: 8px; }
.hero-mini-benefits { margin-top: 32px; gap: 16px 34px; }
.hero-mini-benefits span { padding-left: 18px; font-size: 14px; font-weight: 900; }
.hero-mini-benefits span::before { top: .48em; width: 7px; height: 7px; }
.hero-service-strip { min-height: 112px; }
.hero-service-strip article { padding: 25px 28px; gap: 17px; }
.hero-service-strip__icon { width: 46px; height: 46px; flex-basis: 46px; }
.hero-service-strip__icon svg { stroke-width: 2.15; }
.hero-service-strip strong { font-size: 16px; font-weight: 930; }
.hero-service-strip small { font-size: 11px; font-weight: 650; }

/* Soluciones de portada: sin numeración decorativa */
.solutions-home--quiet,
.home-links-quiet { background: #fff; }
.solutions-home__layout { grid-template-columns: minmax(0, .76fr) minmax(520px, 1.24fr); }
.solution-links { border-top-color: var(--um-line); }
.solution-links a {
  min-height: 112px;
  padding: 24px 12px;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 22px;
  border-bottom: 1.5px solid var(--um-line);
  transition: padding .18s ease, color .18s ease, background .18s ease;
}
.solution-links a:hover {
  padding-left: 22px;
  color: var(--um-green-dark);
  background: linear-gradient(90deg, rgba(0, 168, 107, .045), transparent 72%);
}
.solution-links h3 { margin: 0 0 8px; font-size: 26px; font-weight: 940; }
.solution-links p { margin: 0; font-size: 16px; font-weight: 520; line-height: 1.55; }
.solution-links b {
  justify-self: end;
  color: var(--um-green-dark);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  transition: transform .18s ease;
}
.solution-links a:hover b { transform: translateX(6px); }

/* Pasos que sí representan un proceso */
.plain-points article {
  padding: 32px 0;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  border-bottom-width: 1.5px;
}
.plain-points article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eaf6f0;
  color: var(--um-green-deep);
  font-size: 17px;
  font-weight: 950;
}
.plain-points h3 { margin-bottom: 9px; font-size: 25px; font-weight: 930; }
.plain-points p { font-size: 17px; font-weight: 510; line-height: 1.65; }
.process-line { gap: 24px; }
.process-line > i { color: var(--um-green-dark); font-size: 38px; font-weight: 950; }
.process-line article > span { width: 46px; height: 46px; flex-basis: 46px; font-size: 16px; }
.process-line h3 { font-size: 23px; font-weight: 930; }
.process-line p { font-size: 16px; font-weight: 520; }
.process-detail--three { max-width: none; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-detail--three article {
  min-height: 300px;
  padding: 32px;
  display: block;
  border: 1px solid var(--um-line);
  border-radius: 22px;
  background: #fff;
}
.process-detail--three article > span { width: 48px; height: 48px; margin-bottom: 44px; background: var(--um-charcoal); font-size: 17px; }
.process-detail--three h2 { font-size: 27px; }

/* Visuales de plataforma */
.platform-home--quiet { background: var(--um-paper); }
.platform-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 29, .09);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--um-shadow);
}
.platform-preview img { width: 100%; height: auto; display: block; }
.platform-preview--home { max-width: 700px; justify-self: end; }
.platform-preview--hero { align-self: center; }
.platform-preview--hero::after {
  content: "";
  position: absolute;
  inset: 54% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 21, .76));
  pointer-events: none;
}
.platform-preview figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.platform-benefits { display: grid; grid-template-columns: minmax(0, .8fr) minmax(560px, 1.2fr); gap: clamp(50px, 7vw, 92px); align-items: start; }
.platform-benefits .section-heading { margin: 0; }
.platform-benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.platform-benefits__grid article { min-height: 220px; padding: 28px; border: 1px solid var(--um-line); border-radius: 22px; background: #fff; }
.platform-benefits__grid article > span { color: var(--um-green); font-size: 22px; line-height: 1; }
.platform-benefits__grid h3 { margin: 42px 0 10px; font-size: 23px; letter-spacing: -.035em; }
.platform-benefits__grid p { margin: 0; color: var(--um-text); font-size: 16px; line-height: 1.65; }

/* Empleo */
.career-hero { background: linear-gradient(180deg, #fbfaf7 0%, #f7f5f1 100%); }
.career-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 29, .08);
  border-radius: 30px;
  background: #e9efec;
  box-shadow: 0 26px 70px rgba(19, 29, 26, .13);
}
.career-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(5, 24, 19, .72)); }
.career-photo img { width: 100%; height: 100%; min-height: 420px; display: block; object-fit: cover; object-position: center 30%; }
.career-photo figcaption { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; color: #fff; font-size: 17px; font-weight: 900; }
.career-choice-grid { gap: 22px; }
.career-choice-grid article { padding: clamp(34px, 4.2vw, 52px); border-color: var(--um-line); box-shadow: none; }
.career-choice-grid article:first-child { border-color: #d8e8df; box-shadow: var(--um-shadow-sm); }
.career-card--team { background: #f8f6f1 !important; }
.career-choice-grid h2 { font-size: clamp(34px, 3.7vw, 48px); font-weight: 940; }
.career-choice-grid p,
.career-choice-grid li { font-size: 17px; }
.career-quote {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #dfe4e1;
  color: var(--um-ink);
  font-size: clamp(23px, 2.6vw, 33px);
  font-weight: 930;
  line-height: 1.09;
  letter-spacing: -.04em;
}

/* Cobertura útil y comercial */
.coverage-check-section { background: #fff; }
.coverage-simple--v2 { grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr); gap: clamp(56px, 7vw, 96px); }
.coverage-copy h2 { font-size: clamp(48px, 5vw, 68px); }
.coverage-form label,
.field > label,
.checkbox-group legend,
.scenario legend { font-size: 15px; font-weight: 900; }
.coverage-form input,
.field input,
.field select,
.field textarea,
.availability-grid select { font-size: 16px; font-weight: 540; }
.coverage-form input { min-height: 60px; }
.coverage-form .button { min-height: 60px; padding-inline: 28px; }
.coverage-response { margin-top: 18px; padding: 22px; border: 1px solid var(--um-line); border-radius: 18px; background: #f7f9f8; box-shadow: 0 12px 30px rgba(19, 31, 27, .05); }
.coverage-response strong { font-size: 18px; }
.coverage-response p { font-size: 15px; line-height: 1.65; }
.coverage-trust { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.coverage-trust span { position: relative; padding-left: 16px; color: var(--um-text); font-size: 13px; font-weight: 800; }
.coverage-trust span::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--um-green); }
.coverage-visual-card { overflow: hidden; border: 1px solid var(--um-line); border-radius: 28px; background: #fff; box-shadow: var(--um-shadow-sm); }
.coverage-visual-card__top { min-height: 66px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--um-line); }
.coverage-visual-card__top span { font-weight: 900; }
.coverage-visual-card__top b { padding: 7px 10px; border-radius: 999px; background: #edf7f2; color: var(--um-green-dark); font-size: 11px; }
.coverage-map { position: relative; height: 230px; overflow: hidden; background: linear-gradient(135deg, #eef5f1 0%, #f8f5ef 100%); }
.coverage-map::before,
.coverage-map::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(61, 100, 86, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(61, 100, 86, .08) 1px, transparent 1px); background-size: 42px 42px; }
.coverage-map::after { transform: rotate(11deg) scale(1.2); opacity: .45; }
.coverage-map__route { position: absolute; z-index: 1; left: 18%; top: 42%; width: 62%; height: 42%; border: 4px solid var(--um-green); border-left-color: transparent; border-bottom-color: transparent; border-radius: 46% 58% 28% 62%; transform: rotate(-10deg); }
.coverage-pin { position: absolute; z-index: 2; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; background: var(--um-green); box-shadow: 0 8px 18px rgba(0, 168, 107, .25); }
.coverage-pin--one { left: 18%; top: 50%; }
.coverage-pin--two { right: 23%; top: 32%; }
.coverage-pin--three { right: 16%; bottom: 18%; background: var(--um-green-deep); }
.coverage-map strong { position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 11px 16px; border-radius: 999px; background: var(--um-green-deep); color: #fff; font-size: 13px; }
.coverage-status-list { padding: 12px 24px 20px; display: grid; }
.coverage-status-list p { margin: 0; padding: 13px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #edf1ee; }
.coverage-status-list p:last-child { border-bottom: 0; }
.coverage-status-list i { width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; }
.coverage-status-list i.is-active { background: var(--um-green); }
.coverage-status-list i.is-study { background: #d7a436; }
.coverage-status-list i.is-expansion { background: #7892a7; }
.coverage-status-list span { display: grid; gap: 2px; }
.coverage-status-list strong { font-size: 14px; }
.coverage-status-list small { color: var(--um-muted); font-size: 12px; }
.coverage-interest[hidden] { display: none; }

/* Formularios */
.card-form { padding: clamp(28px, 4vw, 48px); border-color: var(--um-line); box-shadow: 0 20px 60px rgba(18, 31, 27, .07); }
.form-step-heading h3 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 940; }
.form-step-heading small { font-size: 12px; font-weight: 900; }
.form-progress span.is-active { background: var(--um-charcoal); border-color: var(--um-charcoal); }
.form-progress i.is-active { background: var(--um-charcoal); }

/* CTA y footer con contraste correcto */
.integration-home--quiet { background: linear-gradient(135deg, #171f1c 0%, #26332f 100%); }
.final-cta,
.final-cta--quiet { background: var(--um-charcoal); }
.integration-home--quiet h2,
.integration-home--quiet p,
.final-cta h2,
.final-cta--quiet h2 { color: #fff !important; }
.integration-home--quiet p,
.final-cta p,
.final-cta--quiet p { color: rgba(255, 255, 255, .86) !important; font-size: 18px; }
.final-cta span,
.final-cta--quiet span { color: rgba(255, 255, 255, .78) !important; }
.site-footer { background: #101815; color: rgba(255, 255, 255, .78); }
.brand--footer .brand__mark { background: #fff; border-color: rgba(255, 255, 255, .14); }
.brand--footer .brand__copy strong { color: #fff; }
.brand--footer .brand__copy small { color: rgba(255, 255, 255, .58); }
.footer-brand p { font-size: 16px; line-height: 1.7; }
.site-footer h2 { font-size: 16px; font-weight: 930; }
.site-footer a { font-size: 15px; font-weight: 650; }
.footer-bottom { font-size: 13px; }

/* Responsive */
@media (max-width: 1320px) {
  .site-header .container { width: min(100% - 32px, 1280px); }
  .brand--header { flex-basis: 205px; }
  .brand--header .brand__copy small { display: none; }
  .desktop-nav { gap: 11px; }
  .desktop-nav > a,
  .nav-dropdown__trigger { font-size: 14px; }
  .button--compact { padding-inline: 17px; }
}

@media (max-width: 1120px) {
  :root { --um-header-height: 76px; }
  .container { width: min(100% - 42px, 980px); }
  .site-header__inner { min-height: 76px; }
  .brand--header { flex: 1 1 auto; }
  .brand__mark { width: 46px; height: 46px; flex-basis: 46px; }
  .desktop-nav,
  .desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }
  .home-hero__grid,
  .page-hero__grid,
  .split-preview__grid,
  .platform-showcase,
  .content-split--simple,
  .coverage-simple,
  .waitlist-grid,
  .lead-layout,
  .recruitment-layout,
  .platform-benefits { grid-template-columns: 1fr; }
  .page-hero__grid { gap: 38px; }
  .quiet-card,
  .platform-preview--hero { max-width: 760px; }
  .solutions-home__layout { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; }
  .process-line > i { transform: rotate(90deg); justify-self: center; }
  .integration-simple,
  .final-cta__inner { grid-template-columns: 1fr; }
  .career-choice-grid { grid-template-columns: 1fr; }
  .recruitment-aside { position: static; }
  .platform-benefits__grid { grid-template-columns: 1fr 1fr; }
  .process-detail--three { grid-template-columns: 1fr; }
  .process-detail--three article { min-height: auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 720px); }
  .site-header .container { width: calc(100% - 24px); }
  .brand--header .brand__copy small { display: none; }
  .page-hero { padding-top: 24px; }
  .breadcrumbs { margin-bottom: 18px; font-size: 13px; }
  .page-hero h1 { font-size: clamp(41px, 12vw, 58px); }
  .page-hero p,
  .section-heading p,
  .large-copy,
  .compact-copy p,
  .recruitment-aside p,
  .coverage-simple p { font-size: 17px; }
  .home-hero--v3 .hero-actions { margin-top: 30px; gap: 14px; }
  .hero-mini-benefits { margin-top: 25px; gap: 13px 22px; }
  .hero-mini-benefits span { font-size: 13px; }
  .solution-links a { min-height: 104px; padding: 21px 4px; grid-template-columns: 1fr 34px; gap: 14px; }
  .solution-links h3 { font-size: 23px; }
  .solution-links p { font-size: 15px; }
  .solution-links b { font-size: 31px; }
  .plain-points article { padding: 26px 0; grid-template-columns: 54px 1fr; gap: 14px; }
  .plain-points article > span { width: 44px; height: 44px; font-size: 15px; }
  .plain-points h3 { font-size: 22px; }
  .platform-benefits__grid { grid-template-columns: 1fr; }
  .platform-benefits__grid article { min-height: auto; }
  .career-photo,
  .career-photo img { min-height: 330px; }
  .career-photo figcaption { right: 20px; bottom: 18px; left: 20px; font-size: 15px; }
  .coverage-form > div:first-of-type { grid-template-columns: 1fr; }
  .coverage-form .button { width: 100%; }
  .coverage-visual-card__top { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
  .coverage-map { height: 210px; }
  .final-cta__inner { gap: 28px; }
}

@media (max-width: 430px) {
  .brand--header .brand__copy { display: none; }
  .brand--header .brand__mark { width: 42px; height: 42px; flex-basis: 42px; }
  .button { font-size: 14px; }
  .hero-mini-benefits { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-mini-benefits span:last-child { grid-column: 1 / -1; }
  .career-photo,
  .career-photo img { min-height: 300px; }
  .platform-preview figcaption { right: 16px; bottom: 14px; left: 16px; font-size: 14px; }
}

/* =========================================================
   Urban Meile 3.3.1 — aislamiento frente a Divi y temas
   =========================================================
   Divi mantiene reglas globales como .container { max-width:1080px }
   y pseudoelementos clearfix. Al compartir ese nombre de clase, podía
   estrechar la cabecera y hacer que Empleo quedase bajo los botones.
*/
html body.um-site-rendered .container {
  width: min(1220px, calc(100% - 56px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
html body.um-site-rendered .container::before,
html body.um-site-rendered .container::after {
  display: none !important;
  content: none !important;
}
html body.um-site-rendered .site-header > .container.site-header__inner {
  width: min(1480px, calc(100% - 44px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
}
html body.um-site-rendered .site-header__inner {
  display: flex !important;
  align-items: center !important;
}
html body.um-site-rendered .brand--header,
html body.um-site-rendered .site-header__actions {
  position: relative;
  z-index: 2;
}
html body.um-site-rendered .desktop-nav {
  position: relative;
  z-index: 1;
  min-width: 0 !important;
}
html body.um-site-rendered .desktop-nav > a,
html body.um-site-rendered .nav-dropdown__trigger,
html body.um-site-rendered .site-header__actions .button {
  white-space: nowrap !important;
}
body.admin-bar.um-site-rendered .site-header { top: 32px; }

@media (max-width: 1320px) {
  html body.um-site-rendered .site-header > .container.site-header__inner {
    width: calc(100% - 32px) !important;
  }
}

/* Cambiamos antes a navegación móvil para proteger zoom y ventanas estrechas. */
@media (max-width: 1280px) {
  :root { --um-header-height: 76px; }
  html body.um-site-rendered .container {
    width: min(980px, calc(100% - 42px)) !important;
  }
  html body.um-site-rendered .site-header > .container.site-header__inner {
    width: calc(100% - 32px) !important;
    min-height: 76px !important;
  }
  html body.um-site-rendered .brand--header { flex: 1 1 auto !important; }
  html body.um-site-rendered .desktop-nav,
  html body.um-site-rendered .desktop-only { display: none !important; }
  html body.um-site-rendered .menu-toggle { display: inline-flex !important; }
}

@media (max-width: 782px) {
  body.admin-bar.um-site-rendered .site-header { top: 46px; }
}

@media (max-width: 760px) {
  html body.um-site-rendered .container {
    width: min(720px, calc(100% - 30px)) !important;
  }
  html body.um-site-rendered .site-header > .container.site-header__inner {
    width: calc(100% - 24px) !important;
  }
}

/* =========================================================
   Urban Meile 3.3.2 — controles de selección aislados
   =========================================================
   Los estilos generales de .field input y algunos temas podían convertir
   checkboxes y radios en campos de texto de ancho completo. Estos controles
   se restablecen con dimensiones explícitas y alta especificidad.
*/
html body.um-site-rendered .checkbox-group input[type="checkbox"],
html body.um-site-rendered .checkbox-group input[type="radio"],
html body.um-site-rendered .check-field input[type="checkbox"],
html body.um-site-rendered .check-field input[type="radio"],
html body.um-site-rendered .scenario input[type="checkbox"],
html body.um-site-rendered .scenario input[type="radio"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-grid !important;
  place-content: center !important;
  width: 19px !important;
  min-width: 19px !important;
  max-width: 19px !important;
  height: 19px !important;
  min-height: 19px !important;
  max-height: 19px !important;
  flex: 0 0 19px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #91a39a !important;
  border-radius: 5px !important;
  background: #fff !important;
  box-shadow: none !important;
  vertical-align: middle !important;
  cursor: pointer !important;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease !important;
}
html body.um-site-rendered .checkbox-group input[type="radio"],
html body.um-site-rendered .scenario input[type="radio"],
html body.um-site-rendered .check-field input[type="radio"] {
  border-radius: 50% !important;
}
html body.um-site-rendered .checkbox-group input[type="checkbox"]::before,
html body.um-site-rendered .check-field input[type="checkbox"]::before,
html body.um-site-rendered .scenario input[type="checkbox"]::before {
  content: "" !important;
  width: 9px !important;
  height: 5px !important;
  border: solid #fff !important;
  border-width: 0 0 2px 2px !important;
  transform: translateY(-1px) rotate(-45deg) scale(0) !important;
  transform-origin: center !important;
  transition: transform .12s ease !important;
}
html body.um-site-rendered .checkbox-group input[type="checkbox"]:checked,
html body.um-site-rendered .check-field input[type="checkbox"]:checked,
html body.um-site-rendered .scenario input[type="checkbox"]:checked {
  border-color: var(--um-green) !important;
  background: var(--um-green) !important;
}
html body.um-site-rendered .checkbox-group input[type="checkbox"]:checked::before,
html body.um-site-rendered .check-field input[type="checkbox"]:checked::before,
html body.um-site-rendered .scenario input[type="checkbox"]:checked::before {
  transform: translateY(-1px) rotate(-45deg) scale(1) !important;
}
html body.um-site-rendered .checkbox-group input[type="radio"]::before,
html body.um-site-rendered .check-field input[type="radio"]::before,
html body.um-site-rendered .scenario input[type="radio"]::before {
  content: "" !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: var(--um-green) !important;
  transform: scale(0) !important;
  transition: transform .12s ease !important;
}
html body.um-site-rendered .checkbox-group input[type="radio"]:checked,
html body.um-site-rendered .check-field input[type="radio"]:checked,
html body.um-site-rendered .scenario input[type="radio"]:checked {
  border-color: var(--um-green) !important;
}
html body.um-site-rendered .checkbox-group input[type="radio"]:checked::before,
html body.um-site-rendered .check-field input[type="radio"]:checked::before,
html body.um-site-rendered .scenario input[type="radio"]:checked::before {
  transform: scale(1) !important;
}
html body.um-site-rendered .checkbox-group input:focus-visible,
html body.um-site-rendered .check-field input:focus-visible,
html body.um-site-rendered .scenario input:focus-visible {
  outline: 3px solid rgba(0, 168, 107, .22) !important;
  outline-offset: 2px !important;
}
html body.um-site-rendered .checkbox-group label {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  white-space: normal !important;
}
html body.um-site-rendered .checkbox-group label:has(input:checked) {
  border-color: rgba(0, 168, 107, .52) !important;
  background: #edf8f3 !important;
  color: var(--um-green-deep) !important;
}
html body.um-site-rendered .checkbox-group--days label {
  width: 44px !important;
  min-width: 44px !important;
  justify-content: center !important;
}
html body.um-site-rendered .checkbox-group--days input {
  position: absolute !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
html body.um-site-rendered .checkbox-group--days label:has(input:checked) {
  border-color: var(--um-green) !important;
  background: var(--um-green) !important;
  color: #fff !important;
}

/* Urban Meile 3.3.3 — imagen definitiva y selector de días */
.career-photo img {
  object-position: center 32%;
}
html body.um-site-rendered .checkbox-group--days label {
  min-width: 42px;
  width: auto;
  padding-inline: 8px;
}
