:root {
  --edr-primary: #0d1c32;
  --edr-accent: #1676d2;
  --edr-background: #f8f9fa;
  --edr-surface: #ffffff;
  --edr-text: #191c1d;
  --edr-muted: #5d6570;
  --edr-border: #dde1e5;
  --edr-soft: #eef1f4;
  --edr-white: #ffffff;
  --edr-radius-sm: 8px;
  --edr-radius: 14px;
  --edr-radius-lg: 24px;
  --edr-shadow: 0 18px 50px rgba(5, 20, 40, .12);
  --edr-shadow-soft: 0 8px 28px rgba(5, 20, 40, .08);
  --edr-container: 1240px;
  --edr-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --edr-font-heading: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--edr-background);
  color: var(--edr-text);
  font-family: var(--edr-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { width: 1em; height: 1em; fill: currentColor; }
a { color: var(--edr-primary); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--edr-accent); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  color: var(--edr-primary);
  font-family: var(--edr-font-heading);
  line-height: 1.16;
}
h1 { font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: -.015em; }
p { margin: 0 0 1.1em; }
mark { padding: 0; background: transparent; color: var(--edr-accent); }

.container { width: min(calc(100% - 32px), var(--edr-container)); margin-inline: auto; }
.container--narrow { max-width: 860px; }
.section { padding: clamp(68px, 8vw, 112px) 0; }
.section--muted { background: var(--edr-soft); }
.section--surface { background: var(--edr-surface); }
.section--dark { background: var(--edr-primary); color: rgba(255,255,255,.78); }
.section--dark h2, .section--dark h3 { color: var(--edr-white); }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
  top: 8px; left: 8px; z-index: 100000; display: block; width: auto; height: auto;
  clip: auto !important; padding: 12px 18px; margin: 0; border-radius: 6px;
  background: #fff; color: #111; font-weight: 700;
}

.button, button[type="submit"], input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 13px 24px; border: 0; border-radius: var(--edr-radius-sm);
  background: linear-gradient(135deg, var(--edr-primary), var(--edr-accent)); color: #ffffff; font-weight: 800; line-height: 1.2;
  text-decoration: none; cursor: pointer; box-shadow: 0 10px 24px rgba(22,118,210,.24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover, button[type="submit"]:hover, input[type="submit"]:hover {
  color: #ffffff; transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 14px 28px rgba(22,118,210,.34);
}
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--edr-accent);
  outline: 3px solid color-mix(in srgb, var(--edr-accent) 75%, white);
  outline-offset: 3px;
}
.button--small { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.text-link { font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.eyebrow {
  margin: 0 0 14px; color: var(--edr-accent); font-size: .78rem; font-weight: 900;
  letter-spacing: .13em; line-height: 1.3; text-transform: uppercase;
}
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading > p:last-child { color: var(--edr-muted); font-size: 1.08rem; }
.section--dark .section-heading > p:last-child { color: rgba(255,255,255,.72); }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; max-width: none; text-align: left; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96);
  background: color-mix(in srgb, var(--edr-surface) 94%, transparent);
  border-bottom: 1px solid rgba(13,28,50,.08); box-shadow: 0 10px 28px rgba(5,20,40,.06);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.admin-bar .site-header { top: 32px; }
.site-header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; min-height: 92px; }
.site-branding { min-width: max-content; }
.site-branding__link {
  display: inline-flex; align-items: center; gap: 10px; color: var(--edr-primary);
  font-family: var(--edr-font-heading); font-size: 1.2rem; font-weight: 900; text-decoration: none;
}
.site-branding__mark { display: inline-flex; color: var(--edr-accent); font-size: 2rem; }
.custom-logo-link { display: block; }
.custom-logo { max-height: 72px; width: auto; }
.site-branding__link--logo { display: inline-flex; align-items: center; }
.site-branding__logo-image { display: block; width: auto; height: 68px; max-width: min(340px, 42vw); }
.primary-navigation { justify-self: center; }
.site-menu, .footer-menu { margin: 0; padding: 0; list-style: none; }
.site-menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.site-menu a { color: #2d3743; font-size: .92rem; font-weight: 700; text-decoration: none; }
.site-menu a:hover, .site-menu .current-menu-item > a { color: var(--edr-accent); }
.site-menu li { position: relative; }
.site-menu .sub-menu {
  position: absolute; top: calc(100% + 14px); left: -18px; z-index: 20; min-width: 220px; margin: 0; padding: 10px;
  visibility: hidden; border: 1px solid var(--edr-border); border-radius: 10px; background: var(--edr-surface); box-shadow: var(--edr-shadow-soft);
  list-style: none; opacity: 0; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.site-menu .sub-menu a { display: block; padding: 9px 10px; border-radius: 5px; }
.site-menu li:hover > .sub-menu, .site-menu li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; color: var(--edr-primary); cursor: pointer; }
.menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after {
  display: block; width: 25px; height: 2px; margin: auto; border-radius: 2px; background: currentColor; content: ""; transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle__bars::before { transform: translateY(-7px); }
.menu-toggle__bars::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { transform: translateY(0) rotate(45deg); background: var(--edr-primary); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { transform: translateY(-2px) rotate(-45deg); background: var(--edr-primary); }

.hero { position: relative; min-height: 730px; overflow: hidden; background: var(--edr-primary); color: #fff; }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { background: linear-gradient(90deg, rgba(7,19,36,.98) 0%, rgba(13,28,50,.92) 47%, rgba(13,28,50,.55) 100%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); align-items: center; gap: clamp(42px, 6vw, 88px); min-height: 730px; padding-block: 80px; }
.hero__copy { max-width: 720px; }
.hero__driver-cta { margin-bottom: 24px; }
.hero__driver-cta .button {
  min-height: 50px;
  padding: 13px 24px;
  border: 2px solid rgba(255,255,255,.32);
  background: linear-gradient(120deg, #0f4f91 0%, #1676d2 38%, #d75b00 76%, #c84f00 100%);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(13,28,50,.28);
  box-shadow: 0 12px 30px rgba(22,118,210,.30), 0 8px 24px rgba(200,79,0,.20);
  animation: edr-driver-cta-pulse 1.8s ease-out infinite;
}
.hero__driver-cta .button:hover {
  color: #ffffff;
  filter: brightness(1.07) saturate(1.08);
  box-shadow: 0 15px 34px rgba(22,118,210,.34), 0 10px 28px rgba(200,79,0,.28);
}
.hero__driver-cta .button:focus-visible {
  outline-color: #5aa5ee;
}
@keyframes edr-driver-cta-pulse {
  0% { box-shadow: 0 12px 30px rgba(22,118,210,.30), 0 8px 24px rgba(200,79,0,.20), 0 0 0 0 rgba(22,118,210,.48); }
  45% { box-shadow: 0 12px 30px rgba(22,118,210,.32), 0 8px 24px rgba(200,79,0,.24), 0 0 0 8px rgba(22,118,210,.20); }
  75% { box-shadow: 0 12px 30px rgba(22,118,210,.30), 0 8px 24px rgba(200,79,0,.24), 0 0 0 14px rgba(200,79,0,0); }
  100% { box-shadow: 0 12px 30px rgba(22,118,210,.30), 0 8px 24px rgba(200,79,0,.20), 0 0 0 0 rgba(200,79,0,0); }
}
.hero h1 { color: #fff; }
.hero__lead { max-width: 650px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; color: #b6dcff; font-size: .9rem; font-weight: 800; }
.hero__trust svg { font-size: 1.3rem; }
.lead-card { padding: clamp(25px, 3vw, 38px); border-radius: var(--edr-radius); background: color-mix(in srgb, var(--edr-surface) 96%, #f4f8fc); color: var(--edr-text); box-shadow: var(--edr-shadow); border: 1px solid rgba(22,118,210,.09); }
.lead-card h2 { margin-bottom: 8px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.lead-card > p { color: var(--edr-muted); font-size: .94rem; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .lead-form > label { color: #27313e; font-size: .78rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea, .search-field, .comment-form input, .comment-form textarea {
  width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid #cbd1d8; border-radius: 7px;
  background: #fff; color: var(--edr-text); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .search-field:focus, .comment-form input:focus, .comment-form textarea:focus {
  border-color: var(--edr-accent); box-shadow: 0 0 0 3px rgba(22,118,210,.15); outline: 0;
}
.form-consent { display: flex; align-items: flex-start; gap: 9px; color: var(--edr-muted); font-size: .75rem; line-height: 1.45; }
.form-consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--edr-accent); }
.form-privacy { margin: -4px 0 0; color: #77808b; font-size: .72rem; text-align: center; }
.lead-form__honeypot { position: absolute; left: -9999px; }
.form-notice { margin: 0 0 16px; padding: 12px 14px; border-radius: 7px; font-size: .86rem; }
.form-notice--success { background: #e8f7ee; color: #165b32; }
.form-notice--error { background: #fff0ef; color: #8c1d18; }


.lead-card--summary .eyebrow { margin-bottom: 10px; }
.lead-card--summary > p { font-size: .96rem; }
.lead-card__highlights { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.lead-card__highlights li { display: flex; align-items: flex-start; gap: 10px; color: #344151; font-size: .88rem; font-weight: 700; }
.lead-card__highlights svg { flex: 0 0 auto; margin-top: 2px; color: var(--edr-accent); font-size: 1.25rem; }
.lead-card__time { margin: 13px 0 0 !important; font-size: .74rem !important; text-align: center; }
.lead-card--summary .button { width: 100%; }

.driver-application-section { background: linear-gradient(180deg, #eef5fb 0%, var(--edr-background) 100%); scroll-margin-top: 105px; }
.driver-application-card { max-width: 1120px; margin-inline: auto; padding: clamp(24px, 4vw, 56px); border: 1px solid rgba(13,28,50,.08); border-radius: var(--edr-radius-lg); background: var(--edr-surface); box-shadow: var(--edr-shadow); }
.application-heading { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.application-heading > p:last-child { color: var(--edr-muted); font-size: 1.02rem; }
.required-note { margin: 0 0 12px; color: var(--edr-muted); font-size: .78rem; text-align: right; }
.required-note span, .form-field label > span, .form-label > span { color: #b42318; }
.lead-form--complete { display: block; }
.form-progress { position: sticky; top: 78px; z-index: 8; margin: 0 0 18px; padding: 13px 15px; border: 1px solid rgba(22,118,210,.18); border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(13,28,50,.08); backdrop-filter: blur(8px); }
.form-progress__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 9px; color: var(--edr-primary); font-size: .82rem; }
.form-progress__track { position: relative; height: 30px; overflow: hidden; border-radius: 999px; background: #e6edf4; box-shadow: inset 0 0 0 1px rgba(13,28,50,.05); }
.form-progress__bar { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--edr-primary), var(--edr-accent)); transition: width .22s ease; }
.form-progress__percent { position: absolute; inset: 50% auto auto 50%; min-width: 50px; padding: 2px 8px; transform: translate(-50%, -50%); border-radius: 999px; background: rgba(255,255,255,.9); color: var(--edr-primary); font-size: .8rem; font-weight: 900; line-height: 1.4; text-align: center; box-shadow: 0 1px 4px rgba(13,28,50,.12); pointer-events: none; }
.form-progress small { display: block; margin-top: 7px; color: var(--edr-muted); font-size: .7rem; }
.form-progress.is-complete { border-color: rgba(22,118,210,.38); }
.application-group { min-width: 0; margin: 0; padding: 30px 0 34px; border: 0; border-top: 1px solid var(--edr-border); }
.application-group:first-of-type { border-top: 0; padding-top: 10px; }
.application-group > legend { display: flex; align-items: center; gap: 12px; width: 100%; margin: 0 0 8px; padding: 0; color: var(--edr-primary); font-family: var(--edr-font-heading); font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 800; }
.application-group > legend > span { display: inline-grid; flex: 0 0 auto; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--edr-primary), var(--edr-accent)); color: #fff; font-size: .88rem; }
.application-group__description { margin: 0 0 22px 48px; color: var(--edr-muted); font-size: .9rem; }
.application-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.application-fields--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.application-fields .form-field label, .application-fields .form-label { color: #27313e; font-size: .82rem; font-weight: 800; }
.application-fields .form-field small, .field-help { margin: 1px 0 0; color: var(--edr-muted); font-size: .72rem; }
.choice-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.choice-fieldset > legend { padding: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-grid--compact { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
.choice-grid--countries { grid-template-columns: repeat(4, minmax(0, 1fr)); max-height: 380px; padding: 4px 8px 4px 2px; overflow-y: auto; }
.choice-option { display: flex !important; align-items: flex-start; gap: 9px; min-height: 46px; padding: 11px 12px; border: 1px solid var(--edr-border); border-radius: 8px; background: #f8fafc; color: #344151; font-size: .78rem !important; font-weight: 700 !important; line-height: 1.35; cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.choice-option:hover { border-color: color-mix(in srgb, var(--edr-accent) 55%, var(--edr-border)); background: #f1f7fd; }
.choice-option:has(input:checked) { border-color: var(--edr-accent); background: rgba(22,118,210,.09); box-shadow: 0 0 0 1px rgba(22,118,210,.08); }
.form-field .choice-option input, .choice-option input { flex: 0 0 auto; width: 17px; min-height: 17px; height: 17px; margin: 1px 0 0; padding: 0; border: 1px solid #9aa6b2; box-shadow: none; accent-color: var(--edr-accent); }
.form-field textarea { resize: vertical; }
.countries-fieldset .field-help { margin-bottom: 10px; }
.country-picker__search { margin: 0 0 10px; }
.choice-grid--world { max-height: 330px; }
.choice-option[hidden] { display: none !important; }
.application-submit { display: grid; justify-items: center; gap: 18px; margin-top: 12px; padding: 30px; border-radius: var(--edr-radius); background: #edf5fc; text-align: center; }
.application-submit .form-consent { max-width: 850px; color: #344151; font-size: .82rem; text-align: left; }
.application-submit .form-consent input { width: 18px; height: 18px; }
.form-consent__content { display: grid; gap: 5px; }
.form-consent__title { color: var(--edr-primary); font-size: .9rem; }
.form-consent__text { line-height: 1.55; }
.form-consent__text strong { color: #1f2d3d; }
.application-submit__button { min-width: min(100%, 340px); }
.application-submit .form-privacy { max-width: 760px; margin: -4px 0 0; font-size: .75rem; }

.home-editor-content { padding-block: 50px; }
.stats-strip { background: var(--edr-surface); border-bottom: 1px solid var(--edr-border); }
.stats-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 30px 20px; text-align: center; }
.stat-item + .stat-item { border-left: 1px solid var(--edr-border); }
.stat-item strong { color: var(--edr-primary); font-family: var(--edr-font-heading); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1; }
.stat-item span { color: var(--edr-muted); font-size: .87rem; }

.story__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(42px, 7vw, 90px); }
.story__media { position: relative; }
.story__media::before { position: absolute; inset: 24px -18px -18px 24px; z-index: -1; border-radius: var(--edr-radius); background: var(--edr-accent); content: ""; opacity: .18; }
.story__media img { width: 100%; border-radius: var(--edr-radius); box-shadow: var(--edr-shadow-soft); }
.story__copy > p:not(.eyebrow) { color: var(--edr-muted); font-size: 1.05rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card { position: relative; padding: 32px 25px; overflow: hidden; border: 1px solid var(--edr-border); border-radius: var(--edr-radius); background: var(--edr-surface); box-shadow: var(--edr-shadow-soft); }
.process-card__number { position: absolute; top: 14px; right: 18px; color: rgba(13,28,50,.07); font-family: var(--edr-font-heading); font-size: 4rem; font-weight: 900; line-height: 1; }
.process-card h3 { position: relative; margin-top: 55px; }
.process-card p { margin: 0; color: var(--edr-muted); font-size: .92rem; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { padding: 30px; border: 1px solid var(--edr-border); border-radius: var(--edr-radius); background: var(--edr-surface); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.benefit-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--edr-accent) 45%, var(--edr-border)); box-shadow: var(--edr-shadow-soft); }
.benefit-card__icon { display: grid; width: 50px; height: 50px; margin-bottom: 22px; place-items: center; border-radius: 12px; background: rgba(22,118,210,.12); color: var(--edr-accent); font-size: 1.55rem; }
.benefit-card p { margin: 0; color: var(--edr-muted); font-size: .92rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 290px; margin: 0; padding: 32px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--edr-radius); background: rgba(255,255,255,.06); }
.testimonial-card blockquote { margin: 0; color: rgba(255,255,255,.88); font-size: 1.03rem; line-height: 1.75; }
.testimonial-card figcaption { display: flex; flex-direction: column; margin-top: 28px; }
.testimonial-card strong { color: #fff; }
.testimonial-card span { color: rgba(255,255,255,.58); font-size: .83rem; }


.jobs-section { overflow: hidden; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.job-card {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--edr-border);
  border-radius: var(--edr-radius);
  background: var(--edr-surface);
  box-shadow: 0 10px 30px rgba(5,20,40,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.job-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--edr-accent) 38%, var(--edr-border));
  box-shadow: var(--edr-shadow-soft);
}
.job-card__top { display: flex; flex-direction: column; align-items: flex-start; }
.job-card__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(22,118,210,.1);
  color: var(--edr-accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.job-card h3 {
  margin: 0;
  color: var(--edr-primary);
  font-size: 1.3rem;
  line-height: 1.3;
}
.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-top: 12px;
  color: var(--edr-muted);
  font-size: .86rem;
  font-weight: 700;
}
.job-card__meta span + span::before { margin-right: 10px; content: "•"; opacity: .45; }
.job-card__summary {
  margin: 18px 0 24px;
  color: var(--edr-muted);
  font-size: .94rem;
  line-height: 1.65;
}
.job-card__button {
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;
}

.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); align-items: stretch; gap: 16px; }
.partner-widget, .partner-placeholder, .partner-item { display: grid; min-height: 110px; place-items: center; padding: 20px; border: 1px solid var(--edr-border); border-radius: 10px; background: var(--edr-surface); color: #6e7781; font-weight: 800; text-align: center; }
.partner-item__link { display: grid; place-items: center; width: 100%; height: 100%; text-decoration: none; color: inherit; }
.partner-item__logo, .partner-widget img { max-height: 55px; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .2s ease, opacity .2s ease; }
.partner-item:hover .partner-item__logo,
.partner-widget:hover img { filter: grayscale(0); opacity: 1; }
.partner-item__name { font-size: .85rem; line-height: 1.25; }
.partner-widget .widget { margin: 0; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.posts-grid--archive { grid-template-columns: repeat(2, 1fr); }
.post-card { overflow: hidden; border: 1px solid var(--edr-border); border-radius: var(--edr-radius); background: var(--edr-surface); box-shadow: 0 5px 20px rgba(5,20,40,.04); }
.post-card__image { display: block; overflow: hidden; aspect-ratio: 640 / 420; background: #dfe4e9; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__image img { transform: scale(1.035); }
.post-card__content { padding: 24px; }
.post-card__meta { margin-bottom: 10px; color: var(--edr-accent); font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.post-card h3 { margin-bottom: 10px; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card p { color: var(--edr-muted); font-size: .9rem; }

.final-cta { padding: clamp(52px, 7vw, 82px) 0; background: linear-gradient(135deg, color-mix(in srgb, var(--edr-primary) 92%, #000), var(--edr-accent)); color: #fff; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta .eyebrow { color: rgba(255,255,255,.92); text-shadow: 0 1px 1px rgba(0,0,0,.18); }
.final-cta h2 { margin-bottom: 10px; color: #ffffff; text-shadow: 0 2px 14px rgba(0,0,0,.18); }
.final-cta p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.96); text-shadow: 0 1px 10px rgba(0,0,0,.12); }
.final-cta .button { flex: 0 0 auto; background: #ffffff; color: var(--edr-primary); box-shadow: 0 12px 28px rgba(8,20,36,.18); }
.final-cta .button:hover { color: var(--edr-primary); background: #f5f9ff; }

.site-footer { background: #071321; color: rgba(255,255,255,.68); }
.site-footer__grid { display: grid; grid-template-columns: 1.55fr .85fr 1fr; gap: 50px; padding-block: 70px; }
.site-footer__grid--with-social { grid-template-columns: 1.45fr .75fr .85fr 1fr; gap: 40px; }
.site-footer__brand > p { max-width: 390px; }
.site-footer h2 { color: #fff; font-size: 1rem; }
.footer-stats { display: flex; gap: 28px; margin-top: 28px; }
.footer-stats > div { display: flex; flex-direction: column; padding-left: 12px; border-left: 2px solid var(--edr-accent); }
.footer-stats strong { color: #fff; font-size: 1.15rem; }
.footer-stats span { font-size: .72rem; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li + li { margin-top: 9px; }
.footer-menu a, .site-footer__contact > a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-menu a:hover, .site-footer__contact > a:hover { color: var(--edr-accent); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-socials li { margin: 0; }
.footer-socials__link {
  display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; background: rgba(255,255,255,.06); color: #fff; text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.footer-socials__link svg { width: 22px; height: 22px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-socials__link .social-icon-fill { fill: currentColor; stroke: none; }
.footer-socials__link .social-icon-cut { fill: #071321; stroke: none; }
.footer-socials__link:hover { transform: translateY(-2px); border-color: var(--edr-accent); background: var(--edr-accent); color: #fff; }
.footer-socials__link:focus-visible { outline: 3px solid var(--edr-accent); outline-offset: 3px; }
.footer-socials__link:hover .social-icon-cut { fill: var(--edr-accent); }
.site-footer__contact { display: flex; flex-direction: column; gap: 8px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom p { margin: 0; padding: 20px 0; font-size: .78rem; }

.archive-layout, .single-layout { min-height: 60vh; }
.content-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; }
.archive-header { margin-bottom: 36px; }
.archive-header h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.archive-description { max-width: 760px; color: var(--edr-muted); }
.sidebar { align-self: start; }
.widget { margin-bottom: 24px; padding: 24px; border: 1px solid var(--edr-border); border-radius: var(--edr-radius); background: var(--edr-surface); }
.widget-title { font-size: 1.2rem; }
.widget ul { margin: 0; padding-left: 20px; }
.widget li + li { margin-top: 8px; }
.navigation.pagination { margin-top: 45px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; padding: 0 12px; border: 1px solid var(--edr-border); border-radius: 7px; background: #fff; text-decoration: none; }
.page-numbers.current { border-color: var(--edr-primary); background: var(--edr-primary); color: #fff; }

.entry-header { margin-bottom: 32px; }
.single-entry .entry-title, .page-entry .entry-title { font-size: clamp(2.2rem, 5vw, 4.1rem); }
.entry-category { margin-bottom: 15px; }
.entry-category a { display: inline-flex; padding: 5px 10px; border-radius: 4px; background: rgba(22,118,210,.12); color: var(--edr-primary); font-size: .74rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--edr-muted); font-size: .84rem; }
.share-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.share-links a { padding: 7px 11px; border: 1px solid var(--edr-border); border-radius: 5px; background: #fff; font-size: .76rem; font-weight: 800; text-decoration: none; }
.entry-featured { margin-bottom: 38px; }
.entry-featured img { width: 100%; border-radius: var(--edr-radius); }
.entry-content { font-size: 1.07rem; }
.entry-content > * { max-width: 100%; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: 8px; }
.entry-content blockquote { margin: 2em 0; padding: 5px 0 5px 24px; border-left: 4px solid var(--edr-accent); color: #36404b; font-size: 1.25rem; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 10px; border: 1px solid var(--edr-border); text-align: left; }
.entry-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.entry-tags a { padding: 5px 10px; border-radius: 4px; background: var(--edr-soft); font-size: .78rem; text-decoration: none; }
.post-navigation { margin: 45px 0; padding: 22px 0; border-block: 1px solid var(--edr-border); }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; }
.nav-next { text-align: right; }
.author-box { display: grid; grid-template-columns: auto 1fr; gap: 20px; margin: 45px 0; padding: 28px; border-radius: var(--edr-radius); background: var(--edr-soft); }
.author-box img { border-radius: 50%; }
.author-box h2 { font-size: 1.3rem; }
.author-box .eyebrow { margin-bottom: 4px; }
.related-posts { margin-top: 60px; }
.related-posts > h2 { margin-bottom: 24px; }
.posts-grid--related { grid-template-columns: repeat(2, 1fr); }
.comments-area { margin-top: 60px; }
.comment-list { padding-left: 24px; }
.comment-list .comment-body { margin-bottom: 24px; padding: 20px; border: 1px solid var(--edr-border); border-radius: 10px; background: #fff; }
.comment-form label { display: block; font-weight: 800; }
.comment-form textarea { min-height: 160px; }
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.error-404 { text-align: center; }
.error-404 .search-form { max-width: 600px; margin: 28px auto; }

.alignwide { width: min(1100px, 100%); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.wp-caption, .gallery-caption { max-width: 100%; }
.bypostauthor { display: block; }
.sticky { position: relative; }

@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: grid; place-items: center; justify-self: end; order: 3; }
  .site-header__cta { justify-self: end; }
  .primary-navigation {
    position: fixed; top: 80px; right: 0; bottom: 0; z-index: 1001; width: min(88vw, 390px); padding: 28px;
    overflow-y: auto; background: var(--edr-surface); box-shadow: -16px 20px 40px rgba(5,20,40,.16); transform: translateX(105%); transition: transform .25s ease;
  }
  .primary-navigation.is-open { transform: translateX(0); }
  .site-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .site-menu li { border-bottom: 1px solid var(--edr-border); }
  .site-menu a { display: block; padding: 15px 2px; font-size: 1rem; }
  .site-menu .sub-menu { position: static; min-width: 0; padding: 0 0 8px 16px; visibility: visible; border: 0; box-shadow: none; opacity: 1; transform: none; }
  .site-menu .sub-menu li { border-bottom: 0; }
  .site-menu .sub-menu a { padding: 9px 2px; font-size: .92rem; }
  .hero__grid { grid-template-columns: 1fr 390px; gap: 38px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__grid--with-social { grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-bar .site-header { top: 46px; }
  .site-header__inner { min-height: 72px; }
  .site-header__cta { display: none; }
  .primary-navigation { top: 72px; }
  .hero, .hero__grid { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 72px; }
  .hero__overlay { background: linear-gradient(180deg, rgba(7,19,36,.94), rgba(13,28,50,.9)); }
  .lead-card { max-width: 620px; }
  .application-fields--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid--countries { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story__grid { grid-template-columns: 1fr; }
  .benefits-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid .post-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { width: 100%; }
  .site-footer__grid, .site-footer__grid--with-social { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__contact { grid-column: auto; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--edr-container)); }
  .section { padding-block: 62px; }
  .site-branding__link { font-size: 1.04rem; }
  .site-branding__mark { font-size: 1.75rem; }
  .hero__grid { padding-block: 58px; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .lead-form { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .driver-application-card { padding: 24px 18px; border-radius: 14px; }
  .application-heading { margin-bottom: 24px; text-align: left; }
  .application-group { padding-block: 26px; }
  .application-group__description { margin-left: 0; }
  .application-fields, .application-fields--three, .choice-grid, .choice-grid--countries { grid-template-columns: 1fr; }
  .choice-grid--countries { max-height: 430px; }
  .application-submit { padding: 24px 18px; }
  .stats-strip__grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-top: 1px solid var(--edr-border); border-left: 0; }
  .process-grid, .benefits-grid, .testimonials-grid, .partners-grid, .posts-grid, .posts-grid--archive, .posts-grid--related { grid-template-columns: 1fr; }
  .posts-grid .post-card:last-child:nth-child(odd) { grid-column: auto; }
  .section-heading--row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .site-footer__grid, .site-footer__grid--with-social { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__brand, .site-footer__contact { grid-column: auto; }
  .footer-stats { flex-direction: column; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .nav-next { text-align: left; }
  .author-box { grid-template-columns: 1fr; }
  .search-form { flex-direction: column; }
}

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


@media (max-width: 767px) {
  .site-branding__logo-image { height: 56px; max-width: 250px; }
}

/* Cadastro profissional aberto somente por ação do visitante. */
.driver-application-section[hidden] { display: none !important; }
.driver-application-section.is-open { display: block; }
.application-panel__toolbar { display: flex; justify-content: flex-end; margin: -18px -18px 4px 0; }
.application-panel__close {
  display: inline-grid; width: 44px; height: 44px; padding: 0; place-items: center;
  border: 1px solid var(--edr-border); border-radius: 50%; background: #f4f7fa;
  color: var(--edr-primary); font-size: 1.9rem; line-height: 1; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.application-panel__close:hover { background: var(--edr-primary); color: #fff; transform: rotate(3deg); }
.application-panel__close:focus-visible { outline: 3px solid var(--edr-accent); outline-offset: 3px; }
.application-heading h2:focus, .form-notice--error:focus, .application-success:focus { outline: none; }
.application-success {
  max-width: 760px; margin: 10px auto; padding: clamp(28px, 5vw, 58px);
  border: 1px solid #b8e2c7; border-radius: var(--edr-radius-lg);
  background: linear-gradient(145deg, #f4fff7, #eaf8ef); text-align: center;
  box-shadow: 0 18px 45px rgba(22,91,50,.1);
}
.application-success__icon {
  display: grid; width: 78px; height: 78px; margin: 0 auto 22px; place-items: center;
  border-radius: 50%; background: #168447; color: #fff; font-size: 2.7rem;
  box-shadow: 0 12px 28px rgba(22,132,71,.22);
}
.application-success__icon svg { width: 1em; height: 1em; }
.application-success .eyebrow { color: #168447; }
.application-success h2 { margin-bottom: 16px; color: #103d25; }
.application-success p { max-width: 640px; margin-right: auto; margin-left: auto; color: #365744; }
.application-success .button { margin-top: 12px; }
.driver-application-section--success .driver-application-card { max-width: 900px; }

@media (max-width: 680px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .job-card { min-height: 0; padding: 24px; }
  .application-panel__toolbar { margin: -10px -10px 8px 0; }
  .application-panel__close { width: 40px; height: 40px; }
  .application-success { padding: 28px 20px; }
}

/* Correções de responsividade e prevenção de rolagem horizontal. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.site-main,
.site-header,
.site-footer,
section,
.container,
.site-header__inner,
.hero__grid,
.story__grid,
.content-with-sidebar,
.driver-application-card {
  min-width: 0;
  max-width: 100%;
}

iframe,
video,
embed,
object,
.wp-block-embed,
.wp-block-embed__wrapper {
  max-width: 100%;
}

iframe,
video {
  display: block;
}

.form-field,
.form-field input,
.form-field select,
.form-field textarea,
.search-field,
.comment-form input,
.comment-form textarea {
  min-width: 0;
  max-width: 100%;
}

.entry-content,
.entry-content p,
.entry-content a,
.entry-content li,
.widget,
.site-footer,
.choice-option,
.application-group {
  overflow-wrap: anywhere;
  word-break: normal;
}

.entry-content pre,
.entry-content table {
  max-width: 100%;
  overflow-x: auto;
}

.site-branding {
  min-width: 0;
  max-width: 100%;
}

.site-branding .custom-logo-link,
.site-branding__link--logo {
  max-width: 100%;
}

.site-branding .custom-logo,
.site-branding__logo-image {
  width: auto;
  max-width: min(340px, 100%);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.story__media {
  min-width: 0;
  isolation: isolate;
}

.story__media::before {
  right: 0;
}

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-branding {
    width: 100%;
    max-width: calc(100vw - 92px);
    overflow: hidden;
  }

  .site-branding .custom-logo-link,
  .site-branding__link--logo {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .site-branding .custom-logo,
  .site-branding__logo-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 62px;
  }

  .menu-toggle {
    grid-column: 2;
    flex: 0 0 auto;
  }

  .primary-navigation {
    max-width: 100vw;
  }

  .story__media::before {
    inset: 14px 0 -14px 14px;
  }

  .alignwide,
  .alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .site-header__inner {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .site-branding {
    max-width: calc(100vw - 76px);
  }

  .site-branding .custom-logo,
  .site-branding__logo-image {
    max-height: 54px;
  }

  .hero h1,
  .section-heading h2,
  .application-heading h2,
  .final-cta h2 {
    overflow-wrap: anywhere;
  }

  .button,
  button[type="submit"],
  input[type="submit"] {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .jobs-grid,
  .job-card {
    min-width: 0;
    max-width: 100%;
  }

  .application-panel__toolbar {
    margin-right: 0;
  }
}

/* Seletor bilíngue PT / EN. */
.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-width: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(13,28,50,.12);
  border-radius: 999px;
  background: rgba(244,248,252,.92);
  box-shadow: 0 3px 12px rgba(5,20,40,.06);
}

.language-switcher__item {
  display: inline-flex;
  min-width: 48px;
  height: 34px;
  padding: 4px 7px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: var(--edr-primary);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.language-switcher__item svg {
  width: 24px;
  height: 17px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(13,28,50,.12);
}

.language-switcher__item:hover {
  color: var(--edr-primary);
  background: #fff;
  transform: translateY(-1px);
}

.language-switcher__item.is-active {
  background: #fff;
  box-shadow: 0 3px 9px rgba(5,20,40,.13);
}

.language-switcher__item:focus-visible {
  outline: 3px solid var(--edr-accent);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .site-header__actions {
    grid-column: 2;
    order: 2;
  }

  .menu-toggle {
    grid-column: 3;
    order: 3;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-header__actions {
    grid-column: 2;
  }

  .site-header__actions .site-header__cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-branding {
    max-width: calc(100vw - 218px);
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
    gap: 6px;
  }

  .site-branding {
    max-width: calc(100vw - 174px);
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .language-switcher__item {
    min-width: 29px;
    height: 30px;
    padding: 4px 5px;
  }

  .language-switcher__item span {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  .language-switcher__item svg {
    width: 21px;
    height: 15px;
  }
}

/* Cookie notice */
.cookie-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  padding: 14px 0 max(14px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(7,19,33,.98);
  color: rgba(255,255,255,.82);
  box-shadow: 0 -12px 34px rgba(5,16,29,.2);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-bar.is-visible { opacity: 1; transform: translateY(0); }
.cookie-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cookie-bar__copy { min-width: 0; }
.cookie-bar__title { display: block; margin-bottom: 5px; color: #fff; font-size: .95rem; }
.cookie-bar__copy p { max-width: 900px; margin: 0; font-size: .84rem; line-height: 1.55; }
.cookie-bar__copy a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cookie-bar__copy a:hover { color: var(--edr-accent); }
.cookie-bar__accept { flex: 0 0 auto; min-width: 150px; min-height: 44px; padding: 11px 20px; border: 0; white-space: nowrap; }
.cookie-bar__accept[disabled] { cursor: wait; opacity: .72; }
.cookie-bar__error { margin-top: 5px !important; color: #ffd2d2; font-size: .76rem !important; }

@media (max-width: 720px) {
  .cookie-bar { padding-top: 16px; }
  .cookie-bar__inner { align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-bar__copy p { font-size: .8rem; }
  .cookie-bar__accept { width: 100%; min-width: 0; }
}

/* Escolha entre cadastro de motorista e contato de transportadora. */
.lead-card__actions { display: grid; gap: 10px; }
.lead-card__actions .button { margin: 0; }
.button--outline {
  border: 1px solid rgba(22,118,210,.45);
  background: transparent;
  color: var(--edr-accent);
  box-shadow: none;
}
.button--outline:hover { background: rgba(22,118,210,.08); color: var(--edr-accent); box-shadow: none; }
.carrier-application-card { max-width: 820px; }
.carrier-form { display: block; }
.carrier-form__fields { margin-top: 18px; }
.carrier-form__submit { margin-top: 22px; }

@media (min-width: 560px) {
  .lead-card__actions { grid-template-columns: 1fr 1fr; }
}

/* Validação do cadastro: resumo visível, campos destacados e valores preservados após retorno do servidor. */
.form-error-summary { margin: 0 0 22px; }
.form-error-summary p { margin: 7px 0 0; }
.form-error-summary ul { margin: 10px 0 0 20px; padding: 0; }
.form-error-summary li + li { margin-top: 5px; }
.form-field.is-invalid > input,
.form-field.is-invalid > select,
.form-field.is-invalid > textarea {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180,35,24,.10);
}
.choice-fieldset.is-invalid .choice-option,
.form-consent.is-invalid {
  border-color: #b42318;
}
.choice-fieldset.is-invalid .choice-option { background: #fff7f6; }
.form-consent.is-invalid { padding: 10px; border: 1px solid #b42318; border-radius: 8px; background: #fff7f6; }

@media (max-width: 720px) {
  .form-progress { top: 64px; padding: 11px 12px; }
  .form-progress small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .form-progress__bar { transition: none; }
}
