/* Combined stylesheet extracted from page sections */

:root {
  color-scheme: light only;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

/* Widen all section containers to 1400px */
.evy-about-cards,
.evy-about-tabs,
.evy-about-who,
.evy-about-why,
.evy-bl-grid,
.evy-ct-wrap,
.evy-dev-panel,
.evy-faq-grid,
.evy-hero-inner,
.evy-news-carousel,
.evy-panel,
.evy-pg-wrap,
.evy-stats-grid,
.evy-substrip-in,
.evy-svc-cols,
.evy-svp-faq,
.evy-svp-prose,
.evy-svp-wrap,
.evy-track-in {
  max-width: 1300px !important;
}

.evy-header {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #111c26;
  --evy-line: #e4ebf2;
  --evy-soft: #f4f8fb;
  font-family: "Jost", sans-serif;
  position: sticky;
  top: 0;
  z-index: 9999;
  /* full-bleed: span the viewport even inside a boxed container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  border-bottom: 1px solid var(--evy-line);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.evy-header.evy-scrolled {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px -18px rgba(8, 53, 95, 0.3);
}
.evy-header * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-header a {
  text-decoration: none;
}
.evy-header ul {
  list-style: none;
}

.evy-h-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  height: 84px;
}

/* ---------- logo ---------- */
.evy-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.evy-logo img {
  height: clamp(33px, 2.7vw, 44px);
  width: auto;
  display: block;
}
.evy-logo-text {
  line-height: 1.05;
}
.evy-logo-text b {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: var(--evy-navy);
  letter-spacing: 0.01em;
}
.evy-logo-text span {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  letter-spacing: 0.04em;
}

/* ---------- desktop nav ---------- */
.evy-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 12px 0 28px;
}
.evy-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 32px);
  position: relative;
  top: 1px;
}
.evy-nav-item {
  position: relative;
}
.evy-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(14px, 1.1vw, 16.5px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1;
  padding: 10px 7px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  white-space: nowrap;
}
.evy-nav-link:hover,
.evy-nav-item:focus-within > .evy-nav-link {
  color: var(--evy-navy);
  background: #e7eff7;
}
.evy-nav-link.evy-active {
  color: var(--evy-navy);
  font-weight: 600;
  position: relative;
}
.evy-nav-link.evy-active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 2.5px;
  background: var(--evy-navy);
  border-radius: 2px;
}
.evy-m-link.evy-active {
  color: var(--evy-navy);
}
.evy-caret {
  width: 9px;
  height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.evy-nav-item:hover .evy-caret,
.evy-nav-item:focus-within .evy-caret {
  transform: rotate(225deg) translateY(-1px);
}

/* dropdown panels */
.evy-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--evy-line);
  border-radius: 14px;
  box-shadow: 0 24px 56px -24px rgba(8, 53, 95, 0.35);
  padding: 12px;
  min-width: 330px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}
.evy-drop::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.evy-drop::after {
  content: "";
  position: absolute;
  top: -6.5px;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid var(--evy-line);
  border-top: 1px solid var(--evy-line);
  transform: rotate(45deg);
}
.evy-nav-link:focus-visible,
.evy-cta:focus-visible,
.evy-m-toggle:focus-visible,
.evy-m-link:focus-visible,
.evy-burger:focus-visible {
  outline: 2px solid var(--evy-navy);
  outline-offset: 2px;
  border-radius: 8px;
}
.evy-nav-item:hover > .evy-drop,
.evy-nav-item:focus-within > .evy-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.evy-drop a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--evy-ink);
  padding: 13px 16px;
  border-radius: 9px;
  line-height: 1.45;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
}
.evy-drop a:hover {
  background: #e7eff7;
  color: var(--evy-navy);
  padding-left: 20px;
}
.evy-drop.evy-drop-wide {
  min-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
  opacity: 0;
}
.evy-nav-item:hover > .evy-drop-wide,
.evy-nav-item:focus-within > .evy-drop-wide {
  display: grid;
}

/* ---------- right side ---------- */
.evy-h-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.evy-cta {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.evy-cta:hover {
  background: #0a4478;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -12px rgba(8, 53, 95, 0.6);
}

/* ---------- hamburger ---------- */
.evy-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding-left: 11px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.evy-burger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--evy-navy);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}
.evy-burger span:nth-child(2) {
  width: 15px;
}
@media (hover: hover) {
  .evy-burger:hover {
    background: #e7eff7;
  }
  .evy-burger:hover span:nth-child(2) {
    width: 22px;
  }
}
.evy-burger.evy-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.evy-burger.evy-open span:nth-child(2) {
  opacity: 0;
}
.evy-burger.evy-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- mobile menu ---------- */
.evy-mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--evy-line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.evy-mobile.evy-open {
  max-height: calc(100vh - 78px);
  overflow-y: auto;
}
.evy-mobile-inner {
  padding: 12px 20px 28px;
}
.evy-m-link,
.evy-m-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--evy-ink);
  padding: 15px 6px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #eef3f8;
}
.evy-m-toggle .evy-caret {
  transition: transform 0.3s ease;
}
.evy-m-toggle.evy-open .evy-caret {
  transform: rotate(225deg);
}
.evy-m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--evy-soft);
  border-radius: 10px;
}
.evy-m-sub a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--evy-ink);
  padding: 13px 16px;
  line-height: 1.4;
}
.evy-m-sub a + a {
  border-top: 1px solid #e2eaf1;
}
.evy-m-sub a:active {
  color: var(--evy-navy);
}
.evy-m-sub.evy-open {
  margin: 6px 0 10px;
}
.evy-m-bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.evy-m-bottom .evy-cta {
  text-align: center;
  padding: 14px 26px;
}

/* roomier metrics on very large screens */
@media (min-width: 1600px) {
  .evy-h-inner {
    max-width: 1560px;
    gap: 20px;
    height: 88px;
  }
  .evy-cta {
    font-size: 15px;
    padding: 11px 22px;
  }
}

@media (max-width: 1180px) {
  .evy-nav {
    display: none;
  }
  .evy-h-right {
    margin-left: auto;
  }
  .evy-h-right .evy-cta {
    display: none;
  }
  .evy-burger {
    display: flex;
  }
  .evy-mobile {
    display: block;
  }
  .evy-h-inner {
    height: 68px;
    padding: 0 18px;
  }
  .evy-logo img {
    height: 38px;
  }
  .evy-logo-text b {
    font-size: 19px;
  }
}
@media (min-width: 1181px) {
  .evy-mobile {
    display: none !important;
  }
}

.evy-hero {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #111c26;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  position: relative;
  overflow: hidden;
  color: var(--evy-ink);
}
.evy-hero * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-hero::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.evy-hero::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.09), transparent 68%);
}

.evy-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.12fr;
  gap: 44px;
  align-items: center;
  padding: 84px 26px 96px;
}

/* ---------- left: message ---------- */
.evy-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.evy-hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--evy-navy);
}
.evy-hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.12;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s;
}
.evy-hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}
.evy-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.3s,
    transform 0.7s ease 0.3s;
}
.evy-btn-primary {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.evy-btn-primary:hover {
  background: #0a4478;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(8, 53, 95, 0.6);
}
.evy-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--evy-navy);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.8px solid var(--evy-navy);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.evy-btn-ghost:hover {
  background: var(--evy-navy);
  color: #ffffff;
  transform: translateY(-2px);
}
.evy-hero-trust {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.4s,
    transform 0.7s ease 0.4s;
}
.evy-hero-trust small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
  margin-bottom: 10px;
}
.evy-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.evy-hero-chips span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid #c7d5e2;
  border-radius: 999px;
  padding: 6px 14px;
  background: #f4f8fb;
}

/* ---------- right: animated evidence pipeline ---------- */
.evy-hero-card {
  background: #fbfcfe;
  border: 1px solid #e4ebf2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 56px -30px rgba(8, 53, 95, 0.45);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease 0.25s,
    transform 0.8s ease 0.25s;
}
.evy-hero.evy-in .evy-hero-eyebrow,
.evy-hero.evy-in h1,
.evy-hero.evy-in .evy-hero-sub,
.evy-hero.evy-in .evy-hero-actions,
.evy-hero.evy-in .evy-hero-trust,
.evy-hero.evy-in .evy-hero-card {
  opacity: 1;
  transform: translateY(0);
}
.evy-hero-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid #e9eff5;
  background: #f4f8fb;
}
.evy-hero-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-hero-bar i:nth-child(1) {
  background: #c7d5e2;
}
.evy-hero-bar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-hero-bar i:nth-child(3) {
  background: #08355f;
}
.evy-hero-bar span {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
}
.evy-hero-card svg {
  width: 100%;
  height: auto;
  display: block;
  padding: 6px 2px 0;
}
.evy-p-line {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.evy-p-node {
  opacity: 0;
  transform: translateY(8px);
}
.evy-p-label {
  font-family: "Jost", sans-serif;
  opacity: 0;
}
.evy-p-shadow {
  filter: drop-shadow(0 5px 9px rgba(8, 53, 95, 0.2));
}
.evy-pulse {
  fill: none;
  stroke: #157a5e;
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: evyPulse 2.6s ease-out 3.6s infinite;
}
@keyframes evyPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.38);
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}
.evy-flow-dot {
  opacity: 0;
  animation: evyDotIn 0.5s ease 3.6s forwards;
}
@keyframes evyDotIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .evy-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 18px 64px;
  }
  .evy-hero-card .evy-p-label {
    font-size: 18px;
  }
  .evy-hero h1 {
    font-size: clamp(30px, 7.5vw, 40px);
  }
  .evy-hero-sub {
    max-width: none;
  }
}
@media (max-width: 520px) {
  .evy-btn-primary,
  .evy-btn-ghost {
    width: 100%;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .evy-hero .evy-hero-eyebrow,
  .evy-hero h1,
  .evy-hero .evy-hero-sub,
  .evy-hero .evy-hero-actions,
  .evy-hero .evy-hero-trust,
  .evy-hero .evy-hero-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .evy-hero .evy-p-line {
    stroke-dashoffset: 0;
  }
  .evy-hero .evy-p-node {
    opacity: 1;
    transform: none;
  }
  .evy-hero .evy-p-label {
    opacity: 1;
  }
  .evy-hero .evy-pulse {
    animation: none;
  }
  .evy-hero .evy-flow-dot {
    display: none;
  }
}

.evy-svc {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #111c26;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f8fc 40%,
    #e9f2fa 74%,
    #ffffff 100%
  );
  color: var(--evy-ink);
  padding: 0 24px 92px;
  overflow: hidden;
  position: relative;
}
.evy-svc * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* soft radial corner glows, kept away from the hero seam */
.evy-svc::before {
  content: "";
  position: absolute;
  top: 150px;
  right: -200px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(8, 53, 95, 0.08) 0%,
    rgba(8, 53, 95, 0) 68%
  );
}
.evy-svc::after {
  content: "";
  position: absolute;
  bottom: 300px;
  left: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(21, 122, 94, 0.08) 0%,
    rgba(21, 122, 94, 0) 68%
  );
}

/* connector thread descending from the hero */
.evy-svc-drop {
  position: relative;
  width: 2px;
  height: 78px;
  margin: 0 auto 26px;
  background: #c7d5e2;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease;
  z-index: 1;
}
.evy-svc.evy-in .evy-svc-drop {
  transform: scaleY(1);
}
.evy-svc-drop i {
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--evy-navy);
  opacity: 0;
}
.evy-svc.evy-in .evy-svc-drop i {
  animation: evyDropDot 1.5s ease 0.55s forwards;
}
@keyframes evyDropDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(70px);
  }
}

.evy-svc-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.evy-svc-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.35s,
    transform 0.7s ease 0.35s;
}
.evy-svc-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.45s,
    transform 0.7s ease 0.45s;
}
.evy-svc-head p {
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.55s,
    transform 0.7s ease 0.55s;
}
.evy-svc.evy-in .evy-svc-eyebrow,
.evy-svc.evy-in .evy-svc-head h2,
.evy-svc.evy-in .evy-svc-head p {
  opacity: 1;
  transform: translateY(0);
}

/* two normal flex columns on desktop */
.evy-svc-cols {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 44px;
  align-items: center;
}
.evy-svc-list {
  position: relative;
  flex: 0 0 390px;
  padding-left: 34px;
}
.evy-svc-stage {
  flex: 1 1 auto;
  min-width: 0;
}

/* the spine track (vertical on desktop) */
.evy-svc-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 31px;
  bottom: 31px;
  width: 2px;
  background: #c7d5e2;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s ease 0.5s;
}
.evy-svc.evy-in .evy-svc-list::before {
  transform: scaleY(1);
}
/* navy progress fill down to the active practice (sized by JS) */
.evy-svc-fill {
  position: absolute;
  left: 11px;
  top: 31px;
  width: 2px;
  height: 0;
  background: var(--evy-navy);
  transition:
    height 0.5s ease,
    width 0.5s ease;
}

.evy-svc-item {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.evy-svc.evy-in .evy-svc-item {
  opacity: 1;
  transform: translateX(0);
}
.evy-svc.evy-in .evy-svc-item:nth-child(2) {
  transition-delay: 0.55s;
}
.evy-svc.evy-in .evy-svc-item:nth-child(3) {
  transition-delay: 0.7s;
}
.evy-svc.evy-in .evy-svc-item:nth-child(4) {
  transition-delay: 0.85s;
}
.evy-svc.evy-in .evy-svc-item:nth-child(5) {
  transition-delay: 1s;
}
.evy-svc.evy-in .evy-svc-item:nth-child(6) {
  transition-delay: 1.15s;
}

.evy-svc-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Jost", sans-serif;
  padding: 18px 12px 18px 0;
  border-radius: 10px;
}
.evy-svc-btn::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #c7d5e2;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
/* pulse ring on the active node, echoing the hero card */
.evy-svc-btn::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--evy-navy);
  opacity: 0;
  pointer-events: none;
}
.evy-svc-item.evy-on .evy-svc-btn::after {
  animation: evyPulse 2.4s ease-out infinite 0.5s;
}
@keyframes evyPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(2.1);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}
.evy-svc-num {
  font-size: 15px;
  font-weight: 600;
  color: #6e8aa6;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}
.evy-svc-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.3;
  transition:
    color 0.25s ease,
    font-weight 0.25s ease;
}
@media (hover: hover) {
  .evy-svc-btn:hover .evy-svc-title {
    color: var(--evy-navy);
  }
  .evy-svc-btn:hover::before {
    border-color: var(--evy-navy);
  }
}
.evy-svc-item.evy-on .evy-svc-btn::before {
  background: var(--evy-navy);
  border-color: var(--evy-navy);
  transform: scale(1.15);
}
.evy-svc-item.evy-on .evy-svc-num {
  color: var(--evy-navy);
}
.evy-svc-item.evy-on .evy-svc-title {
  color: var(--evy-navy);
  font-weight: 600;
}

/* ---------- panels: white app-style cards ---------- */
.evy-svc-panel {
  display: none;
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 22px 50px -32px rgba(8, 53, 95, 0.4);
}
.evy-svc-panel.evy-open {
  display: block;
  animation: evySvcIn 0.45s ease;
}
@keyframes evySvcIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* slim app-style header bar with three dots */
.evy-svc-panelbar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f4f8fb;
  border-bottom: 1px solid #e4ebf2;
  padding: 11px 18px;
}
.evy-svc-panelbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-svc-panelbar i:nth-child(1) {
  background: #cbd9e5;
}
.evy-svc-panelbar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-svc-panelbar i:nth-child(3) {
  background: var(--evy-navy-mid);
}
.evy-svc-panelbar span {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #46617a;
}

.evy-svc-panelbody {
  padding: 34px 38px 34px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.evy-svc-ptext {
  flex: 1 1 auto;
  min-width: 0;
}
.evy-svc-icon {
  flex: 0 0 252px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evy-svc-icon svg {
  width: 252px;
  height: auto;
}
.evy-svc-icon path,
.evy-svc-icon circle,
.evy-svc-icon rect,
.evy-svc-icon polyline {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.evy-svc-panel.evy-open .evy-svc-icon path,
.evy-svc-panel.evy-open .evy-svc-icon circle,
.evy-svc-panel.evy-open .evy-svc-icon rect,
.evy-svc-panel.evy-open .evy-svc-icon polyline {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.9s ease 0.15s;
}
.evy-svc-panel h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.22;
  margin-bottom: 12px;
}
.evy-svc-panel p {
  font-size: 17px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.7;
  margin-bottom: 20px;
}
.evy-svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.evy-svc-chips span {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid #c7d5e2;
  border-radius: 999px;
  padding: 7px 16px;
  background: #f4f8fb;
}
.evy-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--evy-navy);
  text-decoration: none;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.evy-svc-link::after {
  content: "\2192";
  font-size: 17px;
  transition: transform 0.2s ease;
}
.evy-svc-link:hover {
  color: #0a4478;
  gap: 12px;
}

/* hint below the card, mobile only */
/* animated swipe cue */
.evy-svc-swipe {
  display: inline-flex;
  gap: 2px;
  margin-right: 9px;
  vertical-align: -1px;
}
.evy-svc-swipe i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-right: 2px solid #08355f;
  border-bottom: 2px solid #08355f;
  transform: rotate(-45deg);
  opacity: 0.25;
  animation: evySvcChev 1.5s ease-in-out infinite;
}
.evy-svc-swipe i:nth-child(2) {
  animation-delay: 0.18s;
}
.evy-svc-swipe i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes evySvcChev {
  0%,
  100% {
    opacity: 0.25;
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translate(2.5px, 2.5px);
  }
}
@keyframes evySvcNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-12px);
  }
  60% {
    transform: translateX(7px);
  }
}
.evy-svc-stage.evy-svc-nudge {
  animation: evySvcNudge 1.4s ease 0.7s 2;
}
@media (prefers-reduced-motion: reduce) {
  .evy-svc-swipe i {
    animation: none;
    opacity: 0.8;
  }
  .evy-svc-stage.evy-svc-nudge {
    animation: none;
  }
}
.evy-svc-hint {
  display: none;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: #46617a;
  letter-spacing: 0.04em;
  margin-top: 14px;
}

/* ---------- mobile: horizontal stepper + card carousel ---------- */
@media (max-width: 880px) {
  .evy-svc {
    padding: 0 16px 64px;
  }
  .evy-svc-drop {
    height: 56px;
    margin-bottom: 20px;
  }
  .evy-svc-head {
    margin-bottom: 34px;
  }
  .evy-svc-cols {
    display: block;
  }

  /* the spine rotates into a horizontal stepper */
  .evy-svc-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 22px;
    padding: 0;
  }
  .evy-svc-list::before {
    left: 22px;
    right: 22px;
    top: 10px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .evy-svc.evy-in .evy-svc-list::before {
    transform: scaleX(1);
  }
  .evy-svc-fill {
    left: 22px;
    top: 10px;
    width: 0;
    height: 2px;
  }

  .evy-svc-item {
    transform: translateY(-10px);
  }
  .evy-svc.evy-in .evy-svc-item {
    transform: translateY(0);
  }

  .evy-svc-btn {
    width: 44px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
  }
  .evy-svc-btn::before {
    left: 50%;
    margin-left: -7px;
    top: 4px;
    margin-top: 0;
  }
  .evy-svc-btn::after {
    left: 50%;
    margin-left: -7px;
    top: 4px;
    margin-top: 0;
  }
  .evy-svc-title {
    display: none;
  }
  .evy-svc-num {
    font-size: 12.5px;
  }

  .evy-svc-stage {
    max-width: 560px;
    margin: 0 auto;
  }
  .evy-svc-panel {
    margin: 0;
  }
  .evy-svc-panelbody {
    padding: 22px 20px 22px;
    flex-direction: column-reverse;
    gap: 14px;
    align-items: stretch;
  }
  .evy-svc-icon {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
  .evy-svc-icon svg {
    width: 200px;
  }

  /* cards slide horizontally on mobile */
  .evy-svc-panel.evy-open {
    animation: evySlideL 0.4s ease;
  }
  .evy-svc-panel.evy-open.evy-back {
    animation: evySlideR 0.4s ease;
  }

  .evy-svc-hint {
    display: block;
  }
}
@keyframes evySlideL {
  from {
    opacity: 0;
    transform: translateX(26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes evySlideR {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .evy-svc .evy-svc-eyebrow,
  .evy-svc .evy-svc-head h2,
  .evy-svc .evy-svc-head p,
  .evy-svc .evy-svc-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .evy-svc .evy-svc-list::before {
    transform: none;
    transition: none;
  }
  .evy-svc .evy-svc-drop {
    transform: scaleY(1);
    transition: none;
  }
  .evy-svc .evy-svc-drop i {
    animation: none;
    opacity: 0;
  }
  .evy-svc .evy-svc-fill {
    transition: none;
  }
  .evy-svc .evy-svc-item.evy-on .evy-svc-btn::after {
    animation: none;
  }
  .evy-svc .evy-svc-panel.evy-open,
  .evy-svc .evy-svc-panel.evy-open.evy-back {
    animation: none;
  }
  .evy-svc .evy-svc-icon path,
  .evy-svc .evy-svc-icon circle,
  .evy-svc .evy-svc-icon rect,
  .evy-svc .evy-svc-icon polyline {
    stroke-dashoffset: 0;
  }
}

.evy-models {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-navy-faint: #c7d5e2;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  --evy-red: #b8543b;
  --evy-bg: #ffffff;
  --evy-card: #fbfcfe;
  font-family: "Jost", sans-serif;
  background: var(--evy-bg);
  color: var(--evy-ink);
  overflow: hidden;
}
.evy-models * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.evy-intro {
  max-width: 880px;
  margin: 0 auto;
  padding: 84px 24px 12px;
  text-align: center;
}
.evy-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 18px;
}
.evy-intro h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.12;
  margin-bottom: 16px;
}
.evy-intro p {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.evy-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 740px;
  margin: 26px auto 0;
}
.evy-chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid var(--evy-navy-faint);
  border-radius: 999px;
  padding: 8px 18px;
  background: #f4f8fb;
  letter-spacing: 0.02em;
}

.evy-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 60px;
  display: grid;
  grid-template-columns: minmax(250px, 340px) 1fr;
  gap: 48px;
  align-items: center;
}
.evy-panel.evy-rev {
  grid-template-columns: 1fr minmax(250px, 340px);
}
.evy-panel.evy-rev .evy-panel-copy {
  order: 2;
}

.evy-panel-copy .evy-step {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.evy-panel-copy .evy-step::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--evy-navy);
  display: inline-block;
}
.evy-panel-copy h3 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.evy-panel-copy p {
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--evy-ink);
}
.evy-panel-copy ul {
  list-style: none;
  margin-top: 16px;
}
.evy-panel-copy li {
  font-size: 16px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.evy-panel-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--evy-navy);
}

/* diagram card with slim app-style header bar */
.evy-stage {
  width: 100%;
  background: var(--evy-card);
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -32px rgba(8, 53, 95, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
@media (hover: hover) {
  .evy-stage:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px -32px rgba(8, 53, 95, 0.5);
  }
}
.evy-stage-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid #e9eff5;
  background: #f4f8fb;
}
.evy-stage-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-stage-bar i:nth-child(1) {
  background: #c7d5e2;
}
.evy-stage-bar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-stage-bar i:nth-child(3) {
  background: #08355f;
}
.evy-stage-bar span {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
}
.evy-stage-body {
  padding: 22px 18px 18px;
}
.evy-stage svg {
  width: 100%;
  height: auto;
  display: block;
}
.evy-shadow {
  filter: drop-shadow(0 5px 9px rgba(8, 53, 95, 0.2));
}

/* desktop / mobile diagram switch (JS also enforces this inline) */
.evy-models .evy-m {
  display: none !important;
}
.evy-models .evy-d {
  display: block !important;
}

.evy-result {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 24px 56px;
  text-align: center;
}
.evy-result::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--evy-navy);
  margin: 0 auto 34px;
  border-radius: 2px;
}
.evy-icer-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 12px;
}
.evy-icer {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 600;
  color: var(--evy-navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.evy-icer span {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--evy-ink);
}
.evy-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.evy-badge {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: var(--evy-navy);
  border-radius: 999px;
  padding: 8px 18px;
  letter-spacing: 0.02em;
}
.evy-badge.evy-badge-green {
  background: var(--evy-green);
}
.evy-result p {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--evy-ink);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.evy-cta {
  display: inline-block;
  margin-top: 28px;
  background: var(--evy-navy);
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-cta:hover {
  background: #0a4478;
  transform: translateY(-2px);
  color: #ffffff;
}
.evy-trust {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  letter-spacing: 0.02em;
}

/* SVG element base states */
.evy-models .evy-line,
.evy-models .evy-arrow {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
}
.evy-models .evy-axis {
  fill: none;
  stroke: var(--evy-navy-mid);
  stroke-width: 1.8;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
}
.evy-models .evy-thresh {
  stroke: var(--evy-green);
  stroke-width: 2.2;
}
.evy-models .evy-node {
  opacity: 0;
  transform: translateY(8px);
}
.evy-models .evy-label {
  font-family: "Jost", sans-serif;
  opacity: 0;
}
/* knockout halo matches the solid card, invisible but keeps
   lines from running through text */
.evy-models .evy-ko {
  paint-order: stroke;
  stroke: #fbfcfe;
  stroke-width: 8px;
  stroke-linejoin: round;
}
.evy-models .evy-dot {
  opacity: 0;
}

/* ---------- mobile ---------- */
@media (max-width: 820px) {
  .evy-intro {
    padding-top: 60px;
  }
  .evy-panel,
  .evy-panel.evy-rev {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 16px 44px;
  }
  .evy-panel-copy {
    text-align: center;
    order: 0;
  }
  .evy-panel.evy-rev .evy-panel-copy {
    order: 0;
  }
  .evy-stage {
    order: 1;
  }
  .evy-panel-copy .evy-step {
    justify-content: center;
  }
  .evy-panel-copy p {
    font-size: 15px;
  }
  .evy-panel-copy li {
    text-align: left;
    font-size: 14px;
  }
  .evy-stage-body {
    padding: 16px 10px 12px;
  }
  .evy-models .evy-d {
    display: none !important;
  }
  .evy-models .evy-m {
    display: block !important;
  }
  .evy-models .evy-line,
  .evy-models .evy-arrow {
    stroke-width: 2.6;
  }
  .evy-models .evy-ko {
    stroke-width: 7px;
  }
  .evy-chip {
    font-size: 13px;
    padding: 7px 14px;
  }
  .evy-cta {
    display: block;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evy-models .evy-line,
  .evy-models .evy-arrow,
  .evy-models .evy-axis {
    stroke-dashoffset: 0;
  }
  .evy-models .evy-node {
    opacity: 1;
    transform: none;
  }
  .evy-models .evy-label {
    opacity: 1;
  }
  .evy-models .evy-dot {
    opacity: 0.8;
  }
}

.evy-dev {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-navy-faint: #c7d5e2;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  --evy-card: #fbfcfe;
  font-family: "Jost", sans-serif;
  /* white at both edges so the section melts into its neighbours */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f8fc 14%,
    #e9f2fa 50%,
    #f3f8fc 86%,
    #ffffff 100%
  );
  color: var(--evy-ink);
  overflow: hidden;
}
.evy-dev * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.evy-dev-drop {
  width: 2px;
  height: 72px;
  margin: 0 auto;
  position: relative;
  background: #c7d5e2;
}
.evy-dev-drop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #08355f;
  animation: evyDevFall 2.8s ease-in-out infinite;
}
@keyframes evyDevFall {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  14% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(62px);
  }
}
.evy-dev-intro {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px 24px 12px;
  text-align: center;
}
.evy-dev-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 18px;
}
.evy-dev-intro h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.12;
  margin-bottom: 16px;
}
.evy-dev-intro p {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.evy-dev-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 26px auto 0;
}
.evy-dev-chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid var(--evy-navy-faint);
  border-radius: 999px;
  padding: 8px 18px;
  background: #f4f8fb;
  letter-spacing: 0.02em;
}

.evy-dev-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 60px;
  display: grid;
  grid-template-columns: minmax(250px, 340px) 1fr;
  gap: 48px;
  align-items: center;
}
.evy-dev-panel.evy-dev-rev {
  grid-template-columns: 1fr minmax(250px, 340px);
}
.evy-dev-panel.evy-dev-rev .evy-dev-copy {
  order: 2;
}

.evy-dev-copy .evy-dev-step {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.evy-dev-copy .evy-dev-step::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--evy-navy);
  display: inline-block;
}
.evy-dev-copy h3 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.evy-dev-copy p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--evy-ink);
}
.evy-dev-copy ul {
  list-style: none;
  margin-top: 16px;
}
.evy-dev-copy li {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.evy-dev-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--evy-navy);
}

/* diagram card with slim app-style header bar */
.evy-dev-stage {
  width: 100%;
  background: var(--evy-card);
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -32px rgba(8, 53, 95, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
@media (hover: hover) {
  .evy-dev-stage:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px -32px rgba(8, 53, 95, 0.5);
  }
}
.evy-dev-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid #e9eff5;
  background: #f4f8fb;
}
.evy-dev-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-dev-bar i:nth-child(1) {
  background: #c7d5e2;
}
.evy-dev-bar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-dev-bar i:nth-child(3) {
  background: #08355f;
}
.evy-dev-bar span {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
}
.evy-dev-body {
  padding: 22px 18px 18px;
}
.evy-dev-stage svg {
  width: 100%;
  height: auto;
  display: block;
}
.evy-dev-shadow {
  filter: drop-shadow(0 5px 9px rgba(8, 53, 95, 0.2));
}

/* desktop / mobile diagram switch (JS also enforces this inline) */
.evy-dev .evy-dev-m {
  display: none !important;
}
.evy-dev .evy-dev-d {
  display: block !important;
}

.evy-dev-result {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 24px 56px;
  text-align: center;
}
.evy-dev-result::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--evy-navy);
  margin: 0 auto 34px;
  border-radius: 2px;
}
.evy-dev-shield {
  width: 96px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}
.evy-dev-shield path {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.evy-dev-shield .evy-dev-tick {
  stroke: var(--evy-green);
  stroke-width: 4;
}
.evy-dev-result-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 12px;
}
.evy-dev-result h3 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.15;
}
.evy-dev-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.evy-dev-badge {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: var(--evy-navy);
  border-radius: 999px;
  padding: 8px 18px;
  letter-spacing: 0.02em;
}
.evy-dev-badge.evy-dev-badge-green {
  background: var(--evy-green);
}
.evy-dev-result p {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--evy-ink);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.evy-dev-cta {
  display: inline-block;
  margin-top: 28px;
  background: var(--evy-navy);
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-dev-cta:hover {
  background: #0a4478;
  transform: translateY(-2px);
  color: #ffffff;
}
.evy-dev-trust {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  letter-spacing: 0.02em;
}

/* intro entrance (applied only when JS adds .evy-dev-anim) */
.evy-dev.evy-dev-anim .evy-dev-eyebrow,
.evy-dev.evy-dev-anim .evy-dev-intro h2,
.evy-dev.evy-dev-anim .evy-dev-intro p,
.evy-dev.evy-dev-anim .evy-dev-chips {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.evy-dev.evy-dev-anim .evy-dev-intro h2 {
  transition-delay: 0.1s;
}
.evy-dev.evy-dev-anim .evy-dev-intro p {
  transition-delay: 0.2s;
}
.evy-dev.evy-dev-anim .evy-dev-chips {
  transition-delay: 0.3s;
}
.evy-dev.evy-dev-in .evy-dev-eyebrow,
.evy-dev.evy-dev-in .evy-dev-intro h2,
.evy-dev.evy-dev-in .evy-dev-intro p,
.evy-dev.evy-dev-in .evy-dev-chips {
  opacity: 1;
  transform: translateY(0);
}

/* SVG element base states */
.evy-dev .evy-dev-line,
.evy-dev .evy-dev-arrow {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
}
.evy-dev .evy-dev-node {
  opacity: 0;
  transform: translateY(8px);
}
.evy-dev .evy-dev-label {
  font-family: "Jost", sans-serif;
  opacity: 0;
}
/* knockout halo matches the card so lines never run through text */
.evy-dev .evy-dev-ko {
  paint-order: stroke;
  stroke: #fbfcfe;
  stroke-width: 8px;
  stroke-linejoin: round;
}
.evy-dev .evy-dev-orbit {
  opacity: 0;
}
/* pulse ring echoing the hero card, on the loop's green node */
.evy-dev .evy-dev-pulse {
  fill: none;
  stroke: #157a5e;
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: evyDevPulse 2.6s ease-out 3.8s infinite;
}
@keyframes evyDevPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
/* evidence dot flowing through the CER pipeline, like the hero */
.evy-dev .evy-dev-flow {
  opacity: 0;
  animation: evyDevDotIn 0.5s ease 3.4s forwards;
}
@keyframes evyDevDotIn {
  to {
    opacity: 1;
  }
}

/* ---------- mobile ---------- */
@media (max-width: 820px) {
  .evy-dev-intro {
    padding-top: 60px;
  }
  .evy-dev-panel,
  .evy-dev-panel.evy-dev-rev {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 16px 44px;
  }
  .evy-dev-copy {
    text-align: center;
    order: 0;
  }
  .evy-dev-panel.evy-dev-rev .evy-dev-copy {
    order: 0;
  }
  .evy-dev-stage {
    order: 1;
  }
  .evy-dev-copy .evy-dev-step {
    justify-content: center;
  }
  .evy-dev-copy p {
    font-size: 15px;
  }
  .evy-dev-copy li {
    text-align: left;
    font-size: 14px;
  }
  .evy-dev-body {
    padding: 16px 10px 12px;
  }
  .evy-dev .evy-dev-d {
    display: none !important;
  }
  .evy-dev .evy-dev-m {
    display: block !important;
  }
  .evy-dev .evy-dev-line,
  .evy-dev .evy-dev-arrow {
    stroke-width: 2.6;
  }
  .evy-dev .evy-dev-ko {
    stroke-width: 7px;
  }
  .evy-dev-chip {
    font-size: 13px;
    padding: 7px 14px;
  }
  .evy-dev-cta {
    display: block;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evy-dev .evy-dev-line,
  .evy-dev .evy-dev-arrow {
    stroke-dashoffset: 0;
  }
  .evy-dev .evy-dev-node {
    opacity: 1;
    transform: none;
  }
  .evy-dev .evy-dev-label {
    opacity: 1;
  }
  .evy-dev .evy-dev-orbit {
    display: none;
  }
  .evy-dev .evy-dev-pulse {
    animation: none;
  }
  .evy-dev .evy-dev-flow {
    display: none;
  }
  .evy-dev-drop::before {
    animation: none;
    opacity: 1;
  }
  .evy-dev-shield path {
    stroke-dashoffset: 0;
  }
}

.evy-why {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #111c26;
  font-family: "Jost", sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 220px),
    linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 200px),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 0 24px 96px;
  overflow: hidden;
  position: relative;
}
.evy-why::before,
.evy-why::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.evy-why::before {
  width: 460px;
  height: 460px;
  top: 200px;
  left: -160px;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.08), transparent 68%);
}
.evy-why::after {
  width: 520px;
  height: 520px;
  bottom: 260px;
  right: -180px;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.07), transparent 68%);
}
.evy-why-head,
.evy-why-grid {
  position: relative;
  z-index: 1;
}
.evy-why-drop {
  width: 2px;
  height: 72px;
  margin: 0 auto 44px;
  position: relative;
  background: #c7d5e2;
}
.evy-why-drop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #08355f;
  animation: evyWhyFall 2.8s ease-in-out infinite;
}
@keyframes evyWhyFall {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  14% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(62px);
  }
}
.evy-why * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.evy-why-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.evy-why-eyebrow,
.evy-why-head h2,
.evy-why-head p {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.evy-why-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 16px;
}
.evy-why-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
  margin-bottom: 14px;
  transition-delay: 0.1s;
}
.evy-why-head p {
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
  transition-delay: 0.2s;
}
.evy-why.evy-in .evy-why-eyebrow,
.evy-why.evy-in .evy-why-head h2,
.evy-why.evy-in .evy-why-head p {
  opacity: 1;
  transform: translateY(0);
}

.evy-why-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.evy-why-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 16px 40px -30px rgba(8, 53, 95, 0.35);
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  /* per property timing: entrance transitions have no delay, so
     hover responds instantly on every card */
  transition:
    opacity 0.65s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}
.evy-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #08355f, #2e6da3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.evy-why-card.evy-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.evy-why-card.evy-show:active {
  transform: translateY(-2px) scale(0.995);
}
@media (hover: hover) {
  .evy-why-card.evy-show:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px -30px rgba(8, 53, 95, 0.5);
  }
  .evy-why-card.evy-show:hover::before {
    transform: scaleX(1);
  }
  .evy-why-card.evy-show:hover .evy-why-icon {
    background: var(--evy-navy);
    border-color: var(--evy-navy);
  }
  .evy-why-card.evy-show:hover .evy-why-icon path,
  .evy-why-card.evy-show:hover .evy-why-icon circle,
  .evy-why-card.evy-show:hover .evy-why-icon rect,
  .evy-why-card.evy-show:hover .evy-why-icon polyline {
    stroke: #ffffff;
  }
}
.evy-why-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(160deg, #f2f8fc, #e7f0f8);
  border: 1px solid #dce7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transform: scale(0.6);
  /* pop has a small delay after the card lands; color change on
     hover is instant */
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
    background 0.3s ease 0s,
    border-color 0.3s ease 0s;
}
.evy-why-card.evy-show .evy-why-icon {
  transform: scale(1);
}
.evy-why-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}
.evy-why-icon path,
.evy-why-icon circle,
.evy-why-icon rect,
.evy-why-icon polyline {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  /* strokes draw with a delay after the pop; hover recolor is instant */
  transition:
    stroke-dashoffset 1s ease 0.3s,
    stroke 0.25s ease 0s;
}
.evy-why-card.evy-show .evy-why-icon path,
.evy-why-card.evy-show .evy-why-icon circle,
.evy-why-card.evy-show .evy-why-icon rect,
.evy-why-card.evy-show .evy-why-icon polyline {
  stroke-dashoffset: 0;
}

.evy-why-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.evy-why-card p {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.62;
}

@media (max-width: 980px) {
  .evy-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .evy-why {
    padding: 0 16px 72px;
  }
  .evy-why-drop {
    height: 48px;
    margin-bottom: 32px;
  }
  .evy-why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 440px;
  }
  .evy-why-card {
    padding: 30px 24px 26px;
  }
  .evy-why-head {
    margin-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evy-why .evy-why-eyebrow,
  .evy-why .evy-why-head h2,
  .evy-why .evy-why-head p,
  .evy-why .evy-why-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .evy-why .evy-why-icon {
    transform: scale(1);
    transition: none;
  }
  .evy-why .evy-why-icon path,
  .evy-why .evy-why-icon circle,
  .evy-why .evy-why-icon rect,
  .evy-why .evy-why-icon polyline {
    stroke-dashoffset: 0;
    transition: none;
  }
  .evy-why-drop::before {
    animation: none;
    opacity: 1;
  }
}

/* ================= STATS BAND ================= */
.evy-stats {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  font-family: "Jost", sans-serif;
  background: #ffffff;
  padding: 72px 24px 64px;
}
.evy-stats * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.evy-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.6s ease;
}
.evy-stats.evy-in .evy-stat {
  opacity: 1;
  transform: translateY(0);
}
.evy-stats.evy-in .evy-stat:nth-child(2) {
  transition-delay: 0.1s;
}
.evy-stats.evy-in .evy-stat:nth-child(3) {
  transition-delay: 0.2s;
}
.evy-stats.evy-in .evy-stat:nth-child(4) {
  transition-delay: 0.3s;
}
.evy-stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(160deg, #f2f8fc, #e7f0f8);
  border: 1px solid #dce7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.evy-stat-icon svg {
  width: 38px;
  height: 38px;
}
.evy-stat-icon path,
.evy-stat-icon circle,
.evy-stat-icon rect,
.evy-stat-icon polyline {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.evy-stat-num {
  font-size: clamp(36px, 4.4vw, 50px);
  font-weight: 700;
  color: var(--evy-navy);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.evy-stat-label {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.45;
  max-width: 220px;
}

/* ================= FAQ ================= */
.evy-faq {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  font-family: "Jost", sans-serif;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f8fc 18%,
    #e9f2fa 50%,
    #f3f8fc 82%,
    #ffffff 100%
  );
  padding: 64px 24px 80px;
}
.evy-faq * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-faq-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.evy-faq-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.evy-faq-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
}
.evy-faq-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  align-items: start;
}
.evy-faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evy-faq-item {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
  overflow: hidden;
}
.evy-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Jost", sans-serif;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.35;
}
.evy-faq-q .evy-faq-pm {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--evy-navy);
  position: relative;
  transition:
    background 0.25s ease,
    transform 0.3s ease;
}
.evy-faq-pm::before,
.evy-faq-pm::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.evy-faq-pm::before {
  width: 14px;
  height: 2.4px;
}
.evy-faq-pm::after {
  width: 2.4px;
  height: 14px;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}
.evy-faq-item.evy-open .evy-faq-pm::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.evy-faq-item.evy-open .evy-faq-pm {
  background: #157a5e;
}
.evy-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.evy-faq-a p {
  padding: 0 22px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.6;
}

/* ================= LATEST NEWS & INSIGHTS ================= */
.evy-news {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  font-family: "Jost", sans-serif;
  background: #ffffff;
  padding: 64px 24px 88px;
}
.evy-news * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-news-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.evy-news-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.evy-news-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
}
.evy-news-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 8px;
}
.evy-news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.evy-news-track::-webkit-scrollbar {
  display: none;
}
.evy-news-card {
  scroll-snap-align: start;
}
.evy-news-tag {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
  margin-bottom: 7px;
}
.evy-news-nav {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #c7d5e2;
  box-shadow: 0 10px 22px -12px rgba(8, 53, 95, 0.5);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-news-nav:hover {
  background: #f4f8fb;
  transform: scale(1.05);
}
.evy-news-prev {
  left: -14px;
}
.evy-news-next {
  right: -14px;
}
.evy-news-nav i {
  display: block;
  width: 11px;
  height: 11px;
  border-right: 2.4px solid var(--evy-navy);
  border-bottom: 2.4px solid var(--evy-navy);
}
.evy-news-prev i {
  transform: rotate(135deg);
  margin-left: 4px;
}
.evy-news-next i {
  transform: rotate(-45deg);
  margin-right: 4px;
}
.evy-news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px -30px rgba(8, 53, 95, 0.35);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease;
}
.evy-news.evy-in .evy-news-card {
  opacity: 1;
  transform: translateY(0);
}
.evy-news.evy-in .evy-news-card:nth-child(2) {
  transition-delay: 0.12s;
}
.evy-news.evy-in .evy-news-card:nth-child(3) {
  transition-delay: 0.24s;
}
@media (hover: hover) {
  .evy-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px -30px rgba(8, 53, 95, 0.5);
  }
  .evy-news-card:hover .evy-news-more span {
    padding-left: 5px;
  }
}
.evy-news-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #e9f2fa, #c9ddee);
}
.evy-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.evy-news-date {
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 8px 0 0 8px;
}
.evy-news-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.evy-news-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.3;
  margin-bottom: 14px;
}
.evy-news-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--evy-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.evy-news-more span {
  transition: padding-left 0.25s ease;
  display: inline-block;
}
.evy-news-more svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.evy-news-more:hover {
  color: #0a4478;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .evy-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
  .evy-faq-grid {
    grid-template-columns: 1fr;
  }
  .evy-faq-col {
    gap: 14px;
    margin-bottom: 14px;
  }
  .evy-news-track {
    grid-auto-columns: 100%;
    gap: 18px;
  }
  .evy-news-prev {
    left: -6px;
  }
  .evy-news-next {
    right: -6px;
  }
}
@media (max-width: 560px) {
  .evy-stats {
    padding: 56px 16px 48px;
  }
  .evy-faq {
    padding: 52px 16px 64px;
  }
  .evy-news {
    padding: 52px 16px 72px;
  }
  .evy-stat-num {
    font-size: 34px;
  }
  .evy-stat-label {
    font-size: 14.5px;
  }
  .evy-faq-q {
    font-size: 16px;
    padding: 17px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .evy-stats .evy-stat,
  .evy-news .evy-news-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .evy-faq-a {
    transition: none;
  }
}

.evy-track {
  font-family: "Jost", sans-serif;
  background: #ffffff;
  padding: 8px 24px 64px;
}
.evy-track-in {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.evy-track h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: #08355f;
  margin: 0 0 8px;
  line-height: 1.2;
}
.evy-track-sub {
  font-size: 16px;
  font-weight: 500;
  color: #24517a;
  margin: 0 0 28px;
}
.evy-track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}
.evy-track-item {
  background: #fbfcfe;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.evy-track-item i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #157a5e;
  position: relative;
  margin-top: 2px;
}
.evy-track-item i::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2.4px solid #ffffff;
  border-bottom: 2.4px solid #ffffff;
  transform: rotate(-45deg);
}
.evy-track-item p {
  margin: 0;
  font-size: 15.5px;
  font-weight: 500;
  color: #1b2733;
  line-height: 1.55;
}
@media (max-width: 1000px) {
  .evy-track-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .evy-track {
    padding: 0 16px 52px;
  }
  .evy-track-grid {
    grid-template-columns: 1fr;
  }
}

.evy-footer {
  --evy-navy: #08355f;
  --evy-deep: #062a4c;
  --evy-link: #dce9f4;
  --evy-line: rgba(255, 255, 255, 0.12);
  font-family: "Jost", sans-serif;
  background: linear-gradient(150deg, #0f4e87 0%, #08355f 52%, #041f3d 100%);
  position: relative;
  color: #ffffff;
  width: 100%;
  overflow: hidden;
}
.evy-footer::before,
.evy-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.evy-footer::before {
  width: 640px;
  height: 640px;
  top: -260px;
  right: -180px;
  background: radial-gradient(
    circle,
    rgba(127, 176, 220, 0.18),
    transparent 68%
  );
}
.evy-footer::after {
  width: 520px;
  height: 520px;
  bottom: -240px;
  left: -160px;
  background: radial-gradient(
    circle,
    rgba(127, 176, 220, 0.12),
    transparent 68%
  );
}
.evy-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-footer a {
  text-decoration: none;
}
.evy-footer ul {
  list-style: none;
}
.evy-f-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 26px;
  position: relative;
  z-index: 1;
}

/* ---------- CTA strip ---------- */
.evy-f-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--evy-line);
}
.evy-f-cta h2 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}
.evy-f-cta a {
  flex-shrink: 0;
  display: inline-block;
  background: #ffffff;
  color: var(--evy-navy);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.evy-f-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5);
  color: var(--evy-navy);
}

/* ---------- main grid ---------- */
.evy-f-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr 1fr 0.7fr;
  gap: 36px 28px;
  padding: 52px 0 48px;
}
.evy-f-logo {
  height: 46px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.evy-f-brand p {
  font-size: 15px;
  font-weight: 500;
  color: #e9f1f8;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.evy-f-contact {
  margin-bottom: 20px;
}
.evy-f-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: #e9f1f8;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.evy-f-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.evy-f-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #afcbe3;
}
.evy-social {
  display: flex;
  gap: 10px;
}
.evy-social a {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.evy-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -10px rgba(0, 0, 0, 0.55);
  filter: brightness(1.1);
}
.evy-social a {
  background: #ffffff;
}
.evy-social svg {
  width: 19px;
  height: 19px;
  fill: var(--evy-navy);
}

.evy-f-col h3 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 9px;
  position: relative;
}
.evy-f-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: #7fb0dc;
  border-radius: 2px;
}
.evy-f-col li {
  margin-bottom: 9px;
}
.evy-f-col a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--evy-link);
  line-height: 1.45;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  display: inline-block;
}
.evy-f-col a:hover {
  color: #ffffff;
  padding-left: 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ---------- bottom bar ---------- */
.evy-f-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--evy-line);
  flex-wrap: wrap;
}
.evy-f-bottom p {
  font-size: 14px;
  font-weight: 500;
  color: #c4d6e6;
}
.evy-f-legal {
  display: flex;
  gap: 24px;
}
.evy-f-legal a {
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-link);
  transition: color 0.2s ease;
}
.evy-f-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- entrance ---------- */
.evy-f-anim {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.evy-footer.evy-in .evy-f-anim {
  opacity: 1;
  transform: translateY(0);
}
.evy-footer.evy-in .evy-f-anim:nth-child(2) {
  transition-delay: 0.1s;
}
.evy-footer.evy-in .evy-f-anim:nth-child(3) {
  transition-delay: 0.2s;
}

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .evy-f-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .evy-f-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 840px) {
  .evy-f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 44px 0 36px;
  }
  .evy-f-brand {
    grid-column: 1 / -1;
  }
  .evy-f-brand p {
    max-width: none;
  }
  .evy-f-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
  }
}
@media (max-width: 520px) {
  .evy-f-grid {
    gap: 28px 18px;
  }
  .evy-f-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .evy-footer .evy-f-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

:root {
  color-scheme: light only;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.evy-about {
  background: #ffffff;
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  color: var(--evy-ink);
}
.evy-about * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- page hero ---- */
.evy-about-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 76px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.evy-about-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -200px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.09), transparent 68%);
  pointer-events: none;
}
.evy-about-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.evy-about-hero h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.12;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.evy-about-hero p {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- tabs ---- */
.evy-about-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.evy-about-tabbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.evy-about-tab {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--evy-navy);
  background: #f4f8fb;
  border: 1.6px solid #c7d5e2;
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.evy-about-tab:hover {
  border-color: var(--evy-navy);
}
.evy-about-tab.evy-on {
  background: var(--evy-navy);
  color: #ffffff;
  border-color: var(--evy-navy);
}
.evy-about-panel {
  display: none;
  animation: evyAboutIn 0.45s ease;
}
.evy-about-panel.evy-on {
  display: block;
}
@keyframes evyAboutIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.evy-about-panel.evy-on .evy-about-card,
.evy-about-panel.evy-on .evy-about-whyitem,
.evy-about-panel.evy-on .evy-about-cred-item {
  animation: evyAboutIn 0.55s ease both;
}
.evy-about-panel.evy-on .evy-about-card:nth-child(2),
.evy-about-panel.evy-on .evy-about-whyitem:nth-child(2),
.evy-about-panel.evy-on .evy-about-cred-item:nth-child(2) {
  animation-delay: 0.08s;
}
.evy-about-panel.evy-on .evy-about-card:nth-child(3),
.evy-about-panel.evy-on .evy-about-whyitem:nth-child(3),
.evy-about-panel.evy-on .evy-about-cred-item:nth-child(3) {
  animation-delay: 0.16s;
}
.evy-about-panel.evy-on .evy-about-card:nth-child(4),
.evy-about-panel.evy-on .evy-about-whyitem:nth-child(4),
.evy-about-panel.evy-on .evy-about-cred-item:nth-child(4) {
  animation-delay: 0.24s;
}
.evy-about-panel.evy-on .evy-about-card:nth-child(5),
.evy-about-panel.evy-on .evy-about-whyitem:nth-child(5) {
  animation-delay: 0.32s;
}
.evy-about-panel.evy-on .evy-about-whyitem:nth-child(6) {
  animation-delay: 0.4s;
}

.evy-about-panel h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.18;
  margin-bottom: 18px;
  text-align: center;
}
.evy-about-prose {
  max-width: 1100px;
  margin: 0 auto;
}
.evy-about-prose p {
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 18px;
}
.evy-about-lead {
  color: var(--evy-navy);
  font-weight: 600;
}

/* Who We Are: text + credentials panel */
.evy-about-who {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 44px;
  align-items: start;
}
.evy-about-cred {
  background: #fbfcfe;
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -32px rgba(8, 53, 95, 0.4);
  position: sticky;
  top: 96px;
}
.evy-about-cred-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid #e9eff5;
  background: #f4f8fb;
}
.evy-about-cred-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-about-cred-bar i:nth-child(1) {
  background: #c7d5e2;
}
.evy-about-cred-bar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-about-cred-bar i:nth-child(3) {
  background: #08355f;
}
.evy-about-cred-bar span {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
}
.evy-about-cred-body {
  padding: 22px 24px 24px;
}
.evy-about-cred-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.evy-about-cred-item:last-child {
  margin-bottom: 0;
}
.evy-about-cred-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, #f2f8fc, #e7f0f8);
  border: 1px solid #dce7f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evy-about-cred-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.evy-about-cred-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.evy-about-cred-item p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.55;
  margin: 0;
}
.evy-about-cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}
.evy-about-cred-chips span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid #c7d5e2;
  border-radius: 999px;
  padding: 4px 11px;
  background: #f4f8fb;
}

/* service cards inside What We Do */
.evy-about-cards {
  max-width: 1200px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.evy-about-cards .evy-about-card:first-child {
  grid-column: 1 / -1;
}
.evy-about-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-left: 4px solid var(--evy-navy);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
}
.evy-about-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.evy-about-card p {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
}

/* why blocks */
.evy-about-why {
  max-width: 1200px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.evy-about-whyitem {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
}
.evy-about-whyitem h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 8px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.evy-about-whyitem h3::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--evy-green);
}
.evy-about-whyitem p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

/* CTA band */
.evy-about-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 30%, #e9f2fa 100%);
  padding: 0 24px 84px;
  text-align: center;
}
.evy-about-cta .evy-about-drop {
  width: 2px;
  height: 64px;
  margin: 0 auto 36px;
  background: #c7d5e2;
  position: relative;
}
.evy-about-cta .evy-about-drop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--evy-navy);
  animation: evyAboutFall 2.8s ease-in-out infinite;
}
@keyframes evyAboutFall {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  14% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(54px);
  }
}
.evy-about-cta h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.2;
  margin-bottom: 22px;
}
.evy-about-btn {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 36px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-about-btn:hover {
  background: #0a4478;
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .evy-about-why {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .evy-about-hero {
    padding: 56px 16px 48px;
  }
  .evy-about-who {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .evy-about-cred {
    position: static;
  }
  .evy-about-cards {
    grid-template-columns: 1fr;
  }
  .evy-about-tabs {
    padding: 30px 16px 60px;
  }
  .evy-about-why {
    grid-template-columns: 1fr;
  }
  .evy-about-tab {
    font-size: 14.5px;
    padding: 10px 20px;
  }
  .evy-about-prose p {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .evy-about-panel {
    animation: none;
  }
  .evy-about-panel.evy-on .evy-about-card,
  .evy-about-panel.evy-on .evy-about-whyitem,
  .evy-about-panel.evy-on .evy-about-cred-item {
    animation: none;
  }
  .evy-about-cta .evy-about-drop::before {
    animation: none;
    opacity: 1;
  }
}

.evy-header {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #111c26;
  --evy-line: #e4ebf2;
  --evy-soft: #f4f8fb;
  font-family: "Jost", sans-serif;
  position: sticky;
  top: 0;
  z-index: 9999;
  /* full-bleed: span the viewport even inside a boxed container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  border-bottom: 1px solid var(--evy-line);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.evy-header.evy-scrolled {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px -18px rgba(8, 53, 95, 0.3);
}
.evy-header * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-header a {
  text-decoration: none;
}
.evy-header ul {
  list-style: none;
}

.evy-h-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  height: 84px;
}

/* ---------- logo ---------- */
.evy-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.evy-logo img {
  height: clamp(33px, 2.7vw, 44px);
  width: auto;
  display: block;
}
.evy-logo.evy-has-img .evy-logo-text {
  display: none;
}
.evy-logo-text {
  line-height: 1.05;
}
.evy-logo-text b {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: var(--evy-navy);
  letter-spacing: 0.01em;
}
.evy-logo-text span {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  letter-spacing: 0.04em;
}

/* ---------- desktop nav ---------- */
.evy-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 12px 0 28px;
}
.evy-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 32px);
  position: relative;
  top: 1px;
}
.evy-nav-item {
  position: relative;
}
.evy-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(14px, 1.1vw, 16.5px);
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1;
  padding: 10px 7px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  white-space: nowrap;
}
.evy-nav-link:hover,
.evy-nav-item:focus-within > .evy-nav-link {
  color: var(--evy-navy);
  background: #e7eff7;
}
.evy-nav-link.evy-active {
  color: var(--evy-navy);
  font-weight: 600;
  position: relative;
}
.evy-nav-link.evy-active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 2.5px;
  background: var(--evy-navy);
  border-radius: 2px;
}
.evy-m-link.evy-active {
  color: var(--evy-navy);
}
.evy-caret {
  width: 9px;
  height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.evy-nav-item:hover .evy-caret,
.evy-nav-item:focus-within .evy-caret {
  transform: rotate(225deg) translateY(-1px);
}

/* dropdown panels */
.evy-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--evy-line);
  border-radius: 14px;
  box-shadow: 0 24px 56px -24px rgba(8, 53, 95, 0.35);
  padding: 12px;
  min-width: 330px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}
.evy-drop::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.evy-drop::after {
  content: "";
  position: absolute;
  top: -6.5px;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid var(--evy-line);
  border-top: 1px solid var(--evy-line);
  transform: rotate(45deg);
}
.evy-nav-link:focus-visible,
.evy-cta:focus-visible,
.evy-m-toggle:focus-visible,
.evy-m-link:focus-visible,
.evy-burger:focus-visible {
  outline: 2px solid var(--evy-navy);
  outline-offset: 2px;
  border-radius: 8px;
}
.evy-nav-item:hover > .evy-drop,
.evy-nav-item:focus-within > .evy-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.evy-drop a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--evy-ink);
  padding: 13px 16px;
  border-radius: 9px;
  line-height: 1.45;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
}
.evy-drop a:hover {
  background: #e7eff7;
  color: var(--evy-navy);
  padding-left: 20px;
}
.evy-drop.evy-drop-wide {
  min-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
  opacity: 0;
}
.evy-nav-item:hover > .evy-drop-wide,
.evy-nav-item:focus-within > .evy-drop-wide {
  display: grid;
}

/* ---------- right side ---------- */
.evy-h-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.evy-cta {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.evy-cta:hover {
  background: #0a4478;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -12px rgba(8, 53, 95, 0.6);
}

/* ---------- hamburger ---------- */
.evy-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding-left: 11px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.evy-burger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--evy-navy);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}
.evy-burger span:nth-child(2) {
  width: 15px;
}
@media (hover: hover) {
  .evy-burger:hover {
    background: #e7eff7;
  }
  .evy-burger:hover span:nth-child(2) {
    width: 22px;
  }
}
.evy-burger.evy-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.evy-burger.evy-open span:nth-child(2) {
  opacity: 0;
}
.evy-burger.evy-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- mobile menu ---------- */
.evy-mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--evy-line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.evy-mobile.evy-open {
  max-height: calc(100vh - 78px);
  overflow-y: auto;
}
.evy-mobile-inner {
  padding: 12px 20px 28px;
}
.evy-m-link,
.evy-m-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--evy-ink);
  padding: 15px 6px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #eef3f8;
}
.evy-m-toggle .evy-caret {
  transition: transform 0.3s ease;
}
.evy-m-toggle.evy-open .evy-caret {
  transform: rotate(225deg);
}
.evy-m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--evy-soft);
  border-radius: 10px;
}
.evy-m-sub a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--evy-ink);
  padding: 13px 16px;
  line-height: 1.4;
}
.evy-m-sub a + a {
  border-top: 1px solid #e2eaf1;
}
.evy-m-sub a:active {
  color: var(--evy-navy);
}
.evy-m-sub.evy-open {
  margin: 6px 0 10px;
}
.evy-m-bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.evy-m-bottom .evy-cta {
  text-align: center;
  padding: 14px 26px;
}

/* roomier metrics on very large screens */
@media (min-width: 1600px) {
  .evy-h-inner {
    max-width: 1560px;
    gap: 20px;
    height: 88px;
  }
  .evy-cta {
    font-size: 15px;
    padding: 11px 22px;
  }
}

@media (max-width: 1180px) {
  .evy-nav {
    display: none;
  }
  .evy-h-right {
    margin-left: auto;
  }
  .evy-h-right .evy-cta {
    display: none;
  }
  .evy-burger {
    display: flex;
  }
  .evy-mobile {
    display: block;
  }
  .evy-h-inner {
    height: 68px;
    padding: 0 18px;
  }
  .evy-logo img {
    height: 38px;
  }
  .evy-logo-text b {
    font-size: 19px;
  }
}
@media (min-width: 1181px) {
  .evy-mobile {
    display: none !important;
  }
}

.evy-pg {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #111c26;
  --evy-green: #157a5e;
  --evy-line: #e4ebf2;
  font-family: "Jost", sans-serif;
  background: #ffffff;
  color: var(--evy-ink);
  position: relative;
}
.evy-pg * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-pg p,
.evy-pg h1,
.evy-pg h2,
.evy-pg h3,
.evy-pg li,
.evy-pg b {
  overflow-wrap: break-word;
}
.evy-pg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.evy-pg-prose {
  max-width: 760px;
}

/* generic entrance */
.evy-pg .evy-fx {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.evy-pg .evy-sec.evy-in .evy-fx {
  opacity: 1;
  transform: translateY(0);
}
.evy-pg .evy-sec.evy-in .evy-fx:nth-child(2) {
  transition-delay: 0.1s;
}
.evy-pg .evy-sec.evy-in .evy-fx:nth-child(3) {
  transition-delay: 0.2s;
}
.evy-pg .evy-sec.evy-in .evy-fx:nth-child(4) {
  transition-delay: 0.3s;
}

/* ---------- hero ---------- */
.evy-pg-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 52px;
  background:
    radial-gradient(
      900px 420px at 78% 0%,
      #eaf3fb 0%,
      rgba(234, 243, 251, 0) 62%
    ),
    #ffffff;
}
.evy-pg-crumb {
  font-size: 13.5px;
  font-weight: 500;
  color: #46617a;
  margin-bottom: 26px;
}
.evy-pg-crumb a {
  color: #46617a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.evy-pg-crumb a:hover {
  color: var(--evy-navy);
}
.evy-pg-crumb b {
  color: var(--evy-navy);
  font-weight: 600;
}
.evy-pg-hero-grid {
  display: flex;
  gap: 56px;
  align-items: center;
}
.evy-pg-hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.evy-pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 18px;
}
.evy-pg-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--evy-navy);
}
.evy-pg h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
  margin-bottom: 18px;
}
.evy-pg-hero-copy > p {
  font-size: clamp(17px, 1.9vw, 19.5px);
  font-weight: 500;
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 28px;
}
.evy-pg-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.evy-pg-cta a {
  font-family: "Jost", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 28px;
  display: inline-block;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.evy-pg-cta .evy-pg-primary {
  background: var(--evy-navy);
  color: #ffffff;
}
.evy-pg-cta .evy-pg-primary:hover {
  background: #0a4478;
}
.evy-pg-cta .evy-pg-ghost {
  color: var(--evy-navy);
  border: 1.5px solid #c7d5e2;
  background: #ffffff;
}
.evy-pg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.evy-pg-chips span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid #c7d5e2;
  border-radius: 999px;
  padding: 6px 14px;
  background: #f4f8fb;
}

/* hero route card */
.evy-pg-route {
  flex: 0 0 372px;
  background: #ffffff;
  border: 1px solid var(--evy-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 50px -32px rgba(8, 53, 95, 0.4);
}
.evy-pg-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f4f8fb;
  border-bottom: 1px solid var(--evy-line);
  padding: 11px 18px;
}
.evy-pg-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-pg-bar i:nth-child(1) {
  background: #cbd9e5;
}
.evy-pg-bar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-pg-bar i:nth-child(3) {
  background: var(--evy-navy-mid);
}
.evy-pg-bar span {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #46617a;
}
.evy-pg-route-body {
  padding: 26px 22px 24px;
}
.evy-pg-rstep {
  display: flex;
  align-items: center;
  gap: 14px;
}
.evy-pg-rnode {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #ffffff;
  border: 2.5px solid #c7d5e2;
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}
.evy-pg-rstep b {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--evy-ink);
}
.evy-pg-rstep small {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #46617a;
  line-height: 1.4;
}
.evy-pg-rjoin {
  width: 2px;
  height: 24px;
  background: #c7d5e2;
  margin: 4px 0 4px 6px;
  position: relative;
  overflow: hidden;
}
.evy-pg-rjoin::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--evy-navy);
  transform: scaleY(0);
  transform-origin: top;
}
.evy-sec.evy-in .evy-pg-rstep:nth-child(1) .evy-pg-rnode {
  background: var(--evy-navy);
  border-color: var(--evy-navy);
  transition-delay: 0.4s;
}
.evy-sec.evy-in .evy-pg-rjoin:nth-child(2)::after {
  transform: scaleY(1);
  transition: transform 0.45s ease 0.8s;
}
.evy-sec.evy-in .evy-pg-rstep:nth-child(3) .evy-pg-rnode {
  background: var(--evy-navy);
  border-color: var(--evy-navy);
  transition-delay: 1.25s;
}
.evy-sec.evy-in .evy-pg-rjoin:nth-child(4)::after {
  transform: scaleY(1);
  transition: transform 0.45s ease 1.65s;
}
.evy-sec.evy-in .evy-pg-rstep:nth-child(5) .evy-pg-rnode {
  background: var(--evy-navy);
  border-color: var(--evy-navy);
  transition-delay: 2.1s;
}
.evy-sec.evy-in .evy-pg-rjoin:nth-child(6)::after {
  transform: scaleY(1);
  transition: transform 0.45s ease 2.5s;
}
.evy-sec.evy-in .evy-pg-rstep:nth-child(7) .evy-pg-rnode {
  background: var(--evy-green);
  border-color: var(--evy-green);
  transition-delay: 2.95s;
}
.evy-pg-rstep:nth-child(7) .evy-pg-rnode {
  position: relative;
}
.evy-pg-rstep:nth-child(7) .evy-pg-rnode::after {
  content: "";
  position: absolute;
  left: -2.5px;
  top: -2.5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--evy-green);
  opacity: 0;
}
.evy-sec.evy-in .evy-pg-rstep:nth-child(7) .evy-pg-rnode::after {
  animation: evyPgPulse 2.4s ease-out 3.3s infinite;
}
@keyframes evyPgPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(2);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* brand lattice watermark, echo of the molecular logo */
.evy-pg-lattice {
  position: absolute;
  top: 34px;
  right: -40px;
  width: 420px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.evy-pg-lattice-w {
  position: absolute;
  left: -40px;
  bottom: -26px;
  width: 400px;
  height: auto;
  opacity: 0.6;
  pointer-events: none;
}

/* barely-tinted band for the deliverables section */
.evy-pg-tint {
  background: #fafcfe;
  border-top: 1px solid #eff4f9;
  border-bottom: 1px solid #eff4f9;
}

@media (hover: hover) {
  .evy-pg-card {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  .evy-pg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px -26px rgba(8, 53, 95, 0.45);
  }
}

/* ---------- sections ---------- */
.evy-pg-sec {
  padding-top: 44px;
  padding-bottom: 6px;
}
.evy-pg h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.evy-pg-sec p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}
.evy-pg-rule {
  height: 1px;
  background: var(--evy-line);
  margin: 36px 0 0;
}

/* pathway timeline */
.evy-pg-tl {
  position: relative;
  max-width: 760px;
  margin: 26px 0 6px;
  padding-left: 34px;
}
.evy-pg-tl::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #c7d5e2;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease 0.2s;
}
.evy-sec.evy-in .evy-pg-tl::before {
  transform: scaleY(1);
}
.evy-pg-tstep {
  position: relative;
  padding: 0 0 30px;
}
.evy-pg-tstep:last-child {
  padding-bottom: 0;
}
.evy-pg-tstep::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--evy-navy);
}
.evy-pg-tstep h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.evy-pg-tstep p {
  font-size: 17px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.65;
  margin-bottom: 10px;
}
.evy-pg-tstep .evy-pg-chips {
  margin-top: 2px;
}
.evy-pg-note {
  max-width: 760px;
  background: #f4f8fb;
  border: 1px solid #dce7f0;
  border-left: 3px solid var(--evy-navy);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0 2px;
}
.evy-pg-note p {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: var(--evy-ink);
}
.evy-pg-note b {
  color: var(--evy-navy);
  font-weight: 600;
}

/* what we prepare grid */
.evy-pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 4px;
}
.evy-pg-card {
  background: #ffffff;
  border: 1px solid var(--evy-line);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.35);
}
.evy-pg-card svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  margin-top: 2px;
}
.evy-pg-card svg path,
.evy-pg-card svg circle,
.evy-pg-card svg rect,
.evy-pg-card svg polyline {
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.evy-sec.evy-in .evy-pg-card svg path,
.evy-sec.evy-in .evy-pg-card svg circle,
.evy-sec.evy-in .evy-pg-card svg rect,
.evy-sec.evy-in .evy-pg-card svg polyline {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.9s ease 0.3s;
}
.evy-pg-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.evy-pg-card b {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 4px;
}

/* why band */
.evy-pg-why {
  background: linear-gradient(160deg, #f2f8fc, #eaf2f9);
  border: 1px solid #dce7f0;
  border-radius: 16px;
  padding: 30px 34px;
  margin: 0;
  flex: 0 0 480px;
}
.evy-pg-why h2 {
  margin-bottom: 12px;
}
.evy-pg-why p {
  margin-bottom: 0;
}

/* FAQ */
.evy-pg-faq {
  max-width: 760px;
  margin: 18px 0 2px;
}
.evy-pg-q {
  border-bottom: 1px solid var(--evy-line);
}
.evy-pg-q:first-child {
  border-top: 1px solid var(--evy-line);
}
.evy-pg-qbtn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Jost", sans-serif;
  font-size: 18.5px;
  font-weight: 600;
  color: var(--evy-ink);
  padding: 20px 40px 18px 2px;
  position: relative;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.evy-pg-qbtn::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--evy-navy);
  transition: transform 0.3s ease;
}
.evy-pg-q.evy-open .evy-pg-qbtn::after {
  transform: translateY(-50%) rotate(45deg);
}
.evy-pg-q.evy-open .evy-pg-qbtn {
  color: var(--evy-navy);
}
.evy-pg-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.evy-pg-a p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  padding: 0 2px 20px;
  margin: 0;
}

/* two-column section layout with right rail */
.evy-pg-2col {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.evy-pg-2main {
  flex: 1 1 auto;
  min-width: 0;
}
.evy-pg-rail {
  flex: 0 0 360px;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.evy-pg-glance {
  background: #ffffff;
  border: 1px solid var(--evy-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 50px -32px rgba(8, 53, 95, 0.4);
}
.evy-pg-glance-body {
  padding: 6px 22px 8px;
}
.evy-pg-grow {
  padding: 13px 0;
  border-bottom: 1px solid var(--evy-line);
}
.evy-pg-grow:last-child {
  border-bottom: none;
}
.evy-pg-grow small {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #46617a;
  margin-bottom: 3px;
}
.evy-pg-grow b {
  font-size: 16px;
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.4;
}
.evy-pg-askcard {
  flex: 0 0 380px;
  position: sticky;
  top: 110px;
  background: linear-gradient(160deg, #f2f8fc, #eaf2f9);
  border: 1px solid #dce7f0;
  border-radius: 16px;
  padding: 28px 30px;
}
.evy-pg-askcard h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.evy-pg-askcard p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 20px;
}
.evy-pg-askcard a {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 28px;
  transition: background 0.25s ease;
}
.evy-pg-askcard a:hover {
  background: #0a4478;
}

/* vertically centered variant for prose-beside-card sections */
/* top-aligned so the H2 stays attached to its paragraph */
.evy-pg-2c {
  align-items: flex-start;
}
.evy-pg-hlist {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.evy-pg-hitem {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--evy-ink);
}
.evy-pg-hitem i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1.5px solid #bfe0d4;
  background: #eff8f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evy-pg-hitem svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* related page link cards */
.evy-pg-rel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 4px;
}
.evy-pg-relcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--evy-line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.35);
}
.evy-pg-relcard b {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.evy-pg-relcard small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #46617a;
  line-height: 1.45;
}
.evy-pg-relcard i {
  font-style: normal;
  color: var(--evy-navy);
  font-size: 19px;
  font-weight: 600;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .evy-pg-relcard {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }
  .evy-pg-relcard:hover {
    transform: translateY(-3px);
    border-color: #c7d5e2;
    box-shadow: 0 20px 44px -26px rgba(8, 53, 95, 0.45);
  }
  .evy-pg-relcard:hover i {
    transform: translateX(4px);
  }
}

/* CTA band */
.evy-pg-band {
  margin-top: 36px;
  background: linear-gradient(180deg, #062a4c 0%, #08355f 50%, #0f4e87 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.evy-pg-band::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0) 68%
  );
}
.evy-pg-band-in {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.evy-pg-band h2 {
  color: #ffffff;
  margin-bottom: 12px;
}
.evy-pg-band > .evy-pg-band-in > p {
  color: #d7e4f0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 26px;
}
.evy-pg-band a.evy-pg-bandbtn {
  display: inline-block;
  background: #ffffff;
  color: var(--evy-navy);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 34px;
  transition: background 0.25s ease;
}
.evy-pg-band a.evy-pg-bandbtn:hover {
  background: #eaf3fb;
}
.evy-pg-links {
  margin-top: 30px;
  display: flex;
  gap: 10px 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.evy-pg-links a {
  color: #bbd0e4;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
}
.evy-pg-links a:hover {
  color: #ffffff;
}
.evy-pg-updated {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 26px;
  font-size: 13px;
  font-weight: 500;
  color: #6e8aa6;
  text-align: center;
}

/* ---------- tablet and small laptop ---------- */
@media (max-width: 1080px) and (min-width: 881px) {
  .evy-pg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .evy-pg-2col {
    display: block;
  }
  .evy-pg-rail {
    position: static;
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  .evy-pg-note {
    max-width: none;
    margin-top: 0;
  }
  .evy-pg-askcard {
    position: static;
    flex: none;
    margin-top: 26px;
  }
  .evy-pg-why {
    flex: none;
    margin-top: 24px;
  }
}

/* ---------- mobile ---------- */
@media (max-width: 880px) {
  .evy-pg-wrap {
    padding: 0 22px;
  }
  .evy-pg-hero {
    padding: 38px 0 36px;
  }
  .evy-pg-hero-grid {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .evy-pg-route {
    flex: 1 1 auto;
    width: 100%;
    max-width: 440px;
    margin: 0;
  }
  .evy-pg-sec {
    padding-top: 32px;
    padding-bottom: 4px;
  }
  .evy-pg-sec p {
    font-size: 17.5px;
  }
  .evy-pg-lattice {
    width: 250px;
    right: -70px;
    top: 16px;
    opacity: 0.4;
  }
  .evy-pg-lattice-w {
    width: 280px;
    left: -60px;
  }
  .evy-pg-grid {
    grid-template-columns: 1fr;
  }
  .evy-pg-rel {
    grid-template-columns: 1fr;
  }
  .evy-pg-2col {
    display: block;
  }
  .evy-pg-rail {
    position: static;
    margin-top: 24px;
  }
  .evy-pg-askcard {
    position: static;
    flex: none;
    margin-top: 24px;
  }
  .evy-pg-why {
    flex: none;
    margin-top: 22px;
    padding: 24px 22px;
  }
  .evy-pg-band {
    padding: 50px 22px;
  }
  .evy-pg-rule {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evy-pg .evy-fx {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .evy-pg .evy-pg-tl::before {
    transform: scaleY(1);
    transition: none;
  }
  .evy-pg .evy-pg-rnode {
    transition: none;
  }
  .evy-pg .evy-sec.evy-in .evy-pg-rjoin::after {
    transform: scaleY(1);
    transition: none;
  }
  .evy-pg .evy-pg-rstep:nth-child(7) .evy-pg-rnode::after {
    animation: none;
  }
  .evy-pg .evy-pg-card svg path,
  .evy-pg .evy-pg-card svg circle,
  .evy-pg .evy-pg-card svg rect,
  .evy-pg .evy-pg-card svg polyline {
    stroke-dashoffset: 0;
  }
  .evy-pg .evy-pg-a {
    transition: none;
  }
}

.evy-svp {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  color: var(--evy-ink);
  background: #ffffff;
}
.evy-svp * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-svp-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 70px 24px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.evy-svp-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -200px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.09), transparent 68%);
  pointer-events: none;
}
.evy-svp-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.evy-svp-hero h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
  max-width: 880px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.evy-svp-hero p {
  font-size: clamp(17px, 1.8vw, 19.5px);
  font-weight: 500;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.evy-svp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}
.evy-svp-prose {
  max-width: 1200px;
  margin: 0 auto;
}
.evy-svp-prose p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
  margin-bottom: 16px;
}
.evy-svp-prose a {
  color: var(--evy-navy);
  font-weight: 600;
}
.evy-svp-wrap h2 {
  font-size: clamp(23px, 2.8vw, 31px);
  font-weight: 600;
  color: var(--evy-navy);
  text-align: center;
  margin: 34px 0 22px;
  line-height: 1.2;
}
.evy-svp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.evy-svp-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-left: 4px solid var(--evy-navy);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
}
.evy-svp-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 7px;
  line-height: 1.3;
}
.evy-svp-card p {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.62;
}
.evy-svp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 0;
  max-width: 900px;
}
.evy-svp-chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid #c7d5e2;
  border-radius: 999px;
  padding: 8px 18px;
  background: #f4f8fb;
}
.evy-svp-faq {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.evy-svp-qa {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
}
.evy-svp-qa h3 {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.evy-svp-qa p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}
.evy-svp-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 30%, #e9f2fa 100%);
  padding: 52px 24px 80px;
  text-align: center;
  margin-top: 30px;
}
.evy-svp-cta h2 {
  margin: 0 0 22px;
}
.evy-svp-btn {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 36px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-svp-btn:hover {
  background: #0a4478;
  transform: translateY(-2px);
  color: #ffffff;
}
@media (max-width: 820px) {
  .evy-svp-hero {
    padding: 52px 16px 42px;
  }
  .evy-svp-wrap {
    padding: 30px 16px 12px;
  }
  .evy-svp-cards {
    grid-template-columns: 1fr;
  }
  .evy-svp-prose p {
    font-size: 16px;
  }
}

.evy-blog {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  color: var(--evy-ink);
  background: #ffffff;
}
.evy-blog * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-bl-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 64px 24px 48px;
  text-align: center;
}
.evy-bl-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.evy-bl-hero h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.16;
  max-width: 900px;
  margin: 0 auto 14px;
}
.evy-bl-meta {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--evy-navy-mid);
}
.evy-bl-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 24px 40px;
}
.evy-bl-wrap h2 {
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 600;
  color: var(--evy-navy);
  margin: 36px 0 14px;
  line-height: 1.22;
}
.evy-bl-wrap h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--evy-navy);
  margin: 26px 0 10px;
  line-height: 1.3;
}
.evy-bl-wrap p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 16px;
}
.evy-bl-wrap ul,
.evy-bl-wrap ol {
  margin: 0 0 16px 24px;
}
.evy-bl-wrap li {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 9px;
}
.evy-bl-wrap a {
  color: var(--evy-navy);
  font-weight: 600;
}
.evy-bl-lead {
  font-size: 18.5px;
  color: var(--evy-navy-mid);
}
.evy-bl-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 30%, #e9f2fa 100%);
  padding: 48px 24px 76px;
  text-align: center;
}
.evy-bl-cta h2 {
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.22;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.evy-bl-btn {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 34px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-bl-btn:hover {
  background: #0a4478;
  transform: translateY(-2px);
  color: #ffffff;
}
.evy-bl-back {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
.evy-bl-back a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--evy-navy-mid);
  text-decoration: none;
}
.evy-bl-back a:hover {
  color: var(--evy-navy);
}
/* index grid */
.evy-bl-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.evy-bl-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px -30px rgba(8, 53, 95, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease;
}
@media (hover: hover) {
  .evy-bl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px -30px rgba(8, 53, 95, 0.5);
  }
}
.evy-bl-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
  background: linear-gradient(135deg, #e9f2fa, #c9ddee);
}
.evy-bl-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.evy-bl-date {
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 8px 0 0 8px;
}
.evy-bl-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.evy-bl-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
  margin-bottom: 8px;
}
.evy-bl-body h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.32;
  margin: 0 0 12px;
}
.evy-bl-more {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--evy-navy);
  text-decoration: none;
}
@media (max-width: 980px) {
  .evy-bl-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}
@media (max-width: 640px) {
  .evy-bl-hero {
    padding: 48px 16px 36px;
  }
  .evy-bl-wrap {
    padding: 28px 16px 30px;
  }
  .evy-bl-wrap p,
  .evy-bl-wrap li {
    font-size: 16px;
  }
}

.evy-contact {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  color: var(--evy-ink);
  background: #ffffff;
}
.evy-contact * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.evy-ct-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.evy-ct-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -200px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.09), transparent 68%);
  pointer-events: none;
}
.evy-ct-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.evy-ct-hero h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.12;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.evy-ct-hero p {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.evy-ct-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 24px 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.evy-ct-card {
  background: #fbfcfe;
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px -32px rgba(8, 53, 95, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.55s ease;
}
.evy-contact.evy-in .evy-ct-card {
  opacity: 1;
  transform: translateY(0);
}
.evy-contact.evy-in .evy-ct-side {
  transition-delay: 0.12s;
}
.evy-ct-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid #e9eff5;
  background: #f4f8fb;
}
.evy-ct-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.evy-ct-bar i:nth-child(1) {
  background: #c7d5e2;
}
.evy-ct-bar i:nth-child(2) {
  background: #9fb6cb;
}
.evy-ct-bar i:nth-child(3) {
  background: #08355f;
}
.evy-ct-bar span {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evy-navy-mid);
  font-weight: 600;
}
.evy-ct-body {
  padding: 26px 28px 28px;
}

/* form */
.evy-ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.evy-ct-field {
  margin-bottom: 16px;
}
.evy-ct-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--evy-navy);
  margin-bottom: 7px;
}
.evy-ct-field input,
.evy-ct-field select,
.evy-ct-field textarea {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--evy-ink);
  background: #ffffff;
  border: 1.6px solid #c7d5e2;
  border-radius: 10px;
  padding: 13px 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  appearance: none;
}
.evy-ct-field textarea {
  min-height: 130px;
  resize: vertical;
}
.evy-ct-field input:focus,
.evy-ct-field select:focus,
.evy-ct-field textarea:focus {
  outline: none;
  border-color: var(--evy-navy);
  box-shadow: 0 0 0 3px rgba(8, 53, 95, 0.12);
}
.evy-ct-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1 L6 6 L11 1' fill='none' stroke='%2308355F' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.evy-ct-send {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: var(--evy-navy);
  border: none;
  border-radius: 999px;
  padding: 16px 30px;
  cursor: pointer;
  margin-top: 4px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.evy-ct-send:hover {
  background: #0a4478;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(8, 53, 95, 0.6);
}
.evy-ct-note {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--evy-navy-mid);
  text-align: center;
  line-height: 1.5;
}

/* side panel */
.evy-ct-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.evy-ct-item:last-child {
  margin-bottom: 0;
}
.evy-ct-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, #f2f8fc, #e7f0f8);
  border: 1px solid #dce7f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evy-ct-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--evy-navy);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.evy-ct-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.evy-ct-item p,
.evy-ct-item a {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--evy-ink);
  line-height: 1.55;
  text-decoration: none;
}
.evy-ct-item a:hover {
  color: var(--evy-navy);
}
.evy-ct-divider {
  height: 1px;
  background: #e9eff5;
  margin: 22px 0;
}
.evy-ct-steps h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 16px;
}
.evy-ct-step {
  display: flex;
  gap: 14px;
  position: relative;
  padding-bottom: 18px;
}
.evy-ct-step:last-child {
  padding-bottom: 0;
}
.evy-ct-step::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: -2px;
  width: 2px;
  background: #c7d5e2;
}
.evy-ct-step:last-child::before {
  display: none;
}
.evy-ct-stepnum {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--evy-navy);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.evy-ct-step:last-child .evy-ct-stepnum {
  background: var(--evy-green);
}
.evy-ct-step h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 2px;
  line-height: 1.3;
}
.evy-ct-step p {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}

.evy-ct-success {
  text-align: center;
  padding: 26px 10px 14px;
}
.evy-ct-success .evy-ct-okicon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #157a5e;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evy-ct-success .evy-ct-okicon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.evy-ct-success h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 8px;
}
.evy-ct-success p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--evy-ink);
}
.evy-ct-send[disabled] {
  opacity: 0.65;
  cursor: default;
  transform: none;
}
@media (max-width: 900px) {
  .evy-ct-hero {
    padding: 54px 16px 44px;
  }
  .evy-ct-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px 20px;
  }
  .evy-ct-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .evy-ct-body {
    padding: 22px 20px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .evy-contact .evy-ct-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.evy-substrip {
  font-family: "Jost", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  padding: 34px 24px 46px;
}
.evy-substrip-in {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.evy-substrip h2 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600;
  color: #08355f;
  margin: 0 0 16px;
}
.evy-substrip-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.evy-substrip-links a {
  font-size: 15px;
  font-weight: 600;
  color: #08355f;
  text-decoration: none;
  border: 1.6px solid #c7d5e2;
  border-radius: 999px;
  padding: 11px 22px;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.evy-substrip-links a:hover {
  border-color: #08355f;
  transform: translateY(-2px);
}

.evy-svp {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  --evy-green: #157a5e;
  font-family: "Jost", sans-serif;
  color: var(--evy-ink);
  background: #ffffff;
}
.evy-svp * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-svp-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 70px 24px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.evy-svp-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -200px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 53, 95, 0.09), transparent 68%);
  pointer-events: none;
}
.evy-svp-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--evy-navy);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.evy-svp-hero h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
  max-width: 900px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.evy-svp-hero p {
  font-size: clamp(17px, 1.8vw, 19.5px);
  font-weight: 500;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.evy-svp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}
.evy-svp-prose {
  max-width: 1200px;
  margin: 0 auto;
}
.evy-svp-prose p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
  margin-bottom: 16px;
}
.evy-svp-prose h3 {
  font-size: clamp(19px, 2.1vw, 23px);
  font-weight: 600;
  color: var(--evy-navy);
  margin: 26px 0 10px;
  line-height: 1.28;
}
.evy-svp-prose ul {
  margin: 0 0 16px 24px;
}
.evy-svp-prose li {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.68;
  margin-bottom: 8px;
}
.evy-svp-prose a {
  color: var(--evy-navy);
  font-weight: 600;
}
.evy-svp-wrap h2 {
  font-size: clamp(23px, 2.8vw, 31px);
  font-weight: 600;
  color: var(--evy-navy);
  text-align: center;
  margin: 36px 0 22px;
  line-height: 1.2;
}
.evy-svp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.evy-svp-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-left: 4px solid var(--evy-navy);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
}
.evy-svp-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 7px;
  line-height: 1.3;
}
.evy-svp-card p {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.62;
}
.evy-svp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 0;
  max-width: 960px;
}
.evy-svp-chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--evy-navy);
  border: 1px solid #c7d5e2;
  border-radius: 999px;
  padding: 8px 18px;
  background: #f4f8fb;
}
.evy-svp-faq {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.evy-svp-qa {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 14px 34px -28px rgba(8, 53, 95, 0.4);
}
.evy-svp-qa h3 {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--evy-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.evy-svp-qa p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}
.evy-svp-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 30%, #e9f2fa 100%);
  padding: 52px 24px 80px;
  text-align: center;
  margin-top: 30px;
}
.evy-svp-cta h2 {
  margin: 0 0 22px;
}
.evy-svp-btn {
  display: inline-block;
  background: var(--evy-navy);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 36px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.evy-svp-btn:hover {
  background: #0a4478;
  transform: translateY(-2px);
  color: #ffffff;
}
@media (max-width: 820px) {
  .evy-svp-hero {
    padding: 52px 16px 42px;
  }
  .evy-svp-wrap {
    padding: 30px 16px 12px;
  }
  .evy-svp-cards {
    grid-template-columns: 1fr;
  }
  .evy-svp-prose p,
  .evy-svp-prose li {
    font-size: 16px;
  }
}

.evy-legal {
  --evy-navy: #08355f;
  --evy-navy-mid: #24517a;
  --evy-ink: #1b2733;
  font-family: "Jost", sans-serif;
  color: var(--evy-ink);
  background: #ffffff;
}
.evy-legal * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.evy-lg-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
    linear-gradient(115deg, #e9f2fa 0%, #f8fbfe 45%, #eaf3fb 100%);
  padding: 64px 24px 48px;
  text-align: center;
}
.evy-lg-hero h1 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 600;
  color: var(--evy-navy);
  line-height: 1.14;
  margin-bottom: 10px;
}
.evy-lg-hero p {
  font-size: 15px;
  font-weight: 500;
  color: var(--evy-navy-mid);
}
.evy-lg-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 24px 84px;
}
.evy-lg-wrap h2 {
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--evy-navy);
  margin: 34px 0 12px;
  line-height: 1.25;
}
.evy-lg-wrap h2:first-child {
  margin-top: 0;
}
.evy-lg-wrap p {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
}
.evy-lg-wrap ul {
  margin: 0 0 14px 22px;
}
.evy-lg-wrap li {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 8px;
}
.evy-lg-wrap a {
  color: var(--evy-navy);
  font-weight: 600;
}
@media (max-width: 640px) {
  .evy-lg-hero {
    padding: 48px 16px 36px;
  }
  .evy-lg-wrap {
    padding: 28px 16px 64px;
  }
}
