
:root {
  --blue: #0f6fa8;
  --blue-dark: #174762;
  --orange: #f49b20;
  --ink: #172331;
  --muted: #667386;
  --line: #dce6ee;
  --soft: #f4f8fb;
  --paper: #ffffff;
  --shadow: 0 20px 55px rgba(20, 54, 78, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.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;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 20;
  background: var(--blue-dark);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 86px;
  padding: 14px clamp(20px, 5vw, 70px);
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img { width: min(301px, 52vw); height: auto; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
}
.main-nav a {
  text-decoration: none;
  color: #26384a;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--blue); border-color: var(--orange); }
.nav-dropdown {
  position: relative;
  padding: 8px 0;
}
.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  color: #26384a;
  font: inherit;
  cursor: pointer;
  padding: 0 18px 0 0;
}
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.nav-dropdown.active .nav-dropdown-trigger,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--blue);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 245px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border: 0;
  border-radius: 6px;
}
.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  background: var(--soft);
  border: 0;
}
.nav-toggle { display: none; margin-left: auto; }
.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}
.redesigned-hero {
  min-height: clamp(620px, 78vh, 820px);
  align-items: end;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.redesigned-hero .hero-slide { object-position: 62% center; }
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 37, 55, .18), rgba(15, 37, 55, .78) 72%, rgba(15, 37, 55, .96));
}
.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: clamp(74px, 10vw, 128px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: 0; }
h1 { margin: 0 0 20px; font-size: clamp(42px, 7vw, 78px); }
h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 46px); }
h3 { margin: 0 0 10px; font-size: 20px; }
.hero p:not(.eyebrow) { font-size: clamp(18px, 2.2vw, 24px); max-width: 720px; }
.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-micro span {
  padding: 8px 12px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .12);
  color: white;
  font-weight: 700;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.actions.compact { margin-top: 20px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: #211406;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn.secondary {
  background: white;
  color: var(--blue-dark);
  border: 1px solid var(--line);
}
.btn.small { min-height: 40px; padding: 9px 16px; font-size: 14px; }
.text-link { color: var(--blue); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--orange); }
.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}
.new-home {
  background: #fff;
}
.home-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 98px) 0 clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.home-hero h1 {
  max-width: 820px;
  color: var(--blue-dark);
  font-size: clamp(46px, 6.5vw, 82px);
}
.home-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}
.home-hero-visual {
  width: 100%;
  max-width: none;
  min-height: clamp(760px, 96vh, 1040px);
  margin: 0;
  padding: clamp(92px, 10vw, 132px) clamp(20px, 7vw, 104px) clamp(82px, 10vw, 128px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: #0c2638;
}
.home-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 38, 56, .96) 0%, rgba(12, 38, 56, .84) 34%, rgba(12, 38, 56, .42) 58%, rgba(12, 38, 56, .12) 78%, rgba(12, 38, 56, 0) 100%),
    linear-gradient(180deg, rgba(12, 38, 56, .08), rgba(12, 38, 56, .18));
}
.home-hero-visual::after {
  content: "";
  display: none;
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(12, 38, 56, .72));
  pointer-events: none;
}
.hero-bg-rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .9s ease, transform 4.2s ease;
}
.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}
.home-hero-copy {
  position: relative;
  z-index: 2;
}
.home-hero-visual .home-hero-copy {
  width: min(760px, 52vw);
  max-width: none;
  margin: 0;
  display: grid;
  justify-items: start;
  text-align: left;
}
.home-hero-visual .actions {
  justify-content: flex-start;
}
.hero-bg-action-layer {
  position: absolute;
  right: clamp(20px, 7vw, 104px);
  bottom: clamp(28px, 5vw, 70px);
  z-index: 2;
  width: min(360px, calc(100% - 40px));
}
.hero-bg-action {
  position: relative;
  display: none;
  min-height: 76px;
  padding: 15px 56px 15px 18px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(4, 17, 28, .22);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease;
}
.hero-bg-action.active {
  display: grid;
  gap: 4px;
}
.hero-bg-action:hover {
  transform: translateY(-3px);
  background: white;
}
.hero-bg-action span {
  color: #8b5206;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-bg-action strong {
  color: var(--blue-dark);
  font-size: 19px;
  line-height: 1.18;
}
.hero-bg-action::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #102e41;
  font-weight: 900;
  transform: translateY(-50%);
}
.home-hero-visual h1 {
  max-width: 900px;
  color: white;
  text-shadow: 0 14px 38px rgba(0,0,0,.28);
}
.home-hero-visual .home-hero-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255,255,255,.88);
}
.home-hero-visual .hero-summary-panel {
  align-self: center;
  min-height: auto;
  display: grid;
  align-content: center;
  gap: 0;
  padding: 12px;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.16);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}
.hero-side-rotator {
  position: relative;
  width: 100%;
  height: min(560px, 68vh);
  aspect-ratio: 4 / 4.85;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 18px 38px rgba(0,0,0,.20);
}
.hero-side-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .75s ease, transform 3s ease;
}
.hero-side-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-side-action-layer {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
}
.hero-side-action {
  position: relative;
  display: none;
  width: 100%;
  min-height: 78px;
  align-items: center;
  gap: 4px;
  padding: 15px 56px 15px 18px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
  transition: transform .18s ease, background .18s ease;
}
.hero-side-action.active {
  display: grid;
}
.hero-side-action:hover {
  transform: translateY(-3px);
  background: white;
}
.hero-side-action span {
  color: #8b5206;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-side-action strong {
  color: var(--blue-dark);
  font-size: 19px;
  line-height: 1.18;
}
.hero-side-action::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #102e41;
  font-weight: 900;
  transform: translateY(-50%);
}
.hero-summary-panel .hero-panel-card {
  position: relative;
  z-index: 2;
  left: auto;
  right: auto;
  bottom: auto;
  margin: -58px 16px 0;
}
.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 155, 32, .14), transparent 34%),
    var(--soft);
}
.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}
.hero-panel-card {
  position: absolute;
  left: -24px;
  right: 24px;
  bottom: 38px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: white;
  box-shadow: var(--shadow);
}
.hero-panel-card strong { color: var(--blue-dark); }
.hero-panel-card span { color: var(--muted); }
.service-carousel-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0;
  border-bottom: 1px solid var(--line);
}
.service-carousel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 26px;
}
.service-carousel-head h2 {
  max-width: 760px;
}
.service-carousel-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}
.service-carousel-stage {
  position: relative;
}
.service-carousel-side {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  border: 1px solid #cadbe4;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--blue-dark);
  font-size: 38px;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(11, 37, 55, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.service-carousel-side:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: var(--orange);
  background: var(--orange);
  color: #211406;
}
.service-carousel-side-prev {
  left: -26px;
}
.service-carousel-side-next {
  right: -26px;
}
.service-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}
.service-carousel-viewport::-webkit-scrollbar {
  display: none;
}
.service-carousel-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.service-carousel-track {
  display: flex;
  gap: 18px;
}
.service-showcase-slide {
  min-height: 520px;
  min-width: 0;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px) clamp(88px, 8vw, 112px);
  border-radius: 8px;
  scroll-snap-align: start;
  color: white;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 155, 32, .24), transparent 30%),
    linear-gradient(135deg, #0b2537, #102e41 62%, #183f58);
}
.service-showcase-auto {
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 155, 32, .22), transparent 30%),
    linear-gradient(135deg, #0b2537, #153f5a 68%, #eff6f9 68%);
}
.service-showcase-platinum {
  background:
    radial-gradient(circle at 16% 14%, rgba(244, 155, 32, .26), transparent 30%),
    linear-gradient(135deg, #102e41, #0b2537 58%, #174b63 100%);
}
.service-showcase-health {
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 153, 172, .24), transparent 30%),
    linear-gradient(135deg, #0c3341, #174d5f 62%, #12364a 100%);
}
.service-showcase-credit {
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 155, 32, .23), transparent 30%),
    linear-gradient(135deg, #132c4a, #183a62 62%, #102e41 100%);
}
.service-showcase-benefits {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 188, 64, .22), transparent 30%),
    linear-gradient(135deg, #1c3441, #245062 62%, #12364a 100%);
}
.service-showcase-copy {
  position: relative;
  min-width: 0;
}
.service-showcase-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: white;
  backdrop-filter: blur(12px);
}
.service-showcase-count {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: #0b2537;
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(244, 155, 32, .16);
}
.service-showcase-name strong {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.2;
}
.service-showcase-copy .eyebrow {
  color: var(--orange);
}
.service-showcase-copy h3 {
  max-width: 700px;
  color: white;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: .98;
  overflow-wrap: anywhere;
}
.service-showcase-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}
.service-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.service-showcase-actions .secondary {
  border-color: rgba(255,255,255,.44);
  background: rgba(255,255,255,.1);
  color: white;
}
.service-showcase-panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(13, 47, 70, .12);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(11, 37, 55, .2);
}
.guide-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-showcase-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: showcase-guide;
}
.service-showcase-panel li {
  counter-increment: showcase-guide;
  display: grid;
  grid-template-columns: 50px minmax(132px, .36fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid #dbe7ee;
}
.service-showcase-panel li:first-child {
  border-top: 0;
}
.service-showcase-panel li::before {
  content: counter(showcase-guide, decimal-leading-zero);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b2537;
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(15, 111, 168, .12);
}
.service-showcase-panel strong {
  color: var(--blue-dark);
  font-size: 17px;
  line-height: 1.25;
}
.service-showcase-panel span {
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.service-showcase-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.service-showcase-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #d7e3ea;
  border-radius: 999px;
  background: #f7fbfd;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}
.service-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.service-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5d7e0;
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}
.service-carousel-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--orange);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.service-overview {
  padding-top: clamp(64px, 8vw, 104px);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: service-card;
  border-top: 1px solid #d3e2ea;
  border-bottom: 1px solid #d3e2ea;
}
.service-tile {
  counter-increment: service-card;
  min-height: auto;
  display: grid;
  grid-template-columns: 72px minmax(170px, .42fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
  transition: transform .18s ease, background .18s ease;
}
.service-tile::before {
  content: counter(service-card, decimal-leading-zero);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 155, 32, .34);
  border-radius: 50%;
  background: #fff6e8;
  color: var(--orange);
  font-weight: 800;
}
.service-tile::after {
  content: "";
  position: absolute;
  left: 94px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #dbe7ee;
}
.service-tile:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(244, 155, 32, .08), transparent 56%);
}
.service-tile span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff4e4;
  color: #8b5206;
  font-size: 12px;
  font-weight: 700;
}
.service-tile h3 {
  margin: 6px 0 0;
  color: var(--blue-dark);
}
.service-tile p {
  margin: 0;
  color: var(--muted);
}
.service-tile a {
  white-space: nowrap;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.service-tile a::after {
  content: " ->";
  color: var(--orange);
}
.info-layout {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-top: 0;
}
.info-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-left: 1px solid #d3e2ea;
}
.info-grid article,
.process-grid article,
.latest-grid article,
.ewerton-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d3e2ea;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(12, 38, 56, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.info-grid article::before,
.process-grid article::before,
.latest-grid article::before,
.ewerton-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #0f6fa8);
}
.info-grid article:hover,
.process-grid article:hover,
.latest-grid article:hover,
.ewerton-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 155, 32, .62);
  box-shadow: 0 24px 54px rgba(12, 38, 56, .14);
}
.info-grid article {
  padding: 0 0 22px 26px;
  border: 0;
  border-bottom: 1px solid #dbe7ee;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.info-grid article:last-child {
  border-bottom: 0;
}
.info-grid article::before {
  inset: 7px auto auto -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(244, 155, 32, .14);
}
.info-grid article:hover {
  transform: translateX(6px);
  border-color: #dbe7ee;
  box-shadow: none;
}
.info-grid h3 {
  display: block;
  color: var(--blue-dark);
}
.info-grid p,
.process-grid p { color: var(--muted); }
.consortium-focus-section {
  width: 100%;
  max-width: none;
  padding: clamp(62px, 8vw, 106px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244,155,32,.16) 0 1px, transparent 1px 100%) 0 0 / 72px 72px,
    radial-gradient(circle at 18% 20%, rgba(244, 155, 32, .24), transparent 28%),
    linear-gradient(135deg, #071d2d, #102e41 64%, #173d53);
  color: white;
}
.consortium-focus-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}
.consortium-focus-copy .eyebrow {
  color: var(--orange);
}
.consortium-focus-copy h2 {
  max-width: 650px;
  color: white;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
}
.consortium-focus-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.consortium-focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.consortium-focus-actions .secondary {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
  color: white;
}
.consortium-focus-map {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 28px;
}
.consortium-focus-map::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--orange), rgba(255,255,255,.2));
}
.consortium-focus-map article {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.consortium-focus-map article:first-child {
  border-top: 0;
}
.consortium-focus-map article::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 42px;
  width: 15px;
  height: 15px;
  border: 3px solid #102e41;
  border-radius: 50%;
  background: var(--orange);
}
.consortium-focus-map span {
  color: rgba(244,155,32,.96);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: .9;
}
.consortium-focus-map small {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.consortium-focus-map h3 {
  margin: 0 0 8px;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
}
.consortium-focus-map p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.58;
}
.ewerton-section {
  width: 100%;
  max-width: none;
  padding: clamp(64px, 8vw, 108px) clamp(20px, 7vw, 104px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 155, 32, .11), transparent 32%),
    #f7fafb;
}
.ewerton-profile {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}
.ewerton-photo-wrap {
  position: relative;
  padding: 14px;
  border: 1px solid #d6e3eb;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 60px rgba(12, 38, 56, .12);
}
.ewerton-photo-wrap::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 42%;
  height: 42%;
  z-index: -1;
  border: 2px solid var(--orange);
  border-radius: 8px;
}
.ewerton-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.ewerton-copy h2 {
  max-width: 720px;
}
.ewerton-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}
.ewerton-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.ewerton-card-grid {
  width: min(1160px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ewerton-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px 24px 24px;
}
.ewerton-card h3 {
  color: var(--blue-dark);
}
.ewerton-card p {
  color: var(--muted);
}
.process-section {
  width: 100%;
  max-width: none;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 7vw, 104px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}
.process-section .section-heading,
.process-grid {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  margin-top: 44px;
  border-top: 2px solid #d3e2ea;
}
.process-grid article {
  padding: 28px 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.process-grid article::before {
  inset: -9px auto auto 0;
  width: 16px;
  height: 16px;
  border: 3px solid #f7fafb;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(244, 155, 32, .35);
}
.process-grid article:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}
.process-grid span {
  display: block;
  margin-bottom: 16px;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
}
.ecosystem-heading {
  position: sticky;
  top: 118px;
}
.ecosystem-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.ecosystem-lanes {
  border-top: 1px solid #cfdfe8;
}
.ecosystem-lanes a {
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px minmax(130px, .34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #dbe7ee;
  color: inherit;
  text-decoration: none;
}
.ecosystem-lanes a:hover {
  background: linear-gradient(90deg, rgba(244, 155, 32, .08), transparent);
}
.ecosystem-lanes span {
  color: var(--orange);
  font-weight: 900;
}
.ecosystem-lanes strong {
  color: var(--blue-dark);
  font-size: 20px;
}
.ecosystem-lanes small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.platinum-auto-section {
  width: 100%;
  max-width: none;
  padding: clamp(54px, 8vw, 94px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 155, 32, .22), transparent 30%),
    linear-gradient(135deg, #0b2537 0%, #102e41 58%, #f4f8fb 58%, #eef5f8 100%);
}
.platinum-auto-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.08fr) minmax(260px, .86fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.platinum-auto-copy {
  color: white;
}
.platinum-auto-copy .eyebrow {
  color: var(--orange);
}
.platinum-auto-copy h2 {
  color: white;
  font-size: clamp(36px, 5vw, 62px);
}
.platinum-auto-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}
.platinum-auto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.platinum-auto-actions .secondary {
  border-color: rgba(255,255,255,.42);
  color: white;
}
.platinum-auto-road {
  position: relative;
  padding: 10px 0;
  color: white;
}
.platinum-auto-road::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 25px;
  width: 2px;
  background: linear-gradient(var(--orange), rgba(255,255,255,.18));
}
.platinum-auto-road article {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 26px;
}
.platinum-auto-road article:last-child {
  padding-bottom: 0;
}
.platinum-auto-road span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: #f49b20;
  color: #102e41;
  font-weight: 900;
}
.platinum-auto-road h3 {
  margin: 0 0 6px;
  color: white;
  font-size: 20px;
}
.platinum-auto-road p {
  margin: 0;
  color: rgba(255,255,255,.76);
}
.platinum-auto-partners {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(13, 47, 70, .12);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(11, 37, 55, .18);
}
.platinum-partners-label {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.platinum-partner-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid #dbe7ee;
}
.platinum-partner-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.platinum-partner-row:last-child {
  padding-bottom: 0;
}
.platinum-partner-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid #d7e3ea;
  border-radius: 8px;
  background: #f8fbfd;
}
.platinum-partner-mark img {
  width: 62px;
  max-height: 44px;
  object-fit: contain;
}
.platinum-partner-mark strong {
  color: #d7382a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.platinum-partner-row strong {
  color: var(--blue-dark);
  font-size: 18px;
}
.platinum-partner-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.business-section {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 74px);
  border-radius: 8px;
  background: #102e41;
  color: white;
}
.business-section .eyebrow,
.business-section .text-link { color: var(--orange); }
.business-section p { color: rgba(255,255,255,.82); font-size: 18px; }
.latest-section {
  border-top: 1px solid var(--line);
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.latest-grid .post-card::before {
  display: none;
}
.latest-grid .post-card {
  padding: 0;
}
.partners-marquee-section {
  width: 100%;
  max-width: none;
  padding: clamp(48px, 7vw, 78px) 0;
  overflow: hidden;
  background: #102e41;
  color: white;
}
.partners-marquee-head {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
}
.partners-marquee-head h2 {
  color: white;
}
.partners-marquee-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.partner-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partner-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: partnerMarquee 30s linear infinite;
}
.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
.partner-pill {
  width: 286px;
  min-height: 94px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
  color: white;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.partner-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 155, 32, .7);
  background: rgba(255,255,255,.15);
}
.partner-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: white;
}
.partner-mark img {
  max-width: 60px;
  max-height: 56px;
  object-fit: contain;
}
.partner-mark img[src*="rodobens-consorcio"],
.partner-mark img[src*="porto-consorcio"] {
  width: 66px;
  height: 66px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.partner-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.partner-text strong {
  overflow: hidden;
  color: white;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.partner-text small {
  overflow: hidden;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes partnerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}
.links-page {
  min-height: 100vh;
  margin: 0;
  color: white;
  background:
    radial-gradient(circle at 50% 14%, rgba(15, 111, 168, .24), transparent 32%),
    linear-gradient(135deg, #06101d, #071a2b 58%, #04111f);
}
.links-stage {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 36px 20px;
}
.links-card {
  width: min(100%, 344px);
  display: grid;
  justify-items: center;
  padding: 30px 18px 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(13, 28, 45, .86);
  box-shadow: 0 30px 80px rgba(0,0,0,.36);
  text-align: center;
}
.links-avatar {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border: 3px solid rgba(244, 155, 32, .9);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.links-kicker {
  margin: 18px 0 4px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}
.links-card h1 {
  max-width: 245px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}
.links-list {
  width: 100%;
  display: grid;
  gap: 10px;
}
.bio-link {
  min-height: 48px;
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 6px 15px 6px 7px;
  border-radius: 999px;
  background: #fff;
  color: #03101e;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.bio-link:hover {
  transform: translateY(-2px);
  background: #ffc83d;
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.bio-link.primary {
  background: #fff;
}
.bio-link-code {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #061426;
  color: white;
  font-size: 10px;
  font-weight: 900;
}
.links-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 14px;
}
.social-button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}
.social-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.social-linkedin { background: #0a66c2; }
.social-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, transparent 36%),
    linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
}
.social-whatsapp { background: #25d366; }
.social-youtube { background: #ff0000; }
.social-tiktok { background: #000; }
.social-facebook { background: #1877f2; }
.floating-socials {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.floating-social-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(15, 35, 52, .18);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, background-color .3s ease;
  pointer-events: auto;
}
.floating-social-button:hover,
.floating-social-button:focus-visible {
  transform: scale(1.05);
  outline: none;
}
.floating-social-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.floating-linkedin {
  background: #0a66c2;
}
.floating-linkedin:hover,
.floating-linkedin:focus-visible {
  background: #0958a8;
  box-shadow: 0 12px 24px rgba(10, 102, 194, .45);
}
.floating-youtube {
  background: #ff0000;
  box-shadow: 0 10px 18px rgba(255, 0, 0, .28);
}
.floating-youtube:hover,
.floating-youtube:focus-visible {
  background: #d90000;
  box-shadow: 0 12px 24px rgba(255, 0, 0, .42);
}
.floating-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, transparent 36%),
    linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}
.floating-instagram:hover,
.floating-instagram:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 12px 24px rgba(221, 42, 123, .45);
}
.floating-whatsapp {
  background: #25d366;
}
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #20ba5a;
  box-shadow: 0 12px 24px rgba(37, 211, 102, .45);
}
.floating-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translate(8px, -50%);
  padding: 7px 10px;
  border-radius: 6px;
  background: #061426;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 24px rgba(6, 20, 38, .22);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}
.floating-social-button:hover .floating-tooltip,
.floating-social-button:focus-visible .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}
.links-site {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  text-decoration: none;
}
.links-site:hover {
  color: white;
}
.quick-dock {
  width: min(1160px, calc(100% - 40px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}
.quick-dock a {
  min-height: 118px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 8px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.quick-dock a:last-child { border-right: 0; }
.quick-dock strong { color: var(--blue-dark); font-size: 15px; }
.quick-dock span { color: var(--muted); font-size: 14px; }
.quick-dock a:hover { background: var(--soft); }
.centered { text-align: center; }
.centered > h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.product-grid,
.blog-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.product-card,
.post-card,
.download-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(29, 72, 99, .08);
}
.product-card { padding: 26px; min-height: 210px; text-align: left; }
.product-card {
  border-top: 4px solid var(--orange);
}
.product-card h3 { color: var(--blue-dark); }
.product-card a { color: var(--blue); font-weight: 700; text-decoration: none; }
.blog-library {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 98px) 0;
}
.blog-library-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 26px;
}
.blog-library-head h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
}
.blog-library-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.blog-grid.article-grid {
  margin-top: 30px;
  gap: 20px;
}
.post-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(29, 72, 99, .09);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 111, 168, .28);
  box-shadow: 0 24px 58px rgba(12, 38, 56, .14);
}
.post-card-image {
  display: block;
  overflow: hidden;
  background: #edf5f9;
}
.post-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  transition: transform .32s ease, filter .32s ease;
}
.post-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}
.post-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.cat {
  margin: 0 0 10px;
  color: #bd7c18;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.post-card h2,
.post-card h3 {
  margin: 0 0 13px;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.28;
}
.post-card h2 a,
.post-card h3 a {
  color: inherit;
  text-decoration: none;
}
.post-card-body > p:not(.cat) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.post-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(210, 226, 234, .9);
  color: var(--muted);
  font-size: 13px;
}
.post-card footer strong {
  color: #00777b;
}
.article-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 28px;
  align-items: start;
  padding: clamp(42px, 7vw, 78px) 0 clamp(60px, 8vw, 100px);
}
.article-main,
.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(29, 72, 99, .1);
}
.article-cover {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  background: #edf5f9;
}
.article-head {
  padding: clamp(26px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #d8e7ee;
  border-radius: 7px;
  color: #416077;
  background: #f5fafc;
  font-size: 12px;
  font-weight: 800;
}
.article-head h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}
.article-head > p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-photo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 8px 18px rgba(29, 72, 99, .18);
}
.author strong,
.author span {
  display: block;
}
.author strong { color: var(--blue-dark); }
.author span { color: var(--muted); font-size: 13px; }
.share-button {
  color: var(--blue-dark);
  background: white;
  border-color: var(--blue-dark);
}
.share-button[data-state="success"] {
  background: #0f6b5f;
  color: white;
  border-color: #0f6b5f;
}
.share-button[data-state="error"] {
  background: #9f2f2f;
  color: white;
  border-color: #9f2f2f;
}
.article-main .article-body {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
  max-width: none;
  padding: clamp(28px, 5vw, 54px);
  font-size: 17px;
}
.article-main .article-body h2 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}
.article-main .article-body p {
  margin: 0 0 18px;
  color: #2f4a60;
  line-height: 1.86;
}
.article-main .article-body .bullet {
  margin-bottom: 10px;
}
.article-kicker {
  margin: 0 0 10px !important;
  color: #00777b !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-brief {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid #d4e8ee;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: #f3fafc;
}
.article-brief h2 {
  font-size: clamp(26px, 3vw, 36px) !important;
}
.article-brief p:last-child,
.article-section p:last-child,
.article-note p,
.article-closing p {
  margin-bottom: 0;
}
.article-scan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.article-scan-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid #d9e9ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
}
.article-scan-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.article-scan-grid p {
  margin: 0 !important;
  color: #27445a !important;
  font-size: 15px;
  line-height: 1.65 !important;
}
.article-section {
  padding-top: 4px;
}
.article-section + .article-section {
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(210, 226, 234, .9);
}
.article-check-panel {
  margin: 24px 0 2px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid #d8e9ef;
  border-radius: 8px;
  background: #fbfdfe;
}
.article-check-panel > p {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 800;
}
.article-checklist,
.article-question-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-checklist li,
.article-question-panel li {
  position: relative;
  padding-left: 28px;
  color: #2f4a60;
  line-height: 1.55;
}
.article-checklist li::before,
.article-question-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 155, 32, .16);
}
.article-question-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background: #102e41;
}
.article-question-panel h2,
.article-question-panel p,
.article-question-panel li {
  color: white !important;
}
.article-question-panel .article-kicker {
  color: var(--orange) !important;
}
.article-note {
  padding: 20px 22px;
  border: 1px solid #f2d7a5;
  border-radius: 8px;
  background: #fff8eb;
}
.article-note strong {
  display: block;
  margin-bottom: 8px;
  color: #8b4b03;
}
.article-faq {
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(210, 226, 234, .9);
}
.article-faq details {
  border: 1px solid #d8e9ef;
  border-radius: 8px;
  background: white;
}
.article-faq details + details {
  margin-top: 10px;
}
.article-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-dark);
  font-weight: 900;
}
.article-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 16px;
}
.article-closing {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background: #102e41;
}
.article-closing h2,
.article-closing p {
  color: white !important;
}
.article-closing .btn {
  margin-top: 22px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(28px, 5vw, 54px) clamp(30px, 5vw, 54px);
}
.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 119, 123, .18);
  border-radius: 999px;
  color: #00777b;
  background: rgba(0, 119, 123, .08);
  font-size: 12px;
  font-weight: 800;
}
.sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 98px;
}
.side-card {
  padding: 22px;
}
.side-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.25;
}
.side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.article-toc {
  display: grid;
  gap: 9px;
}
.article-toc .cat {
  margin-bottom: 4px;
}
.article-toc a {
  display: block;
  padding: 9px 0 9px 12px;
  border-left: 3px solid #d8e9ef;
  color: #36566d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}
.article-toc a:hover {
  border-left-color: var(--orange);
  color: var(--blue-dark);
}
.side-card .btn {
  margin-top: 18px;
  width: 100%;
}
.side-card.newsletter {
  background: #102e41;
  color: white;
}
.side-card.newsletter h3,
.side-card.newsletter p {
  color: white;
}
.side-card.newsletter .btn {
  background: var(--orange);
  color: #102e41;
}
.related-list {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.related-list a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.related-list a:last-child {
  border-bottom: 0;
}
.related-number {
  color: #00777b;
  font-size: 12px;
  font-weight: 900;
}
.related-list span span {
  display: block;
  margin-bottom: 5px;
  color: #00777b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.related-list strong {
  color: var(--blue-dark);
  font-size: 13px;
  line-height: 1.25;
}
.split,
.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 44%);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.split img,
.subhero img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.subhero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 105px) 0 clamp(38px, 6vw, 74px);
}
.subhero h1,
.page-intro h1 { color: var(--blue-dark); }
.subhero > div > p:not(.eyebrow),
.page-intro > p:not(.eyebrow) { font-size: 20px; color: var(--muted); }
.coming-soon-hero {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: clamp(70px, 10vw, 130px) 20px;
  background:
    linear-gradient(135deg, rgba(244, 248, 251, .95), rgba(255, 255, 255, .98)),
    radial-gradient(circle at 18% 20%, rgba(244, 155, 32, .14), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(15, 111, 168, .14), transparent 34%);
}
.coming-soon-panel {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  text-align: center;
}
.coming-soon-panel h1 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: clamp(46px, 8vw, 86px);
}
.coming-soon-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
}
.coming-soon-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.consortium-hero {
  min-height: clamp(560px, 70vh, 760px);
  display: grid;
  align-items: end;
  padding: clamp(76px, 9vw, 128px) clamp(20px, 7vw, 104px);
  color: white;
  background:
    linear-gradient(120deg, rgba(11, 37, 55, .94), rgba(11, 37, 55, .75) 48%, rgba(11, 37, 55, .38)),
    linear-gradient(135deg, #183f58, #0d2334 58%, #2d596f);
}
.consortium-hero > div {
  width: min(820px, 100%);
}
.consortium-hero h1 {
  max-width: 760px;
  color: white;
}
.consortium-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 23px);
}
.consortium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.consortium-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: white;
  font-weight: 800;
}
.consortium-context {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.consortium-context > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}
.method-steps,
.type-list,
.partner-briefs {
  display: grid;
  gap: 0;
  border-top: 1px solid #cfdfe8;
}
.method-steps article,
.type-list article,
.partner-briefs article {
  display: grid;
  grid-template-columns: 70px minmax(160px, .36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #dbe7ee;
}
.method-steps span {
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}
.method-steps h3,
.type-list h3,
.partner-briefs strong {
  color: var(--blue-dark);
  font-size: 20px;
}
.method-steps p,
.type-list p,
.partner-briefs p {
  margin: 0;
  color: var(--muted);
}
.consortium-types {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
}
.type-list article {
  grid-template-columns: minmax(160px, .4fr) minmax(0, 1fr);
}
.consortium-specialist {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(34px, 6vw, 80px);
  padding-bottom: clamp(34px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.consortium-specialist img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.consortium-specialist p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.partner-briefs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}
.partner-briefs article {
  display: block;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.partner-briefs strong {
  display: block;
  margin-bottom: 10px;
}
.consortium-cta {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 8px;
  background: #102e41;
  color: white;
  text-align: center;
}
.consortium-cta h2 {
  color: white;
}
.page-intro {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 105px) 0 clamp(30px, 5vw, 60px);
  text-align: center;
}
.page-intro.narrow { max-width: 760px; }
.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
  align-items: center;
}
.logo-strip img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}
.article-body {
  max-width: 850px;
  font-size: 18px;
}
.article-body h2 { margin-top: 38px; color: var(--blue-dark); font-size: clamp(24px, 3vw, 34px); }
.article-body p { margin: 0 0 18px; }
.article-body .bullet::before { content: "• "; color: var(--orange); font-weight: 700; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.contact-layout-single {
  display: block;
  max-width: 780px;
}
.contact-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 26px;
}
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--blue-dark); font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid #c8d7e1;
  border-radius: 4px;
  padding: 12px;
  font: inherit;
  background: white;
  color: var(--ink);
}
select {
  min-height: 48px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-dark) 50%),
    linear-gradient(135deg, var(--blue-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) calc(50% + 1px),
    calc(100% - 13px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.contact-form .consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.contact-form .consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}
.form-status {
  display: none;
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.form-status.show {
  display: block;
}
.form-status.success {
  border: 1px solid rgba(20, 130, 86, .24);
  background: #eefaf4;
  color: #166342;
}
.form-status.error {
  border: 1px solid rgba(190, 45, 45, .24);
  background: #fff2f1;
  color: #9b2727;
}
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 22, 34, .62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  backdrop-filter: blur(10px);
}
.exit-popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.exit-popup-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(92vh, 820px);
  display: grid;
  grid-template-columns: .86fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: white;
  box-shadow: 0 30px 90px rgba(4, 17, 28, .34);
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}
.exit-popup.open .exit-popup-dialog {
  transform: translateY(0) scale(1);
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(220, 230, 238, .92);
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.exit-popup-intro {
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(23, 71, 98, .96), rgba(10, 36, 55, .98)),
    linear-gradient(90deg, rgba(244, 155, 32, .18), transparent);
  color: white;
}
.exit-popup-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
}
.exit-popup-intro p {
  margin: 0;
  color: rgba(255,255,255,.86);
}
.exit-popup-intro ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.exit-popup-intro li {
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
}
.exit-popup-intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.exit-popup .contact-form {
  max-height: min(92vh, 820px);
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: white;
  padding: clamp(28px, 4vw, 42px);
}
.exit-popup .contact-form label {
  margin-bottom: 12px;
}
.exit-popup .contact-form textarea {
  min-height: 96px;
}
body.modal-open {
  overflow: hidden;
}
.download-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}
.download-card > div,
.post-card > div { padding: 22px; }
.download-card h2,
.post-card h2 { font-size: 22px; }
.post-card h2 a { text-decoration: none; }
.post-meta { color: var(--muted); font-size: 14px; }
.filter-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.filter-row button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.filter-row button.active { background: var(--blue); color: white; border-color: var(--blue); }
.post-article {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) 0 20px;
}
.post-article header { text-align: center; }
.post-cover {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  margin: 34px 0 42px;
  box-shadow: var(--shadow);
}
.related-posts { border-top: 1px solid var(--line); }
.mini-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mini-posts a {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.mini-posts img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  padding: clamp(38px, 6vw, 70px) clamp(20px, 5vw, 70px);
  background: #102e41;
  color: white;
}
.site-footer a { color: white; }
.site-footer h2 { font-size: 20px; color: var(--orange); }
.footer-logo { width: 240px; margin-bottom: 18px; background: white; padding: 10px; border-radius: 4px; }
.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 850px;
  margin: 0 auto;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 30;
}
.cookie-bar.show { display: flex; }
.cookie-bar p { margin: 0; }
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .45s ease var(--reveal-delay, 0ms),
    transform .45s ease var(--reveal-delay, 0ms),
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
  .will-reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .site-header {
    min-height: 74px;
    z-index: 70;
    box-shadow: 0 10px 26px rgba(12, 38, 56, .08);
  }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 8px;
    padding: 9px 12px;
    box-shadow: 0 8px 20px rgba(29, 72, 99, .08);
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 69;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 74px);
    padding: 12px 20px 18px;
    overflow-y: auto;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 45px rgba(12, 38, 56, .14);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 13px 0;
    font-size: 15px;
  }
  .nav-dropdown {
    margin: 2px 0 4px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-dropdown-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: left;
    color: var(--blue-dark);
    font-weight: 700;
  }
  .nav-dropdown.open .nav-dropdown-trigger {
    border-color: rgba(244, 155, 32, .45);
    background: #fffaf0;
  }
  .nav-dropdown-trigger::after {
    top: 18px;
    right: 12px;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
    transform: none;
  }
  .dropdown-menu a {
    margin: 2px 0 2px 18px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f7fbfd;
    color: #29465b;
  }
  .home-hero,
  .info-layout,
  .ewerton-profile,
  .service-showcase-slide,
  .platinum-auto-inner,
  .consortium-focus-shell,
  .consortium-context,
  .consortium-types,
  .consortium-specialist,
  .blog-library-head,
  .article-shell,
  .business-section {
    grid-template-columns: 1fr;
  }
  .ecosystem-heading {
    position: static;
  }
  .service-carousel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .service-carousel-side {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
  .service-carousel-side-prev {
    left: -14px;
  }
  .service-carousel-side-next {
    right: -14px;
  }
  .service-showcase-slide {
    min-height: 0;
    align-items: stretch;
  }
  .service-showcase-panel {
    width: min(680px, 100%);
  }
  .consortium-focus-map {
    padding-left: 22px;
  }
  .platinum-auto-section {
    background:
      radial-gradient(circle at 12% 8%, rgba(244, 155, 32, .2), transparent 32%),
      linear-gradient(180deg, #0b2537 0%, #102e41 62%, #edf4f7 62%, #f7fbfd 100%);
  }
  .platinum-auto-copy {
    max-width: 760px;
  }
  .platinum-auto-partners {
    width: min(620px, 100%);
  }
  .ecosystem-lanes a,
  .service-showcase-panel li,
  .method-steps article,
  .type-list article {
    grid-template-columns: 54px minmax(150px, .42fr) minmax(0, 1fr);
  }
  .partner-briefs {
    grid-template-columns: 1fr;
  }
  .article-scan-grid,
  .article-question-panel {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .ewerton-photo-wrap {
    width: min(420px, 100%);
  }
  .hero-panel {
    max-width: 560px;
  }
  .service-grid,
  .process-grid,
  .latest-grid,
  .ewerton-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-tile {
    grid-template-columns: 72px 1fr;
  }
  .service-tile p,
  .service-tile a {
    grid-column: 2;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }
  .partners-marquee-head {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 620px; }
  .hero-content { margin: 0 auto; }
  .quick-dock {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .quick-dock a {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-grid,
  .blog-grid,
  .download-grid,
  .mini-posts,
  .site-footer,
  .contact-layout,
  .split,
  .subhero {
    grid-template-columns: 1fr;
  }
  .subhero img { max-height: 420px; }
  .floating-socials {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .floating-social-button {
    width: 44px;
    height: 44px;
  }
  .floating-social-button svg {
    width: 22px;
    height: 22px;
  }
  .exit-popup {
    padding: 14px;
  }
  .exit-popup-dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .exit-popup-intro {
    padding: 26px 24px 22px;
  }
  .exit-popup-intro h2 {
    max-width: 520px;
  }
  .exit-popup-intro ul {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .exit-popup .contact-form {
    max-height: none;
    padding: 24px;
  }
}
@media (max-width: 560px) {
  body {
    padding-bottom: 70px;
  }
  .site-header {
    min-height: 72px;
    padding: 10px 16px;
    gap: 12px;
  }
  .brand img {
    width: min(214px, calc(100vw - 92px));
  }
  .nav-toggle {
    display: inline-flex !important;
    position: static;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    align-items: center;
    color: var(--blue-dark);
    font-size: 0;
  }
  .nav-toggle::before {
    content: "☰";
    font-size: 24px;
    line-height: 1;
  }
  h1 { font-size: 34px; }
  .section,
  .blog-library,
  .article-shell,
  .subhero {
    width: min(100% - 28px, 1160px);
  }
  .home-hero {
    width: 100%;
    padding-top: 0;
  }
  .home-hero-visual {
    width: 100%;
    min-height: clamp(660px, 92vh, 840px);
    padding: 54px 16px 52px;
    gap: 26px;
    align-items: center;
    justify-items: start;
  }
  .home-hero-visual::before {
    background:
      linear-gradient(90deg, rgba(12, 38, 56, .94) 0%, rgba(12, 38, 56, .78) 52%, rgba(12, 38, 56, .22) 82%, rgba(12, 38, 56, .06) 100%),
      linear-gradient(180deg, rgba(12, 38, 56, .12), rgba(12, 38, 56, .24));
  }
  .hero-bg-slide {
    object-position: 62% center !important;
  }
  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .home-hero-visual h1 {
    color: white;
  }
  .home-hero-visual .home-hero-copy {
    width: 100%;
    justify-items: start;
    text-align: left;
  }
  .home-hero-visual .actions {
    justify-content: flex-start;
  }
  .home-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.65;
  }
  .home-hero-visual .home-hero-copy > p:not(.eyebrow) {
    color: rgba(255,255,255,.88);
  }
  .hero-bg-action-layer {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
  }
  .hero-bg-action {
    min-height: 68px;
    padding: 12px 48px 12px 14px;
  }
  .hero-bg-action strong {
    font-size: 16px;
  }
  .hero-bg-action::after {
    right: 14px;
    width: 28px;
    height: 28px;
  }
  .hero-panel-card {
    position: static;
    margin-top: 14px;
  }
  .hero-summary-panel .hero-panel-card {
    margin: -46px 10px 0;
    padding: 18px;
  }
  .author-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .share-button {
    width: 100%;
  }
  .service-grid,
  .info-grid,
  .process-grid,
  .latest-grid,
  .ewerton-card-grid {
    grid-template-columns: 1fr;
  }
  .post-card {
    min-height: 0;
  }
  .post-card-body {
    padding: 18px;
  }
  .post-card h2,
  .post-card h3 {
    font-size: 18px;
  }
  .post-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .service-tile {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .service-tile::before {
    width: 44px;
    height: 44px;
  }
  .service-tile::after {
    left: 70px;
  }
  .service-tile h3,
  .service-tile p,
  .service-tile a {
    grid-column: 2;
  }
  .ecosystem-lanes a,
  .service-showcase-panel li,
  .method-steps article,
  .type-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service-showcase-panel li::before {
    width: 42px;
    height: 42px;
  }
  .service-carousel-section {
    width: min(100% - 28px, 1220px);
    padding: 38px 0 44px;
  }
  .service-carousel-head {
    margin-bottom: 18px;
  }
  .service-carousel-head p:not(.eyebrow) {
    font-size: 16px;
  }
  .service-carousel-side {
    top: 50%;
    bottom: auto;
    width: 38px;
    height: 38px;
    font-size: 25px;
    transform: translateY(-50%);
  }
  .service-carousel-side:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .service-carousel-side-prev {
    left: -10px;
  }
  .service-carousel-side-next {
    left: auto;
    right: -10px;
  }
  .service-showcase-slide {
    padding: 22px 64px;
    gap: 18px;
  }
  .service-showcase-name {
    gap: 7px;
    margin-bottom: 16px;
    padding: 6px 9px 6px 6px;
  }
  .service-showcase-name strong {
    font-size: 12px;
  }
  .service-showcase-copy h3 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.05;
  }
  .service-showcase-copy p:not(.eyebrow) {
    font-size: 16px;
  }
  .service-showcase-count {
    width: 34px;
    height: 34px;
  }
  .service-showcase-actions {
    flex-direction: column;
  }
  .service-showcase-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .service-showcase-panel {
    padding: 18px 14px;
  }
  .service-showcase-panel strong {
    font-size: 16px;
  }
  .service-showcase-panel span {
    font-size: 14px;
  }
  .ecosystem-lanes a {
    min-height: 0;
  }
  .platinum-auto-section {
    padding: 46px 0;
  }
  .consortium-focus-section {
    padding: 48px 0;
  }
  .consortium-focus-shell {
    width: min(100% - 28px, 1160px);
  }
  .consortium-focus-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .consortium-focus-actions {
    flex-direction: column;
  }
  .consortium-focus-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .consortium-focus-map {
    padding-left: 18px;
  }
  .consortium-focus-map article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }
  .consortium-focus-map span {
    font-size: 34px;
  }
  .consortium-focus-map h3 {
    font-size: 24px;
  }
  .platinum-auto-inner {
    width: min(100% - 28px, 1160px);
  }
  .platinum-auto-actions {
    flex-direction: column;
  }
  .platinum-auto-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .platinum-auto-road::before {
    left: 21px;
  }
  .platinum-auto-road article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }
  .platinum-auto-road span {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .platinum-partner-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }
  .platinum-partner-mark {
    width: 58px;
    height: 58px;
  }
  .platinum-partner-mark img {
    width: 48px;
  }
  .platinum-partner-mark strong {
    font-size: 10px;
  }
  .consortium-hero {
    min-height: 560px;
    padding: 64px 18px 56px;
  }
  .consortium-tags {
    gap: 8px;
  }
  .consortium-tags span {
    font-size: 13px;
  }
  .consortium-cta {
    width: min(100% - 28px, 1160px);
    padding: 32px 18px;
  }
  .process-grid {
    border-top: 0;
    gap: 26px;
  }
  .process-grid article {
    padding: 0 0 0 22px;
    border-left: 2px solid #d3e2ea;
  }
  .process-grid article::before {
    top: 0;
    left: -9px;
  }
  .partner-pill {
    width: 246px;
    min-height: 86px;
    grid-template-columns: 62px 1fr;
  }
  .partner-mark {
    width: 62px;
    height: 62px;
  }
  .partner-mark img[src*="rodobens-consorcio"],
  .partner-mark img[src*="porto-consorcio"] {
    width: 58px;
    height: 58px;
  }
  .partner-text {
    max-width: 134px;
  }
  .partner-text strong {
    font-size: 13px;
  }
  .partner-text small {
    font-size: 11px;
  }
  .ewerton-section {
    padding: 48px 14px;
  }
  .ewerton-profile {
    gap: 24px;
  }
  .ewerton-photo-wrap {
    width: min(100%, 340px);
    margin: 0 auto;
  }
  .ewerton-copy h2 {
    font-size: 30px;
  }
  .ewerton-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-library-head h1 {
    font-size: 36px;
    line-height: 1.05;
  }
  .article-shell {
    gap: 18px;
    padding: 30px 0 58px;
  }
  .article-main,
  .side-card {
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(29, 72, 99, .08);
  }
  .article-cover {
    min-height: 220px;
    aspect-ratio: 1.18 / 1;
  }
  .article-head {
    padding: 22px 18px;
  }
  .article-head h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.06;
  }
  .article-head > p {
    font-size: 16px;
    line-height: 1.65;
  }
  .article-main .article-body {
    gap: 22px;
    padding: 22px 18px 28px;
    font-size: 16px;
  }
  .article-main .article-body p {
    line-height: 1.72;
  }
  .article-brief,
  .article-section,
  .article-check-panel,
  .article-question-panel,
  .article-note,
  .article-faq,
  .article-closing {
    border-radius: 8px;
  }
  .article-scan-grid {
    gap: 10px;
  }
  .article-tags {
    padding: 0 18px 26px;
  }
  .side-card {
    padding: 18px;
  }
  .coming-soon-hero {
    min-height: calc(100vh - 72px);
    padding: 44px 14px 56px;
  }
  .coming-soon-panel {
    padding: 32px 20px;
  }
  .coming-soon-panel h1 {
    font-size: 46px;
  }
  .coming-soon-actions {
    flex-direction: column;
  }
  .links-stage {
    min-height: 100svh;
    padding: 28px 14px 92px;
  }
  .links-card {
    width: min(100%, 352px);
    padding: 28px 18px;
  }
  .bio-link {
    min-height: 50px;
  }
  .links-socials {
    gap: 8px;
  }
  .social-button {
    width: 46px;
    height: 46px;
  }
  .business-section {
    padding: 28px 20px;
    border-radius: 0;
    width: 100%;
  }
  .site-footer {
    gap: 24px;
    padding: 38px 20px 96px;
  }
  .footer-logo {
    width: min(230px, 100%);
  }
  .floating-socials {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(220, 230, 238, .9);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 42px rgba(12, 38, 56, .18);
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
  }
  .floating-social-button {
    width: 42px;
    height: 42px;
    box-shadow: none;
  }
  .floating-social-button svg {
    width: 21px;
    height: 21px;
  }
  .floating-tooltip {
    display: none;
  }
  .hero h1 { max-width: 10ch; }
  .hero p:not(.eyebrow) { font-size: 18px; max-width: 18rem; }
  .actions { flex-direction: column; align-items: stretch; }
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    right: auto;
    width: min(calc(100vw - 40px), 350px);
  }
  .hero-micro { display: none; }
}
